/* ============================================================
   BloomKin — waitlist landing
   Palette + type derived from the Barnaby art:
   cream paper, moss ink, sage leaf, butter, petal pink,
   rain dusk-blue, night garden green.
   ============================================================ */

:root {
  --paper: #FAF7ED;
  --paper-2: #F3EDDA;
  --ink: #33503C;
  --ink-2: #5C7258;
  --ink-3: #87957C;
  --moss: #40613F;
  --leaf: #7E9459;
  --btn: #375840;
  --btn-hover: #2C4A35;
  --butter: #F0C75E;
  --petal-pink: #F2C3CC;
  --line: #E4DCC6;

  --rain-top: #AEC3D4;
  --rain-bottom: #8FA9C0;
  --rain-ink: #2A3E52;
  --rain-ink-2: #31455C;

  --night-ink: #F4EFDC;
  --night-dim: #C9D2BE;

  --err: #B4533E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', 'Segoe UI', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);

  --r-bed: clamp(28px, 5vw, 56px);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { margin: 0 0 1rem; }
p { margin: 0 0 1.1rem; }
::selection { background: rgba(240, 199, 94, 0.45); }

a { color: var(--moss); }
:focus-visible {
  outline: 3px solid rgba(126, 148, 89, 0.75);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- type ---------- */
h1, h2, h3, .footer__name {
  font-family: var(--font-display);
  font-weight: 540;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.12;
}
h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.9rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 1rem;
}

/* ---------- layout primitives ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section__inner {
  width: min(1120px, calc(100% - 2 * clamp(1.3rem, 5vw, 3rem)));
  margin: 0 auto;
}
.section__inner--narrow { max-width: 760px; }

/* rounded "garden bed" sections */
.bed {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-bed);
  width: min(1240px, calc(100% - clamp(20px, 4vw, 48px)));
  margin: clamp(18px, 3.5vw, 44px) auto;
}
.bed__inner { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4.5rem); }
.bed--paper { background: var(--paper-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #FFFDF2;
  background: var(--btn);
  padding: 0.95em 1.8em;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(38, 64, 45, 0.24);
  transition: transform 160ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--btn-hover); transform: translateY(-1px); }
}
.btn:active { transform: scale(0.97); }

.btn--small { padding: 0.62em 1.2em; font-size: 0.9rem; box-shadow: 0 6px 16px rgba(38, 64, 45, 0.2); }

.btn--ghost {
  background: transparent;
  color: var(--btn);
  box-shadow: inset 0 0 0 1.5px var(--btn);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover { background: rgba(55, 88, 64, 0.08); transform: translateY(-1px); }
}

.btn--butter {
  background: var(--butter);
  color: #3A3010;
  box-shadow: 0 10px 26px rgba(20, 30, 20, 0.45);
}
@media (hover: hover) and (pointer: fine) {
  .btn--butter:hover { background: #E9BC49; transform: translateY(-1px); }
}

/* ---------- reveal system (only when JS is present) ---------- */
html.js .fx {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
html.js .fx.is-in { opacity: 1; transform: none; }
html.js .fx-d1 { transition-delay: 90ms; }
html.js .fx-d2 { transition-delay: 180ms; }
html.js .fx-d3 { transition-delay: 270ms; }
html.js .fx-d4 { transition-delay: 360ms; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}
.nav--scrolled {
  background: rgba(250, 247, 237, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(70, 80, 60, 0.1);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.4rem;
  color: var(--ink);
}
.nav__leaf { width: 26px; height: 26px; color: var(--moss); flex: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__art {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: 72% 100%;
  background-repeat: no-repeat;
}
.hero__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 237, 0) 55%, rgba(250, 247, 237, 0.55) 84%, var(--paper) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2 * clamp(1.3rem, 5vw, 3rem)));
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 8.5rem) 0 clamp(4rem, 10vh, 6rem);
  max-width: 1120px;
}
.hero__title {
  font-size: clamp(2.45rem, 1.5rem + 4.4vw, 4.35rem);
  font-weight: 520;
  line-height: 1.04;
  color: #2E4636;
  max-width: 12ch;
  margin-bottom: 1.3rem;
}
.hero__sub {
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem);
  max-width: 33rem;
  color: #4E6350;
  margin-bottom: 1.5rem;
}
.hero__promise {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--moss);
  margin-bottom: 1.4rem;
}
.hero__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 1.7rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(92, 114, 88, 0.4);
  padding-bottom: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .hero__more:hover { color: var(--moss); border-color: var(--moss); }
  .hero__more:hover span { transform: translateY(3px); }
}
.hero__more span { transition: transform 200ms var(--ease-out); }

/* floating petals */
.hero__petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.petal {
  position: absolute;
  width: 34px; height: 25px;
  background: radial-gradient(130% 130% at 30% 20%, #FBE0E5 0%, var(--petal-pink) 55%, #E3A5B2 100%);
  border-radius: 0 100% 0 100% / 0 100% 0 100%;
  box-shadow: 0 10px 18px rgba(210, 150, 160, 0.22);
  opacity: 0.85;
}
.petal--1 { top: 22%; left: 8%;  animation: petal-a 11s ease-in-out infinite; }
.petal--2 { top: 15%; left: 55%; width: 26px; height: 19px; animation: petal-b 9s ease-in-out infinite -3s; }
.petal--3 { top: 46%; left: 40%; width: 22px; height: 16px; animation: petal-a 13s ease-in-out infinite -6s; }
.petal--4 { top: 30%; right: 12%; width: 44px; height: 32px; animation: petal-c 10s ease-in-out infinite -2s; }
.petal--5 { top: 62%; left: 16%; width: 28px; height: 20px; animation: petal-b 12s ease-in-out infinite -8s; }

@keyframes petal-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50%      { transform: translate3d(14px, -26px, 0) rotate(8deg); }
}
@keyframes petal-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(14deg); }
  50%      { transform: translate3d(-16px, -18px, 0) rotate(-6deg); }
}
@keyframes petal-c {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-22deg); }
  50%      { transform: translate3d(10px, -32px, 0) rotate(-2deg); }
}

/* ============================================================
   WAITLIST FORM
   ============================================================ */
.waitform { max-width: 470px; }
.waitform__row { display: flex; flex-direction: column; gap: 0.7rem; }
@media (min-width: 560px) {
  .waitform__row { flex-direction: row; }
  .waitform__input { flex: 1; }
}
.waitform__input {
  height: 54px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 1.4rem;
  font-family: var(--font-body);
  font-size: 1rem; /* ≥16px prevents iOS zoom */
  color: var(--ink);
  min-width: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.waitform__input::placeholder { color: #A8B29B; }
.waitform__input:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(126, 148, 89, 0.18);
}
.waitform__btn { height: 54px; white-space: nowrap; }
.waitform__note {
  font-size: 0.8rem;
  color: var(--ink-3);
  margin: 0.7rem 0 0;
}
.hero .waitform__note { color: #6C7B65; }
.waitform__msg { display: none; font-size: 0.92rem; font-weight: 700; margin: 0.6rem 0 0; }
.waitform.is-error .waitform__msg { display: block; color: var(--err); }
.waitform.is-error .waitform__input { border-color: #C97F6D; }
.waitform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* night form variant */
.waitform--night .waitform__input {
  background: rgba(250, 247, 237, 0.97);
  border-color: transparent;
}
.waitform--night .waitform__input:focus {
  border-color: var(--butter);
  box-shadow: 0 0 0 4px rgba(240, 199, 94, 0.22);
}
.waitform--night .waitform__note { color: var(--night-dim); }
.waitform--night.is-error .waitform__msg { color: #F0A98F; }

/* success card */
.planted { max-width: 470px; }
.planted__sprout { width: 84px; height: 84px; color: var(--moss); }
.planted__soil {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: draw 500ms var(--ease-out) forwards;
}
.planted__stem {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: draw 550ms var(--ease-out) 300ms forwards;
}
.planted__leaf {
  fill: var(--leaf);
  opacity: 0;
  transform: scale(0.4);
  animation: sprout 550ms var(--ease-out) forwards;
}
.planted__leaf--l { transform-origin: 48px 56px; animation-delay: 650ms; }
.planted__leaf--r { transform-origin: 48px 48px; animation-delay: 800ms; fill: #95A96B; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes sprout { to { opacity: 1; transform: scale(1); } }

.planted__title {
  font-size: 1.55rem;
  margin: 0.8rem 0 0.4rem;
}
.planted__body { margin-bottom: 1.3rem; }
.planted__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.planted__follow {
  font-weight: 700;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(64, 97, 63, 0.4);
  padding-bottom: 1px;
}

/* post-signup questionnaire (inside the success card) */
.planted__quiz { margin: 0.4rem 0 1.5rem; }
.planted__quiz-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink);
  margin: 0 0 0.8rem;
}
.planted__quiz-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.qchip {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--moss);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.6em 1.2em;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .qchip:hover { border-color: var(--leaf); background: #fff; transform: translateY(-1px); }
}
.qchip:active { transform: scale(0.96); }
.qchip--go { background: var(--btn); border-color: var(--btn); color: #FFFDF2; }
.qtext {
  flex: 1;
  min-width: 0;
  max-width: 240px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}
.qtext:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(126, 148, 89, 0.18); }
.planted__quiz-skip {
  display: block;
  margin-top: 0.7rem;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.planted__quiz-done {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  margin: 0;
}

/* night variants for the quiz */
.night .planted__quiz-q { color: var(--night-ink); }
.night .qchip { background: rgba(250, 247, 237, 0.12); border-color: rgba(250, 247, 237, 0.3); color: var(--night-ink); }
@media (hover: hover) and (pointer: fine) {
  .night .qchip:hover { border-color: var(--butter); background: rgba(250, 247, 237, 0.2); }
}
.night .qchip--go { background: var(--butter); border-color: var(--butter); color: #3A3010; }
.night .qtext { background: rgba(250, 247, 237, 0.95); border-color: transparent; }
.night .planted__quiz-skip { color: var(--night-dim); }
.night .planted__quiz-done { color: var(--night-dim); }

/* night success variant */
.night .planted__title { color: var(--night-ink); }
.night .planted__body { color: var(--night-dim); }
.night .planted__sprout { color: var(--butter); }
.night .planted__leaf { fill: var(--butter); }
.night .planted__leaf--r { fill: #D9B14E; }
.night .planted__follow { color: var(--butter); border-color: rgba(240, 199, 94, 0.45); }

/* ============================================================
   PROMISE STRIP
   ============================================================ */
.promise { padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem; text-align: center; }
.promise__line {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(1.85rem, 1rem + 3.8vw, 3.4rem);
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
}
@media (min-width: 700px) { .promise__br { display: none; } }
.promise__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-3);
  margin: 1.3rem 0 0;
}

/* ============================================================
   HOW IT GROWS
   ============================================================ */
.how .section__inner { text-align: center; }
.steps {
  position: relative;
  max-width: 700px;
  margin: 3.2rem auto 0;
  display: grid;
  gap: 2.4rem;
  text-align: left;
}
.steps__rail {
  position: absolute;
  left: 31px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
  background: var(--line);
}
.steps__fill {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(var(--leaf), var(--moss));
  transform-origin: top;
  transform: scaleY(0);
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.3rem;
  align-items: start;
}
.step__node {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(76, 84, 56, 0.08);
  transition: border-color 400ms ease, color 400ms ease;
}
.step.is-in .step__node { border-color: var(--leaf); color: var(--moss); }
.step__icon { width: 34px; height: 34px; }
.step__body h3 { margin-bottom: 0.35rem; }
.step__body p { color: var(--ink-2); margin: 0; max-width: 44ch; }

.how__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
  color: var(--moss);
  margin: 3rem auto 2rem;
  max-width: 34ch;
}

/* ============================================================
   RAIN / HARD DAYS
   ============================================================ */
.rain {
  background: linear-gradient(180deg, var(--rain-top) 0%, var(--rain-bottom) 100%);
  color: var(--rain-ink-2);
}
.eyebrow--rain { color: #3E5670; }
.rain__title { color: var(--rain-ink); }

.rain__layer { position: absolute; inset: 0; pointer-events: none; }
.rain__layer::before,
.rain__layer::after {
  content: '';
  position: absolute;
  inset: -120px -60px -20px;
  background-image: repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, 0.35) 30px 31.5px);
  -webkit-mask-image: repeating-linear-gradient(180deg, black 0 16px, transparent 16px 34px);
  mask-image: repeating-linear-gradient(180deg, black 0 16px, transparent 16px 34px);
  transform: skewX(-7deg);
  opacity: 0.5;
  animation: rain-fall 0.9s linear infinite;
}
.rain__layer::after {
  background-image: repeating-linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, 0.25) 47px 48px);
  -webkit-mask-image: repeating-linear-gradient(180deg, black 0 10px, transparent 10px 44px);
  mask-image: repeating-linear-gradient(180deg, black 0 10px, transparent 10px 44px);
  animation-duration: 1.4s;
  opacity: 0.4;
}
@keyframes rain-fall {
  from { transform: skewX(-7deg) translateY(-102px); }
  to   { transform: skewX(-7deg) translateY(0); }
}

.rain__cols {
  display: grid;
  gap: 2.6rem;
  margin-top: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .rain__cols { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: start; }
}
.rain__copy p {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 46ch;
}
.rain__kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem);
  color: var(--rain-ink);
  margin-top: 2rem;
}

.rest {
  background: var(--paper);
  border-radius: 30px;
  padding: 1.5rem 1.5rem 1.8rem;
  box-shadow: 0 30px 70px rgba(28, 46, 68, 0.28);
  color: var(--ink-2);
}
.rest img { border-radius: 22px; margin-bottom: 1.3rem; }
.rest h3 { color: var(--ink); margin-bottom: 0.5rem; }
.rest p { margin-bottom: 0.5rem; }
.rest__caption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-3);
  margin: 0.7rem 0 0;
}

/* ============================================================
   BARNABY
   ============================================================ */
.barnaby__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 860px) {
  .barnaby__grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
}
.barnaby__figure { margin: 0; }
.barnaby__figure img {
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(60, 72, 50, 0.18);
  transform: rotate(-2deg);
}
.barnaby__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-3);
  margin-top: 1.6rem;
}

/* ============================================================
   MEMORY / FLORARIUM
   ============================================================ */
.memory .section__inner { text-align: center; }
.memory__lead { max-width: 58ch; margin: 0 auto 1rem; }
.florarium {
  display: grid;
  gap: 1.4rem;
  margin: 3rem auto 0;
  max-width: 980px;
}
@media (min-width: 760px) { .florarium { grid-template-columns: repeat(3, 1fr); } }
.bloomcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2.2rem 1.6rem 1.8rem;
  box-shadow: 0 18px 44px rgba(76, 84, 56, 0.08);
}
.bloomcard__flower { width: 72px; height: 72px; margin: 0 auto 1rem; }
.bloomcard__name {
  font-size: 1.22rem;
  margin-bottom: 0.2rem;
}
.bloomcard__memory {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--moss);
  margin-bottom: 0.5rem;
}
.bloomcard__story { font-size: 0.95rem; color: var(--ink-3); margin: 0; }

.memory__pull {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 1.95rem);
  line-height: 1.35;
  color: var(--ink-2);
  margin: 3.4rem auto 0;
}
.memory__pull em { font-style: italic; color: var(--moss); }

/* ============================================================
   HONEST TRUST
   ============================================================ */
.honest__lead { max-width: 56ch; }
.honest__cards {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.6rem;
}
@media (min-width: 760px) { .honest__cards { grid-template-columns: repeat(3, 1fr); } }
.promisecard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
}
.promisecard svg { width: 42px; height: 42px; color: var(--moss); margin-bottom: 0.9rem; }
.promisecard h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.promisecard p { font-size: 0.97rem; margin: 0; }

.founder {
  max-width: 620px;
  margin: 3.4rem 0 0;
  padding-left: 1.6rem;
  border-left: 3px solid var(--leaf);
}
.founder p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.founder footer { font-size: 0.95rem; color: var(--ink-3); }

/* ============================================================
   NIGHT CTA
   ============================================================ */
.night {
  background: radial-gradient(130% 110% at 72% 0%, #2E463D 0%, #1C2B27 58%, #141F1C 100%);
  color: var(--night-dim);
}
.eyebrow--night { color: var(--butter); }
.night h2 { color: var(--night-ink); }
.night__lead { max-width: 46ch; }

.night__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .night__grid { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; }
}
.night__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.55rem;
}
.night__perks li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--night-dim);
}
.night__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 10px 2px rgba(240, 199, 94, 0.5);
}

.night__barnaby { margin: 0; }
.night__barnaby img {
  max-width: min(100%, 460px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
  animation: night-float 7s ease-in-out infinite;
}
@keyframes night-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -12px, 0); }
}

/* fireflies */
.night__fireflies { position: absolute; inset: 0; pointer-events: none; }
.night__fireflies span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 12px 3px rgba(240, 199, 94, 0.55);
  opacity: 0;
  animation: ff-drift 9s ease-in-out infinite, ff-pulse 4.5s ease-in-out infinite;
}
.night__fireflies span:nth-child(1) { top: 18%; left: 8%;  animation-delay: 0s, 0s; }
.night__fireflies span:nth-child(2) { top: 30%; left: 84%; animation-delay: -3s, -1.2s; animation-duration: 11s, 5s; }
.night__fireflies span:nth-child(3) { top: 64%; left: 14%; animation-delay: -6s, -2s; width: 4px; height: 4px; }
.night__fireflies span:nth-child(4) { top: 76%; left: 68%; animation-delay: -2s, -3s; animation-duration: 12s, 6s; }
.night__fireflies span:nth-child(5) { top: 12%; left: 46%; animation-delay: -8s, -0.6s; width: 4px; height: 4px; }
.night__fireflies span:nth-child(6) { top: 52%; left: 92%; animation-delay: -5s, -2.6s; }
.night__fireflies span:nth-child(7) { top: 86%; left: 34%; animation-delay: -9s, -1.8s; animation-duration: 13s, 5.5s; }

@keyframes ff-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25%      { transform: translate3d(24px, -18px, 0); }
  50%      { transform: translate3d(-10px, -34px, 0); }
  75%      { transform: translate3d(-26px, -10px, 0); }
}
@keyframes ff-pulse {
  0%, 100% { opacity: 0.1; }
  50%      { opacity: 0.95; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq h2 { text-align: center; margin-bottom: 2.4rem; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.25rem 2.6rem 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 540;
  font-size: 1.14rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0.3rem;
  top: 50%;
  translate: 0 -50%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--leaf);
  transition: transform 250ms var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 0 1.4rem; }
.faq__body p { margin: 0; max-width: 62ch; }
@supports (opacity: 1) {
  .faq__item[open] .faq__body {
    animation: faq-in 260ms var(--ease-out);
  }
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 3rem 0 2.5rem;
}
.footer__inner { display: grid; gap: 1.6rem; }
.footer__brand { display: flex; align-items: flex-start; gap: 0.7rem; }
.footer__brand .nav__leaf { margin-top: 0.2rem; }
.footer__name { font-size: 1.1rem; margin: 0 0 0.15rem; }
.footer__promise {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-3);
  margin: 0;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.95rem; }
.footer__links a { color: var(--ink-2); text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
  .footer__links a:hover { color: var(--moss); text-decoration: underline; }
}
.footer__crisis { font-size: 0.82rem; color: var(--ink-3); max-width: 60ch; margin: 0; }
.footer__copy { font-size: 0.82rem; color: var(--ink-3); margin: 0; }

/* ---------- QA snapshot mode (?snap) ---------- */
html.snap { scroll-behavior: auto; }
html.snap .hero { min-height: 780px; }
html.snap .fx { opacity: 1 !important; transform: none !important; transition: none !important; }
html.snap .steps__fill { transform: scaleY(1) !important; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .fx {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .petal,
  .night__fireflies span,
  .rain__layer::before,
  .rain__layer::after,
  .night__barnaby img {
    animation: none;
  }
  .night__fireflies span { opacity: 0.55; }
  .planted__soil, .planted__stem { animation: none; stroke-dashoffset: 0; }
  .planted__leaf { animation: none; opacity: 1; transform: none; }
  .steps__fill { transition: none !important; }
}
