/* ============================================================
   VM Modular × Rajapushpa Imperia — design system v2
   Framed-canvas hero + warm liquid-glass, calm motion.
   Tokens extracted from vmmodular.com Webflow CSS (live brand):
   ivory #FBF8F0 · forest #06281E · brass #CEAB3C · sage #586F68
   Type: Chiefland (display) · Work Sans (body)
   ============================================================ */

@font-face { font-family: 'Chiefland'; src: url('../assets/fonts/Chiefland-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Chiefland'; src: url('../assets/fonts/Chiefland-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Chiefland'; src: url('../assets/fonts/Chiefland-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Chiefland'; src: url('../assets/fonts/Chiefland-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Chiefland'; src: url('../assets/fonts/Chiefland-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
  --ivory: #FBF8F0;
  --ivory-deep: #F3EBD1;
  --forest-900: #06281E;
  --forest-800: #043F2D;
  --forest-600: #38534B;
  --sage: #586F68;
  --brass: #CEAB3C;
  --brass-light: #E4D194;
  --white: #FFFFFF;

  --font-display: 'Chiefland', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, 'Segoe UI', sans-serif;

  --hairline-dark: rgba(6, 40, 30, 0.14);
  --hairline-light: rgba(251, 248, 240, 0.18);

  --space-1: 0.5rem; --space-2: 1rem; --space-3: 1.5rem;
  --space-4: 2.5rem; --space-5: 4rem; --space-6: 6rem;

  --radius: 0.75rem;          /* inputs, todo-chip soften automatically */
  --radius-md: 1.25rem;       /* tiles: stats, journey, testimonials */
  --radius-lg: 1.5rem;        /* cards: game, locked, note, slider, price */
  --radius-xl: 2rem;          /* hero-grade: teaser figures, gate form */
  --radius-pill: 999px;

  --frame-gap: 12px;          /* hero framed canvas */
  --frame-radius: 1.5rem;

  --ease-calm: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-reveal: 0.8s;
  --dur-hover: 0.3s;
  --reveal-distance: 16px;

  --container: 72rem;
  --shadow-soft: 0 1px 2px rgba(6, 40, 30, 0.04),
                 0 24px 64px -32px rgba(6, 40, 30, 0.22);
  --shadow-calm: 0 10px 40px -14px rgba(6, 40, 30, 0.16);
  --shadow-float: 0 28px 70px -28px rgba(6, 40, 30, 0.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--forest-900);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }
h1 { font-size: clamp(2.3rem, 7.5vw, 4.3rem); line-height: 1.06; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 5.2vw, 3.1rem); line-height: 1.12; letter-spacing: -0.01em;
     margin-bottom: var(--space-3); max-width: 24ch; text-wrap: balance; }
h3 { line-height: 1.2; letter-spacing: 0; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--brass); }
.section-forest h2 em { color: var(--brass-light); }
.kicker {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); margin-bottom: var(--space-2);
}
.kicker-gold { color: var(--brass); }
.kicker-light { color: var(--brass-light); }
.section-intro { max-width: 38rem; font-size: 1.1rem; line-height: 1.7; color: var(--forest-600); margin-bottom: var(--space-4); }
.section-forest .section-intro { color: rgba(251, 248, 240, 0.78); }
.section-close h2, .gate-result h3 { margin-inline: auto; }
.sub-heading { font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin: var(--space-5) 0 var(--space-3); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 56rem; }
.section { padding: var(--space-6) 0; }
@media (min-width: 760px) { .section { padding: 7.5rem 0; } }
.section-ivory { background: var(--ivory); }
.section-forest { background: var(--forest-900); color: var(--ivory); }
.section-forest h2, .section-forest h3 { color: var(--ivory); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 0.85rem 1.8rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; text-align: center;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--dur-hover) var(--ease-calm), background var(--dur-hover) ease,
              color var(--dur-hover) ease, border-color var(--dur-hover) ease,
              box-shadow var(--dur-hover) ease;
}
.btn:active { transform: scale(0.99); }
.btn-gold { background: var(--brass); color: var(--forest-900); }
.btn-gold:hover { background: var(--brass-light); }
.btn-forest { background: var(--forest-900); color: var(--ivory); }
.btn-forest:hover { background: var(--forest-800); }
.btn-ghost {
  border-color: rgba(251, 248, 240, 0.30); color: var(--ivory);
  background: rgba(251, 248, 240, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(251, 248, 240, 0.16);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-light); }
.btn-outline { border-color: var(--forest-900); color: var(--forest-900); background: transparent; }
.btn-outline:hover { background: var(--forest-900); color: var(--ivory); }
.btn-whatsapp { background: #1FA855; color: var(--white); }
.btn-whatsapp:hover { background: #178A45; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.btn-block { display: block; width: 100%; }
@media (hover: hover) {
  .btn:hover { transform: scale(1.03); }
  .btn-block:hover { transform: translateY(-1px); }  /* full-width buttons don't scale */
}

/* ---------- glass ----------
   .glass        over imagery (renders/photos): real blur, ivory hairline
   .glass-strong over imagery, frosted panel grade: heavy blur
   .glass-dark   on flat forest sections: translucency + top-light, NO blur
   .glass-light  on ivory sections: milk-glass white, forest hairline      */
.glass, .glass-strong, .glass-dark, .glass-light {
  position: relative;
  border-radius: var(--radius-lg);
}
.glass {
  background: rgba(251, 248, 240, 0.04);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(8px) saturate(1.15);
  backdrop-filter: blur(8px) saturate(1.15);
  box-shadow: inset 0 1px 1px rgba(251, 248, 240, 0.10);
}
.glass-strong {
  background: rgba(251, 248, 240, 0.06);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(50px) saturate(1.3);
  backdrop-filter: blur(50px) saturate(1.3);
  box-shadow:
    4px 4px 12px rgba(4, 32, 23, 0.08),
    inset 0 1px 1px rgba(251, 248, 240, 0.15);
}
.glass-dark {
  background: linear-gradient(180deg, rgba(251, 248, 240, 0.055), rgba(251, 248, 240, 0.025));
  box-shadow: inset 0 1px 0 rgba(251, 248, 240, 0.08);
}
.glass-light {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: var(--shadow-calm), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}
/* 1.4px gradient hairline ring — mask-composite trick, warm alphas */
.glass::before, .glass-strong::before, .glass-dark::before, .glass-light::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}
.glass::before, .glass-dark::before {
  background: linear-gradient(180deg,
    rgba(251, 248, 240, 0.40), rgba(251, 248, 240, 0.12) 20%,
    rgba(251, 248, 240, 0.03) 40%, rgba(251, 248, 240, 0.03) 60%,
    rgba(251, 248, 240, 0.12) 80%, rgba(251, 248, 240, 0.40));
}
.glass-strong::before {
  background: linear-gradient(180deg,
    rgba(251, 248, 240, 0.50), rgba(251, 248, 240, 0.18) 20%,
    rgba(251, 248, 240, 0.05) 40%, rgba(251, 248, 240, 0.05) 60%,
    rgba(251, 248, 240, 0.18) 80%, rgba(251, 248, 240, 0.50));
}
.glass-light::before {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.95), rgba(6, 40, 30, 0.06) 25%,
    rgba(6, 40, 30, 0.04) 75%, rgba(6, 40, 30, 0.12));
}

/* ---------- header bits (nav lives inside the hero frame) ---------- */
.header-logo { width: clamp(64px, 9vw, 86px); }

/* Inline official lockup (Asset 2-thick.svg): mark + wordmark recolored per context,
   gold diamond keeps its brand gradient */
.logo-lockup { display: block; height: auto; }
.logo-lockup .lg-mark { fill: #fff; }
.logo-lockup .lg-diamond { fill: #fff; }   /* overrides the inline gold gradient — pure-white logo */
.logo-lockup .lg-text {
  fill: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 54.63px;
  letter-spacing: 0.02em;
}
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  color: var(--ivory); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.03em; border-bottom: 1px solid var(--hairline-light); padding-bottom: 1px;
}
@media (max-width: 540px) { .header-phone { display: none; } }

/* ---------- specimen label: glass caption chip ---------- */
.specimen-label {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory);
  background: rgba(6, 40, 30, 0.42);
  border: 1px solid rgba(251, 248, 240, 0.22);
  box-shadow: inset 0 1px 0 rgba(251, 248, 240, 0.18);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
}
.specimen-label em { font-style: normal; color: var(--brass-light); }
.teaser-item .specimen-label { position: absolute; left: 0.9rem; bottom: 0.9rem; }

/* ---------- hero: framed canvas ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: var(--frame-gap);
  border-radius: var(--frame-radius);
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-900);
  min-height: calc(100vh - (var(--frame-gap) * 2));  /* fallback — must precede svh line */
  min-height: calc(100svh - (var(--frame-gap) * 2));
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; transform: translateZ(0); }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% center;
  transform-origin: 62% 50%;
  animation: hero-settle 16s var(--ease-calm) both;
  will-change: transform;
}
@keyframes hero-settle {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4, 32, 23, 0.55) 0%,
      rgba(4, 32, 23, 0.22) 26%,
      rgba(4, 32, 23, 0.26) 56%,
      rgba(4, 32, 23, 0.70) 100%),
    radial-gradient(ellipse 120% 80% at 50% 48%, rgba(4, 32, 23, 0.42), transparent 72%);
}

/* nav inside the frame */
.hero-nav {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem;
}

/* centered text stack */
.hero-center {
  position: relative; z-index: 2;
  flex: 1 1 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--ivory);
  padding: 2.25rem 1.25rem 2.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.4rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.hero-center h1 { max-width: 16ch; margin: 0 auto var(--space-3); text-wrap: balance; }
.hero-sub {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: rgba(251, 248, 240, 0.85);
  max-width: 32rem; margin: 0 auto;
}
.hero-label {
  display: block;                       /* inline-flex breaks multi-line wrapping */
  background: transparent; border: 0; box-shadow: none; padding: 0;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  color: rgba(251, 248, 240, 0.6);
  font-size: 0.66rem; letter-spacing: 0.2em; line-height: 1.8;
  max-width: 30ch;
  margin-top: 1.6rem;
}

/* bottom dock — mobile: in-flow, stat floats above a full-width ivory tab */
.hero-dock { position: relative; z-index: 4; margin-top: auto; }
.hero-stat {
  display: flex; flex-direction: column; align-items: flex-start;
  width: fit-content;
  margin: 0 0.9rem 0.9rem;
  padding: 0.95rem 1.15rem;
  border-radius: 1.25rem;
  color: var(--ivory);
}
.hero-stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(251, 248, 240, 0.88); margin-top: 0.2rem; }
.hero-stat-cert {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(251, 248, 240, 0.55); margin-top: 0.15rem;
}
.hero-stat-pill {
  display: inline-block; margin-top: 0.75rem;
  padding: 0.5rem 1.05rem; border-radius: var(--radius-pill);
  background: var(--ivory); color: var(--forest-900);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform var(--dur-hover) var(--ease-calm), background var(--dur-hover) ease;
}
.hero-stat-pill:hover { transform: scale(1.04); background: var(--white); }

/* faux-cutout corner CTA — ivory card flush against the frame edges;
   the fillet SVGs fill the concave slivers at the junctions.
   NO transform on .hero-corner itself (would detach it from the frame). */
.hero-corner {
  position: relative;
  display: flex; align-items: center; gap: 0.9rem;
  width: 100%;
  background: var(--ivory); color: var(--forest-900);
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 1rem 1.15rem;
  text-decoration: none;
}
.hero-corner-cut {
  display: none;   /* mobile: full-width tab with rounded top corners needs no fillets */
  position: absolute; bottom: 100%;
  width: 24px; height: 24px;
  color: var(--ivory);
  pointer-events: none;
}
.hero-corner-cut svg { display: block; width: 100%; height: 100%; }
.hero-corner-cut-a { right: 0; }
.hero-corner-cut-b { left: 0; transform: scaleX(-1); }
.hero-corner-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(6, 40, 30, 0.28);
  color: var(--forest-900);
  transition: transform var(--dur-hover) var(--ease-calm), background var(--dur-hover) ease, border-color var(--dur-hover) ease;
}
.hero-corner:hover .hero-corner-icon,
.hero-corner:focus-visible .hero-corner-icon {
  background: var(--brass); border-color: var(--brass);
  transform: scale(1.05);
}
.hero-corner:focus-visible { outline: 2px solid var(--brass); outline-offset: -4px; }
.hero-corner-text strong {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; line-height: 1.15;
}
.hero-corner-text span { font-size: 0.78rem; color: var(--sage); }

/* desktop layer */
@media (min-width: 760px) {
  :root { --frame-gap: 20px; --frame-radius: 3rem; }

  .hero-nav { padding: 1.6rem 2.2rem; }
  .hero-center { padding: 3rem 2rem 8rem; }
  .hero-label { margin-top: 2rem; max-width: none; }

  .hero-dock { position: static; margin: 0; }      /* children dock to .hero */
  .hero-stat {
    position: absolute;
    left: clamp(1.4rem, 3vw, 2.4rem);
    bottom: clamp(1.4rem, 3vw, 2.4rem);
    margin: 0;
    max-width: 16.5rem;
    padding: 1.3rem 1.45rem;
    border-radius: 1.5rem;
  }
  .hero-corner {
    position: absolute; right: 0; bottom: 0;
    width: min(23rem, 36vw);
    border-radius: 2rem 0 0 0;
    padding: 1.5rem 1.7rem 1.7rem;
    gap: 1.05rem;
  }
  .hero-corner-cut { display: block; width: 36px; height: 36px; }   /* desktop: real corner cutout */
  .hero-corner-cut-b { left: auto; right: 100%; bottom: 0; transform: none; }
  .hero-corner-icon { width: 52px; height: 52px; }
  .hero-corner-text strong { font-size: 1.35rem; }
}

/* #close still uses this */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: var(--space-3); }

/* ---------- teaser ---------- */
.teaser-grid { display: grid; gap: var(--space-3); }
@media (min-width: 760px) {
  .teaser-grid { grid-template-columns: repeat(12, 1fr); }
  .teaser-item:nth-child(1) { grid-column: 1 / 8; }
  .teaser-item:nth-child(2) { grid-column: 8 / 13; align-self: end; }
  .teaser-item:nth-child(3) { grid-column: 3 / 11; }
}
.teaser-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-calm);
}
.teaser-item img { width: 100%; transition: transform 1.2s var(--ease-calm); }
@media (hover: hover) {
  .teaser-item:hover img { transform: scale(1.03); }
}
.note-card {
  position: relative;
  margin-top: var(--space-5);
  padding: var(--space-4);
  max-width: 44rem;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-calm), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}
.note-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.95), rgba(6, 40, 30, 0.06) 25%,
    rgba(6, 40, 30, 0.04) 75%, rgba(6, 40, 30, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none; z-index: 5;
}
.note-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.note-card h3::before {
  content: ""; display: block; width: 2rem; height: 2px;
  background: var(--brass); border-radius: 2px; margin-bottom: 0.9rem;
}
.note-card p { color: var(--forest-600); }

/* ---------- game ---------- */
.game-shell { margin-top: var(--space-2); }
.game-card {
  position: relative;
  background: linear-gradient(180deg, rgba(251, 248, 240, 0.06), rgba(251, 248, 240, 0.025));
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(251, 248, 240, 0.08),
    0 24px 60px -30px rgba(0, 0, 0, 0.45);
}
.game-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(251, 248, 240, 0.40), rgba(251, 248, 240, 0.12) 20%,
    rgba(251, 248, 240, 0.03) 40%, rgba(251, 248, 240, 0.03) 60%,
    rgba(251, 248, 240, 0.12) 80%, rgba(251, 248, 240, 0.40));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none; z-index: 5;   /* pointer-events none keeps buttons clickable */
}
.game-progress {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1.4rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass-light); border-bottom: 1px solid rgba(251, 248, 240, 0.10);
}
.game-image { position: relative; aspect-ratio: 16 / 9; background: rgba(4, 32, 23, 0.3); }
.game-image img, .game-image svg { width: 100%; height: 100%; object-fit: cover; }
.game-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(251, 248, 240, 0.10); }
.game-actions button {
  padding: 1.15rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  background: rgba(251, 248, 240, 0.05); color: var(--ivory);
  border: 0; cursor: pointer;
  transition: background 0.3s var(--ease-calm);
}
.game-actions button:hover { background: rgba(251, 248, 240, 0.12); }
.game-reveal { padding: 1.6rem 1.5rem 1.8rem; text-align: center; }
.game-reveal .verdict { font-family: var(--font-display); font-size: 1.5rem; color: var(--brass-light); display: block; margin-bottom: 0.3rem; }
.game-reveal p { color: rgba(251, 248, 240, 0.85); margin-bottom: 1rem; }
.game-end { padding: var(--space-4) 1.5rem; text-align: center; }
.game-end .score { font-family: var(--font-display); font-size: clamp(2.6rem, 9vw, 4rem); color: var(--brass); display: block; line-height: 1; margin-bottom: 0.8rem; }
.game-end p { max-width: 30rem; margin: 0 auto var(--space-3); color: rgba(251, 248, 240, 0.85); }
.guess-flash { animation: flash 0.45s var(--ease-calm); }
@keyframes flash { 0% { opacity: 0.2; } 100% { opacity: 1; } }

/* ---------- locked gallery ---------- */
.locked-grid { display: grid; gap: var(--space-3); margin-bottom: var(--space-5); }
@media (min-width: 720px) { .locked-grid { grid-template-columns: repeat(3, 1fr); } }
.locked-card {
  position: relative;
  background: rgba(255, 255, 255, 0.66);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: var(--space-3);
  box-shadow: var(--shadow-calm), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}
.locked-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.95), rgba(6, 40, 30, 0.06) 25%,
    rgba(6, 40, 30, 0.04) 75%, rgba(6, 40, 30, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none; z-index: 5;   /* "Unlock free" stays clickable */
}
.locked-thumbs { position: relative; display: grid; grid-template-columns: 2fr 1fr; gap: 2px; margin-bottom: var(--space-2); }
.locked-thumbs img:first-child { grid-row: span 2; height: 100%; object-fit: cover; }
.locked-thumbs img { width: 100%; height: 100%; object-fit: cover; filter: blur(6px) saturate(1.05); transform: scale(1.06); transition: transform 0.6s var(--ease-calm); }
.locked-thumbs::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 40, 30, 0.45), rgba(6, 40, 30, 0.15) 55%, rgba(6, 40, 30, 0.05));
}
.lock-badge {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; display: grid; place-items: center;
  background: rgba(6, 40, 30, 0.50);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  color: var(--brass-light); border-radius: 50%;
  border: 1px solid rgba(228, 209, 148, 0.55);
  box-shadow: 0 8px 24px -8px rgba(4, 32, 23, 0.50), inset 0 1px 0 rgba(251, 248, 240, 0.25);
  transition: transform var(--dur-hover) var(--ease-calm);
}
@media (hover: hover) {
  .locked-card:hover .locked-thumbs img { transform: scale(1.1); }
  .locked-card:hover .lock-badge { transform: translate(-50%, -50%) scale(1.06); }
}
.locked-card h3 { font-size: 1.35rem; padding: 0 1.2rem; }
.locked-card p { padding: 0 1.2rem; color: var(--sage); font-size: 0.9rem; margin: 0.2rem 0 1rem; }
.locked-card .btn { width: calc(100% - 2.4rem); margin: 0 1.2rem; }

/* ---------- form ---------- */
.gate-form-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.60);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  backdrop-filter: blur(28px) saturate(1.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float), inset 0 1px 1px rgba(255, 255, 255, 0.85);
  padding: clamp(1.6rem, 4vw, 3rem);
  max-width: none; margin: 0 auto;   /* fill the container so it lines up with the locked cards */
}
/* the form stays a readable width centered in the wide panel; the unlocked
   gallery + configurator (.gate-result) use the full panel width */
#gate-form { max-width: 48rem; margin: 0 auto; }
.gate-form-wrap::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.95), rgba(6, 40, 30, 0.06) 25%,
    rgba(6, 40, 30, 0.04) 75%, rgba(6, 40, 30, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none; z-index: 5;   /* MUST stay none — spans the whole form */
}
.form-title { font-size: 1.5rem; margin-bottom: var(--space-3); }
.plan-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr)); gap: 0.6rem; margin-bottom: var(--space-3); }
.plan-option input { position: absolute; opacity: 0; }
.plan-option span {
  display: flex; flex-direction: column; gap: 0.15rem; padding: 0.85rem 1rem;
  border: 1px solid rgba(6, 40, 30, 0.14); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.50);
  font-size: 0.82rem; color: var(--sage); cursor: pointer; height: 100%;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease,
              transform 0.3s var(--ease-calm), box-shadow 0.3s ease;
}
.plan-option strong { font-size: 0.95rem; color: var(--forest-900); }
.plan-option:hover span { border-color: rgba(6, 40, 30, 0.30); transform: translateY(-1px); }
.plan-option input:checked + span {
  border-color: var(--forest-900); background: var(--forest-900);
  color: rgba(251, 248, 240, 0.72);
  box-shadow: inset 0 1px 0 rgba(251, 248, 240, 0.15);
}
.plan-option input:checked + span strong { color: var(--ivory); }
.plan-option input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }

.subband { margin-bottom: var(--space-3); }
.field-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin: var(--space-3) 0 0.6rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip input { position: absolute; opacity: 0; }
.chip span {
  display: inline-block; padding: 0.5rem 1.05rem; font-size: 0.85rem;
  border: 1px solid rgba(6, 40, 30, 0.16); border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.50); color: var(--forest-600);
  cursor: pointer; transition: all 0.3s var(--ease-calm);
}
.chip:hover span { border-color: rgba(6, 40, 30, 0.35); }
.chip input:checked + span { background: var(--forest-900); color: var(--ivory); border-color: var(--forest-900); }
.chip input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }

.field-grid { display: grid; gap: 1rem; margin-top: var(--space-3); }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; letter-spacing: 0.04em; }
.field-hint { font-weight: 400; color: var(--sage); }
.field input, .field select {
  width: 100%; padding: 0.85rem 1.1rem; font: inherit; font-size: 1rem;
  border: 1px solid rgba(6, 40, 30, 0.14); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75); color: var(--forest-900);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(206, 171, 60, 0.20);
}
.field-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#gate-submit { margin-top: var(--space-4); }
.form-fineprint { font-size: 0.8rem; color: var(--sage); text-align: center; margin-top: 0.8rem; }
.form-error { color: #A03524; font-size: 0.9rem; text-align: center; margin-top: 0.8rem; }

.gate-result { text-align: center; }
.gate-result h3 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: var(--space-3); }
.gate-result h3 em { color: var(--brass); }
.result-body { max-width: 34rem; margin: 0 auto var(--space-3); color: var(--forest-600); }
.reveal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin: 0 0 var(--space-3); }
@media (min-width: 680px) { .reveal-grid { grid-template-columns: repeat(3, 1fr); } }
.reveal-fig { position: relative; margin: 0; }
.reveal-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-calm); display: block; cursor: zoom-in; transition: transform 0.4s var(--ease-calm); }
@media (hover: hover) { .reveal-fig:hover img { transform: scale(1.02); } }
.reveal-fig figcaption {
  position: absolute; left: 0.55rem; bottom: 0.55rem;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory); background: rgba(6, 40, 30, 0.62);
  padding: 0.26rem 0.62rem; border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* ---------- before/after slider ---------- */
.ba-slider {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-calm);
  user-select: none; touch-action: pan-y; margin-bottom: var(--space-2);
}
.ba-slider img, .ba-slider .ba-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--ba-pos, 50%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); width: 2px;
  background: rgba(251, 248, 240, 0.85); z-index: 3; transform: translateX(-1px);
  box-shadow: 0 0 20px rgba(4, 32, 23, 0.35);
}
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(251, 248, 240, 0.22);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  color: var(--ivory); font-size: 0.75rem; letter-spacing: 0.06em;
  border: 1px solid rgba(251, 248, 240, 0.65);
  border-radius: 50%;
  box-shadow: 0 8px 24px -6px rgba(4, 32, 23, 0.45), inset 0 1px 0 rgba(251, 248, 240, 0.35);
}
.ba-tag { position: absolute; top: 1rem; z-index: 2; }
.ba-tag-left { left: 1rem; }
.ba-tag-right { right: 1rem; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; -webkit-appearance: none; }
.ba-caption { font-size: 0.9rem; color: var(--sage); margin-bottom: var(--space-4); }

/* ---------- proof ---------- */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin: var(--space-4) 0; }
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: linear-gradient(180deg, rgba(251, 248, 240, 0.05), rgba(251, 248, 240, 0.02));
  border: 1px solid rgba(251, 248, 240, 0.09);
  border-top-color: rgba(251, 248, 240, 0.20);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(251, 248, 240, 0.06);
}
.stat { padding: 1.4rem 1.4rem 1.2rem; }
.stat strong { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); color: var(--brass); display: block; line-height: 1.1; }
.stat span { font-size: 0.88rem; color: rgba(251, 248, 240, 0.7); }
.founder-line {
  max-width: 44rem; font-size: 1.15rem; color: rgba(251, 248, 240, 0.88);
  border-left: 2px solid rgba(206, 171, 60, 0.60);
  padding-left: var(--space-3); margin: var(--space-4) 0;
}
.workshop-placeholder {
  background: rgba(251, 248, 240, 0.04);
  border: 1px solid rgba(251, 248, 240, 0.22);
  border-radius: var(--radius-md);
  padding: var(--space-3); max-width: 34rem;
  font-family: var(--font-display); font-size: 1.2rem;
}

/* journey timeline — vertical on mobile, horizontal on desktop */
.timeline { list-style: none; position: relative; display: grid; gap: var(--space-3); }
.timeline::before {
  content: ""; position: absolute;
  left: calc(1rem - 0.5px); top: 0.6rem; bottom: 0.6rem; width: 1px;
  background: rgba(251, 248, 240, 0.18);
}
.timeline-step { position: relative; padding-left: 3rem; }
.timeline-dot {
  position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.9rem; color: var(--brass);
  background: var(--forest-800); border: 1px solid rgba(206, 171, 60, 0.55);
  border-radius: 50%; z-index: 1;
}
.timeline-step h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.timeline-step p { font-size: 0.85rem; color: rgba(251, 248, 240, 0.65); margin-bottom: 0.3rem; }
.timeline-meta { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-light); }
@media (min-width: 760px) {
  .timeline { grid-template-columns: repeat(5, 1fr); gap: var(--space-2); }
  .timeline::before { left: 0; right: 0; top: 1rem; bottom: auto; width: auto; height: 1px; }
  .timeline-step { padding-left: 0; padding-top: 2.8rem; }
}

.reviews-badge {
  display: inline-flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  margin-bottom: var(--space-3);
  padding: 0.6rem 1.15rem; border-radius: var(--radius-pill);
  background: rgba(251, 248, 240, 0.05); border: 1px solid rgba(251, 248, 240, 0.16);
  text-decoration: none; color: var(--ivory);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.reviews-badge:hover { border-color: rgba(206, 171, 60, 0.5); background: rgba(251, 248, 240, 0.08); }
.reviews-stars { color: var(--brass-light); letter-spacing: 0.08em; font-size: 0.92rem; }
.reviews-count { font-size: 0.9rem; color: rgba(251, 248, 240, 0.82); }
.reviews-count strong { color: var(--ivory); }
.reviews-cta { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-light); }
.testimonial-grid { display: grid; gap: var(--space-3); align-items: stretch; }
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
/* light Google-review cards on the forest section */
.testimonial-grid blockquote {
  display: flex; flex-direction: column; margin: 0;
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem; box-shadow: var(--shadow-calm);
}
.review-quote { font-family: var(--font-display); font-size: 2.8rem; line-height: 0.5; height: 1.1rem; color: var(--forest-900); opacity: 0.85; }
.review-stars { color: #E3A92C; letter-spacing: 0.14em; font-size: 0.95rem; margin: 0.7rem 0; }
.testimonial-grid p { font-size: 0.95rem; line-height: 1.6; color: var(--forest-600); margin: 0; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding-top: 1.1rem; }
.review-author::before { content: ""; }
.review-author { border-top: 1px solid var(--hairline-dark); }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: var(--forest-900); color: var(--brass-light);
  display: grid; place-items: center; font-weight: 600; font-size: 0.9rem;
}
.review-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.review-id { display: flex; flex-direction: column; line-height: 1.3; }
.review-id strong { color: var(--forest-900); font-size: 0.95rem; }
.review-id span { color: var(--sage); font-size: 0.82rem; }

/* ---------- pricing ---------- */
.price-table {
  list-style: none; max-width: 40rem;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  border-radius: var(--radius-lg);
  padding: 0.4rem 1.6rem;
  box-shadow: var(--shadow-calm), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}
.price-table::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.95), rgba(6, 40, 30, 0.06) 25%,
    rgba(6, 40, 30, 0.04) 75%, rgba(6, 40, 30, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none; z-index: 5;
}
.price-table li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(6, 40, 30, 0.08);
}
.price-table li:last-child { border-bottom: 0; }
.price-table span:first-child { font-size: 1rem; }
.price-table strong { font-family: var(--font-display); font-size: 1.25rem; white-space: nowrap; }
.price-footnote { font-size: 0.9rem; color: var(--sage); margin-top: var(--space-2); max-width: 40rem; }

/* ---------- close / dividers / footer ---------- */
.section-close { position: relative; overflow: hidden; text-align: center; }
.section-close::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120%; height: 70%;
  background: radial-gradient(55% 55% at 50% 0%, rgba(206, 171, 60, 0.10), transparent 70%);
  pointer-events: none;
}
.section-close .container { position: relative; z-index: 1; }
.section-close .section-intro { margin-left: auto; margin-right: auto; }
.section-close .hero-ctas { justify-content: center; }

.section-bordered { position: relative; }
.section-bordered::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(72rem, calc(100% - 2.5rem)); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 40, 30, 0.18) 50%, transparent);
}

.site-footer {
  position: relative;
  background: var(--forest-900); color: rgba(251, 248, 240, 0.75);
  padding: var(--space-5) 0 var(--space-4);
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 209, 148, 0.35) 50%, transparent);
}
.footer-logo { width: 110px; margin-bottom: var(--space-4); }
.footer-cols { display: grid; gap: var(--space-3); margin-bottom: var(--space-4); }
@media (min-width: 720px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols h4 { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 0.6rem; }
.footer-cols a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--hairline-light); }
.footer-cols a:hover { color: var(--ivory); }
.footer-fine { font-size: 0.78rem; color: rgba(251, 248, 240, 0.45); line-height: 1.7; }

/* ---------- placeholders / todo ---------- */
.todo-chip {
  display: inline-block;
  padding: 0.05em 0.6em;
  background: transparent;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-pill);
  color: var(--sage);
  font-size: 0.85em;
  font-style: normal;
  white-space: nowrap;
}
.placeholder-note {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  font-style: normal;
  color: var(--sage);
  opacity: 0.5;
  margin-top: var(--space-3);
  max-width: 38rem;
}
.section-forest .placeholder-note { color: var(--ivory); opacity: 0.32; }
.placeholder-note-inline {
  display: block;
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.02em;
  opacity: 0.4;
  margin-top: 0.5rem;
}

/* ---------- lightbox (maximise unlocked renders) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(4, 24, 17, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox-fig { margin: 0; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.lightbox-fig img {
  max-width: min(92vw, 1200px); max-height: 82vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox-cap {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251, 248, 240, 0.7);
}
.lightbox-close {
  position: absolute; top: clamp(0.8rem, 2vw, 1.4rem); right: clamp(0.8rem, 2vw, 1.4rem);
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgba(251, 248, 240, 0.1); color: var(--ivory);
  border: 1px solid rgba(251, 248, 240, 0.25); font-size: 1.5rem; line-height: 1;
  cursor: pointer; transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(251, 248, 240, 0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(251, 248, 240, 0.1); color: var(--ivory);
  border: 1px solid rgba(251, 248, 240, 0.25); font-size: 1.6rem; line-height: 1;
  cursor: pointer; transition: background 0.2s ease;
  display: grid; place-items: center;
}
.lightbox-nav:hover { background: rgba(251, 248, 240, 0.2); }
.lightbox-prev { left: clamp(0.5rem, 2vw, 1.4rem); }
.lightbox-next { right: clamp(0.5rem, 2vw, 1.4rem); }
@media (max-width: 540px) { .lightbox-nav { width: 2.4rem; height: 2.4rem; font-size: 1.3rem; } }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(6, 40, 30, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(251, 248, 240, 0.14);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-calm);
}
.sticky-cta.visible { transform: translateY(0); }
@media (min-width: 760px) { .sticky-cta { display: none; } }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition:
    opacity   var(--dur-reveal) var(--ease-calm) var(--reveal-delay, 0s),
    transform var(--dur-reveal) var(--ease-calm) var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* hero load choreography */
.hero-badge      { --reveal-delay: 0.10s; }
.hero-center h1  { --reveal-delay: 0.22s; }
.hero-sub        { --reveal-delay: 0.34s; }
.hero-label      { --reveal-delay: 0.46s; }
.hero-stat       { --reveal-delay: 0.58s; }
.hero-corner     { --reveal-delay: 0.70s; }

/* section header triplet */
.section .kicker.reveal        { --reveal-delay: 0s; }
.section h2.reveal             { --reveal-delay: 0.09s; }
.section .section-intro.reveal { --reveal-delay: 0.18s; }

/* grids — ≥720px only; on mobile cards stack one-per-viewport and reveal alone */
@media (min-width: 720px) {
  [data-stagger] > .reveal:nth-child(2) { --reveal-delay: 0.09s; }
  [data-stagger] > .reveal:nth-child(3) { --reveal-delay: 0.18s; }
  [data-stagger] > .reveal:nth-child(4) { --reveal-delay: 0.27s; }
  [data-stagger] > .reveal:nth-child(5) { --reveal-delay: 0.36s; }
  [data-stagger] > .reveal:nth-child(6) { --reveal-delay: 0.45s; }
}

/* ---------- assembled pricing + configurator ---------- */
.pricing-block { text-align: left; margin-top: var(--space-4); }
.pricing-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.9rem;
}
.tier-cards, .tier-explainer {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.7rem; margin-bottom: var(--space-3);
}
.tier-card {
  position: relative; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem 1.05rem 1.05rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 40, 30, 0.14); border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-calm), box-shadow 0.3s ease;
}
@media (hover: hover) { .tier-card:hover { transform: translateY(-2px); border-color: rgba(6,40,30,0.3); } }
.tier-card.is-active {
  background: var(--forest-900); border-color: var(--forest-900);
  box-shadow: var(--shadow-calm);
}
.tier-card--static { cursor: default; }
.tier-name { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }
.tier-amt { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--forest-900); line-height: 1.05; }
.tier-blurb { font-size: 0.74rem; color: var(--sage); line-height: 1.4; }
.tier-card.is-active .tier-name { color: var(--brass-light); }
.tier-card.is-active .tier-amt { color: var(--ivory); }
.tier-card.is-active .tier-blurb { color: rgba(251, 248, 240, 0.7); }
.tier-badge {
  position: absolute; top: -0.6rem; right: 0.7rem;
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: var(--forest-900); background: var(--brass); padding: 0.18rem 0.6rem; border-radius: var(--radius-pill);
}

.configurator {
  background: rgba(251, 248, 240, 0.6); border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-md); padding: 0.4rem 1.1rem 1.1rem;
}
.config-head { font-size: 0.78rem; color: var(--sage); padding: 0.9rem 0 0.4rem; letter-spacing: 0.02em; }
.config-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(6, 40, 30, 0.08);
  cursor: pointer; transition: opacity 0.2s ease;
}
.config-row.is-off { opacity: 0.4; }
.config-main { display: flex; align-items: flex-start; gap: 0.6rem; }
.config-text { display: flex; flex-direction: column; gap: 0.18rem; }
.config-name { display: flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; color: var(--forest-900); }
.config-spec { font-size: 0.72rem; color: var(--sage); line-height: 1.45; max-width: 30rem; }
.config-toggle { width: 1.05rem; height: 1.05rem; margin-top: 0.15rem; accent-color: var(--forest-900); cursor: pointer; flex: 0 0 auto; }
.config-lock { width: 1.05rem; height: 1.05rem; margin-top: 0.15rem; display: flex; align-items: center; justify-content: center; color: var(--brass); flex: 0 0 auto; }
.config-price { align-self: flex-start; }
.config-flag {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); border: 1px solid var(--hairline-dark); border-radius: var(--radius-pill);
  padding: 0.1rem 0.5rem; margin-left: 0.2rem;
}
.config-price { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--forest-900); white-space: nowrap; }
.config-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-top: 1rem;
}
.config-total span { font-size: 0.9rem; color: var(--sage); }
.config-total strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--forest-900); }

/* wardrobe add-on */
.config-wardrobe { border-top: 1px dashed rgba(6, 40, 30, 0.18); margin-top: 0.3rem; }
.wardrobe-head { border-bottom: 0; }
.config-flag-add { color: var(--brass); border-color: rgba(206, 171, 60, 0.5); }
.config-add { font-size: 0.85rem; font-weight: 600; color: var(--brass); font-family: var(--font-body); }
.wardrobe-finishes { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 0 0.9rem 1.65rem; }
.wardrobe-finish {
  font-family: var(--font-body); font-size: 0.82rem; color: var(--forest-600);
  background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(6, 40, 30, 0.16);
  border-radius: var(--radius-pill); padding: 0.45rem 0.9rem; cursor: pointer;
  transition: all 0.25s var(--ease-calm);
}
.wardrobe-finish b { color: var(--forest-900); font-weight: 600; }
.wardrobe-finish:hover { border-color: rgba(6, 40, 30, 0.35); }
.wardrobe-finish.is-active { background: var(--forest-900); color: var(--ivory); border-color: var(--forest-900); }
.wardrobe-finish.is-active b { color: var(--brass-light); }
.wardrobe-note { flex-basis: 100%; font-size: 0.7rem; color: var(--sage); opacity: 0.85; margin-top: 0.2rem; }
/* per-bedroom wardrobe pickers */
.wardrobe-beds { display: flex; flex-direction: column; gap: 0.55rem; padding: 0.3rem 0 0.9rem 1.65rem; }
.wardrobe-bed { display: flex; align-items: center; gap: 0.7rem; }
.wardrobe-bed-label { font-size: 0.85rem; color: var(--forest-600); min-width: 5.5rem; }
.wardrobe-select {
  flex: 1; min-width: 0; font: inherit; font-size: 0.85rem; color: var(--forest-900);
  background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(6, 40, 30, 0.16);
  border-radius: var(--radius); padding: 0.42rem 0.6rem; cursor: pointer;
}
.wardrobe-select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(206, 171, 60, 0.18); }
.wardrobe-bed-price { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--forest-900); white-space: nowrap; min-width: 3.4rem; text-align: right; }
.pricing-disclaimer { font-size: 0.72rem; line-height: 1.6; color: var(--sage); opacity: 0.85; margin-top: var(--space-2); }

/* public pricing explainer typical-range row */
.tier-range { font-size: 0.72rem; color: var(--sage); margin-top: 0.1rem; }

/* ---------- fallbacks (keep last) ---------- */
@supports not ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  .glass, .glass-strong { background: rgba(6, 40, 30, 0.55); }
  .glass-light, .note-card, .gate-form-wrap, .locked-card, .price-table { background: rgba(255, 255, 255, 0.94); }
  .specimen-label { background: rgba(6, 40, 30, 0.80); }
  .sticky-cta { background: rgba(6, 40, 30, 0.94); }
  .ba-handle::after { background: var(--ivory); color: var(--forest-900); }
  .lock-badge { background: var(--forest-900); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  .guess-flash { animation: none; }
  .sticky-cta { transition: none; }
  .btn, .teaser-item img, .locked-thumbs img, .lock-badge,
  .hero-stat-pill, .hero-corner-icon { transition: none; }
  .btn:hover, .hero-stat-pill:hover, .plan-option:hover span { transform: none; }
  .hero-corner:hover .hero-corner-icon { transform: none; }
  .teaser-item:hover img { transform: none; }
  .locked-card:hover .locked-thumbs img { transform: scale(1.06); } /* keep blur-edge cover */
  .locked-card:hover .lock-badge { transform: translate(-50%, -50%); }
}
