  :root {
      --primary-gold: #e9c176;
      --muted-gold: #8E723B;
      --luxury-black: #16130e;
      --deep-onyx: #050505;
      --charcoal-gray: #1A1A1A;
      --surface-variant: #38342e;
      --text-on-surface: #e9e1d8;
      --text-muted: #d1c5b4;
      --pure-white: #FFFFFF;
      --font-display: 'Playfair Display', serif;
      --font-body: 'Inter', sans-serif;
      --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background-color: var(--luxury-black);
      color: var(--text-on-surface);
      font-family: var(--font-body);
      overflow-x: hidden;
      line-height: 1.6;
  }

  /* Utility Styles */
  .text-gold {
      color: var(--primary-gold);
  }

  .bg-luxury-black {
      background-color: var(--luxury-black);
  }

  .bg-deep-onyx {
      background-color: var(--deep-onyx);
  }

  .bg-charcoal {
      background-color: var(--charcoal-gray);
  }

  /* Navigation */
  .luxury-nav {
      background: rgba(22, 19, 14, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(233, 193, 118, 0.1);
      height: 80px;
      z-index: 1000;
      transition: var(--transition-smooth);
  }

  .nav-logo {
      font-family: var(--font-display);
      font-size: 1.75rem;
      color: var(--primary-gold);
      text-decoration: none;
      font-weight: 700;
      letter-spacing: -1px;
  }

  .nav-link-custom {
      font-family: var(--font-body);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-on-surface);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
  }

  .nav-link-custom:hover {
      color: var(--primary-gold);
  }

  .btn-luxury {
      background-color: var(--primary-gold);
      color: #412d00;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 12px 28px;
      border: none;
      border-radius: 2px;
      transition: var(--transition-smooth);
  }

  .btn-luxury:hover {
      filter: brightness(1.1);
      box-shadow: 0 0 25px rgba(233, 193, 118, 0.2);
      color: #412d00;
  }

  .btn-outline-luxury {
      border: 1px solid var(--primary-gold);
      color: var(--primary-gold);
      background: transparent;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 12px 28px;
      border-radius: 2px;
      transition: var(--transition-smooth);
  }

  .btn-outline-luxury:hover {
      background: rgba(233, 193, 118, 0.05);
      color: var(--primary-gold);
  }

  /* Hero Section */
  .hero-section {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
  }

  .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
  }

  .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--luxury-black) 0%, rgba(22, 19, 14, 0.4) 60%, transparent 100%);
  }

  .hero-label {
      font-size: 12px;
      letter-spacing: 0.3em;
      color: var(--primary-gold);
      text-transform: uppercase;
      display: block;
      margin-bottom: 1.5rem;
  }

  .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--pure-white);
      line-height: 1.1;
      margin-bottom: 2rem;
  }

  .hero-description {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 600px;
      margin-bottom: 2.5rem;
  }

  /* Feature Cards */
  .feature-card {
      background-color: var(--charcoal-gray);
      border: 1px solid rgba(233, 193, 118, 0.1);
      padding: 3rem;
      height: 100%;
      transition: var(--transition-smooth);
  }

  .feature-card:hover {
      border-color: var(--primary-gold);
      transform: translateY(-5px);
  }

  .feature-icon {
      font-size: 3rem;
      color: var(--primary-gold);
      margin-bottom: 2rem;
      display: block;
  }

  .section-title {
      font-family: var(--font-display);
      font-size: 3rem;
      color: var(--pure-white);
  }

  .gold-divider {
      width: 80px;
      height: 4px;
      background-color: var(--primary-gold);
      margin: 1.5rem auto;
  }

  /* Bento Grid Services */
  .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 350px);
      gap: 20px;
  }

  .service-card {
      background: rgba(22, 19, 14, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(233, 193, 118, 0.1);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }

  .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(233, 193, 118, 0.05);
      transform: translateY(100%);
      transition: transform 0.6s ease;
  }

  .service-card:hover::after {
      transform: translateY(0);
  }

  .service-card .content {
      position: relative;
      z-index: 2;
  }

  .service-card .bg-icon {
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-size: 4rem;
      opacity: 0.1;
      transition: var(--transition-smooth);
  }

  .service-card:hover .bg-icon {
      opacity: 0.8;
      color: var(--primary-gold);
  }

  /* Responsive Grid overrides */
  @media (max-width: 992px) {
      .service-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-template-rows: auto;
      }

      .service-card.col-span-2 {
          grid-column: span 2;
      }

      .service-card.row-span-2 {
          grid-row: span 1;
      }
  }

  @media (max-width: 576px) {
      .service-grid {
          grid-template-columns: 1fr;
      }

      .service-card.col-span-2 {
          grid-column: span 1;
      }
  }

  /* Specific Cell Spans */
  .col-span-2 {
      grid-column: span 2;
  }

  .row-span-2 {
      grid-row: span 2;
  }

  /* Fleet Section */
  .fleet-image-main {
      aspect-ratio: 16/9;
      overflow: hidden;
      border: 1px solid rgba(233, 193, 118, 0.2);
  }

  .fleet-image-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
  }

  .fleet-image-main:hover img {
      transform: scale(1.05);
  }

  .fleet-stat-box {
      background-color: var(--charcoal-gray);
      border: 1px solid rgba(233, 193, 118, 0.2);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  /* Testimonial */
  .testimonial-section {
      background-color: #231f1a;
      padding: 100px 0;
  }

  .quote-icon {
      font-size: 4rem;
      color: var(--primary-gold);
      margin-bottom: 2.5rem;
  }

  .quote-text {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--pure-white);
      max-width: 900px;
      margin: 0 auto 2.5rem;
  }

  /* Contact Form */
  .contact-form-container {
      background-color: var(--charcoal-gray);
      border: 1px solid rgba(233, 193, 118, 0.1);
      padding: 3rem;
  }

  .form-control-luxury {
      background-color: var(--deep-onyx);
      border: none;
      border-bottom: 1px solid rgba(233, 193, 118, 0.3);
      border-radius: 0;
      color: #FFFFFF !important;
      padding: 1rem 1rem;
      margin-bottom: 1.5rem;
      transition: var(--transition-smooth);
  }

  .form-control-luxury:focus {
      background-color: var(--deep-onyx);
      color: var(--text-on-surface);
      border-color: var(--primary-gold);
      box-shadow: none;
  }

  .form-control-luxury::placeholder {
      color: #a4a0a0;
      padding-left: 10px;
  }

  /* Footer */
  .luxury-footer {
      background-color: var(--deep-onyx);
      border-top: 1px solid rgba(233, 193, 118, 0.1);
      padding-top: 100px;
      padding-bottom: 50px;
  }

  .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--primary-gold);
  }

  .footer-bottom {
      border-top: 1px solid rgba(233, 193, 118, 0.05);
      margin-top: 80px;
      padding-top: 30px;
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(233, 225, 216, 0.5);
  }

  /* Animations */
  .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in-up.is-visible {
      opacity: 1;
      transform: translateY(0);
  }

  .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
      vertical-align: middle;
  }

