/* ============================================================
   CŪED — Evening Unwind
   ------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography & shared bits
   5.  Buttons
   6.  Nav
   7.  Hero
   8.  Ticker
   9.  Why
   10. What's inside
   11. Ritual
   12. Waitlist + form
   13. FAQ
   14. Range + footer
   15. Motion & reveal
   16. Responsive
   ============================================================ */


/* ============================================================
   1. TOKENS
   Palette lifted from the Evening Unwind pack.
   ============================================================ */
:root {
  /* surfaces */
  --cream:        #FBF4E7;
  --cream-2:      #F6EBD8;
  --cream-3:      #F1E3CC;
  --paper:        #FFFCF6;

  /* ink */
  --ink:          #452B1B;   /* wordmark brown */
  --ink-2:        #6B4A36;
  --ink-3:        #82624C;

  /* evening blues */
  --blue:         #1745E5;   /* the script blue */
  --blue-deep:    #0F2FB2;
  --navy:         #16294C;   /* pack's navy circle */
  --navy-2:       #1E3A6B;
  --blue-tint:    #A9BEE8;
  --blue-wash:    #E3EAF9;

  /* sibling flavours, used only in the range teaser */
  --gold:         #E0A02A;
  --green:        #4E9B23;

  --choc:         #3A2016;

  /* type */
  --font-display: 'Gabarito', 'Trebuchet MS', system-ui, sans-serif;
  --font-text:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand:    'Caveat Brush', 'Bradley Hand', cursive;

  /* scale — fluid */
  --t-hero:  clamp(2.6rem, 6vw, 4.9rem);
  --t-h2:    clamp(2rem, 4.4vw, 3.5rem);
  --t-h3:    clamp(1.15rem, 1.6vw, 1.4rem);
  --t-lede:  clamp(1.05rem, 1.5vw, 1.3rem);
  --t-body:  clamp(1rem, 1.15vw, 1.0625rem);

  /* rhythm */
  --shell:    1240px;
  --gutter:   clamp(1.25rem, 5vw, 3.5rem);
  --sec-y:    clamp(5rem, 11vw, 9.5rem);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 10px rgba(69,43,27,.06);
  --shadow-md: 0 14px 40px -18px rgba(69,43,27,.28);
  --shadow-lg: 0 40px 90px -40px rgba(22,41,76,.45);

  --ease: cubic-bezier(.22,.68,.32,1);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -.025em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }
em { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--blue); color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: .7rem 1.15rem; border-radius: var(--r-sm);
  font-weight: 600; transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }


/* ============================================================
   3. LAYOUT PRIMITIVES
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 820px; }

.section { padding-block: var(--sec-y); position: relative; }

.sec-head { max-width: 780px; margin: 0 auto clamp(2.75rem, 5vw, 4.5rem); text-align: center; }
.sec-title { font-size: var(--t-h2); }
.sec-title--light { color: var(--cream); }
.sec-sub {
  margin-top: 1.15rem; font-size: var(--t-lede);
  color: var(--ink-2); line-height: 1.6;
}


/* ============================================================
   4. TYPOGRAPHY & SHARED BITS
   ============================================================ */

/* --- wordmark: approximates the pack lockup, macron and all --- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
}
.wordmark__text { display: inline-flex; }
.wordmark__u { position: relative; }
.wordmark__u::after {          /* the macron over the u */
  content: "";
  position: absolute;
  left: -1%; right: -1%;
  bottom: .60em;               /* sits between x-height and cap-height */
  height: .085em;
  min-height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.wordmark--footer { font-size: 2.4rem; }

/* --- eyebrow --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-text);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 1.25rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light  { color: var(--blue-tint); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); flex: none;
}
.eyebrow--light .dot { background: var(--blue-tint); }

/* --- hand-lettered accent, mirrors the pack script --- */
.script-accent {
  font-family: var(--font-hand);
  font-weight: 400;
  color: var(--blue);
  letter-spacing: .005em;
  /* Caveat Brush sits small next to Cabinet Grotesk — nudge it up */
  font-size: 1.16em;
  line-height: .9;
}
.script-accent--light { color: var(--blue-tint); }

/* --- underline-marker, like the pack's brush stroke under the tagline --- */
.u-mark { position: relative; display: inline-block; white-space: nowrap; }
.u-mark__stroke {
  position: absolute;
  left: -1%; right: -1%; bottom: -.16em;
  width: 102%; height: .2em;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 1.1s var(--ease) .55s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1.05rem 2rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 1rem; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(23,69,229,.55); }
.btn:active { transform: translateY(0); }

.btn--blue  { --btn-bg: var(--blue);  --btn-fg: #fff; }
.btn--ink   { --btn-bg: var(--ink);   --btn-fg: var(--cream); }
.btn--ink:hover { box-shadow: 0 14px 28px -12px rgba(69,43,27,.5); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: rgba(69,43,27,.28);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: none; }

.btn--sm   { padding: .7rem 1.35rem; font-size: .9rem; }
.btn--full { width: 100%; }

/* loading state */
.btn__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  display: none;
  animation: spin .7s linear infinite;
}
.btn.is-loading { pointer-events: none; opacity: .82; }
.btn.is-loading .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================================
   6. NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              padding .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(251,244,231,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(69,43,27,.1);
  padding-block: .7rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  position: relative;
  font-size: .95rem; font-weight: 500; color: var(--ink-2);
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }


/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(8rem, 15vw, 11.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 78% 22%, rgba(169,190,232,.34), transparent 62%),
    radial-gradient(70% 55% at 10% 88%, rgba(241,227,204,.9), transparent 70%),
    var(--cream);
}
/* the pack's navy circle, bleeding off the right edge */
.hero::after {
  content: "";
  position: absolute;
  right: -13vw; top: 16%;
  width: 34vw; height: 34vw;
  min-width: 260px; min-height: 260px;
  border-radius: 50%;
  background: var(--navy);
  opacity: .1;
  z-index: 0;
}

.hero__doodles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: .5;
}
.hero__doodles .dl {
  stroke: var(--blue-tint);
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title {
  font-size: var(--t-hero);
  margin-bottom: .35rem;
}
/* each line is its own block, so "the" never orphans — but a line can
   still wrap internally on very narrow screens */
.hero__title .line { display: block; }

.hero__script {
  font-family: var(--font-hand);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--blue);
  line-height: 1;
  margin: 1.15rem 0 1.35rem;   /* clears the brush underline above */
  transform: rotate(-1.6deg);
  transform-origin: left;
}

.hero__lede {
  font-size: var(--t-lede);
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.62;
  margin-bottom: 2.1rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.5rem; }

.hero__note { font-size: .95rem; color: var(--ink-3); }
.hero__note strong { color: var(--ink); font-weight: 600; }

/* --- product visual --- */
.hero__product { position: relative; margin: 0; display: grid; place-items: center; }
.hero__glow {
  position: absolute;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(169,190,232,.55), transparent 66%);
  filter: blur(28px);
}
.stack {
  position: relative;
  width: min(100%, 430px);
  height: auto;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-.7deg); }
}
.stack__slab { animation: slabIn .8s var(--ease) backwards; animation-delay: calc(.15s * var(--i)); }
@keyframes slabIn { from { opacity: 0; transform: translateY(26px); } }

.cap  { animation: capIn .75s var(--ease) .55s backwards; transform-origin: 240px 200px; }
@keyframes capIn { from { opacity: 0; transform: translateY(-22px) rotate(-9deg); } }

.zzz path { animation: zzzFloat 3.4s ease-in-out infinite; animation-delay: calc(.45s * var(--z)); }
@keyframes zzzFloat {
  0%, 100% { opacity: .35; transform: translateY(4px); }
  50%      { opacity: 1;   transform: translateY(-8px); }
}
.swirl { opacity: .8; }


/* ============================================================
   8. TICKER
   ============================================================ */
.ticker {
  background: var(--navy);
  color: var(--cream);
  padding-block: .95rem;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.09);
}
.ticker__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.ticker__set {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding-right: 1.5rem;
  white-space: nowrap;
}
.ticker b {
  font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .02em;
}
.ticker i { color: var(--blue-tint); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }


/* ============================================================
   9. WHY
   ============================================================ */
.section--why { background: var(--cream); }

.thoughts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.thought {
  position: relative;
  background: var(--paper);
  border: 1.5px solid rgba(69,43,27,.1);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.thought:nth-child(1) { transform: rotate(-1.1deg); }
.thought:nth-child(2) { transform: rotate(.5deg); }
.thought:nth-child(3) { transform: rotate(-.6deg); }
.thought:hover { transform: rotate(0) translateY(-5px); box-shadow: var(--shadow-md); }

.thought__scribble {
  width: 76px; height: 26px; margin-bottom: 1.1rem;
  stroke: var(--blue-tint); stroke-width: 3; stroke-linecap: round; fill: none;
}
.thought p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.42;
  letter-spacing: -.015em;
  color: var(--ink);
}

.why__answer {
  max-width: 660px; margin-inline: auto; text-align: center;
  font-size: var(--t-lede); color: var(--ink-2); line-height: 1.62;
}
.why__answer em { font-family: var(--font-hand); color: var(--blue); font-size: 1.28em; line-height: 1; }
.why__punch {
  margin-top: 1.5rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.24; letter-spacing: -.025em;
  color: var(--ink);
}


/* ============================================================
   10. WHAT'S INSIDE
   ============================================================ */
.section--inside {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(169,190,232,.2), transparent 60%),
    var(--cream-2);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  background: var(--paper);
  border: 1.5px solid rgba(69,43,27,.09);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(23,69,229,.28); }

.card__icon {
  width: 54px; height: 54px; margin-bottom: 1.35rem;
  display: grid; place-items: center;
  background: var(--blue-wash);
  border-radius: 16px;
}
.card__icon svg { width: 30px; height: 30px; stroke: var(--blue); fill: none; }

.card h3 { font-size: var(--t-h3); margin-bottom: .6rem; letter-spacing: -.02em; }
.card p  { font-size: .96rem; color: var(--ink-2); line-height: 1.58; flex: 1; }

.card__dose {
  display: inline-block; align-self: flex-start;
  margin-top: 1.15rem; padding: .3rem .7rem;
  background: var(--cream-3);
  border-radius: 999px;
  font-size: .76rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-2);
}

/* --- the "nope" panel --- */
.nope {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.25rem clamp(1.5rem, 4vw, 3.5rem);
}
.nope__title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: -.025em;
  flex: 1 1 250px;
}
.nope__list { display: flex; flex-wrap: wrap; gap: .6rem; flex: 2 1 340px; }
.nope__list li {
  position: relative;
  padding: .5rem 1rem .5rem 2.1rem;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: .92rem;
}
.nope__list li::before {
  content: "";
  position: absolute; left: .85rem; top: 50%;
  width: 11px; height: 2px; border-radius: 2px;
  background: var(--blue-tint);
  transform: translateY(-50%) rotate(-14deg);
}


/* ============================================================
   11. RITUAL
   ============================================================ */
.section--ritual {
  background:
    radial-gradient(70% 55% at 82% 12%, rgba(30,58,107,.85), transparent 60%),
    var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.section--ritual .sec-sub { color: var(--blue-tint); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.25rem;
  border-top: 1.5px solid rgba(255,255,255,.2);
}
.step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.9rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue-tint);
  display: block; margin-bottom: 1rem;
  opacity: .85;
}
.step h3 { font-size: var(--t-h3); margin-bottom: .7rem; color: var(--cream); }
.step p  { color: var(--blue-tint); font-size: .98rem; line-height: 1.6; }


/* ============================================================
   12. WAITLIST + FORM
   ============================================================ */
.section--waitlist {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(169,190,232,.3), transparent 65%),
    var(--cream);
}

.wl {
  position: relative;
  background: var(--paper);
  border: 1.5px solid rgba(69,43,27,.1);
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  box-shadow: var(--shadow-lg);
}
.wl__doodle {
  position: absolute; top: -34px; right: clamp(1.5rem, 5vw, 3.5rem);
  width: 128px; height: 40px;
  stroke: var(--blue); fill: none;
}
.wl__head { text-align: center; margin-bottom: 2.25rem; }

.wl__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .87rem; font-weight: 600;
  color: var(--ink-2); letter-spacing: .01em;
}
.field__opt { font-weight: 400; color: var(--ink-3); text-transform: none; letter-spacing: 0; }

.field input[type="text"],
.field input[type="email"],
.field select {
  width: 100%;
  padding: .95rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid rgba(69,43,27,.16);
  border-radius: 14px;
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: var(--ink-3); opacity: .72; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(23,69,229,.14);
}
.field.is-invalid input,
.field.is-invalid select { border-color: #C1342F; background: #FDF2F1; }

.field__err {
  margin: 0; min-height: 0;
  font-size: .82rem; font-weight: 500; color: #C1342F;
}

.select-wrap { position: relative; }
.select-wrap__chev {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  stroke: var(--ink-2); fill: none; pointer-events: none;
}

/* consent row */
.consent {
  flex-direction: row; align-items: flex-start; gap: .75rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 21px; height: 21px; margin: 2px 0 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.consent label {
  flex: 1; min-width: 200px;
  font-weight: 400; font-size: .9rem;
  line-height: 1.5; color: var(--ink-2); cursor: pointer;
}
.consent .field__err { flex-basis: 100%; }
.consent.is-invalid label { color: #C1342F; }

#wl-submit { grid-column: 1 / -1; margin-top: .5rem; }

.wl__fineprint {
  grid-column: 1 / -1;
  text-align: center; font-size: .82rem; color: var(--ink-3);
  margin: 0;
}
.wl__formerr {
  grid-column: 1 / -1;
  text-align: center; font-size: .88rem; font-weight: 500; color: #C1342F;
  margin: 0;
}

/* honeypot — visually gone, still fillable by bots */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

/* success */
.wl__success { text-align: center; padding-block: 1.5rem; }
.wl__check {
  width: 62px; height: 62px; margin: 0 auto 1.35rem;
  stroke: var(--blue); fill: none;
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: draw .6s var(--ease) .12s forwards;
}
.wl__success h3 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: .7rem; }
.wl__success p  { color: var(--ink-2); font-size: var(--t-lede); max-width: 42ch; margin-inline: auto; }


/* ============================================================
   13. FAQ
   ============================================================ */
.section--faq { background: var(--cream-2); }

.faq__item {
  border-bottom: 1.5px solid rgba(69,43,27,.14);
}
.faq__item:first-child { border-top: 1.5px solid rgba(69,43,27,.14); }

.faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }

.faq__plus {
  position: absolute; right: .25rem; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 100%; height: 2.5px; border-radius: 2px;
  background: var(--blue);
  transition: transform .3s var(--ease);
}
.faq__plus::before { transform: translateY(-50%); }
.faq__plus::after  { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translateY(-50%) rotate(0deg); }

.faq__body { padding: 0 3rem 1.6rem 0; animation: faqIn .3s var(--ease); }
.faq__body p { color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }


/* ============================================================
   14. RANGE + FOOTER
   ============================================================ */
.range { background: var(--cream); padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.range__inner {
  text-align: center;
  border-top: 1.5px solid rgba(69,43,27,.14);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.range__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.range__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .75rem 2rem; margin-bottom: 1rem;
}
.range__list li {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.015em;
}
.range__list em { font-family: var(--font-text); font-weight: 400; font-size: .92rem; color: var(--ink-3); }
.swatch { width: 13px; height: 13px; border-radius: 50%; flex: none; }
.swatch--gold  { background: var(--gold); }
.swatch--green { background: var(--green); }
.range__note { font-size: .88rem; color: var(--ink-3); }

.footer {
  background: var(--ink);
  color: var(--cream-2);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.footer__inner { display: grid; gap: 2.5rem; }
.footer__brand .wordmark { color: var(--cream); }
.footer__brand p {
  margin-top: .8rem;
  font-family: var(--font-hand);
  font-size: 1.4rem; color: var(--blue-tint);
  line-height: 1;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.footer__links a {
  font-size: .95rem; color: var(--cream-2); opacity: .82;
  transition: opacity .2s var(--ease);
}
.footer__links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.footer__legal {
  border-top: 1px solid rgba(251,244,231,.18);
  padding-top: 1.75rem;
}
.footer__legal p { font-size: .8rem; line-height: 1.6; color: rgba(251,244,231,.62); max-width: 68ch; }
.footer__copy { margin-top: 1rem; }


/* ============================================================
   15. MOTION & REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(.09s * var(--d, 0));
}
.reveal.is-in { opacity: 1; transform: none; }
/* keep the tilt on the thought cards once revealed */
.thought.reveal.is-in:nth-child(1) { transform: rotate(-1.1deg); }
.thought.reveal.is-in:nth-child(2) { transform: rotate(.5deg); }
.thought.reveal.is-in:nth-child(3) { transform: rotate(-.6deg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .u-mark__stroke, .wl__check { stroke-dashoffset: 0; }
  .ticker__track { animation: none; }
}


/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* --- tablet --- */
@media (max-width: 980px) {
  .nav__links { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero__title  { max-width: none; margin-inline: auto; }
  .hero__lede   { margin-inline: auto; }
  .hero__cta    { justify-content: center; }
  .hero__script { transform: rotate(-1.4deg); transform-origin: center; }
  .hero__product { order: -1; }
  .stack { width: min(76%, 340px); }
  .hero::after { top: 4%; right: -22vw; opacity: .07; }
}

/* --- phone --- */
@media (max-width: 620px) {
  :root { --sec-y: 4.25rem; }

  .nav { padding-block: .85rem; }
  .wordmark { font-size: 1.55rem; }

  .hero { padding-top: 6.5rem; }
  .hero__title { letter-spacing: -.03em; }
  /* keep the brush lines from cutting through the CTAs on narrow screens */
  .hero__doodles { opacity: .3; }
  .hero__doodles .dl:last-child { display: none; }
  .stack { width: min(82%, 290px); }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .thought { padding: 1.9rem 1.4rem 1.6rem; }
  .thought p { font-size: 1.05rem; }

  .nope { border-radius: var(--r-lg); }
  .nope__list li { font-size: .87rem; }

  .wl { border-radius: var(--r-lg); padding: 2rem 1.35rem 2.25rem; }
  .wl__form { grid-template-columns: 1fr; }
  .wl__doodle { width: 96px; top: -26px; right: 1.35rem; }

  .faq__item summary { padding-right: 2.5rem; font-size: 1.05rem; }
  .faq__body { padding-right: 1rem; }

  .step__num { font-size: 2.4rem; }

  .range__list { flex-direction: column; align-items: center; gap: .85rem; }
  .range__list li { flex-direction: column; gap: .25rem; }
}

/* --- very small --- */
@media (max-width: 380px) {
  .ticker b { font-size: .85rem; }
  .btn { padding: .95rem 1.5rem; font-size: .95rem; }
}

/* --- large screens --- */
@media (min-width: 1500px) {
  :root { --shell: 1340px; }
}


/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .ticker, .hero__doodles, .btn, .wl__form { display: none !important; }
  body { background: #fff; color: #000; }
}
