 /* ========== GLOBAL & RESET (same as other pages) ========== */
    * { 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;
      max-width: 100%; overflow-x: clip;
    }
    body.menu-open, body.modal-open { overflow: hidden; }
    @media (max-width: 720px) { body { padding-bottom: 92px; } }
    img, video, iframe, svg { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; max-width: 100%; }
    h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; }
    h1 { font-size: clamp(30px, 4.4vw, 42px); line-height: 1.1; }
    h2 { font-size: clamp(24px, 3vw, 28px); line-height: 1.12; margin-top: 32px; margin-bottom: 16px; }
    h3 { font-size: 20px; line-height: 1.2; margin-top: 24px; margin-bottom: 12px; }
    p, li { font-size: 15px; line-height: 1.7; color: var(--muted-dark); margin-bottom: 20px; }
    .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; }
    .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); background: transparent; border-color: var(--gold); }
    .btn.light:hover { background: var(--gold); color: var(--purple-deep); }
    .btn.filled { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); border-color: transparent; color: var(--purple-deep); }
    .btn.filled:hover { background: var(--gold-dark); }

    /* ===== SMART NAVBAR ===== */
    .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; 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); backdrop-filter: blur(18px);
      padding: 78px 24px 24px; padding-top: calc(78px + env(safe-area-inset-top));
      box-shadow: -24px 0 80px rgba(0,0,0,.36); 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; }

    @media (max-width: 960px) {
      .nav-links, .navbar .btn { display: none; }
      .menu-toggle { display: flex; }
    }

    /* ===== BLOG POST HERO ===== */
    .post-hero {
      position: relative; min-height: 55vh; display: grid; align-items: end;
      background: linear-gradient(0deg, rgba(20,6,31,.92), rgba(20,6,31,.48)), url('[FEATURED_IMAGE_URL]') center/cover no-repeat;
      color: var(--white);
      margin-bottom: 40px;
    }
    .post-hero .container { padding-top: 130px; padding-bottom: 50px; max-width: 800px; margin: 0 auto; text-align: center; }
    .post-hero h1 { margin: 20px 0 16px; text-shadow: 0 2px 10px rgba(0,0,0,.2); }
    .post-meta { display: flex; justify-content: center; gap: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-soft); }

    /* ===== BLOG CONTENT ===== */
    .blog-content-wrapper {
      max-width: 800px; margin: 0 auto 60px; padding: 0 20px;
    }
    .blog-content-wrapper img {
      width: 100%; height: auto; margin: 28px 0; border-radius: 8px; box-shadow: var(--shadow-soft);
    }
    .blog-content-wrapper blockquote {
      border-left: 3px solid var(--gold); padding-left: 24px; margin: 32px 0; font-style: italic;
      font-family: var(--serif); font-size: 1.2rem; color: var(--purple-soft);
    }
    .blog-content-wrapper hr { margin: 32px 0; border: 0; height: 1px; background: var(--line-gold); }

    /* ===== CTA SECTION ===== */
    .blog-cta { text-align: center; margin: 40px 0 60px; }
    .blog-cta .btn { margin: 8px; }

    /* ===== FOOTER & MOBILE CTA (same as other pages) ===== */
    .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; margin-bottom: 14px; }
    .footer-links { display: grid; gap: 9px; }
    .socials { display: flex; gap: 10px; margin-top: 16px; }
    .socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(227,188,108,.25); color: var(--gold-soft); border-radius: 999px; transition: transform .2s; }
    .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-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; color: white; }
    .whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
    .whatsapp-float i { font-size: 30px; }

    /* ===== MODALS (bottom-sheet) ===== */
    .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, .field select { width: 100%; border: 1px solid rgba(30,27,36,.12); background: var(--white); padding: 12px; outline: none; }
    .field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(227,188,108,.12); }

    /* ===== REVEAL ANIMATIONS ===== */
    [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
    [data-reveal].visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }
/* Contact actions container */
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 16px;
}

/* Individual action buttons / links */
.contact-actions a,
.contact-actions button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line-gold);
  background: transparent;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--purple-deep);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Hover effect for both links and buttons */
.contact-actions a:hover,
.contact-actions button:hover {
  background: var(--gold);
  color: var(--purple-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(227,188,108,.2);
}

/* Active / tap effect for mobile */
.contact-actions a:active,
.contact-actions button:active {
  transform: translateY(0);
}

/* Ensure icons inside have consistent size and spacing */
.contact-actions i,
.contact-actions svg {
  font-size: 14px;
  color: inherit;
}

/* Mobile adjustments: make buttons full width on very small screens if needed */
@media (max-width: 480px) {
  .contact-actions a,
  .contact-actions button {
    flex: 1;
    justify-content: center;
  }
}
/* ===== 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%;
  }
}

/* ===== CONTACT SECTION (added for blog pages) ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.map-card {
  background: linear-gradient(0deg, rgba(20,6,31,.8), rgba(20,6,31,.3));
  min-height: 280px;
  border-radius: 4px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.privacy-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted-dark);
}

/* Mobile stack: contact card first, map below */
@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* ===== LUXURY BLOG CTA BUTTONS - FORCE DARK TEXT ===== */
.blog-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 48px 0 40px;
}

.blog-cta .btn {
  min-width: 200px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--purple-deep) !important; /* force dark text for all */
}

/* First button (filled) – gold background */
.blog-cta .btn.filled {
  background: var(--gold);
  border: 1px solid var(--gold);
}
.blog-cta .btn.filled:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227,188,108,0.3);
}

/* Second and third buttons (light) – gold border */
.blog-cta .btn.light {
  background: transparent;
  border: 1px solid var(--gold);
}
.blog-cta .btn.light:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227,188,108,0.2);
}

/* Mobile full width */
@media (max-width: 640px) {
  .blog-cta .btn {
    width: 100%;
    min-width: unset;
  }
}
/* Contact section (mobile stacking) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Force dark text on blog CTA buttons */
.blog-cta .btn,
.blog-cta .btn.light,
.blog-cta .btn.filled {
  color: var(--purple-deep) !important;
}

/* Video card styling for blog posts */
.blog-cta .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.blog-cta .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-cta .video-caption {
  text-align: center;
  padding: 16px 0 0;
}

.blog-cta .video-caption i {
  margin-bottom: 12px;
}

.blog-cta .video-caption h3 {
  color: var(--purple-deep);
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 8px;
}

.blog-cta .video-caption p {
  color: var(--muted-dark);
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 620px) {
  .blog-cta .video-caption h3 {
    font-size: 20px;
  }
}