/* ============================================================
   Mini Momentz Co. — styles.css
   Extracted from index.html. Keep in sync with main.js.
   Last updated: 2026
   ============================================================ */

/* ────────────────────────────────────────
   1. RESET
──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }

/* ────────────────────────────────────────
   2. DESIGN TOKENS
──────────────────────────────────────── */
:root {
  /* Colours */
  --cream:      #f7f3ee;
  --cream-dark: #efe9e0;
  --cream-deep: #e8ddd0;
  --gold:       #c4a882;
  --gold-mid:   #b8955f;
  --gold-deep:  #9e7d45;
  --dark:       #2c231a;
  --mid:        #5c4f42;
  --light:      #7a6a5a;
  --border:     rgba(180, 155, 120, 0.20);
  --white:      #fdfaf7;

  /* Shadows */
  --shadow-sm: 0 2px 16px rgba(44,35,26,.07);
  --shadow-md: 0 8px 32px rgba(44,35,26,.10);
  --shadow-lg: 0 16px 48px rgba(44,35,26,.12);

  /* Easing */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --section-v: 80px;
  --section-h: 48px;
}

/* ────────────────────────────────────────
   3. ACCESSIBILITY
──────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ────────────────────────────────────────
   4. UTILITIES
──────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: .63rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}
.gold-rule {
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 28px auto;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
.text-center { text-align: center; }

/* ────────────────────────────────────────
   5. BUTTONS — unified 48px touch target
──────────────────────────────────────── */
.btn-dark,
.btn-gold,
.btn-line,
.btn-whatsapp,
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition:
    background .35s var(--ease-expo),
    color .3s,
    border-color .3s,
    transform .25s var(--ease-expo),
    box-shadow .3s;
}
.btn-dark  { background: var(--dark);    color: var(--white); }
.btn-gold  { background: var(--gold-mid); color: var(--white); }
.btn-line  {
  background: transparent;
  color: var(--mid);
  border: 1px solid rgba(122,106,90,.5);
}
.btn-whatsapp   { background: #25d366; color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(196,168,130,.38);
}

.btn-dark:hover        { background: var(--gold-deep); transform: translateY(-2px); }
.btn-gold:hover        { background: var(--gold-deep); transform: translateY(-2px); }
.btn-line:hover        { border-color: var(--gold-mid); color: var(--gold-mid); transform: translateY(-2px); }
.btn-whatsapp:hover    { background: #1cb858; transform: translateY(-2px); }
.btn-ghost-light:hover { background: rgba(196,168,130,.1); transform: translateY(-2px); }

/* ────────────────────────────────────────
   6. NAV — transparent → frosted glass
──────────────────────────────────────── */
/* Scoped to #site-nav — prevents footer <nav> elements inheriting fixed positioning */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--section-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    padding .45s var(--ease-expo),
    background .4s,
    backdrop-filter .4s,
    border-color .4s,
    box-shadow .4s;
}
#site-nav.scrolled {
  padding-top: 12px; padding-bottom: 12px;
  background: rgba(253,250,247,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: .92rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; flex-shrink: 0;
}
.nav-links { display: flex; gap: 22px; list-style: none; margin: 0 auto; overflow: hidden; }
.nav-links a {
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
  transition: color .3s; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-mid); }
.nav-cta {
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 22px; min-height: 40px;
  background: var(--dark); color: var(--white);
  text-decoration: none;
  display: inline-flex; align-items: center;
  flex-shrink: 0; white-space: nowrap;
  transition: background .3s, transform .25s;
}
.nav-cta:hover { background: var(--gold-mid); transform: translateY(-1px); }

/* ────────────────────────────────────────
   7. HAMBURGER
──────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px 4px;
  background: none; border: none; z-index: 600;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--dark);
  transition: all .35s var(--ease-expo);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ────────────────────────────────────────
   8. MOBILE MENU
──────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 550;
  background: rgba(253,250,247,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .38s var(--ease-expo);
  padding: 80px 24px 40px;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-links { list-style: none; text-align: center; width: 100%; max-width: 320px; margin-bottom: 36px; }
.mobile-menu-links li { border-bottom: 1px solid var(--border); }
.mobile-menu-links a {
  display: block; padding: 18px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 400;
  color: var(--dark); text-decoration: none;
  transition: color .3s;
}
.mobile-menu-links a:hover { color: var(--gold-mid); }
.mobile-menu-cta {
  display: inline-flex; align-items: center; min-height: 48px;
  padding: 0 40px; background: var(--dark); color: var(--white);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; transition: background .3s;
}
.mobile-menu-cta:hover { background: var(--gold-mid); }

/* ────────────────────────────────────────
   9. MOBILE STICKY CTA BAR
──────────────────────────────────────── */
.mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 450;
  display: none; /* JS sets display:grid on mobile after scroll */
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform: translateY(100%);
  transition: transform .4s var(--ease-expo);
}
.mobile-sticky-cta.visible {
  display: grid;
  transform: translateY(0);
}
.mobile-sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 56px; padding: 0 16px;
  font-family: 'Jost', sans-serif; font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none; color: #fff;
  white-space: nowrap;
}
.mobile-sticky-cta .msc-wa  { background: #25d366; }
.mobile-sticky-cta .msc-wa:hover  { background: #1cb858; }
.mobile-sticky-cta .msc-cta { background: var(--dark); }
.mobile-sticky-cta .msc-cta:hover { background: var(--gold-mid); }

/* ────────────────────────────────────────
   10. HERO
──────────────────────────────────────── */
.hero {
  min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 8% 80px;
  position: relative; overflow: hidden;
  background-color: var(--cream-dark);
}
.hero-parallax {
  position: absolute; inset: -8%;
  background-color: var(--cream-dark);
  background-image: url('https://i.postimg.cc/K8Qhv69B/IMG-0137.jpg');
  background-size: cover; background-position: top center;
  background-repeat: no-repeat;
  will-change: transform; transform: translateZ(0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(239,233,224,.97) 0%,
    rgba(239,233,224,.92) 28%,
    rgba(232,221,208,.70) 52%,
    rgba(232,221,208,.15) 75%,
    transparent 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-circle {
  position: absolute; width: 540px; height: 540px;
  border-radius: 50%; border: 1px solid var(--border);
  top: -90px; right: -110px; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: min(52%, 640px);
}
.hero-tag {
  display: inline-block;
  font-size: .58rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-mid); margin-bottom: 22px;
  padding: 9px 16px;
  background: rgba(253,250,247,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(196,168,130,.25);
  border-radius: 2px;
  animation: heroFadeUp .9s var(--ease-expo) .2s both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 300; line-height: 1.04;
  color: var(--dark); margin-bottom: 22px; letter-spacing: -.02em;
  text-shadow: 0 2px 12px rgba(253,250,247,.6);
  animation: heroFadeUp 1s var(--ease-expo) .38s both;
}
.hero h1 em { font-style: italic; color: var(--gold-mid); }
.hero-desc {
  font-size: .9rem; line-height: 1.9; color: var(--mid);
  max-width: 460px; margin-bottom: 8px;
  animation: heroFadeUp .9s var(--ease-expo) .56s both;
}
.hero-subdesc {
  font-size: .82rem; line-height: 1.82; color: var(--mid);
  max-width: 420px; margin-bottom: 36px; font-style: italic;
  animation: heroFadeUp .9s var(--ease-expo) .70s both;
}
.hero-actions {
  display: flex; gap: 10px; align-items: center; flex-wrap: nowrap;
  margin-bottom: 48px;
  animation: heroFadeUp .9s var(--ease-expo) .84s both;
}
.hero-strip {
  padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; gap: 32px;
  animation: heroFadeUp .9s var(--ease-expo) 1.0s both;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300; color: var(--dark);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); margin-top: 5px; display: block;
}
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: heroFadeUp .9s var(--ease-expo) 1.26s both;
}
.scroll-indicator span {
  font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--mid);
}
.scroll-indicator-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: linePulse 2.2s ease-in-out infinite;
}

/* ────────────────────────────────────────
   11. HERO KEYFRAMES
──────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes linePulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: .9; transform: scaleY(.6); }
}

/* ────────────────────────────────────────
   12. TRUST STRIP
──────────────────────────────────────── */
.trust-strip {
  width: 100%; background: #2c231a;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
/* CSS grid version (no inline table needed) */
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-cell:last-child { border-right: none; }
.ts-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem; font-weight: 300; color: #c4a882;
  display: block; line-height: 1; letter-spacing: -.01em;
}
.ts-stars {
  color: #c4a882; letter-spacing: 3px; font-size: .78rem;
  display: block; margin-bottom: 4px; line-height: 1;
}
.ts-label {
  font-size: .54rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.78); display: block; margin-top: 6px; line-height: 1.3;
}

/* ────────────────────────────────────────
   13. SCROLL REVEAL
──────────────────────────────────────── */
.rx {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
}
.rx.in { opacity: 1; transform: none; }
.rx-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
}
.rx-left.in { opacity: 1; transform: none; }
.rx-scale {
  opacity: 0; transform: scale(.96) translateY(12px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
}
.rx-scale.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }
/* Masonry items */
.masonry-item {
  opacity: 0; transform: translateY(16px) scale(.99);
  transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo);
}
.masonry-item.in { opacity: 1; transform: none; will-change: auto; }
/* Fallback: show images if JS/IO fails */
.no-js .masonry-item { opacity: 1; transform: none; }

/* ────────────────────────────────────────
   14. INTRO
──────────────────────────────────────── */
.intro { padding: var(--section-v) var(--section-h); background: var(--white); text-align: center; }
.intro-inner { max-width: 800px; margin: 0 auto; }
.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 400; line-height: 1.25; color: var(--dark); margin-bottom: 22px;
}
.intro p { font-size: .88rem; line-height: 1.95; color: #5a4d40; max-width: 600px; margin: 0 auto; }

/* ────────────────────────────────────────
   15. PORTFOLIO
──────────────────────────────────────── */
.portfolio-section { padding: var(--section-v) var(--section-h); background: var(--cream); width: 100%; }
.portfolio-header { text-align: center; margin-bottom: 48px; }
.portfolio-header p { font-size: .88rem; color: var(--mid); max-width: 460px; margin: 12px auto 0; line-height: 1.9; }
.portfolio-filter {
  display: flex; justify-content: center; flex-wrap: wrap;
  border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px; font-family: 'Jost', sans-serif;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: all .3s; margin-bottom: -1px; white-space: nowrap;
}
.filter-btn.active,
.filter-btn:hover { color: var(--gold-mid); border-bottom-color: var(--gold-mid); }
.masonry-grid { columns: 3; column-gap: 8px; max-width: 1280px; margin: 0 auto; }
.masonry-item {
  break-inside: avoid; margin-bottom: 8px;
  position: relative; overflow: hidden; cursor: pointer; border-radius: 1px;
}
.masonry-item img {
  width: 100%; height: auto; display: block;
  object-fit: cover; object-position: center;
  transition: transform .8s var(--ease-expo);
}
.masonry-item:hover img { transform: scale(1.055); }
.masonry-caption {
  position: absolute; inset: auto 0 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(44,35,26,.78));
  opacity: 0; transform: translateY(6px);
  transition: opacity .45s var(--ease-expo), transform .45s var(--ease-expo);
}
.masonry-item:hover .masonry-caption { opacity: 1; transform: none; }
.masonry-caption-rule {
  display: block; width: 24px; height: 1px;
  background: var(--gold); margin-bottom: 8px;
  transition: width .4s var(--ease-expo) .05s;
}
.masonry-item:hover .masonry-caption-rule { width: 40px; }
.masonry-caption span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.9); }

/* ────────────────────────────────────────
   16. TIMELINE
──────────────────────────────────────── */
.timeline-section { background: var(--dark); padding: var(--section-v) var(--section-h); }
.timeline-header { text-align: center; margin-bottom: 68px; }
.timeline-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3vw, 2.65rem); font-weight: 400; color: #fff;
}
.timeline-header p { font-size: .86rem; color: rgba(255,255,255,.82); max-width: 440px; margin: 12px auto 0; line-height: 1.9; }
.timeline { max-width: 680px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 26px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,149,95,.45), rgba(184,149,95,.45), transparent);
}
.timeline-item { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 44px; }
.timeline-item:last-child { margin-bottom: 0; }
.tl-dot { width: 53px; flex-shrink: 0; display: flex; align-items: flex-start; padding-top: 5px; }
.tl-dot-circle {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--dark);
  position: relative; z-index: 1; flex-shrink: 0;
  transition: background .3s;
}
.timeline-item:hover .tl-dot-circle { background: var(--gold); }
.tl-stage { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; display: block; }
.tl-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: #fff; margin-bottom: 7px; }
.tl-body p  { font-size: .82rem; line-height: 1.82; color: rgba(255,255,255,.85); }
.tl-final {
  margin-left: 85px; margin-top: 44px; padding: 30px 34px;
  border: 1px solid rgba(196,168,130,.28); background: rgba(196,168,130,.07);
}
.tl-final h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
  font-weight: 400; font-style: italic; color: var(--gold); margin-bottom: 9px;
}
.tl-final p { font-size: .82rem; line-height: 1.82; color: rgba(255,255,255,.88); }

/* ────────────────────────────────────────
   17. FILM PREVIEW
──────────────────────────────────────── */
.film-preview { background: var(--cream-dark); padding: 80px var(--section-h); text-align: center; }
.film-preview-inner { max-width: 680px; margin: 0 auto; }
.film-preview h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 2.8vw, 2.3rem); font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.film-preview p { font-size: .86rem; color: var(--mid); margin-bottom: 28px; }
.film-thumb {
  position: relative; display: block;
  max-width: 620px; width: 100%; margin: 0 auto;
  cursor: pointer; overflow: hidden;
}
.film-thumb img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  transition: transform .8s var(--ease-expo), filter .6s;
}
.film-thumb:hover img { transform: scale(1.04); filter: brightness(1.05); }
.film-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(44,35,26,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .45s;
}
.film-thumb:hover .film-thumb-overlay { background: rgba(44,35,26,.1); }
.play-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(253,250,247,.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(44,35,26,.25);
  transition: transform .5s var(--ease-spring), box-shadow .4s;
}
.film-thumb:hover .play-btn { transform: scale(1.15); box-shadow: 0 12px 40px rgba(44,35,26,.35); }
.play-btn svg { margin-left: 4px; }
.film-caption { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--light); margin-top: 14px; display: block; }
.film-embed-wrap { position: relative; max-width: 620px; width: 100%; margin: 0 auto; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.film-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ────────────────────────────────────────
   18. COMPARE
──────────────────────────────────────── */
.compare-section { padding: var(--section-v) var(--section-h); background: var(--cream); }
.compare-header { text-align: center; margin-bottom: 52px; }
.compare-header p { font-size: .86rem; color: var(--mid); max-width: 420px; margin: 10px auto 0; line-height: 1.9; }
.compare-table { max-width: 820px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.compare-col { padding: 40px 36px; }
.col-sep { background: var(--white); }
.col-jour { background: var(--dark); }
.compare-col-title { font-size: .63rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 24px; display: block; }
.col-sep  .compare-col-title { color: var(--light); }
.col-jour .compare-col-title { color: var(--gold); }
.compare-list { list-style: none; }
.compare-list li {
  font-size: .83rem; line-height: 1.65; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 12px; align-items: flex-start;
}
.col-jour .compare-list li { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.10); }
.col-sep  .compare-list li { color: var(--mid); }
.col-sep  .compare-list li::before { content: '—'; color: rgba(180,155,120,.38); flex-shrink: 0; }
.col-jour .compare-list li::before { content: '✦'; color: var(--gold); font-size: .52rem; margin-top: 4px; flex-shrink: 0; }

/* ────────────────────────────────────────
   19. FILM TEXT
──────────────────────────────────────── */
.film-section { padding: var(--section-v) var(--section-h); background: var(--white); }
.film-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.film-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  font-weight: 400; font-style: italic; color: var(--dark);
  line-height: 1.28; margin-bottom: 26px;
}
.film-inner p { font-size: .88rem; line-height: 1.95; color: #5a4d40; margin-bottom: 18px; }

/* ────────────────────────────────────────
   20. STAGES
──────────────────────────────────────── */
.stages-section { background: var(--cream); padding: var(--section-v) var(--section-h); }
.stages-header { text-align: center; margin-bottom: 60px; }
.stages-header p { font-size: .86rem; color: var(--mid); max-width: 460px; margin: 12px auto 0; line-height: 1.9; }
.stages-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; max-width: 1160px; margin: 0 auto; }
.stage-card {
  background: var(--white); padding: 40px 30px;
  position: relative; overflow: hidden;
  transition: background .4s var(--ease-expo), transform .5s var(--ease-expo), box-shadow .4s;
}
.stage-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-mid);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-expo);
}
.stage-card:hover { background: var(--cream-dark); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stage-card:hover::after { transform: scaleX(1); }
.stage-number { font-family: 'Cormorant Garamond', serif; font-size: 3.8rem; font-weight: 300; color: var(--border); line-height: 1; display: block; margin-bottom: 22px; }
.stage-label  { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-mid); display: block; margin-bottom: 9px; }
.stage-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--dark); margin-bottom: 10px; line-height: 1.2; }
.stage-card p  { font-size: .8rem; line-height: 1.82; color: var(--mid); }
.stage-note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); font-size: .72rem; font-style: italic; color: var(--gold-mid); line-height: 1.5; }

/* ────────────────────────────────────────
   21. INCLUDED
──────────────────────────────────────── */
.included-section { padding: 72px var(--section-h); background: var(--cream-dark); }
.included-inner { max-width: 880px; margin: 0 auto; }
.included-header { text-align: center; margin-bottom: 44px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.included-col { padding: 36px 32px; background: var(--white); }
.included-col.not-col { background: var(--cream); }
.included-col-title { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 22px; display: block; color: var(--gold-mid); }
.not-col .included-col-title { color: var(--light); }
.included-list { list-style: none; }
.included-list li { font-size: .81rem; line-height: 1.68; padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; color: var(--mid); }
.included-list li.yes::before { content: '✓'; color: var(--gold-mid); flex-shrink: 0; margin-top: 1px; }
.included-list li.no::before  { content: '×'; color: var(--light); flex-shrink: 0; }

/* ────────────────────────────────────────
   22. MID CTA
──────────────────────────────────────── */
.mid-cta { background: var(--cream-dark); padding: 68px var(--section-h); text-align: center; }
.mid-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.65rem,2.5vw,2.15rem); font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.mid-cta p  { font-size: .86rem; color: var(--mid); margin-bottom: 28px; }
.cta-cluster { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ────────────────────────────────────────
   23. PROCESS
──────────────────────────────────────── */
.process-section { padding: var(--section-v) var(--section-h); background: var(--white); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header p { font-size: .86rem; color: var(--mid); max-width: 420px; margin: 10px auto 0; line-height: 1.9; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; max-width: 1060px; margin: 0 auto; }
.process-step {
  padding: 36px 26px; background: var(--cream);
  position: relative; overflow: hidden;
  transition: background .4s var(--ease-expo), transform .5s var(--ease-expo), box-shadow .4s;
}
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-mid);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-expo);
}
.process-step:hover { background: var(--cream-dark); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-step:hover::before { transform: scaleX(1); }
.process-step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--border); line-height: 1; display: block; margin-bottom: 18px; }
.process-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; color: var(--dark); margin-bottom: 9px; }
.process-step p  { font-size: .76rem; line-height: 1.8; color: var(--mid); }

/* ────────────────────────────────────────
   24. INDIA
──────────────────────────────────────── */
.india-section { padding: var(--section-v) var(--section-h); background: var(--dark); }
.india-inner { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.india-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem,2.8vw,2.35rem); font-weight: 400; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
.india-content h2 em { font-style: italic; color: var(--gold); }
.india-content p { font-size: .86rem; line-height: 1.88; color: rgba(255,255,255,.80); margin-bottom: 13px; }
.india-steps { list-style: none; margin-top: 24px; }
.india-steps li { font-size: .81rem; color: rgba(255,255,255,.78); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; gap: 11px; align-items: flex-start; }
.india-steps li::before { content: '✦'; color: var(--gold); font-size: .52rem; margin-top: 4px; flex-shrink: 0; }
.india-map { background: rgba(196,168,130,.07); border: 1px solid rgba(196,168,130,.18); padding: 44px 30px; text-align: center; }
.india-map h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--gold); margin-bottom: 7px; }
.india-map p  { font-size: .78rem; color: rgba(255,255,255,.78); line-height: 1.68; }
.india-cities { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 18px; }
.india-city { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border: 1px solid rgba(196,168,130,.22); color: rgba(255,255,255,.65); }

/* ────────────────────────────────────────
   25. ABOUT
──────────────────────────────────────── */
.about-section { padding: var(--section-v) var(--section-h); background: var(--cream); }
.about-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }
.about-photo { text-align: center; }
.about-photo-frame {
  width: 190px; height: 190px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--gold);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* ▶ Monogram fallback (shown until photo added) */
.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--gold-mid); line-height: 1;
}
.about-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--dark); display: block; margin-bottom: 3px; }
.about-role  { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-mid); display: block; margin-bottom: 14px; }
.about-badges { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.about-badge { font-size: .65rem; letter-spacing: .08em; color: var(--mid); padding: 5px 13px; border: 1px solid var(--border); background: var(--white); }
.about-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem,2.8vw,2.35rem); font-weight: 400; color: var(--dark); margin-bottom: 18px; line-height: 1.2; }
.about-content p  { font-size: .86rem; line-height: 1.92; color: #5a4d40; margin-bottom: 13px; }

/* ────────────────────────────────────────
   26. TRUST BADGES (near packages)
──────────────────────────────────────── */
.trust-badges-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 32px auto 0; max-width: 660px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid var(--border);
  background: var(--cream); font-size: .66rem;
  letter-spacing: .1em; color: var(--mid);
}
.trust-badge svg { color: var(--gold-mid); flex-shrink: 0; }

/* ────────────────────────────────────────
   27. SOCIAL PROOF
──────────────────────────────────────── */
.proof-section { padding: var(--section-v) var(--section-h); background: var(--cream-dark); }
.proof-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.proof-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem,2.8vw,2.4rem); font-weight: 400; color: var(--dark); margin-bottom: 18px; }
.proof-inner p  { font-size: .88rem; line-height: 1.95; color: #5a4d40; margin-bottom: 36px; }
.ceremony-tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.ceremony-tag {
  font-size: .66rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--border); color: var(--mid);
  background: var(--white); transition: border-color .3s, color .3s;
}
.ceremony-tag:hover { border-color: var(--gold); color: var(--gold-mid); }

/* ────────────────────────────────────────
   28. PACKAGES
──────────────────────────────────────── */
.packages-section { padding: var(--section-v) var(--section-h); background: var(--white); }
.packages-header { text-align: center; margin-bottom: 52px; }
.packages-header p { font-size: .86rem; color: var(--mid); max-width: 440px; margin: 12px auto 0; line-height: 1.9; }
.packages-grid { display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 2px; max-width: 1020px; margin: 0 auto; }
.pkg-card {
  background: var(--cream); padding: 44px 34px;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease-expo), box-shadow .4s;
}
.pkg-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-mid);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-expo);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(44,35,26,.14); }
.pkg-card:hover::after { transform: scaleX(1); }
.pkg-card.featured { background: var(--dark); }
.pkg-popular { position: absolute; top: 0; left: 34px; background: var(--gold-mid); color: var(--white); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; padding: 5px 13px; }
/* NEW: Best value label */
.pkg-best-value { position: absolute; top: 0; right: 0; background: var(--gold-deep); color: var(--white); font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; padding: 5px 12px; }
.pkg-name    { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-mid); display: block; margin-bottom: 11px; }
.pkg-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 400; color: var(--dark); margin-bottom: 5px; }
.pkg-card.featured h3 { color: var(--white); }
.pkg-tagline { font-size: .8rem; font-style: italic; color: var(--mid); margin-bottom: 24px; line-height: 1.55; }
.pkg-card.featured .pkg-tagline { color: rgba(255,255,255,.48); }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 2.9rem; font-weight: 300; color: var(--dark); line-height: 1; display: flex; align-items: flex-start; gap: 2px; }
.pkg-card.featured .pkg-price { color: var(--gold); }
.pkg-price sup { font-size: 1.15rem; margin-top: 6px; font-weight: 300; }
.pkg-note { font-size: .7rem; color: var(--light); margin-top: 5px; margin-bottom: 24px; }
.pkg-card.featured .pkg-note { color: rgba(255,255,255,.32); }
.pkg-list { list-style: none; margin-bottom: 32px; }
.pkg-list li { font-size: .78rem; line-height: 1.58; color: var(--mid); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 9px; align-items: flex-start; }
.pkg-card.featured .pkg-list li { color: rgba(255,255,255,.70); border-color: rgba(255,255,255,.09); }
.pkg-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: .68rem; margin-top: 2px; }
.pkg-btn {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  font-family: 'Jost', sans-serif; font-size: .67rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all .3s var(--ease-expo);
  border: 1px solid var(--dark); color: var(--dark); background: transparent;
}
.pkg-card.featured .pkg-btn { border-color: var(--gold-mid); background: var(--gold-mid); color: var(--white); }
.pkg-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.pkg-card.featured .pkg-btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

/* ────────────────────────────────────────
   29. PAYMENT
──────────────────────────────────────── */
.payment-section { padding: 72px var(--section-h); background: var(--cream); }
.payment-inner { max-width: 820px; margin: 0 auto; }
.payment-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.55rem,2.2vw,2rem); font-weight: 400; color: var(--dark); text-align: center; margin-bottom: 8px; }
.payment-sub { text-align: center; font-size: .82rem; font-style: italic; color: var(--mid); margin-bottom: 36px; }
.payment-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; margin-bottom: 14px; }
.payment-step { background: var(--white); padding: 22px 16px; text-align: center; }
.payment-step-label  { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 9px; display: block; }
.payment-step-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 300; color: var(--dark); display: block; line-height: 1; margin-bottom: 7px; }
.payment-step-desc   { font-size: .69rem; color: var(--light); line-height: 1.5; }
.payment-variants { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 600px; margin: 0 auto; }
.pv-card { background: var(--white); padding: 18px 22px; border-left: 3px solid var(--gold); }
.pv-name { font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-mid); display: block; margin-bottom: 7px; }
.pv-breakdown { font-size: .76rem; color: var(--mid); line-height: 1.75; }
.pv-breakdown strong { color: var(--dark); font-weight: 500; }

/* ────────────────────────────────────────
   30. FLEXIBLE
──────────────────────────────────────── */
.flex-section { padding: var(--section-v) var(--section-h); background: var(--white); }
.flex-header  { text-align: center; margin-bottom: 52px; }
.flex-header p { font-size: .86rem; color: var(--mid); max-width: 400px; margin: 10px auto 0; line-height: 1.9; }
.flex-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1020px; margin: 0 auto; }
.flex-card {
  background: var(--cream); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: background .4s var(--ease-expo), transform .5s var(--ease-expo), box-shadow .4s;
}
.flex-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-mid); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-expo);
}
.flex-card:hover { background: var(--cream-dark); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flex-card:hover::after { transform: scaleX(1); }
.flex-card-q { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; font-style: italic; color: var(--dark); margin-bottom: 12px; line-height: 1.38; }
.flex-card p { font-size: .8rem; line-height: 1.82; color: var(--mid); }

/* ────────────────────────────────────────
   31. WHY
──────────────────────────────────────── */
.why-section { background: var(--cream); padding: var(--section-v) var(--section-h); }
.why-header  { text-align: center; margin-bottom: 52px; }
.why-header p { font-size: .86rem; color: var(--mid); max-width: 440px; margin: 10px auto 0; line-height: 1.9; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1020px; margin: 0 auto; }
.why-card {
  background: var(--white); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: background .4s var(--ease-expo), transform .5s var(--ease-expo), box-shadow .4s;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-mid); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-expo);
}
.why-card:hover { background: var(--cream-dark); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }
.why-card-rule { width: 30px; height: 1px; background: var(--gold); margin-bottom: 22px; transition: width .4s var(--ease-expo); }
.why-card:hover .why-card-rule { width: 48px; }
.why-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 9px; }
.why-card p  { font-size: .8rem; line-height: 1.82; color: var(--mid); }

/* ────────────────────────────────────────
   32. TESTIMONIALS
──────────────────────────────────────── */
.testimonial-section { padding: var(--section-v) var(--section-h); background: var(--white); }
.testimonial-header  { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1020px; margin: 0 auto; }
.t-card { background: var(--cream); padding: 40px 34px; position: relative; overflow: hidden; }
.t-card::before { content: '\201C'; position: absolute; top: -10px; left: 20px; font-family: 'Cormorant Garamond', serif; font-size: 7rem; color: rgba(196,168,130,.07); line-height: 1; pointer-events: none; }
.t-card.featured-t { background: var(--dark); }
.t-stars   { color: var(--gold); font-size: .82rem; letter-spacing: 2px; margin-bottom: 18px; display: block; }
.t-quote   { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-weight: 400; font-style: italic; color: var(--dark); line-height: 1.62; margin-bottom: 22px; }
.t-card.featured-t .t-quote { color: rgba(255,255,255,.88); }
.t-cite    { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-mid); display: block; }
.t-occasion { font-size: .7rem; color: var(--light); margin-top: 3px; display: block; }
.t-card.featured-t .t-cite    { color: var(--gold); }
.t-card.featured-t .t-occasion { color: rgba(255,255,255,.36); }

/* ────────────────────────────────────────
   33. INSTAGRAM
──────────────────────────────────────── */
.insta-section { padding: 72px var(--section-h); background: var(--cream-dark); }
.insta-header  { text-align: center; margin-bottom: 32px; }
.insta-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.55rem,2.4vw,2.1rem); font-weight: 400; color: var(--dark); }
.insta-header p  { font-size: .83rem; color: var(--mid); margin-top: 8px; }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; max-width: 1020px; margin: 0 auto 26px; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .6s var(--ease-out); }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay { position: absolute; inset: 0; background: rgba(44,35,26,.28); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta  { text-align: center; }
.insta-link {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-mid); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: all .3s;
}
.insta-link:hover { color: var(--dark); border-color: var(--dark); }

/* ────────────────────────────────────────
   34. FAQ
──────────────────────────────────────── */
.faq-section { padding: 88px var(--section-h); background: var(--cream); }
.faq-inner   { max-width: 660px; margin: 0 auto; }
.faq-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.65rem,2.5vw,2.15rem); font-weight: 400; color: var(--dark); text-align: center; margin-bottom: 44px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; padding: 20px 0;
  text-align: left; font-family: 'Jost', sans-serif; font-size: .86rem; font-weight: 400;
  color: var(--dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color .3s;
}
.faq-btn:hover { color: var(--gold-mid); }
.faq-btn svg { flex-shrink: 0; transition: transform .35s var(--ease-expo); color: var(--gold); }
.faq-btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { font-size: .8rem; line-height: 1.85; color: var(--mid); max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-expo), padding .3s; }
.faq-answer.open { max-height: 400px; padding-bottom: 18px; }

/* ────────────────────────────────────────
   35. EMAIL CAPTURE
──────────────────────────────────────── */
.email-section { padding: 76px var(--section-h); background: var(--dark); }
.email-inner   { max-width: 580px; margin: 0 auto; text-align: center; }
.email-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,2.4vw,2.2rem); font-weight: 400; color: var(--white); margin-bottom: 10px; }
.email-inner p  { font-size: .86rem; color: rgba(255,255,255,.68); margin-bottom: 26px; line-height: 1.8; }
.email-perks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.email-perk { font-size: .72rem; color: rgba(255,255,255,.62); display: flex; align-items: center; gap: 7px; }
.email-perk::before { content: '✦'; color: var(--gold); font-size: .48rem; }
.email-form { display: flex; max-width: 420px; margin: 0 auto; }
.email-form input {
  flex: 1; padding: 13px 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(196,168,130,.28);
  border-right: none; color: var(--white);
  font-family: 'Jost', sans-serif; font-size: .83rem;
  outline: none; transition: border-color .3s;
}
.email-form input::placeholder { color: rgba(255,255,255,.26); }
.email-form input:focus { border-color: var(--gold); }
.email-form button {
  padding: 13px 22px; background: var(--gold-mid); color: var(--white); border: none;
  font-family: 'Jost', sans-serif; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: background .3s; white-space: nowrap;
}
.email-form button:hover { background: var(--gold-deep); }
.email-disclaimer { font-size: .68rem; color: rgba(255,255,255,.24); margin-top: 11px; }
.email-success {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  color: var(--gold); font-size: .82rem; letter-spacing: .08em;
  margin-top: 16px; padding: 14px 20px;
  border: 1px solid rgba(196,168,130,.25); background: rgba(196,168,130,.07);
}
/* GDPR */
.gdpr-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; text-align: left; }
.gdpr-row input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold-mid); flex-shrink: 0; cursor: pointer; }
.gdpr-row label { font-size: .74rem; color: rgba(255,255,255,.45); line-height: 1.6; cursor: pointer; }
.gdpr-row label a { color: var(--gold); text-decoration: underline; }

/* ────────────────────────────────────────
   36. CTA SECTION
──────────────────────────────────────── */
.cta-section { background: var(--dark); padding: var(--section-v) var(--section-h); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 580px; height: 580px; border-radius: 50%; border: 1px solid rgba(196,168,130,.09); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.95rem,4vw,3.1rem); font-weight: 400; color: var(--white); line-height: 1.18; margin-bottom: 13px; }
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p  { font-size: .86rem; color: rgba(255,255,255,.68); max-width: 380px; margin: 0 auto 36px; line-height: 1.85; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ────────────────────────────────────────
   37. FOOTER
──────────────────────────────────────── */
footer { background: #1e160d; padding: 60px var(--section-h) 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; color: var(--white); text-decoration: none; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.32); line-height: 1.78; max-width: 240px; }
.footer-col h5  { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul  { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .78rem; color: rgba(255,255,255,.32); text-decoration: none; transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 9px; }
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .7rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .3s; }
.footer-legal a:hover { color: var(--gold); }

/* ────────────────────────────────────────
   38. COOKIE BANNER
──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--dark); padding: 13px var(--section-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  transition: transform .4s var(--ease-expo);
  border-top: 1px solid rgba(255,255,255,.06);
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { font-size: .76rem; color: rgba(255,255,255,.58); line-height: 1.6; }
.cookie-banner a { color: var(--gold); }
.cookie-banner-btns { display: flex; gap: 9px; flex-shrink: 0; }
.cookie-btn-accept,
.cookie-btn-decline {
  padding: 8px 20px; font-size: .67rem; letter-spacing: .15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all .3s; font-family: 'Jost', sans-serif;
}
.cookie-btn-accept  { background: var(--gold-mid); color: var(--white); }
.cookie-btn-accept:hover  { background: var(--gold-deep); }
.cookie-btn-decline { background: none; color: rgba(255,255,255,.38); border: 1px solid rgba(255,255,255,.16); }
.cookie-btn-decline:hover { color: rgba(255,255,255,.65); }

/* ────────────────────────────────────────
   39. LEGAL OVERLAY
──────────────────────────────────────── */
.legal-section { padding: 100px var(--section-h); max-width: 800px; margin: 0 auto; display: none; }
.legal-section.active { display: block; }
.legal-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--dark); margin-bottom: 32px; }
.legal-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--dark); margin: 28px 0 12px; }
.legal-section p  { font-size: .86rem; line-height: 1.9; color: #5a4d40; margin-bottom: 16px; }
.legal-section ul { margin: 12px 0 20px 20px; }
.legal-section ul li { font-size: .86rem; line-height: 1.8; color: #5a4d40; margin-bottom: 6px; }

/* ────────────────────────────────────────
   40. SCROLL TO TOP
──────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dark); border: 1px solid rgba(196,168,130,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .4s, transform .4s var(--ease-expo), background .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(44,35,26,.25);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover   { background: var(--gold-mid); box-shadow: 0 8px 28px rgba(44,35,26,.35); }
.scroll-top svg { color: #fff; flex-shrink: 0; }

/* ────────────────────────────────────────
   41. EXIT-INTENT MODAL
──────────────────────────────────────── */
.exit-modal-backdrop {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(44,35,26,.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-expo);
  padding: 20px;
}
.exit-modal-backdrop.open { opacity: 1; pointer-events: all; }
.exit-modal {
  background: var(--white); max-width: 480px; width: 100%;
  padding: 48px 40px; text-align: center; position: relative;
  transform: translateY(20px); transition: transform .4s var(--ease-expo);
}
.exit-modal-backdrop.open .exit-modal { transform: none; }
.exit-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--light); font-size: 1.1rem; line-height: 1;
  padding: 4px; transition: color .3s;
}
.exit-modal-close:hover { color: var(--dark); }
.exit-modal .eyebrow { margin-bottom: 12px; }
.exit-modal h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--dark); margin-bottom: 12px; line-height: 1.2; }
.exit-modal p  { font-size: .84rem; color: var(--mid); margin-bottom: 24px; line-height: 1.75; }
.exit-modal-form { display: flex; gap: 0; max-width: 340px; margin: 0 auto 14px; }
.exit-modal-form input {
  flex: 1; padding: 11px 14px; font-family: 'Jost', sans-serif; font-size: .82rem;
  border: 1px solid var(--border); border-right: none; outline: none;
  background: var(--white); color: var(--dark);
  transition: border-color .3s;
}
.exit-modal-form input:focus { border-color: var(--gold-mid); }
.exit-modal-form button {
  padding: 11px 18px; background: var(--gold-mid); color: var(--white); border: none;
  font-family: 'Jost', sans-serif; font-size: .64rem; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: background .3s;
}
.exit-modal-form button:hover { background: var(--gold-deep); }
.exit-modal-skip { font-size: .7rem; color: var(--light); cursor: pointer; text-decoration: underline; background: none; border: none; }
.exit-modal-skip:hover { color: var(--mid); }

/* ────────────────────────────────────────
   42. RESPONSIVE — 1024px
──────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hide nav text links at tablet — hamburger takes over */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #site-nav { padding: 14px 24px; }

  .packages-grid { grid-template-columns: 1fr 1fr; max-width: 680px; }
  .masonry-grid  { columns: 2; }
  .hero-content  { max-width: 65%; }
  .stages-grid   { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); }
}

/* ────────────────────────────────────────
   43. RESPONSIVE — 860px (tablet / large mobile)
──────────────────────────────────────── */
@media (max-width: 860px) {
  :root { --section-v: 72px; --section-h: 24px; }

  /* Nav */
  #site-nav { padding: 14px 20px; }
  #site-nav.scrolled { padding-top: 10px; padding-bottom: 10px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 88px 20px 52px; justify-content: flex-end; min-height: 100svh; }
  .hero-parallax { inset: 0; background-attachment: scroll; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(239,233,224,.55) 0%, rgba(239,233,224,.75) 28%, rgba(239,233,224,.92) 55%, rgba(239,233,224,.99) 80%, rgba(239,233,224,1) 100%); }
  .hero-content { max-width: 100%; min-width: 0; }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); color: var(--dark); text-shadow: none; }
  .hero-desc, .hero-subdesc { max-width: 100%; color: #3a2e24; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 8px; flex-wrap: nowrap; }
  .hero-actions a { display: flex; justify-content: center; }
  .hero-strip { gap: 16px; }
  .hero-circle, .scroll-indicator { display: none; }
  .hero-tag, .hero h1, .hero-desc, .hero-subdesc, .hero-actions, .hero-strip { animation-duration: .7s; }

  /* Trust strip */
  .trust-strip-grid { grid-template-columns: repeat(2,1fr); }
  .trust-cell:nth-child(2)  { border-right: none; }
  .trust-cell:nth-child(3)  { border-top: 1px solid rgba(255,255,255,.07); }
  .trust-cell:nth-child(4)  { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }

  /* Mobile sticky CTA — shown via JS .visible class which sets display:grid */
  .scroll-top { bottom: 148px; right: 16px; width: 40px; height: 40px; }

  /* Grids */
  .masonry-grid { columns: 2; }
  .compare-table, .included-grid { grid-template-columns: 1fr; }
  .india-inner, .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-inner { text-align: center; }
  .about-badges { align-items: center; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .payment-steps { grid-template-columns: repeat(2,1fr); }
  .payment-variants { grid-template-columns: 1fr; }
  .flex-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .stages-grid, .process-steps { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 18px; }
  .tl-final { margin-left: 0; margin-top: 36px; }

  /* Footer */
  footer { padding: 44px 22px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Cookie */
  .cookie-banner { padding: 12px 20px; }

  /* Trust badges responsive */
  .trust-badges-row { flex-direction: column; align-items: center; }
}

/* ────────────────────────────────────────
   44. RESPONSIVE — 520px (iPhone)
──────────────────────────────────────── */
@media (max-width: 520px) {
  .hero h1      { font-size: 2.3rem; letter-spacing: -.015em; }
  .hero-strip   { flex-direction: column; gap: 10px; }
  .masonry-grid { columns: 1; }
  .portfolio-filter { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
  .filter-btn { flex-shrink: 0; }
  .stages-grid, .flex-grid, .why-grid, .process-steps, .payment-steps { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .timeline-item { gap: 16px; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid rgba(196,168,130,.28); border-bottom: none; }
  .cta-btns, .cta-cluster { flex-direction: column; align-items: center; }
  .packages-grid { grid-template-columns: 1fr; max-width: 100%; }
  .payment-variants { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr; }
  .exit-modal { padding: 36px 24px; }
  .exit-modal-form { flex-direction: column; }
  .exit-modal-form input { border-right: 1px solid var(--border); border-bottom: none; }
}

/* ────────────────────────────────────────
   45. ENQUIRY FORM (CTA section)
──────────────────────────────────────── */
.enquiry-form {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.eq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.eq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eq-full { margin-bottom: 14px; }
.eq-field label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}
.eq-req { color: var(--gold); }
.eq-opt { color: rgba(255,255,255,.38); font-size: .65rem; text-transform: none; letter-spacing: 0; }
.eq-field input,
.eq-field select,
.eq-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(196,168,130,.28);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s, background .3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.eq-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8955f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.eq-field select option { background: #2c231a; color: #fff; }
.eq-field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.eq-field input::placeholder,
.eq-field textarea::placeholder { color: rgba(255,255,255,.22); }
.eq-field input:focus,
.eq-field select:focus,
.eq-field textarea:focus {
  border-color: var(--gold-mid);
  background: rgba(255,255,255,.1);
}
.eq-field input:focus-visible,
.eq-field select:focus-visible,
.eq-field textarea:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 2px;
}
.eq-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.eq-submit {
  min-height: 48px;
  padding: 0 36px;
  font-size: .72rem;
  letter-spacing: .2em;
}
.eq-wa {
  font-size: .68rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.eq-wa:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

@media (max-width: 860px) {
  .eq-row { grid-template-columns: 1fr; }
  .eq-actions { flex-direction: column; align-items: stretch; }
  .eq-submit, .eq-wa { justify-content: center; }
}
@media (max-width: 520px) {
  .enquiry-form { text-align: left; }
}

/* ────────────────────────────────────────
   46. YOUTUBE SECTION
──────────────────────────────────────── */
.yt-section {
  padding: var(--section-v) var(--section-h);
  background: var(--dark);
}
.yt-inner { max-width: 1020px; margin: 0 auto; }
.yt-header { text-align: center; margin-bottom: 48px; }
.yt-header h2 { color: var(--white); }
.yt-header p  { color: rgba(255,255,255,.62); font-size: .88rem; margin-top: 10px; }

/* Video grid — 1 video at launch, 2+ later */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}
.yt-video {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,168,130,.14);
  overflow: hidden;
  transition: transform .4s var(--ease-expo), box-shadow .4s;
}
.yt-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.yt-embed-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}
.yt-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.yt-video-info { padding: 20px 22px 24px; }
.yt-tag {
  display: inline-block;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.yt-video-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.yt-video-info p {
  font-size: .78rem;
  line-height: 1.72;
  color: rgba(255,255,255,.55);
}
.yt-channel-cta { text-align: center; }
.yt-sub-note {
  font-size: .72rem;
  color: rgba(255,255,255,.32);
  margin-top: 12px;
  letter-spacing: .08em;
}

/* ────────────────────────────────────────
   47. FOOTER SOCIAL LINKS
──────────────────────────────────────── */
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .3s;
}
.footer-social-link:hover { color: var(--gold); }
.footer-social-link svg { flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .yt-grid { grid-template-columns: 1fr; }
  .yt-section { padding: 60px 20px; }
}
@media (max-width: 520px) {
  .yt-grid { grid-template-columns: 1fr; }
  .footer-socials { flex-direction: column; gap: 12px; }
}

/* ────────────────────────────────────────
   48. GOOGLE REVIEWS STRIP
──────────────────────────────────────── */
.google-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px var(--section-h);
}
.google-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.gs-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.gs-g-icon { width: 36px; height: 36px; flex-shrink: 0; }
.gs-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--dark); line-height: 1;
  display: block;
}
.gs-stars {
  color: #f4b400;
  font-size: .85rem;
  letter-spacing: 2px;
  display: block;
  margin: 2px 0;
}
.gs-count {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
}
.gs-divider {
  width: 1px; height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.gs-reviews {
  display: flex;
  gap: 14px;
  flex: 1;
  overflow: hidden;
  flex-wrap: wrap;
}
.gs-card {
  background: var(--cream);
  padding: 14px 18px;
  min-width: 200px;
  flex: 1;
  border-left: 2px solid #f4b400;
}
.gs-card-stars {
  color: #f4b400;
  font-size: .72rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.gs-card-text {
  font-size: .75rem;
  line-height: 1.65;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 6px;
}
.gs-card-name {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.gs-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  font-family: 'Jost', sans-serif;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s;
  border-radius: 2px;
}
.gs-btn-write {
  background: var(--gold-mid);
  color: var(--white);
  border: none;
}
.gs-btn-write:hover { background: var(--gold-deep); }
.gs-btn-read {
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--border);
}
.gs-btn-read:hover { border-color: var(--gold-mid); color: var(--gold-mid); }

/* ────────────────────────────────────────
   49. FLOATING WHATSAPP BUTTON
──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 450;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-spring), box-shadow .3s, padding .3s;
  white-space: nowrap;
}
.wa-float svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.wa-float-label {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  max-width: 80px;
  overflow: hidden;
  transition: max-width .35s, opacity .35s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
/* Collapsed on mobile to just icon */
@media (max-width: 520px) {
  .wa-float { padding: 13px; border-radius: 50%; bottom: 88px; right: 14px; }
  .wa-float-label { max-width: 0; opacity: 0; padding: 0; }
}

/* ────────────────────────────────────────
   50. GOOGLE REVIEWS — RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 860px) {
  .google-strip { padding: 20px; }
  .gs-divider { display: none; }
  .gs-reviews { display: none; } /* Show only rating + buttons on mobile */
  .google-strip-inner { gap: 18px; justify-content: space-between; }
  .gs-actions { flex-direction: row; }
}
@media (max-width: 520px) {
  .gs-actions { flex-direction: column; width: 100%; }
  .gs-btn { width: 100%; }
}

/* ────────────────────────────────────────
   51. PERFORMANCE — content-visibility
   Tells browser to skip rendering off-screen
   sections until user scrolls near them
──────────────────────────────────────── */
.yt-section,
.insta-section,
.testimonial-section,
.proof-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ────────────────────────────────────────
   52. IMAGE LOADING SKELETON
   Shows a warm placeholder while images load
──────────────────────────────────────── */
.masonry-item img {
  background: var(--cream-dark);
  min-height: 200px;
}
.masonry-item img::before {
  content: '';
  display: block;
  background: linear-gradient(
    90deg,
    var(--cream-dark) 25%,
    var(--cream-deep) 50%,
    var(--cream-dark) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  position: absolute;
  inset: 0;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ────────────────────────────────────────
   53. HERO PRICE HINT
──────────────────────────────────────── */
.hero-price-hint {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  color: var(--mid);
  margin-top: -20px;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.hero-price-hint strong { color: var(--gold-mid); font-weight: 500; }

/* ────────────────────────────────────────
   54. REFERRAL STRIP
──────────────────────────────────────── */
.referral-strip {
  background: #fffbf2;
  border-top: 1px solid rgba(196,168,130,.2);
  border-bottom: 1px solid rgba(196,168,130,.2);
  padding: 18px var(--section-h);
  text-align: center;
}
.referral-strip p {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
}
.referral-strip a {
  color: var(--gold-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
