/* ═══════════════════════════════════════════════════════════════
   Soma Dance Method — cream / forest / gold / blush
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cream:        #f4eee1;
  --cream-deep:   #ece3d0;
  --forest:       #1d2b21;
  --forest-deep:  #16211a;
  --ink:          #2a3527;
  --ink-soft:     #4d5a49;
  --gold:         #b28a4c;
  --gold-soft:    #cfb280;
  --gold-pale:    #e7d7b2;
  --blush:        #ecd9cd;
  --blush-deep:   #e3c9ba;
  --rose:         #c08d7c;
  --rose-ink:     #5f4237;
  --sage:         #7e8d6e;
  --moss:         #57684d;
  --pale:         #efe7d4;

  --serif: "la-mericana", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "mundial", "Jost", "Avenir Next", sans-serif;

  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything, barely there */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

.br-d { display: none; }
@media (min-width: 821px) { .br-d { display: inline; } }

::selection { background: var(--blush); color: var(--forest); }

/* ───────────────────────────── botanicals: shared strokes */
.st-green  { stroke: #57684d; }
.st-sage   { stroke: #8a976f; }
.st-gold   { stroke: #3f5240; }
.st-rose   { stroke: var(--rose); }
.st-pale   { stroke: #cfc9b2; }
.st-gold-f { fill: #7e8d6e; stroke: none; opacity: .6; }
.st-sage-f { fill: #8a976f; stroke: none; opacity: .5; }
.st-rose-f { fill: var(--rose); stroke: none; opacity: .22; }

/* ───────────────────────────── nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 64px);
  transition: background .5s var(--ease-out), padding .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 1px 0 rgba(42, 53, 39, .08);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
}
.wordmark-soma {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: .01em;
}
.wordmark-rest {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 44px);
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color .3s;
}
.nav-links a:hover { color: var(--forest); text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 1px; }
.nav-links a.active { color: var(--forest); text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 1px; }

.nav-cta {
  padding: 11px 26px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  color: var(--forest);
  transition: background .35s, color .35s;
}
.nav-links a.nav-cta:hover { background: var(--moss); color: var(--cream); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .wordmark-rest { display: none; }
}

/* ───────────────────────────── buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 46px;
  border-radius: 999px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .35s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--moss); outline-offset: 4px; }

.btn-gold {
  background: var(--moss);
  color: #f6f1e6;
  box-shadow: 0 10px 30px -12px rgba(87, 104, 77, .6);
}
.btn-gold:hover { background: #4a5d42; box-shadow: 0 16px 36px -12px rgba(87, 104, 77, .7); }

.btn-forest {
  background: var(--moss);
  color: #f6f1e6;
  box-shadow: 0 10px 30px -12px rgba(87, 104, 77, .6);
}
.btn-forest:hover { background: #4a5d42; }

/* ───────────────────────────── hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 120px;
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: -12% -6%;
  z-index: -1;
  background:
    radial-gradient(52% 44% at 78% 16%, rgba(227, 201, 186, .55), transparent 70%),
    radial-gradient(46% 40% at 12% 82%, rgba(138, 151, 111, .28), transparent 70%),
    radial-gradient(40% 36% at 88% 88%, rgba(138, 151, 111, .24), transparent 72%),
    var(--cream);
}

.hero-inner { max-width: 980px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 5.9vw, 78px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest);
  text-wrap: balance;
  max-width: 900px;
  margin: 0 auto 32px;
}

.hero .lede {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: .015em;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0 auto 44px;
}

/* scroll cue */
.hero-scroll {
  display: inline-block;
  margin-top: 10px;
  color: var(--moss);
}
.hero-scroll svg {
  width: 22px;
  height: 42px;
  display: block;
  margin: 0 auto;
  opacity: .5;
}
.hero-scroll:focus-visible { outline: 2px solid var(--moss); outline-offset: 8px; border-radius: 6px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll svg {
    animation: cue-glimmer 3.6s ease-in-out infinite, cue-drift 3.6s ease-in-out infinite;
  }
}
@keyframes cue-glimmer {
  0%, 100% { opacity: .4; filter: drop-shadow(0 0 0 rgba(87, 104, 77, 0)); }
  50%      { opacity: .8; filter: drop-shadow(0 2px 8px rgba(87, 104, 77, .45)); }
}
@keyframes cue-drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* load-in */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lede, .hero .btn, .hero .hero-scroll {
    opacity: 0;
    transform: translateY(22px);
    animation: rise 1.2s var(--ease-out) forwards;
  }
  .hero .lede { animation-delay: .25s; }
  .hero .btn, .hero .hero-scroll { animation-delay: .5s; }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 820px) {
  .hero { text-align: left; }
  .hero-inner { width: 100%; }
  .hero h1 { max-width: none; margin-left: 0; }
  .hero .lede { margin-left: 0; max-width: 560px; }
  .petal-1, .petal-2 { display: none; }
}

.grass {
  position: absolute;
  bottom: -12px;
  width: clamp(150px, 20vw, 250px);
  z-index: 1;
  pointer-events: none;
}
.grass-left  { left: clamp(-30px, 2vw, 70px); }
.grass-right { right: clamp(-40px, 1vw, 50px); transform: scaleX(-1); }

@media (prefers-reduced-motion: no-preference) {
  .sway { animation: sway 9s ease-in-out infinite alternate; transform-origin: 50% 100%; }
  .sway-late { animation-duration: 11s; animation-delay: -4s; }
}
@keyframes sway {
  from { rotate: -1.4deg; }
  to   { rotate: 1.8deg; }
}

/* floating petals */
.petal {
  position: absolute;
  width: 26px;
  pointer-events: none;
  z-index: 0;
}
.petal path { fill: var(--rose); opacity: .3; }
.petal-1 { top: 24%; left: 14%; rotate: -24deg; }
.petal-2 { top: 16%; right: 17%; width: 20px; rotate: 38deg; }
.petal-2 path { fill: var(--rose); opacity: .36; }
.petal-3 { bottom: 26%; right: 30%; width: 17px; rotate: -58deg; }
.petal-4 { top: 20%; left: 12%; rotate: 30deg; }
.petal-4 path { fill: var(--rose); opacity: .38; }
.petal-5 { bottom: 24%; right: 12%; width: 19px; rotate: -40deg; }
.petal-5 path { fill: var(--rose); opacity: .32; }

@media (prefers-reduced-motion: no-preference) {
  .petal { animation: float 12s ease-in-out infinite alternate; }
  .petal-2 { animation-duration: 15s; animation-delay: -6s; }
  .petal-3 { animation-duration: 10s; animation-delay: -3s; }
  .petal-5 { animation-duration: 14s; animation-delay: -5s; }
}
@keyframes float {
  from { translate: 0 -14px; }
  to   { translate: 12px 16px; }
}

/* ───────────────────────────── bands */
.band { position: relative; padding: clamp(96px, 13vw, 170px) clamp(24px, 6vw, 64px); }
.band-cream  { background: var(--cream); }
.band-forest { background: var(--forest); color: var(--pale); }
.band-blush  { background: linear-gradient(180deg, var(--blush), var(--blush-deep)); color: var(--rose-ink); }

.measure      { max-width: 660px; margin: 0 auto; }
.measure-wide { max-width: 860px; margin: 0 auto; text-align: center; }

/* ───────────────────────────── problem band */
.leaf-mark {
  width: 44px;
  margin: 0 auto 38px;
  display: block;
}
.leaf-mark path { stroke: #d9d2c0; }

.problem-line {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.55;
  letter-spacing: .01em;
  color: #e8e2d1;
  opacity: .92;
  text-wrap: balance;
}
.problem-turn {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.15;
  color: var(--pale);
  margin-top: 34px;
}

/* ───────────────────────────── practice */
.practice { padding-bottom: clamp(56px, 7vw, 96px); }
.practice-grid {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.65fr .9fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.practice h2, .story h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -.01em;
  line-height: 1.12;
  margin-bottom: 26px;
}
.practice h2 { color: var(--forest); }
.practice-text p {
  font-size: clamp(18px, 2.1vw, 21px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 710px;
}
.practice-art { display: flex; justify-content: center; }
.flower { width: clamp(150px, 17vw, 230px); }

@media (max-width: 760px) {
  .practice-grid { grid-template-columns: 1fr; gap: 48px; }
  .practice-art { order: -1; }
  .flower { width: 120px; }
}

/* ───────────────────────────── vocabulary tabs */
.vocab {
  max-width: 1120px;
  margin: clamp(56px, 7vw, 90px) auto 0;
}
.vocab-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.6vw, 18px);
  margin-bottom: clamp(34px, 4vw, 52px);
}
.vtab {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--moss);
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.vtab:hover { background: rgba(87, 104, 77, .12); }
.vtab.active { background: var(--moss); color: #f6f1e6; }
.vtab:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; }

.vocab-panel { display: none; }
.vocab-panel.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}
@media (prefers-reduced-motion: no-preference) {
  .vocab-panel.active { animation: panelin .55s var(--ease-out); }
}
@keyframes panelin {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vocab-tile { margin: 0; }
.vocab-slot {
  aspect-ratio: 4 / 5;
  background: linear-gradient(170deg, #efe8d9, #e9dfcb);
  border: 1.5px dashed #c9bda2;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vocab-slot span { font-size: 28px; color: var(--moss); opacity: .7; }
.vocab-slot.filled { border: none; overflow: hidden; }
.vocab-slot.filled video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.vocab-panel .vocab-tile:first-child .vocab-slot {
  border: 1.5px solid var(--rose);
  box-shadow:
    0 4px 14px rgba(192, 141, 124, .18),
    0 18px 44px -10px rgba(192, 141, 124, .38);
}
.vocab-panel .vocab-tile:first-child .vocab-slot span { color: var(--rose); }
.vocab-tile figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .vocab-panel.active { grid-template-columns: repeat(2, 1fr); }
}

/* ───────────────────────────── how it works */
.how { padding-top: clamp(50px, 6vw, 84px); }
.how-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4.5vw, 60px);
}
.how-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 31px);
  color: var(--forest);
  margin-bottom: 12px;
}
.how-item p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 300px;
}
.how-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  color: #a96b5c;
  text-align: center;
  margin: 0 auto clamp(60px, 7.5vw, 95px);
  max-width: 640px;
}
@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-item p { max-width: 100%; }
}
@media (prefers-reduced-motion: no-preference) {
  .how-grid .reveal:nth-child(2) { transition-delay: .25s; }
  .how-grid .reveal:nth-child(3) { transition-delay: .5s; }
}

/* ───────────────────────────── polyvagal ladder */
.ladder-home {
  background: var(--cream);
  padding: clamp(70px, 9vw, 110px) 24px clamp(60px, 8vw, 100px);
}
.ladder {
  display: flex;
  justify-content: center;
}
.ladder svg { width: clamp(260px, 26vw, 330px); overflow: visible; }

.rung-label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .16em;
  fill: var(--ink-soft);
}
.climb-dot { fill: var(--rose); transform-box: fill-box; transform-origin: center; }
.bpetal {
  fill: none;
  stroke: var(--rose);
  stroke-width: 1.4;
  stroke-linecap: round;
  transform-origin: 170px 62px;
}

/* resting state (also what reduce-motion visitors see): arrived and in bloom */
.climb-dot { transform: translateY(-294px); }
.bpetal { opacity: 1; transform: scale(1); }
.label-low, .label-mid, .label-top { opacity: .85; }

@media (prefers-reduced-motion: no-preference) {
  .ladder .climb-dot { transform: translateY(0); }
  .ladder .bpetal { opacity: 0; transform: scale(0); }
  .ladder .label-mid, .ladder .label-top { opacity: .3; }

  .ladder.in .climb-dot {
    animation:
      climb 8.2s cubic-bezier(.45, .05, .3, 1) .4s forwards,
      breathe 4.5s ease-in-out 9.4s infinite;
  }
  .ladder.in .label-mid { animation: lightup .8s ease 4.9s forwards; }
  .ladder.in .label-top { animation: lightup .8s ease 7.9s forwards; }
  .ladder.in .bpetal {
    animation: unfurl .9s cubic-bezier(.3, .1, .25, 1.25) forwards;
  }
  .ladder.in .bloom-petals g:nth-child(1) .bpetal { animation-delay: 8.15s; }
  .ladder.in .bloom-petals g:nth-child(2) .bpetal { animation-delay: 8.27s; }
  .ladder.in .bloom-petals g:nth-child(3) .bpetal { animation-delay: 8.39s; }
  .ladder.in .bloom-petals g:nth-child(4) .bpetal { animation-delay: 8.51s; }
  .ladder.in .bloom-petals g:nth-child(5) .bpetal { animation-delay: 8.63s; }
}

@keyframes climb {
  0%    { transform: translateY(0); }
  5%    { transform: translateY(-35px); }
  12%   { transform: translateY(-35px); }
  17%   { transform: translateY(-70px); }
  24%   { transform: translateY(-70px); }
  29%   { transform: translateY(-105px); }
  36%   { transform: translateY(-105px); }
  41%   { transform: translateY(-140px); }
  53%   { transform: translateY(-140px); }
  58%   { transform: translateY(-175px); }
  64%   { transform: translateY(-175px); }
  69%   { transform: translateY(-210px); }
  75%   { transform: translateY(-210px); }
  80%   { transform: translateY(-245px); }
  86%   { transform: translateY(-245px); }
  91%   { transform: translateY(-294px); }
  100%  { transform: translateY(-294px); }
}
@keyframes breathe {
  0%, 100% { transform: translateY(-294px) scale(1); }
  50%      { transform: translateY(-294px) scale(1.12); }
}
@keyframes lightup { to { opacity: .85; } }
@keyframes unfurl { to { opacity: 1; transform: scale(1); } }

/* ───────────────────────────── bloom */
.bloom { text-align: left; }
.bloom-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}
.bloom-bridge {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 27px);
  color: #d9ac9d;
  margin-bottom: 34px;
}
.bloom h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--pale);
  margin-bottom: 20px;
}
.bloom-sub {
  font-size: clamp(16.5px, 1.9vw, 19.5px);
  font-weight: 300;
  color: #d9d2c0;
  margin-bottom: 46px;
}
.offer-rows {
  list-style: none;
  text-align: left;
  max-width: 520px;
  margin: 0;
}
.offer-rows li {
  padding: 18px 4px;
  border-top: 1px solid rgba(239, 231, 212, .16);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #e6dfcd;
}
.offer-rows li:last-child { border-bottom: 1px solid rgba(239, 231, 212, .16); }
.bloom-note {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .06em;
  color: #a49d88;
  margin-bottom: 34px;
}
.fit-note { margin-top: 34px; }
.fit-note p {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .04em;
  color: #a49d88;
  margin-bottom: 12px;
}
.fit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.fit-chips span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .06em;
  color: #ddd6c4;
  border: 1px solid rgba(239, 231, 212, .28);
  border-radius: 999px;
  padding: 6px 11px;
}

/* ── mock checkout card ── */
.checkout {
  background: #fffdf8;
  border-radius: 20px;
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .55);
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.co-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a96b5c;
  border: 1px solid var(--rose);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.co-name {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.co-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 42px;
  color: var(--forest);
  line-height: 1;
}
.co-price span {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-left: 2px;
}
.co-note {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee6d6;
  margin-bottom: 20px;
}
.co-form label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 14px 0 6px;
}
.co-form input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ddd4c2;
  border-radius: 10px;
}
.co-form input::placeholder { color: #b3ac9c; }
.co-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.co-btn {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #f6f1e6;
  background: var(--moss);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .3s;
}
.co-btn:hover { background: #4a5d42; }
.co-secure {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: #a49d88;
  margin-top: 14px;
}
@media (max-width: 880px) {
  .bloom-grid { grid-template-columns: 1fr; }
  .checkout { justify-self: center; }
}

.btn-cream {
  background: #f6f1e6;
  color: var(--forest);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .4);
}
.btn-cream:hover { background: #fffdf6; }

/* ───────────────────────────── vine divider */
.vine-divider {
  background: var(--cream);
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.vine-divider svg { width: 240px; opacity: .8; }

/* ───────────────────────────── for / not for */
.fit { padding-top: clamp(70px, 9vw, 120px); }
.fit-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}
.panel {
  border-radius: 30px;
  padding: clamp(38px, 4.5vw, 58px) clamp(30px, 4vw, 54px);
}
.panel-blush { background: linear-gradient(165deg, var(--blush), #e7cfc0); color: var(--rose-ink); }
.panel-forest { background: var(--forest); color: var(--pale); }

.panel-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.2;
  margin-bottom: 14px;
}
.panel ul { list-style: none; }
.panel li {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.65;
  padding: 16px 0;
  letter-spacing: .01em;
}
.panel-blush li { border-top: 1px solid rgba(95, 66, 55, .16); }
.panel-forest li { border-top: 1px solid rgba(239, 231, 212, .14); }
.panel-forest li { color: #ddd6c4; }
.panel-blush li { color: #5f4237; }

@media (max-width: 820px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* stagger the list reveal */
.panel li { transition-delay: calc(var(--i, 0) * 60ms); }

/* ───────────────────────────── founder */
.founder { padding-top: clamp(60px, 8vw, 110px); text-align: center; }
.founder-figure { margin: 0 auto; max-width: 460px; }
.founder-frame {
  position: relative;
  border-radius: 999px 999px 30px 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(42, 53, 39, .45);
}
.founder-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 238, 225, .55);
  border-radius: 999px 999px 22px 22px;
  pointer-events: none;
}
.founder-frame img {
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
}
.founder figcaption {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink);
  margin-top: 34px;
  line-height: 1.5;
}

/* ───────────────────────────── story */
.story { overflow: hidden; }
.story h2 { color: var(--pale); text-align: center; margin-bottom: 54px; }
.story .measure p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.95;
  color: #d9d2c0;
  margin-bottom: 28px;
  letter-spacing: .012em;
}
.story .pull {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.45;
  color: #d9ac9d;
  text-align: center;
  padding: 26px 0 30px;
  margin: 10px 0 14px;
}
.story-grass {
  position: absolute;
  bottom: -10px;
  left: clamp(-50px, -1vw, 20px);
  width: clamp(140px, 16vw, 220px);
  opacity: .3;
  pointer-events: none;
}

/* ───────────────────────────── final cta */
.begin { text-align: center; overflow: hidden; }
.begin-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.32;
  text-align: left;
  color: var(--rose-ink);
  text-wrap: balance;
  max-width: 900px;
  margin: 0 auto 46px;
}

/* ───────────────────────────── faq */
.faq { padding-top: clamp(60px, 8vw, 100px); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--forest);
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.faq details { border-top: 1px solid var(--border, #ddd4c2); }
.faq details:last-of-type { border-bottom: 1px solid #ddd4c2; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 4px;
  font-size: 17px;
  font-weight: 400;
  color: var(--forest);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--moss);
  transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding: 0 4px 22px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ───────────────────────────── root work popup */
.rw-pop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(320px, calc(100vw - 44px));
  background: #fbf7ee;
  border-radius: 18px;
  box-shadow: 0 24px 60px -18px rgba(29, 43, 33, .45);
  padding: 24px 24px 22px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.rw-pop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rw-x {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  color: #a49d88;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.rw-x:hover { color: var(--forest); }
.rw-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 6px;
}
.rw-line {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.rw-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f6f1e6;
  background: var(--moss);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background .3s;
}
.rw-btn:hover { background: #4a5d42; }
@media (prefers-reduced-motion: reduce) {
  .rw-pop { transition: none; }
}

/* ───────────────────────────── footer */
.footer {
  background: var(--forest-deep);
  color: #b9b29e;
  text-align: center;
  padding: 76px 24px 54px;
}
.wordmark-footer {
  justify-content: center;
  color: var(--pale);
  margin-bottom: 30px;
}
.wordmark-footer .wordmark-rest { color: #a49d88; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}
.footer-social a {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blush);
  transition: color .3s;
}
.footer-social a:hover { color: #f6ece3; }
.footer-social .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #6d6753;
}
.footer-note {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .02em;
  color: #8f8974;
  max-width: 420px;
  margin: 0 auto 10px;
  line-height: 1.6;
}
.footer-copy { font-size: 12px; color: #6d6753; letter-spacing: .06em; }

/* ───────────────────────────── legal pages */
.legal-main {
  padding: 170px clamp(24px, 6vw, 64px) 120px;
  background: var(--cream);
}
.legal-wrap { max-width: 680px; margin: 0 auto; }
.legal-wrap h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--forest);
  margin-bottom: 14px;
}
.legal-updated {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .04em;
  color: #8a8471;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 27px);
  color: var(--forest);
  margin: 44px 0 14px;
}
.legal-wrap p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: .015em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-wrap a { color: var(--moss); text-underline-offset: 3px; }
.legal-wrap a:hover { color: #4a5d42; }
.legal-wrap ul {
  list-style: none;
  margin: 0 0 16px;
}
.legal-wrap li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: .015em;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.legal-wrap li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--moss);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin: 26px 0 12px;
}
.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .06em;
  text-decoration: none;
  color: #8f8974;
  transition: color .3s;
}
.footer-legal a:hover { color: #f6ece3; }
.footer-legal .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #6d6753;
}

/* ───────────────────────────── reveal on scroll */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  .panel li { opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .reveal.in li { opacity: 1; transform: translateY(0); }

  [data-depth] { will-change: transform; }
}
