    :root {
      --primary-gold: #d4af37;
      --deep-bg: #121212;
      --card-bg: #1e1e1e;
      --text-light: #f8f5f0;
      --accent-brown: #3d2b1f;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--deep-bg);
      color: var(--text-light);
      overflow-x: hidden;
    }

    h1, h2, h3, .heading-serif {
      font-family: 'Playfair Display', serif;
    }

    /* --- TOPBAR & NAV --- */
    .topbar-luxury {
      background: var(--primary-gold);
      color: #000;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 8px 0;
      letter-spacing: 1px;
    }

    .navbar {
      background: rgba(18, 18, 18, 0.95) !important;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      padding: 1.5rem 0;
    }

    .navbar-brand {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-gold) !important;
      letter-spacing: -1px;
    }

    .nav-link {
      color: var(--text-light) !important;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 2px;
      margin: 0 15px;
      transition: 0.3s;
    }

    .nav-link:hover { color: var(--primary-gold) !important; }

    /* --- HERO CAROUSEL --- */
    .hero-container {
      position: relative;
      height: 90vh;
    }

    .carousel-item {
      height: 90vh;
      background-size: cover;
      background-position: center;
    }

    .overlay-dark {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    }

    .glass-caption {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border-left: 5px solid var(--primary-gold);
      padding: 3rem;
      max-width: 600px;
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
    }

    .glass-caption h1 {
      font-size: 4.5rem;
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    /* --- ABOUT SECTION --- */
    .about-img-stack {
      position: relative;
      padding: 2rem;
    }
    .about-img-stack img {
      border: 1px solid var(--primary-gold);
      padding: 10px;
    }
    .img-floating {
      position: absolute;
      bottom: -20px;
      right: 0;
      width: 60%;
      border: 5px solid var(--deep-bg) !important;
    }

    /* --- SERVICE CARDS (FEATURES) --- */
    .service-card {
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 3rem 2rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      height: 100%;
    }

    .service-card:hover {
      background: var(--accent-brown);
      transform: translateY(-15px);
      border-color: var(--primary-gold);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .service-card i {
      font-size: 3rem;
      color: var(--primary-gold);
      margin-bottom: 1.5rem;
      display: block;
    }

    /* --- WHY US --- */
    .why-tag {
      color: var(--primary-gold);
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 0.9rem;
    }

    /* --- TESTIMONIALS --- */
    .testimonial-quote {
      font-size: 1.4rem;
      font-style: italic;
      color: #ccc;
      border-left: 2px solid var(--primary-gold);
      padding-left: 20px;
    }

    /* --- FOOTER & MAP --- */
    footer {
      background: #000;
      padding: 80px 0 30px;
      border-top: 1px solid var(--primary-gold);
    }

    .map-frame {
      filter: grayscale(1) invert(1) contrast(1.2);
      border: 1px solid var(--primary-gold);
      border-radius: 15px;
    }

    .btn-gold {
      background: var(--primary-gold);
      color: #000;
      font-weight: 700;
      padding: 15px 35px;
      border-radius: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: 0.3s;
    }
    .btn-gold:hover { background: #fff; color: #000; }

    .float-contact {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 1000;
    }
  