/* ─────────────────────────────────────────────────────────────
   Once Upon a Plié — warm storybook design system
   ───────────────────────────────────────────────────────────── */

:root {
  /* Paper palette (warm, low-chroma) */
  --paper:        oklch(0.965 0.018 78);
  --paper-deep:   oklch(0.93  0.025 75);
  --paper-edge:   oklch(0.88  0.030 72);
  --ink:          oklch(0.22  0.030 38);
  --ink-soft:     oklch(0.38  0.025 38);
  --ink-muted:    oklch(0.55  0.020 40);

  /* Accents — matched chroma & lightness, varied hue */
  --rose:    oklch(0.72 0.13  22);
  --marigold:oklch(0.78 0.13  78);
  --sage:    oklch(0.72 0.07 152);
  --ink-blue:oklch(0.42 0.07 235);

  /* Type — set by tweak */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body:    "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-hand:    "Caveat", "Brush Script MT", cursive;

  --maxw: 1180px;
}

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(at 12% 8%,  oklch(0.95 0.04 70 / 0.55), transparent 45%),
    radial-gradient(at 88% 92%, oklch(0.94 0.05 30 / 0.45), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.28  0 0 0 0 0.20  0 0 0 0 0.12  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-attachment: fixed, fixed, fixed;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga", "kern", "onum";
}

::selection { background: oklch(0.78 0.13 78 / 0.55); color: var(--ink); }

/* ── Whimsical sketches ────────────────────────────────────── */
.sketch {
  display: block;
  overflow: visible;
  color: var(--ink-soft);
  opacity: 0.85;
  pointer-events: none;
}
.sketch.rose     { color: var(--rose); }
.sketch.marigold { color: var(--marigold); }
.sketch.sage     { color: var(--sage); }
.sketch.faint    { opacity: 0.5; }

/* decorative scatter — absolutely placed accents */
.doodle {
  position: absolute;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .doodle { animation: bob 7s ease-in-out infinite; }
  .doodle.slow { animation-duration: 11s; }
  .doodle.delay { animation-delay: -3.5s; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

.hand {
  font-family: var(--font-hand);
  font-weight: 500;
  font-style: normal;
  line-height: 0.9;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.left::before { display: none; }

.rule {
  border: 0;
  border-top: 1px solid var(--paper-edge);
  margin: 0;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Top nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(0.965 0.018 78 / 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-edge);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand .brand-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand .brand-mark .amp {
  font-family: var(--font-hand);
  font-style: normal;
  color: var(--rose);
  font-size: 1.25em;
  position: relative;
  top: 0.06em;
}
.brand .brand-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px dashed var(--rose);
}
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: transform 120ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--rose); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 120ms ease, background 200ms ease;
}
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--rose); transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ── Hero — three variants ─────────────────────────────────── */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}

/* (1) Fairy-tale opening */
.hero-opening { text-align: center; padding-top: 88px; }
.hero-opening .opener {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-opening .opener .dot { display: inline-block; margin: 0 10px; color: var(--rose); }
.hero-opening h1 {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
}
.hero-opening h1 .hand {
  display: inline-block;
  color: var(--rose);
  font-size: 1.05em;
  transform: rotate(-3deg) translateY(0.04em);
  padding: 0 0.08em;
}
.hero-opening .lede {
  max-width: 620px;
  margin: 28px auto 36px;
  font-size: 20px;
  color: var(--ink-soft);
}
.hero-opening .cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-opening .ornament {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--marigold);
  letter-spacing: 1.2em;
  padding-left: 1.2em;
  margin-bottom: 36px;
}

/* (2) Editorial split */
.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  padding-top: 80px;
}
.hero-editorial .lead h1 {
  font-size: clamp(60px, 8.4vw, 124px);
  letter-spacing: -0.035em;
  line-height: 0.94;
}
.hero-editorial .lead h1 em {
  font-style: italic;
  color: var(--ink-soft);
}
.hero-editorial .lead h1 .hand {
  color: var(--rose);
  font-size: 0.9em;
  margin-left: -0.04em;
  transform: rotate(-2deg);
  display: inline-block;
}
.hero-editorial .lead .kicker {
  font-family: var(--font-hand);
  font-size: 38px;
  color: var(--rose);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 8px;
}
.hero-editorial .side {
  padding-bottom: 12px;
}
.hero-editorial .side .label {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-editorial .side p {
  font-size: 17px;
  color: var(--ink-soft);
  border-left: 1px solid var(--paper-edge);
  padding-left: 18px;
  margin-bottom: 22px;
}

/* (3) Playbill */
.hero-playbill { padding-top: 64px; }
.hero-playbill .playbill {
  max-width: 760px;
  margin: 0 auto;
  border: 1.5px solid var(--ink);
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 24px,
      oklch(0.94 0.04 70 / 0.4) 24px 25px
    ),
    var(--paper);
  padding: 56px 56px 64px;
  text-align: center;
  position: relative;
  border-radius: 4px;
}
.hero-playbill .playbill::before,
.hero-playbill .playbill::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--ink);
  pointer-events: none;
  border-radius: 2px;
}
.hero-playbill .playbill::after { display: none; }
.hero-playbill .stamp {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.hero-playbill .stamp span { color: var(--rose); }
.hero-playbill h1 {
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-playbill .hand {
  display: block;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--rose);
  transform: rotate(-2deg);
  margin: -8px 0 14px;
}
.hero-playbill .program {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 18px auto 30px;
  max-width: 460px;
}
.hero-playbill .ornament-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  color: var(--marigold);
  letter-spacing: 0.4em;
  margin-bottom: 28px;
}
.hero-playbill .ornament-row hr {
  flex: 0 0 60px;
  border: 0;
  border-top: 1px solid var(--ink);
  opacity: 0.4;
}
.hero-playbill .cta-row { justify-content: center; display: inline-flex; gap: 14px; }

/* Hero meta strip — shared */
.hero-meta {
  margin-top: 88px;
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-meta div { display: flex; align-items: center; gap: 10px; }
.hero-meta div::before {
  content: "❋";
  color: var(--marigold);
  font-size: 16px;
  letter-spacing: normal;
}

/* ── Section header ────────────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 64px 0; }
.section + .section { border-top: 1px solid var(--paper-edge); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}
.section-head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  letter-spacing: -0.025em;
}
.section-head .lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0;
}

/* ── Our story strip ───────────────────────────────────────── */
.story-strip {
  background: var(--paper-deep);
  border-block: 1px solid var(--paper-edge);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.story-strip .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 72px;
  align-items: start;
}
.story-strip h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.02em;
}
.story-strip h2 .hand {
  display: inline-block;
  color: var(--rose);
  transform: rotate(-2deg);
  font-size: 1.1em;
}
.story-strip .copy {
  font-size: 19px;
  color: var(--ink-soft);
}
.story-strip .copy p::first-letter {
  font-family: var(--font-display);
  font-size: 4.6em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--rose);
  font-style: italic;
}
.story-strip .signed {
  display: block;
  margin-top: 24px;
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--ink);
}

/* ── Age groups ────────────────────────────────────────────── */
.ages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.age {
  border: 1px solid var(--paper-edge);
  background: oklch(0.98 0.012 78 / 0.7);
  padding: 36px 34px 32px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.age:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -28px oklch(0.22 0.03 38 / 0.35);
}
.age .age-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.age .age-range {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.age h3 {
  font-size: 38px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.age h3 .hand {
  display: block;
  color: var(--rose);
  font-size: 0.7em;
  transform: rotate(-2deg);
  margin-bottom: 4px;
}
.age .blurb {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 18px 0 22px;
}
.age .stories {
  border-top: 1px dashed var(--paper-edge);
  padding-top: 18px;
}
.age .stories-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.age .stories-label::before { content: "❦"; color: var(--marigold); font-size: 14px; letter-spacing: 0; }
.age ul { list-style: none; padding: 0; margin: 0; }
.age ul li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 15.5px;
  color: var(--ink);
  border-top: 1px solid var(--paper-edge);
}
.age ul li:first-child { border-top: 0; }
.age ul li em {
  font-style: italic;
  color: var(--ink-soft);
}
.age ul li .src {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink-muted);
}
.age .corner {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--paper-edge);
  font-size: 56px;
  line-height: 1;
}
.age .age-sketch {
  position: absolute;
  top: 22px;
  right: 24px;
  opacity: 0.9;
  transition: transform 320ms ease;
}
.age:hover .age-sketch { transform: rotate(-6deg) scale(1.06); }
.age.spotlight {
  background: oklch(0.95 0.04 78 / 0.6);
  border-color: oklch(0.85 0.06 78);
}

/* ── Method ────────────────────────────────────────────────── */
.method {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
}
.step {
  padding: 36px 28px 40px;
  border-left: 1px solid var(--paper-edge);
  position: relative;
}
.step:first-child { border-left: 0; }
.step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Enrollment ────────────────────────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.tier {
  border: 1px solid var(--paper-edge);
  background: oklch(0.98 0.012 78 / 0.6);
  padding: 32px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
}
.tier.featured h3,
.tier.featured .price { color: var(--paper); }
.tier.featured .feat-flag {
  color: var(--marigold);
}
.tier .feat-flag {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--rose);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 12px;
}
.tier h3 {
  font-size: 28px;
  letter-spacing: -0.01em;
}
.tier .desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  min-height: 44px;
}
.tier.featured .desc { color: oklch(0.85 0.018 78); }
.tier .price {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.tier .price .per {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.tier.featured .price .per { color: oklch(0.82 0.018 78); }
.tier hr {
  border: 0;
  border-top: 1px dashed var(--paper-edge);
  margin: 24px 0;
}
.tier.featured hr { border-top-color: oklch(0.4 0.02 38); }
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 15px;
  flex: 1;
}
.tier ul li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
}
.tier ul li::before {
  content: "✦";
  color: var(--rose);
  font-size: 12px;
  position: relative;
  top: 2px;
}
.tier.featured ul li::before { color: var(--marigold); }
.tier .btn { align-self: flex-start; }

.enroll-foot {
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--ink-muted);
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.enroll-foot span { display: inline-flex; align-items: center; gap: 8px; }
.enroll-foot span::before { content: "✶"; color: var(--marigold); }

/* ── Testimonials ──────────────────────────────────────────── */
.tests {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.test {
  padding: 32px 28px;
  border: 1px solid var(--paper-edge);
  background: oklch(0.98 0.012 78 / 0.6);
  border-radius: 6px;
  position: relative;
}
.test::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--rose);
  background: var(--paper);
  padding: 0 8px;
}
.test blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.test .by {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.test .by .name { color: var(--ink); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faqs { border-top: 1px solid var(--ink); }
.faq {
  border-bottom: 1px solid var(--paper-edge);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: counter(faq-num, decimal-leading-zero);
  counter-increment: faq-num;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--rose);
  font-style: normal;
  min-width: 38px;
  position: relative;
  top: -2px;
}
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink-muted);
  transition: transform 200ms ease;
  line-height: 1;
}
.faq[open] summary::after { content: "—"; }
.faqs { counter-reset: faq-num; }
.faq .body {
  padding: 0 4px 26px 62px;
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ── Contact form ──────────────────────────────────────────── */
.contact {
  background: var(--paper-deep);
  border-top: 1px solid var(--paper-edge);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.contact .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
.contact .intro h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.contact .intro h2 .hand { color: var(--rose); transform: rotate(-2deg); display: inline-block; }
.contact .intro p { font-size: 18px; color: var(--ink-soft); }
.contact .intro .school-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact .intro .school-line::before {
  content: "📍";
  filter: grayscale(0.4);
}

form.inquiry {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  padding: 36px;
}
form.inquiry .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
form.inquiry label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
form.inquiry .field { margin-bottom: 22px; }
form.inquiry input,
form.inquiry select,
form.inquiry textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
form.inquiry input:focus,
form.inquiry select:focus,
form.inquiry textarea:focus {
  border-bottom-color: var(--rose);
}
form.inquiry textarea { min-height: 96px; resize: vertical; }
form.inquiry .field-full { grid-column: 1 / -1; }
form.inquiry .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
form.inquiry .consent input { width: auto; }
form.inquiry .submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
form.inquiry .note {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--rose);
  transform: rotate(-2deg);
}

/* ── Why it works / benefits ───────────────────────────────── */
.benefits { position: relative; overflow: hidden; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--paper-edge);
  border: 1px solid var(--paper-edge);
  border-radius: 6px;
  overflow: hidden;
}
.benefit {
  background: var(--paper);
  padding: 38px 36px 40px;
  position: relative;
}
.benefit-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  display: block;
  margin-bottom: 14px;
}
.benefit h3 {
  font-size: 30px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.benefit p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}
.benefit-foot {
  text-align: center;
  margin: 44px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}
.benefit-foot .hand {
  font-style: normal;
  color: var(--rose);
  font-size: 30px;
  margin-right: 12px;
  transform: rotate(-2deg);
  display: inline-block;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--paper-edge);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
footer .colophon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 460px;
}
footer .legal {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
footer .legal a { text-decoration: none; }
footer .legal a:hover { color: var(--ink); }

/* hide the faint roman numeral now that each card has a character */
.age .corner { display: none; }

/* tuck doodles away on small screens so they don't crowd content */
@media (max-width: 880px) {
  .doodle { display: none; }
}
/* Hide sub-tagline on tighter widths before fully collapsing nav */
@media (max-width: 1100px) {
  .brand .brand-sub { display: none; }
  .nav-inner { gap: 20px; }
  .nav-links { gap: 20px; font-size: 13.5px; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

@media (max-width: 880px) {
  .hero-editorial { grid-template-columns: 1fr; gap: 28px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .ages { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--paper-edge); }
  .step:nth-child(odd) { border-left: 0; }
  .step:nth-child(even) { border-left: 1px solid var(--paper-edge); }
  .step:nth-child(1), .step:nth-child(2) { border-top: 0; }
  .tiers { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .tests { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; gap: 36px; }
  .story-strip .wrap { grid-template-columns: 1fr; gap: 28px; }
  form.inquiry .row { grid-template-columns: 1fr; }
}
