  /* ========== GLOBAL & RESET ========== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --purple-deep: #14061f; --purple-soft: #2c1a38; --gold: #e3bc6c;
      --gold-soft: #f4dca1; --gold-dark: #a9792e; --white: #ffffff;
      --ivory: #fbf7ef; --muted-light: rgba(255,255,255,.72);
      --muted-dark: #6b6372; --ink: #1e1b24; --line-gold: rgba(227,188,108,.28);
      --line-dark: rgba(30,27,36,.1); --shadow-soft: 0 24px 80px rgba(20,6,31,.16);
      --shadow-deep: 0 34px 100px rgba(0,0,0,.32); --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Inter", system-ui, -apple-system, sans-serif; --container: min(1120px, calc(100vw - 32px));
      --ease: cubic-bezier(.22, 1, .36, 1);
    }
    body {
      margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); font-size: 14px;
      overflow-x: hidden; padding-bottom: 0;
    }
    body.menu-open, body.modal-open { overflow: hidden; }
    @media (max-width: 720px) { body { padding-bottom: 92px; } }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; }
    h1 { font-size: clamp(30px, 4.4vw, 36px); line-height: 1.05; }
    h2 { font-size: clamp(24px, 3vw, 28px); line-height: 1.12; }
    p { font-size: 14px; line-height: 1.65; color: var(--muted-dark); }
    @media (max-width: 620px) { p { font-size: 14px; line-height: 1.6; } }
    .container { width: var(--container); margin-inline: auto; }
    .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
    .section { padding: 72px 0; }
    @media (max-width: 620px) { .section { padding: 54px 0; } }
    .btn {
      min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      padding: 0 18px; border: 1px solid var(--gold); background: transparent; color: var(--purple-deep);
      text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 600; cursor: pointer;
      transition: transform .25s var(--ease), background .25s var(--ease);
    }
    .btn:hover { transform: translateY(-2px); background: var(--gold); color: var(--purple-deep); box-shadow: 0 14px 34px rgba(227,188,108,.24); }
    .btn.light { color: var(--white); }
    .btn.filled { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); border-color: transparent; color: var(--purple-deep); }

    /* ===== PROGRESS & NAVBAR (hide on scroll) ===== */
    .site-progress { position: fixed; inset: 0 auto auto 0; z-index: 100; height: 2px; width: 0%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-soft)); }
    .navbar {
      position: fixed; inset: 0 0 auto; z-index: 90; padding: 12px 0; padding-top: calc(12px + env(safe-area-inset-top));
      background: linear-gradient(180deg, rgba(20,6,31,.74), transparent); transition: transform .32s var(--ease), background .28s var(--ease), border-color .28s var(--ease), padding .28s var(--ease);
      border-bottom: 1px solid transparent; transform: translateY(0);
    }
    .navbar.nav-hidden { transform: translateY(-110%); }
    .navbar.scrolled { padding: 8px 0; padding-top: calc(8px + env(safe-area-inset-top)); background: rgba(20,6,31,.9); backdrop-filter: blur(16px); border-color: var(--line-gold); }
    .nav-inner { width: min(1220px, calc(100vw - 32px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 52px; }
    .logo-link { display: inline-flex; align-items: center; width: 138px; }
    .brand-logo-img { width: 138px; max-height: 42px; object-fit: contain; }
    @media (max-width: 620px) { .logo-link, .brand-logo-img { width: 124px; max-height: 38px; } }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { position: relative; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 600; transition: color .2s var(--ease); }
    .nav-links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
    .nav-links a:hover, .nav-links a.active { color: var(--gold-soft); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
    .menu-toggle {
      display: none; width: 40px; height: 40px; border: 1px solid rgba(227,188,108,.32); background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
      border-radius: 999px; color: var(--white); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    }
    .menu-toggle span { display: block; width: 16px; height: 1px; background: var(--gold-soft); transition: transform .25s var(--ease); }
    .menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
    .menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
    .mobile-panel {
      position: fixed; inset: 0 0 0 auto; width: min(380px, 88vw); z-index: 120;
      background: radial-gradient(circle at 70% 0%, rgba(227,188,108,.12), transparent 18rem), var(--purple-deep);
      border-left: 1px solid var(--line-gold); padding: 78px 24px 24px; padding-top: calc(78px + env(safe-area-inset-top));
      box-shadow: -24px 0 80px rgba(0,0,0,.36); backdrop-filter: blur(16px); transform: translateX(110%); transition: transform .35s var(--ease);
    }
    .mobile-panel.open { transform: translateX(0); }
    .mobile-panel a {
      display: block; padding: 18px 0; color: var(--white); font-family: var(--serif); font-size: 22px;
      border-bottom: 1px solid rgba(227,188,108,.18); position: relative;
    }
    .mobile-panel a::after { content: "→"; float: right; color: var(--gold); font-family: var(--sans); font-size: 14px; margin-top: 6px; }
    .mobile-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--line-gold); background: transparent; color: var(--gold); font-size: 24px; cursor: pointer; border-radius: 999px; }
    .scrim { position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease); }
    .scrim.open { opacity: 1; pointer-events: auto; }

    /* ===== RESPONSIVE: SHOW HAMBURGER & HIDE DESKTOP NAV ON MOBILE ===== */
    @media (max-width: 960px) {
      .nav-links,
      .navbar .btn {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .nav-inner {
        min-height: 48px;
      }
    }

    /* ===== CONTACT HERO (more exclusive) ===== */
    .contact-hero {
      position: relative; min-height: 42vh; display: grid; align-items: center;
      background: url('IMG_6294.webp') center/cover no-repeat;
      color: var(--white); isolation: isolate;
    }
    .contact-hero::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(20,6,31,.82), rgba(20,6,31,.94));
      z-index: 0;
    }
    .contact-hero .container { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 40px; text-align: left; }
    .contact-hero h1 { margin: 16px 0; text-shadow: 0 2px 10px rgba(0,0,0,.2); }
    .contact-hero p { color: var(--muted-light); max-width: 520px; }
    @media (max-width: 620px) {
      .contact-hero { min-height: 44vh; }
      .contact-hero .container { padding-top: calc(100px + env(safe-area-inset-top)); text-align: left; }
      .contact-hero h1 { font-size: clamp(26px, 5vw, 32px); max-width: 300px; }
    }

    /* ===== TRUST STRIP ===== */
    .contact-trust-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--line-gold); background: var(--purple-deep);
      margin-top: -32px; position: relative; z-index: 3;
    }
    .contact-trust-strip span {
      padding: 16px 12px; color: var(--gold-soft); text-align: center; font-size: 10px;
      text-transform: uppercase; letter-spacing: .16em; border-right: 1px solid rgba(227,188,108,.18);
    }
    .contact-trust-strip span:last-child { border-right: 0; }
    @media (max-width: 620px) {
      .contact-trust-strip { grid-template-columns: 1fr 1fr; }
      .contact-trust-strip span:nth-child(2) { border-right: 0; }
      .contact-trust-strip span { border-bottom: 1px solid rgba(227,188,108,.18); }
    }

    /* ===== CONTACT CARDS ===== */
    .contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 48px 0 32px; }
    .contact-info-card, .contact-form-card {
      position: relative; background: var(--white); border: 1px solid rgba(227,188,108,.24);
      box-shadow: 0 22px 70px rgba(20,6,31,.10); padding: 32px;
    }
    .contact-info-card::before, .contact-form-card::before {
      content: ""; position: absolute; inset: 12px; border: 1px solid rgba(227,188,108,.18);
      pointer-events: none;
    }
    .contact-info-card h2, .contact-form-card h2 { margin-bottom: 24px; }

    /* ===== PREMIUM CONTACT ACTIONS ===== */
    .contact-action-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 24px; }
    .contact-action {
      display: flex; gap: 14px; align-items: flex-start; padding: 16px;
      border: 1px solid rgba(30,27,36,.08); background: var(--ivory);
      transition: transform .2s var(--ease), border-color .2s var(--ease);
    }
    .contact-action:hover { transform: translateY(-2px); border-color: rgba(227,188,108,.45); }
    .contact-action i { color: var(--gold); font-size: 20px; margin-top: 2px; }
    .contact-action strong { display: block; color: var(--purple-deep); font-size: 13px; margin-bottom: 4px; }
    .contact-action small { color: var(--muted-dark); font-size: 13px; }
    .whatsapp-btn {
      background: #25d366; border: none; color: white; display: inline-flex; align-items: center;
      gap: 10px; padding: 12px 24px; border-radius: 40px; font-weight: 600;
    }
    .whatsapp-btn:hover { background: #20b358; transform: translateY(-2px); }

    /* ===== FORM ===== */
    .contact-form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .contact-form-group label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--purple-deep); }
    .contact-form-group input,
    .contact-form-group textarea,
    .contact-form-group select {
      width: 100%; padding: 13px 12px; border: 1px solid var(--line-dark); background: var(--ivory);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .contact-form-group input:focus,
    .contact-form-group textarea:focus,
    .contact-form-group select:focus {
      outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(227,188,108,.15);
    }
    .privacy-note { margin-top: 12px; font-size: 12px; color: var(--muted-dark); }
    .buyer-note {
      margin-top: 22px; padding: 18px; background: rgba(227,188,108,.1);
      border: 1px solid rgba(227,188,108,.25);
    }
    .buyer-note strong { display: block; color: var(--purple-deep); margin-bottom: 6px; }

    /* ===== WHAT HAPPENS NEXT ===== */
    .steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px;
    }
    .steps-grid div { background: var(--white); padding: 28px; border: 1px solid var(--line-dark); }
    .steps-grid strong { font-size: 32px; font-family: var(--serif); color: var(--gold); display: block; margin-bottom: 12px; }
    .steps-grid h3 { font-size: 22px; margin-bottom: 8px; }
    @media (max-width: 760px) {
      .contact-cards { grid-template-columns: 1fr; gap: 24px; }
      .steps-grid { grid-template-columns: 1fr; }
    }

    /* ===== MAP SECTION ===== */
    .map-section { background: var(--purple-soft); padding: 48px 0; }
    .map-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
    .map-heading h2 { color: var(--white); }
    .map-heading a { color: var(--gold-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
    .map-container { border: 1px solid var(--line-gold); overflow: hidden; box-shadow: var(--shadow-soft); }
    .map-container iframe { width: 100%; height: 380px; display: block; filter: grayscale(0.2) contrast(1.05); }
    @media (max-width: 760px) {
      .map-heading { flex-direction: column; align-items: start; }
      .map-container iframe { height: 280px; }
    }

    /* ===== FOOTER ===== */
    .footer { padding: 58px 0 22px; background: radial-gradient(circle at 85% 10%, rgba(227,188,108,.12), transparent 20rem), var(--purple-deep); color: var(--white); border-top: 1px solid var(--line-gold); }
    .footer-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 32px; margin-bottom: 38px; }
    .footer .brand-logo-img { width: 160px; margin-bottom: 14px; }
    .footer p, .footer a { color: rgba(255,255,255,.7); font-size: 13px; }
    .footer a:hover { color: var(--gold-soft); }
    .footer-title { color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: .22em; font-weight: 600; margin-bottom: 14px; }
    .footer-links { display: grid; gap: 9px; }
    .socials { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
    .socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(227,188,108,.25); color: var(--gold-soft); transition: transform .2s var(--ease); border-radius: 999px; }
    .socials a:hover { transform: translateY(-2px); background: rgba(227,188,108,.08); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.48); font-size: 12px; }
    @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } .footer-bottom { display: grid; gap: 6px; } }

    /* ===== MOBILE STICKY CTA ===== */
    .mobile-cta-bar { display: none; }
    @media (max-width: 720px) {
      .mobile-cta-bar {
        position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 95;
        display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 8px; padding: 10px 12px;
        background: rgba(20,6,31,.88); backdrop-filter: blur(16px);
        border-radius: 60px; box-shadow: 0 18px 60px rgba(0,0,0,.28);
      }
      .mobile-cta-bar a, .mobile-cta-bar button {
        min-height: 44px; border: 1px solid rgba(227,188,108,.35); background: transparent; color: #fff;
        font-size: 11px; text-transform: uppercase; letter-spacing: .16em; display: flex; align-items: center; justify-content: center;
        border-radius: 60px; text-decoration: none; cursor: pointer;
      }
      .mobile-cta-bar button { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--purple-deep); border: 0; }
      .whatsapp-float { display: none; }
    }
    .whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 18px 48px rgba(37,211,102,.35); transition: transform .2s var(--ease); color: white; }
    .whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
    .whatsapp-float i { font-size: 30px; }

    /* ===== MODALS ===== */
    .modal { position: fixed; inset: 0; z-index: 160; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.62); backdrop-filter: blur(6px); }
    .modal.open { display: grid; }
    .modal-dialog { width: min(640px, 100%); max-height: 90svh; overflow: auto; background: var(--ivory); border: 1px solid var(--line-gold); box-shadow: var(--shadow-deep); }
    .modal-body { padding: 28px; }
    .modal-close { position: absolute; right: 12px; top: 12px; width: 38px; height: 38px; border: 1px solid var(--line-dark); background: var(--white); color: var(--purple-deep); font-size: 22px; cursor: pointer; border-radius: 999px; }
    @media (max-width: 620px) {
      .modal { align-items: end; padding: 0; }
      .modal-dialog { width: 100%; max-height: 88svh; border-radius: 22px 22px 0 0; border-left: 0; border-right: 0; border-bottom: 0; }
      .modal-body { padding: 28px 20px calc(28px + env(safe-area-inset-bottom)); }
      .modal-close { top: 14px; right: 16px; }
    }
    .form-grid { display: grid; gap: 12px; margin-top: 18px; }
    .field { display: grid; gap: 6px; }
    .field input, .field textarea { width: 100%; border: 1px solid rgba(30,27,36,.12); background: var(--white); padding: 12px; outline: none; }
    .field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(227,188,108,.12); }
 /* ===== PREMIUM FOOTER UPGRADE ===== */
.premium-footer {
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(227,188,108,.1), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(244,220,161,.08), transparent 20rem);
  pointer-events: none;
}

.premium-footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand p {
  max-width: 280px;
}

.premium-footer-links {
  gap: 10px;
}

.premium-footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
  transition:
    color .22s var(--ease),
    transform .22s var(--ease);
}

.premium-footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.footer-link-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid rgba(227,188,108,.22);
  color: var(--gold-soft);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  transition:
    background .22s var(--ease),
    border-color .22s var(--ease),
    color .22s var(--ease);
}

.premium-footer-links a:hover .footer-link-icon {
  background: rgba(227,188,108,.12);
  border-color: rgba(227,188,108,.48);
  color: var(--gold);
}

.footer-link-icon i {
  font-size: 12px;
  line-height: 1;
}

.contact-footer-links a {
  max-width: 100%;
}

.contact-footer-links a span:last-child {
  overflow-wrap: anywhere;
}

.footer-socials a {
  border-radius: 999px;
}

.premium-footer-bottom a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,220,161,.55);
  padding-bottom: 2px;
  transition: color .22s var(--ease), border-color .22s var(--ease);
}

.premium-footer-bottom a:hover {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 760px) {
  .premium-footer-links a {
    width: 100%;
    min-height: 38px;
  }

  .footer-link-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}
/* Make footer social icons inherit the gold color from their parent link */
.footer-socials svg.icon,
.footer-socials svg.icon use {
  fill: currentColor;
  stroke: none;
}

/* Ensure the anchor has the gold color */
.footer-socials a {
  color: var(--gold-soft);
}
/* Fix footer social icon sizing and color */
.footer-socials .icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  fill: currentColor;
  stroke: none;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
}

.footer-socials a {
  color: var(--gold-soft);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--gold);
}