/* ==========================================================================
   The Brooklyn Project — styles.css
   One stylesheet for the whole site. No build step, no framework.

   Identity in one line: printed zine meets a well-run classroom.
   Paper, ink, brick, marigold, spruce. Hard shadows instead of blur.
   Audience colors:  kids + teens = marigold · parents = spruce · youth workers = brick

   Contents
   1. Tokens            8. Doors + pillars       15. Videos
   2. Base + type       9. Cards + slots         16. Ages
   3. Layout           10. Products + ladder     17. Blog + post
   4. Header + nav     11. Forms (Kit slots)     18. Support / about
   5. Buttons + tags   12. Playground hub        19. Footer
   6. Sections         13. Game cabinet          20. Utilities + motion
   7. Hero             14. Filters           21. Visual layer (collages, stickers, motion)
                                             22. Age bands, Pre-K to Grade 12
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --paper: #f5eee2;
  --paper-2: #ebe1cf;
  --paper-3: #e0d3bc;
  --card: #fffaf1;
  --ink: #1e1a17;
  --ink-2: #4a433c;
  --ink-3: #756b60;
  --line: #1e1a17;

  --brick: #b8432b;
  --brick-deep: #8e3220;
  --brick-tint: #f3d9cf;
  --marigold: #edb03c;
  --marigold-tint: #f8e6bd;
  --spruce: #24574f;
  --spruce-deep: #173c36;
  --spruce-tint: #d3e3dc;

  --font-display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --font-body: "Atkinson Hyperlegible", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 7px 7px 0 var(--ink);
  --border: 2px solid var(--line);

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(56px, 9vw, 112px);

  color-scheme: light;
}

/* 2. Base + type ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--brick); }
:focus-visible { outline: 3px solid var(--brick); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--marigold); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); letter-spacing: -0.015em; line-height: 1.12; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; text-wrap: pretty; }
.lede { font-size: clamp(1.15rem, 1.9vw, 1.35rem); line-height: 1.5; color: var(--ink-2); max-width: 40ch; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.mark {                       /* marker-pen highlight behind a word */
  background: linear-gradient(transparent 58%, var(--marigold) 58%, var(--marigold) 92%, transparent 92%);
  padding: 0 0.08em;
}
.mark-brick { background: linear-gradient(transparent 58%, var(--brick-tint) 58%, var(--brick-tint) 92%, transparent 92%); }
.scribble { position: relative; white-space: nowrap; }
.scribble::after {            /* hand-drawn underline */
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -0.12em;
  height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 40 2, 80 11, 120 5 S 180 3, 198 7' fill='none' stroke='%23b8432b' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
small, .small { font-size: 0.875rem; }
.muted { color: var(--ink-3); }
hr { border: 0; border-top: 2px dashed var(--paper-3); margin: 2.5rem 0; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: 10px 16px; z-index: 100;
}
.skip:focus { left: 16px; top: 16px; }

/* 3. Layout ---------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; }
.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-top { align-items: start; }
.stack > * + * { margin-top: 1rem; }
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* 4. Header + nav ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: var(--border);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand:hover { color: var(--ink); }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--brick); color: var(--paper);
  border: var(--border); border-radius: 11px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1;
  transform: rotate(-4deg);
  transition: transform .2s ease;
}
.brand:hover .brand-mark { transform: rotate(3deg); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1; }
.brand-name span { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav summary {
  font-weight: 700; font-size: 0.97rem; text-decoration: none;
  padding: 8px 12px; border-radius: 999px; cursor: pointer; color: var(--ink);
}
.nav a:hover, .nav summary:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.nav details { position: relative; }
.nav summary { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav summary::-webkit-details-marker { display: none; }
.nav summary::after { content: ""; width: 7px; height: 7px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg) translateY(-2px); }
.nav details[open] summary::after { transform: rotate(-135deg) translateY(-1px); }
.nav details.has-current summary { box-shadow: inset 0 0 0 2px var(--ink); }
.dropdown {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 230px; padding: 8px;
  background: var(--card); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
}
.dropdown a { border-radius: 8px; padding: 10px 12px; display: flex; flex-direction: column; }
.dropdown a small { font-weight: 400; color: var(--ink-3); font-size: 0.8rem; }
.dropdown a[aria-current="page"] small { color: var(--paper-3); }
.nav .btn { margin-left: 8px; }

/* Mobile menu: <details> so it works with zero JS */
.menu { display: none; }
.menu summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
  border: var(--border); border-radius: 999px; padding: 8px 14px; background: var(--card);
  box-shadow: 3px 3px 0 var(--ink);
}
.menu summary::-webkit-details-marker { display: none; }
.menu .bars { width: 18px; height: 12px; position: relative; border-top: 2px solid; border-bottom: 2px solid; }
.menu .bars::after { content: ""; position: absolute; left: 0; right: 0; top: 3px; border-top: 2px solid; }
.menu[open] .bars { border-color: transparent; }
.menu[open] .bars::after { top: 3px; transform: rotate(45deg); }
.menu[open] .bars::before { content: ""; position: absolute; left: 0; right: 0; top: 3px; border-top: 2px solid; transform: rotate(-45deg); }
.menu-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-bottom: var(--border);
  padding: 16px var(--gutter) 24px;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.menu-panel .menu-group + .menu-group { margin-top: 18px; }
.menu-panel .menu-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 6px; }
.menu-panel a {
  display: block; text-decoration: none; font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; letter-spacing: -0.02em; padding: 6px 0; border-bottom: 1px dashed var(--paper-3);
}
.menu-panel a[aria-current="page"] { color: var(--brick); }
.menu-panel .menu-more a { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.menu-panel .btn { margin-top: 18px; width: 100%; justify-content: center; }

@media (max-width: 1040px) {
  .nav { display: none; }
  .menu { display: block; }
}

/* 5. Buttons + tags -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.1;
  padding: 14px 22px;
  border: var(--border); border-radius: 999px;
  background: var(--card); color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); color: var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { color: #fff; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { color: var(--paper); }
.btn-gold { background: var(--marigold); }
.btn-spruce { background: var(--spruce); color: #fff; }
.btn-spruce:hover { color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 0.92rem; box-shadow: 3px 3px 0 var(--ink); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.link-arrow { font-weight: 700; text-decoration: none; border-bottom: 2px solid currentColor; padding-bottom: 1px; }
.link-arrow::after { content: " →"; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border: 1.5px solid var(--ink); border-radius: 999px; background: var(--card);
  white-space: nowrap;
}
.tag-kids { background: var(--marigold); }
.tag-teens { background: var(--ink); color: var(--paper); }
.tag-parents { background: var(--spruce); color: #fff; border-color: var(--spruce); }
.tag-workers { background: var(--brick); color: #fff; border-color: var(--brick); }
.tag-soon { background: transparent; border-style: dashed; }
.tag-free { background: var(--spruce-tint); }
.tag-example { background: transparent; border-style: dashed; color: var(--ink-3); border-color: var(--ink-3); }

.tape {                       /* strip of masking tape */
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--marigold-tint); color: var(--ink);
  padding: 6px 14px; transform: rotate(-2deg);
  box-shadow: 0 1px 0 rgba(30,26,23,.15);
  clip-path: polygon(2% 0, 98% 4%, 100% 50%, 97% 100%, 1% 96%, 0 45%);
}

/* 6. Sections -------------------------------------------------------------- */
.section { padding: var(--section) 0; }
.section-tight { padding: calc(var(--section) * 0.6) 0; }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px 40px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin: 0; max-width: 18ch; }
.section-head p { margin: 0; max-width: 46ch; color: var(--ink-2); }
.band-ink { background: var(--ink); color: var(--paper); }
.band-ink .lede, .band-ink .section-head p { color: var(--paper-3); }
.band-ink a:hover { color: var(--marigold); }
.band-paper2 { background: var(--paper-2); }
.band-gold { background: var(--marigold); }
.band-spruce { background: var(--spruce); color: #fff; }
.band-spruce .lede { color: var(--spruce-tint); }
.band-brick { background: var(--brick); color: #fff; }
.rule-top { border-top: var(--border); }
.dotgrid {
  background-color: var(--paper);
  background-image: radial-gradient(var(--paper-3) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
}

/* Page intro (non-home pages) */
.page-hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); border-bottom: var(--border); position: relative; overflow: hidden; }
.page-hero h1 { max-width: 14ch; }
.page-hero .lede { max-width: 48ch; }
.page-hero .shape { position: absolute; pointer-events: none; }
.crumbs { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; margin-bottom: 18px; color: var(--ink-3); }
.crumbs a { text-decoration: none; }

/* 7. Hero (home) ----------------------------------------------------------- */
.hero { padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 7vw, 96px); position: relative; overflow: hidden; }
.hero h1 { font-size: clamp(2.9rem, 8.2vw, 6.4rem); max-width: 11ch; margin-bottom: 0.35em; }
.hero .lede { max-width: 44ch; margin-bottom: 1.8rem; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero-note { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-3); margin-top: 1.6rem; display: flex; gap: 10px; align-items: center; }
.hero-note::before { content: ""; width: 26px; border-top: 2px solid var(--ink-3); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* 8. Doors + pillars ------------------------------------------------------- */
.doors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 28px); }
.door {
  position: relative; display: flex; flex-direction: column;
  padding: 28px 26px 26px; min-height: 290px;
  border: var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.door:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); color: inherit; }
.door .who { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.door h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 12px; }
.door p { margin: 0 0 20px; }
.door .go { margin-top: auto; font-weight: 700; display: flex; align-items: center; justify-content: space-between; border-top: 2px solid currentColor; padding-top: 14px; }
.door .go::after { content: "→"; font-size: 1.3rem; transition: transform .15s ease; }
.door:hover .go::after { transform: translateX(5px); }
.door-kids { background: var(--marigold); }
.door-parents { background: var(--spruce); color: #fff; }
.door-parents:hover { color: #fff; }
.door-workers { background: var(--brick); color: #fff; }
.door-workers:hover { color: #fff; }
.door .num { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; opacity: .55; }
@media (max-width: 860px) { .doors { grid-template-columns: 1fr; } .door { min-height: 0; } }

.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); }
.pillar { padding: 28px 26px 30px; border-right: var(--border); border-bottom: var(--border); display: flex; flex-direction: column; text-decoration: none; color: var(--ink); transition: background .15s ease; }
.pillar:nth-child(3n) { border-right: 0; }
.pillar:nth-last-child(-n+3) { border-bottom: 0; }
.pillar:hover { background: var(--paper); color: var(--ink); }
.pillar .icon { width: 52px; height: 52px; margin-bottom: 18px; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--ink-2); margin-bottom: 16px; }
.pillar .for { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 960px) {
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar:nth-child(3n) { border-right: var(--border); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-last-child(-n+3) { border-bottom: var(--border); }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 620px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; border-bottom: var(--border) !important; }
  .pillar:last-child { border-bottom: 0 !important; }
}

/* Promise strip */
.promises { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.promise { padding: 8px 24px; border-left: 2px dashed rgba(245,238,226,.28); }
.promise:first-child { border-left: 0; padding-left: 0; }
.promise strong { display: block; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 4px; color: var(--marigold); }
.promise span { color: var(--paper-3); font-size: 0.97rem; }
@media (max-width: 860px) {
  .promises { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .promise:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 480px) {
  .promises { grid-template-columns: 1fr; }
  .promise { border-left: 0; padding-left: 0; }
}

/* 9. Cards + slots --------------------------------------------------------- */
.card {
  background: var(--card); border: var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); }
.card .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.card .foot { margin-top: auto; padding-top: 12px; }
a.card { text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
a.card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); color: var(--ink); }

/* A "slot" is honest placeholder UI: dashed, labeled, still designed. */
.slot {
  background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(30,26,23,.035) 10px 20px), var(--card);
  border: 2px dashed var(--ink-3); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; position: relative;
}
.slot h3 { color: var(--ink-2); }
.slot p { color: var(--ink-3); }
.slot-label { position: absolute; top: -12px; left: 18px; }

.note-card {                  /* index card with ruled lines */
  background:
    linear-gradient(var(--brick) 0 0) 0 52px / 100% 2px no-repeat,
    repeating-linear-gradient(transparent 0 31px, #d9e4ea 31px 32px) 0 54px / 100% calc(100% - 54px) no-repeat,
    var(--card);
  border: var(--border); border-radius: 6px; box-shadow: var(--shadow);
  padding: 14px 26px 24px; line-height: 32px;
}
.note-card .note-title { font-family: var(--font-mono); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; height: 38px; display: flex; align-items: center; margin-bottom: 8px; }
.note-card p { margin: 0 0 32px; }
.note-card p:last-child { margin-bottom: 0; }

.checklist { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border: 2px solid currentColor; border-radius: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23b8432b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.band-ink .checklist li::before, .band-spruce .checklist li::before, .band-brick .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23edb03c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.nolist { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.nolist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.nolist li::before { content: "✕"; position: absolute; left: 3px; top: 0; font-weight: 700; color: var(--brick); }

/* 10. Products + ladder ---------------------------------------------------- */
.product {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0;
  background: var(--card); border: var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.product + .product { margin-top: clamp(28px, 4vw, 44px); }
.product-cover {
  position: relative; min-height: 340px; border-right: var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
}
.product-cover .cover-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: .92; letter-spacing: -.035em; }
.product-cover .cover-sub { font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.cover-rain { background: var(--spruce); color: #fff; overflow: hidden; }
.cover-rain::before {         /* rain made of dashes */
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(105deg, transparent 0 22px, rgba(255,255,255,.14) 22px 24px);
  pointer-events: none;
}
.cover-rain > * { position: relative; }
.cover-first { background: var(--marigold); color: var(--ink); }
.cover-first .clock { position: absolute; right: 24px; top: 24px; width: 86px; height: 86px; border: var(--border); border-radius: 50%; background: var(--card); }
.cover-first .clock::before, .cover-first .clock::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); border-radius: 2px; transform-origin: 50% 100%; }
.cover-first .clock::before { width: 4px; height: 30px; margin: -30px 0 0 -2px; }
.cover-first .clock::after { width: 4px; height: 22px; margin: -22px 0 0 -2px; transform: rotate(90deg); }
.product-body { padding: clamp(24px, 3.4vw, 40px); display: flex; flex-direction: column; }
.product-body h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .35em; }
.product-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: var(--border); border-radius: var(--radius); margin: 8px 0 22px; overflow: hidden; }
.product-facts div { padding: 12px 14px; border-right: var(--border); }
.product-facts div:last-child { border-right: 0; }
.product-facts dt { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
.product-facts dd { margin: 2px 0 0; font-weight: 700; }
.price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: auto; padding-top: 22px; border-top: 2px dashed var(--paper-3); }
.price {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; letter-spacing: -.03em; line-height: 1;
  display: inline-flex; align-items: flex-start;
}
.price sup { font-size: 1.2rem; margin-top: 5px; margin-right: 2px; }
.price-free { color: var(--spruce); }
@media (max-width: 820px) {
  .product { grid-template-columns: 1fr; }
  .product-cover { min-height: 220px; border-right: 0; border-bottom: var(--border); }
}
@media (max-width: 480px) {
  .product-facts { grid-template-columns: 1fr; }
  .product-facts div { border-right: 0; border-bottom: var(--border); }
  .product-facts div:last-child { border-bottom: 0; }
}

/* Buy slot: wraps a pasted Payhip button so it lands looking intentional */
.buy-slot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; min-height: 52px; }
.buy-slot .payhip-buy-button,
.buy-slot a[class*="payhip"],
.buy-slot button {
  font-family: var(--font-body) !important; font-weight: 700 !important; font-size: 1rem !important;
  background: var(--brick) !important; color: #fff !important;
  border: var(--border) !important; border-radius: 999px !important;
  padding: 14px 24px !important; box-shadow: var(--shadow) !important;
  text-decoration: none !important; cursor: pointer; line-height: 1.1 !important;
}
.buy-note { font-size: .85rem; color: var(--ink-3); }

.ladder { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; align-items: end; }
.rung {
  position: relative; border: var(--border); border-right-width: 0; background: var(--card);
  padding: 22px 18px 22px; display: flex; flex-direction: column;
}
.rung:last-child { border-right-width: 2px; border-radius: 0 var(--radius) var(--radius) 0; }
.rung:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.rung:nth-child(1) { min-height: 230px; }
.rung:nth-child(2) { min-height: 270px; }
.rung:nth-child(3) { min-height: 330px; }
.rung:nth-child(4) { min-height: 370px; }
.rung:nth-child(5) { min-height: 420px; background: var(--ink); color: var(--paper); }
.rung .price { font-size: 2.2rem; margin-bottom: 12px; }
.rung h3 { font-size: 1.2rem; }
.rung p { font-size: .95rem; color: var(--ink-2); margin-bottom: 14px; }
.rung:nth-child(5) p { color: var(--paper-3); }
.rung .tag { align-self: flex-start; margin-top: auto; }
.rung:nth-child(5) .tag { background: transparent; color: var(--paper); border-color: var(--paper); }
.rung-live { background: var(--spruce-tint); }
.rung-live h3 a { text-decoration: none; }
@media (max-width: 1080px) {
  .ladder { grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
  .rung, .rung:first-child, .rung:last-child { border-right-width: 2px; border-radius: var(--radius); min-height: 0 !important; }
}
@media (max-width: 520px) { .ladder { grid-template-columns: 1fr; } }

/* 11. Forms (Kit / ConvertKit slots) --------------------------------------- */
.signup {
  border: var(--border); border-radius: var(--radius-lg);
  background: var(--card); box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 44px);
}
.signup h2, .signup h3 { margin-bottom: .4em; }
.form-slot { margin-top: 18px; }
.form-slot form,
.form-slot .formkit-form { max-width: 520px !important; margin: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.form-slot .formkit-fields,
.fallback-form { display: flex !important; flex-wrap: wrap; gap: 10px; }
.form-slot input[type="email"],
.form-slot input[type="text"],
.form-slot .formkit-input {
  flex: 1 1 220px; min-width: 0;
  font: inherit !important; font-size: 1rem !important;
  padding: 14px 18px !important; background: var(--paper) !important; color: var(--ink) !important;
  border: var(--border) !important; border-radius: 999px !important;
}
.form-slot input:focus { outline: 3px solid var(--marigold); outline-offset: 2px; }
.form-slot button,
.form-slot .formkit-submit,
.form-slot input[type="submit"] {
  font-family: var(--font-body) !important; font-weight: 700 !important; font-size: 1rem !important;
  background: var(--ink) !important; color: var(--paper) !important;
  border: var(--border) !important; border-radius: 999px !important;
  padding: 14px 22px !important; box-shadow: 3px 3px 0 var(--brick) !important; cursor: pointer;
}
.form-slot .formkit-submit > span { padding: 0 !important; background: transparent !important; }
.form-slot .formkit-powered-by-convertkit-container { margin-top: 10px !important; }
.form-fine { font-size: .85rem; color: var(--ink-3); margin: 12px 0 0; }
.band-ink .signup, .band-spruce .signup, .band-brick .signup { color: var(--ink); }

/* inline signup strip used in footer + blog sidebar */
.signup-mini { border: var(--border); border-radius: var(--radius); background: var(--card); padding: 20px; }
.signup-mini h4 { margin-bottom: 6px; }
.signup-mini p { font-size: .95rem; color: var(--ink-2); margin-bottom: 8px; }

.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 28px); }
.track { border: var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 36px); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.track-workers { background: var(--card); border-top: 14px solid var(--brick); }
.track-parents { background: var(--card); border-top: 14px solid var(--spruce); }
@media (max-width: 820px) { .tracks { grid-template-columns: 1fr; } }

/* 12. Playground hub ------------------------------------------------------- */
.pg-hero { background: var(--marigold); border-bottom: var(--border); padding: clamp(40px, 7vw, 84px) 0; position: relative; overflow: hidden; }
.pg-hero h1 { font-size: clamp(3rem, 9vw, 6.8rem); max-width: 10ch; }
.pg-hero .lede { color: var(--ink); max-width: 38ch; }
.pg-shapes span { position: absolute; border: var(--border); display: block; }
.pg-shapes .s1 { width: 120px; height: 120px; border-radius: 50%; background: var(--brick); right: 8%; top: 16%; box-shadow: var(--shadow); }
.pg-shapes .s2 { width: 90px; height: 90px; background: var(--spruce); right: 22%; bottom: 14%; transform: rotate(18deg); border-radius: 16px; box-shadow: var(--shadow); }
.pg-shapes .s3 { width: 0; height: 0; border: 0; border-left: 60px solid transparent; border-right: 60px solid transparent; border-bottom: 100px solid var(--card); right: 4%; bottom: 10%; filter: drop-shadow(2px 0 0 var(--ink)) drop-shadow(-2px 0 0 var(--ink)) drop-shadow(0 2px 0 var(--ink)) drop-shadow(0 -2px 0 var(--ink)); transform: rotate(-12deg); }
@media (max-width: 760px) { .pg-shapes { display: none; } }

.game-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 30px); }
@media (max-width: 960px) { .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .game-grid { grid-template-columns: 1fr; } }
.game-card {
  background: var(--card); border: var(--border); border-radius: 20px;
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.game-card:hover { transform: translate(-2px, -2px) rotate(-.4deg); box-shadow: 7px 7px 0 var(--ink); }
.game-card[hidden] { display: none; }
.game-art { aspect-ratio: 16 / 10; border-bottom: var(--border); position: relative; display: grid; place-items: center; overflow: hidden; }
.game-art .glyph { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.6rem); letter-spacing: -.04em; line-height: .9; text-align: center; padding: 0 12px; }
.art-gold { background: var(--marigold); }
.art-brick { background: var(--brick); color: var(--paper); }
.art-spruce { background: var(--spruce); color: var(--paper); }
.art-ink { background: var(--ink); color: var(--marigold); }
.art-paper { background: var(--paper-2); }
.art-soon { filter: saturate(.55); }
.game-art .corner { position: absolute; top: 12px; left: 12px; color: var(--ink); }
.game-art .corner-r { left: auto; right: 12px; }
.game-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.game-body h3 { margin-bottom: 6px; }
.game-body .skill { font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--brick); font-weight: 700; margin-bottom: 8px; }
.game-body p { color: var(--ink-2); font-size: .98rem; margin-bottom: 16px; }
.game-body .foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.game-card.is-soon .btn { opacity: .55; pointer-events: none; box-shadow: none; }

/* 13. Game cabinet (Name That Feeling) ------------------------------------- */
.cabinet {
  background: var(--ink); border: var(--border); border-radius: 30px;
  padding: clamp(12px, 2vw, 20px); box-shadow: 10px 10px 0 var(--brick);
  max-width: 900px; margin: 0 auto;
}
.cabinet-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 4px 8px 14px; color: var(--paper); font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.cabinet-top .lights { display: flex; gap: 8px; }
.cabinet-top .lights i { width: 12px; height: 12px; border-radius: 50%; background: var(--brick); display: block; }
.cabinet-top .lights i:nth-child(2) { background: var(--marigold); }
.cabinet-top .lights i:nth-child(3) { background: var(--spruce-tint); }
.screen {
  background: var(--paper); border-radius: 20px; min-height: 480px;
  padding: clamp(20px, 4vw, 44px); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.screen[data-state="start"], .screen[data-state="end"] { justify-content: center; }
.game-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: .9; letter-spacing: -.04em; margin: 0 0 16px; }
.screen .lede { color: var(--ink-2); max-width: 44ch; margin-bottom: 22px; }
.how { margin-top: 22px; font-size: .92rem; color: var(--ink-3); max-width: 52ch; }

.hud { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.pips { display: flex; gap: 6px; }
.pips i { width: 26px; height: 8px; border-radius: 99px; border: 1.5px solid var(--ink); background: transparent; display: block; }
.pips i.done { background: var(--ink); }
.pips i.now { background: var(--marigold); }
.hud .deck-name { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

.ask { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; margin: 0 0 12px; }
.takeaway { border-left: 5px solid var(--brick); padding: 6px 0 6px 18px; margin: 0 0 22px; font-size: 1.05rem; max-width: 56ch; }

.adult-tip { max-width: 900px; margin: 28px auto 0; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.adult-tip .tag { margin-top: 3px; justify-self: start; }
.adult-tip p { margin: 0; color: var(--ink-2); }
@media (max-width: 560px) { .adult-tip { grid-template-columns: 1fr; } }

@keyframes pop { from { transform: scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }

/* 14. Filters -------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 28px; }
.filters .label { font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin-right: 6px; }
.chip {
  font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; color: var(--ink);
  background: var(--card); border: var(--border); border-radius: 999px; padding: 8px 16px;
}
.chip:hover { background: var(--paper-2); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* 15. Videos --------------------------------------------------------------- */
.video-section + .video-section { margin-top: clamp(48px, 7vw, 80px); }
.video-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.video-head h2 { margin: 0; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.video-head .line { flex: 1; border-top: var(--border); min-width: 40px; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 26px); }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }
.video { margin: 0; }
.embed {
  position: relative; aspect-ratio: 16 / 9; border: var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--ink); box-shadow: var(--shadow);
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed-placeholder { display: grid; place-items: center; color: var(--paper); text-align: center; padding: 16px; }
.embed-placeholder::before {  /* film-strip edges */
  content: ""; position: absolute; left: 0; right: 0; top: 8px; height: 8px;
  background: repeating-linear-gradient(90deg, rgba(245,238,226,.22) 0 12px, transparent 12px 24px);
}
.embed-placeholder::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 8px;
  background: repeating-linear-gradient(90deg, rgba(245,238,226,.22) 0 12px, transparent 12px 24px);
}
.embed-kids::before, .embed-kids::after { background: repeating-linear-gradient(90deg, rgba(30,26,23,.18) 0 12px, transparent 12px 24px); }
.embed-placeholder .play {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--paper);
  display: grid; place-items: center; margin: 0 auto 10px;
}
.embed-placeholder .play::after { content: ""; border-left: 18px solid var(--paper); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }
.embed-placeholder small { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.embed-kids { background: var(--marigold); color: var(--ink); }
.embed-kids .play { border-color: var(--ink); }
.embed-kids .play::after { border-left-color: var(--ink); }
.embed-teens { background: var(--ink); }
.embed-adults { background: var(--spruce); }
.video figcaption { padding: 12px 2px 0; display: flex; justify-content: space-between; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.video figcaption b { font-size: 1rem; }

.channel-card { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; }
.yt-mark { width: 64px; height: 46px; background: var(--brick); border: var(--border); border-radius: 12px; display: grid; place-items: center; }
.yt-mark::after { content: ""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
@media (max-width: 640px) { .channel-card { grid-template-columns: 1fr; } }

/* 16. Ages ----------------------------------------------------------------- */
.age-switch { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 28px); }
.age-jump {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: var(--border); border-radius: var(--radius-lg); padding: 22px 26px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-lg); transition: transform .15s ease, box-shadow .15s ease;
}
.age-jump:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); color: inherit; }
.age-jump .range { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 8vw, 5.4rem); letter-spacing: -.05em; line-height: .85; }
.age-jump .lbl { font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; text-align: right; }
.age-jump.kids { background: var(--marigold); }
.age-jump.teens { background: var(--ink); color: var(--paper); }
.age-jump.teens:hover { color: var(--paper); }
@media (max-width: 640px) { .age-switch { grid-template-columns: 1fr; } }

.age-block { border-top: var(--border); padding: var(--section) 0; scroll-margin-top: 80px; }
.age-block-head { display: grid; grid-template-columns: auto 1fr; gap: 12px 40px; align-items: end; margin-bottom: 36px; }
.age-block-head .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 16vw, 11rem); letter-spacing: -.06em; line-height: .78; }
.age-block.kids .big { color: var(--marigold); -webkit-text-stroke: 2px var(--ink); }
.age-block.teens .big { color: var(--brick); -webkit-text-stroke: 2px var(--ink); }
.age-block-head h2 { margin-bottom: .2em; }
@media (max-width: 720px) { .age-block-head { grid-template-columns: 1fr; } }
.focus-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.focus-list li { border: 1.5px solid var(--ink); border-radius: 99px; padding: 5px 12px; font-weight: 700; font-size: .92rem; background: var(--card); }

/* 17. Blog + post ---------------------------------------------------------- */
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(28px, 5vw, 64px); align-items: start; }
.blog-side { position: sticky; top: 96px; display: grid; gap: 22px; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } .blog-side { position: static; } }
.post-list { display: grid; gap: 26px; }
.post-item { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding-bottom: 26px; border-bottom: 2px dashed var(--paper-3); }
.post-item .date { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-3); padding-top: 6px; }
.post-item h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .3em; }
.post-item h2 a { text-decoration: none; }
.post-item p { color: var(--ink-2); }
@media (max-width: 620px) { .post-item { grid-template-columns: 1fr; gap: 8px; } }
.topic-list { display: flex; flex-wrap: wrap; gap: 8px; }

.post-head { padding: clamp(48px, 8vw, 96px) 0 36px; border-bottom: var(--border); }
.post-head h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 18ch; }
.post-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; font-family: var(--font-mono); font-size: .82rem; color: var(--ink-3); }
.prose { max-width: 680px; margin: 0 auto; padding: 48px 0 24px; font-size: 1.15rem; line-height: 1.72; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.2rem); margin: 2em 0 .6em; }
.prose h3 { margin: 1.8em 0 .5em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--brick); font-weight: 700; }
.prose blockquote {
  margin: 2em 0; padding: 18px 24px; background: var(--card); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.3; letter-spacing: -.01em;
}
.prose blockquote p { margin: 0; }
.prose .callout { background: var(--marigold-tint); border-left: 6px solid var(--marigold); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6em 0; }
.prose .callout p:last-child { margin: 0; }
.prose code { font-family: var(--font-mono); font-size: .88em; background: var(--paper-2); padding: 2px 6px; border-radius: 5px; }
.post-end { max-width: 680px; margin: 0 auto 72px; }

/* 18. Support / about ------------------------------------------------------ */
.faq { border-top: var(--border); }
.faq details { border-bottom: var(--border); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 0 22px; max-width: 64ch; color: var(--ink-2); }
.policy { border: 3px solid var(--ink); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); background: var(--card); box-shadow: var(--shadow-lg); position: relative; }
.policy .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -.04em; line-height: .95; margin-bottom: 12px; }
.contact-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3.6vw, 2.4rem); letter-spacing: -.02em; word-break: break-all; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; }
.steps li::before {
  content: counter(step); width: 44px; height: 44px; border-radius: 50%; border: var(--border); background: var(--marigold);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
.steps li b { display: block; margin-bottom: 2px; }
.steps li span { color: var(--ink-2); }

.manifesto { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.8vw, 2.8rem); line-height: 1.12; letter-spacing: -.025em; max-width: 24ch; }
.manifesto s { text-decoration-thickness: 4px; text-decoration-color: var(--brick); color: var(--ink-3); }
.band-ink .manifesto s { color: var(--paper-3); opacity: .6; }
.founder-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: start; }
.founder-mono {
  aspect-ratio: 1; border: var(--border); border-radius: 50%; background: var(--brick); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 5rem; color: var(--paper);
}
@media (max-width: 620px) { .founder-card { grid-template-columns: 1fr; } .founder-mono { width: 130px; } }

/* 19. Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(56px, 8vw, 88px) 0 28px; border-top: var(--border); }
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(32px, 6vw, 80px); padding-bottom: 44px; border-bottom: 1px solid rgba(245,238,226,.18); }
.footer-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.footer-cols h4 { font-family: var(--font-mono); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--marigold); margin-bottom: 14px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { text-decoration: none; color: var(--paper-3); }
.footer-cols a:hover { color: var(--paper); text-decoration: underline; }
.site-footer .brand { color: var(--paper); margin-bottom: 18px; }
.site-footer .brand-name span { color: var(--paper-3); }
.site-footer .brand-mark { box-shadow: 3px 3px 0 var(--marigold); }
.site-footer .signup-mini { background: #2a2521; border-color: rgba(245,238,226,.25); color: var(--paper); }
.site-footer .signup-mini p { color: var(--paper-3); }
.site-footer .form-slot input[type="email"], .site-footer .form-slot .formkit-input { background: var(--paper) !important; }
.site-footer .form-slot button, .site-footer .form-slot .formkit-submit { background: var(--marigold) !important; color: var(--ink) !important; box-shadow: none !important; }
.site-footer .fallback-form .btn { background: var(--marigold); box-shadow: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 24px; font-size: .88rem; color: var(--paper-3); }
.footer-bottom a { color: var(--paper-3); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(245,238,226,.35); border-radius: 999px; padding: 7px 14px; text-decoration: none; font-size: .9rem; color: var(--paper); }
.socials a:hover { border-color: var(--marigold); color: var(--marigold); }
.socials svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr 1fr; } }

/* 20. Utilities + motion --------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.maxw { max-width: 60ch; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.tilt-l { transform: rotate(-1.2deg); } .tilt-r { transform: rotate(1.2deg); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .site-footer, .menu { display: none; }
  body { background: #fff; }
}

/* 21. Visual layer ---------------------------------------------------------
   Collages, stickers, booklets, badges, marquees, motion.
   Everything is type, color, and shape: no photos, no image files. */

/* Paper grain over the whole site (an SVG noise tile, ~1 KB) */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .12 0 0 0 0 .1 0 0 0 0 .08 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Serif italic accent: one word per headline, zine-style contrast */
h1 em, h2 em, h3 em, .manifesto em, .serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  letter-spacing: -0.015em; font-size: 1.1em; line-height: .9;
  color: var(--brick);
}
.band-ink h2 em, .band-ink .manifesto em, .band-spruce h1 em, .band-spruce h2 em, .band-brick h2 em, .site-footer em { color: var(--marigold); }
.band-gold h1 em, .band-gold h2 em, .pg-hero h1 em { color: var(--brick-deep); }
.annot {                       /* handwritten-feeling margin note */
  font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; line-height: 1.1; color: var(--brick);
}

/* Hero layout (home) */
.hero-grid { grid-template-columns: 1.05fr 0.95fr; }
.hero { padding-bottom: clamp(56px, 7vw, 96px); }

/* ---- Collage: absolutely-positioned stickers inside a square stage ---- */
.collage {
  position: relative; width: 100%; max-width: 520px; aspect-ratio: 1 / 1;
  justify-self: end; container-type: inline-size;
}
.collage > * { position: absolute; }
.stk { border: var(--border); box-shadow: var(--shadow-lg); background: var(--card); }
.page-hero .hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.page-hero .collage { max-width: 440px; }
@media (max-width: 860px) {
  .page-hero .hero-split { grid-template-columns: 1fr; }
  .collage, .page-hero .collage { justify-self: center; max-width: 380px; margin-top: 8px; }
}

/* Sparkle */
.sparkle { width: 7cqw; min-width: 22px; animation: twinkle 3.2s ease-in-out infinite; }
.sparkle.sp-2 { animation-delay: -1.6s; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(.72) rotate(20deg); } }

/* Rotating circular text badge */
.spin-badge { width: var(--size, 32cqw); aspect-ratio: 1; z-index: 4; }
.spin-badge svg { width: 100%; height: 100%; overflow: visible; }
.spin-badge .ring { animation: spin 26s linear infinite; transform-origin: 50% 50%; }
.spin-badge text { font-family: var(--font-mono); font-weight: 700; font-size: 15.5px; letter-spacing: 1.5px; text-transform: uppercase; fill: var(--ink); }
.spin-badge .core { font-family: var(--font-display); font-weight: 800; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Home collage */
.c-b {
  left: 8%; top: 13%; width: 50%; aspect-ratio: 1; border-radius: 16%;
  background: var(--brick); color: var(--paper); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 36cqw; line-height: 1;
  transform: rotate(-7deg); z-index: 1;
}
.c-game {
  right: 0; top: 3%; width: 45%; border-radius: 18px; padding: 5cqw 5cqw 4.5cqw;
  background: var(--marigold); transform: rotate(6deg); z-index: 2;
}
.c-game .lbl { font-family: var(--font-mono); font-size: 2.4cqw; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; display: block; }
.c-game b { display: block; font-family: var(--font-display); font-size: 8.4cqw; letter-spacing: -.04em; line-height: .95; margin: 1.5cqw 0 3cqw; }
.c-game .pills { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6cqw; }
.c-game .pills i { font-style: normal; font-weight: 700; font-size: 2.6cqw; background: var(--card); border: 1.5px solid var(--ink); border-radius: 8px; padding: 1.4cqw 1.8cqw; }
.c-game .pills i.on { background: var(--spruce-tint); outline: 2px solid var(--ink); outline-offset: 1px; }
.c-book { right: 5%; bottom: 3%; width: 34%; transform: rotate(9deg); z-index: 3; --bk-size: 5.4cqw; }
.c-chat { left: 0; bottom: 5%; width: 54%; display: grid; gap: 2.4cqw; z-index: 3; transform: rotate(-3deg); }
.c-chat .bubble { font-size: 3.5cqw; padding: 2.6cqw 3.6cqw; }
.c-badge { left: -2%; top: -3%; --size: 31cqw; }
.c-sp1 { left: 58%; top: 40%; z-index: 4; }
.c-sp2 { left: 2%; top: 64%; width: 5cqw; z-index: 4; }

/* Speech bubbles */
.bubble {
  position: relative; display: inline-block; justify-self: start; max-width: 100%;
  background: var(--card); color: var(--ink);
  border: var(--border); border-radius: 18px 18px 18px 4px; box-shadow: 3px 3px 0 var(--ink);
  font-weight: 700; line-height: 1.25;
}
.bubble.me { justify-self: end; border-radius: 18px 18px 4px 18px; }
.bubble.ink { background: var(--ink); color: var(--paper); box-shadow: 3px 3px 0 var(--brick); }
.bubble.gold { background: var(--marigold); }
.bubble.tint { background: var(--spruce-tint); }
.bubble small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .72em; opacity: .7; margin-top: 2px; }

/* Booklet mockup: a PDF pack drawn as a printed booklet with a page stack */
.booklet {
  position: relative; aspect-ratio: .77; border: var(--border); border-radius: 3px 10px 10px 3px;
  padding: 11% 11% 10% 16%; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow:
    5px 5px 0 -1px var(--card), 5px 5px 0 1px var(--ink),
    10px 10px 0 -1px var(--card), 10px 10px 0 1px var(--ink),
    18px 20px 0 1px rgba(30,26,23,.16);
  overflow: hidden;
}
.booklet::before { content: ""; position: absolute; left: 8%; top: 0; bottom: 0; border-left: 2px solid rgba(30,26,23,.22); }
.booklet > * { position: relative; }
.bk-title { font-family: var(--font-display); font-weight: 800; line-height: .9; letter-spacing: -.04em; font-size: var(--bk-size, 2.2rem); }
.bk-meta { font-family: var(--font-mono); font-size: max(9px, calc(var(--bk-size, 2.2rem) * .3)); text-transform: uppercase; letter-spacing: .08em; }
.bk-mark { width: 22%; aspect-ratio: 1; border: 2px solid currentColor; border-radius: 22%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: calc(var(--bk-size, 2.2rem) * .55); }
.bk-rain { background: var(--spruce); color: #fff; }
.bk-rain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(105deg, transparent 0 18px, rgba(255,255,255,.13) 18px 20px);
}
.bk-first { background: var(--marigold); color: var(--ink); }
.bk-brick { background: var(--brick); color: #fff; }
.bk-soon { background: var(--paper); border-style: dashed; box-shadow: 8px 8px 0 -2px var(--paper-2); color: var(--ink-3); }

/* Round sticker (price, "free", etc.) */
.sticker {
  display: grid; place-items: center; text-align: center; aspect-ratio: 1; border-radius: 50%;
  border: var(--border); box-shadow: var(--shadow); background: var(--marigold);
  font-family: var(--font-display); font-weight: 800; line-height: .95; letter-spacing: -.03em;
}
.sticker small { display: block; font-family: var(--font-mono); font-weight: 700; font-size: .5em; letter-spacing: .06em; text-transform: uppercase; }

/* Starburst sticker (outline via drop-shadow so the points keep an ink edge) */
.burst-wrap { filter: drop-shadow(2px 0 0 var(--ink)) drop-shadow(-2px 0 0 var(--ink)) drop-shadow(0 2px 0 var(--ink)) drop-shadow(0 -2px 0 var(--ink)) drop-shadow(4px 4px 0 var(--ink)); }
.burst {
  width: 100%; aspect-ratio: 1; background: var(--brick); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: .9;
  clip-path: polygon(50% 0%, 56.5% 17.2%, 71.1% 5.9%, 70.2% 24.3%, 88.3% 21.1%, 80.1% 37.5%, 97.8% 42.9%, 83% 53.8%, 96.4% 66.5%, 78.4% 69.6%, 81.9% 87.6%, 65.8% 78.8%, 58.7% 95.8%, 50% 79.5%, 41.3% 95.8%, 34.2% 78.8%, 18.1% 87.6%, 21.6% 69.6%, 3.6% 66.5%, 17% 53.8%, 2.2% 42.9%, 19.9% 37.5%, 11.7% 21.1%, 29.8% 24.3%, 28.9% 5.9%, 43.5% 17.2%);
}

/* Marquee ticker */
.marquee-wrap { overflow: hidden; padding: 18px 0; margin: -18px 0; position: relative; z-index: 5; }
.marquee {
  background: var(--ink); color: var(--marigold); border-block: var(--border);
  transform: rotate(-1.4deg); margin: 0 -40px; overflow: hidden;
}
.marquee.gold { background: var(--marigold); color: var(--ink); }
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.25rem, 2.6vw, 2rem); letter-spacing: -.02em;
  padding: 14px 0; white-space: nowrap; display: flex; align-items: center;
}
.marquee-track span::after { content: "✺"; color: var(--paper); margin: 0 26px; font-size: .75em; }
.marquee.gold .marquee-track span::after { color: var(--brick); }
.marquee-track em { font-family: var(--font-serif); font-weight: 400; font-size: 1.12em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Doors get illustrations */
.door-art { width: 76px; height: 76px; margin: 4px 0 18px; transition: transform .25s ease; }
.door:hover .door-art { transform: rotate(-8deg) scale(1.06); }
.pillar .icon { transition: transform .25s ease; }
.pillar:hover .icon { transform: rotate(-8deg) scale(1.08); }

/* Video collage */
.tv { border-radius: 16px; display: grid; place-items: center; aspect-ratio: 16 / 10; overflow: hidden; }
.tv::before, .tv::after { content: ""; position: absolute; left: 0; right: 0; height: 7px; background: repeating-linear-gradient(90deg, rgba(245,238,226,.25) 0 10px, transparent 10px 20px); }
.tv::before { top: 7px; } .tv::after { bottom: 7px; }
.tv .play { width: 13cqw; aspect-ratio: 1; border-radius: 50%; border: 2px solid currentColor; display: grid; place-items: center; }
.tv .play::after { content: ""; border-left: 4.2cqw solid currentColor; border-top: 2.6cqw solid transparent; border-bottom: 2.6cqw solid transparent; margin-left: 1cqw; }
.tv-1 { left: 0; top: 20%; width: 58%; background: var(--marigold); color: var(--ink); transform: rotate(-6deg); z-index: 2; }
.tv-1::before, .tv-1::after { background: repeating-linear-gradient(90deg, rgba(30,26,23,.2) 0 10px, transparent 10px 20px); }
.tv-2 { right: 0; top: 2%; width: 54%; background: var(--ink); color: var(--paper); transform: rotate(5deg); z-index: 1; }
.tv-3 { left: 26%; bottom: 8%; width: 62%; background: var(--spruce); color: var(--paper); transform: rotate(2deg); z-index: 3; }
.rec { position: absolute; left: 7%; top: 18%; font-family: var(--font-mono); font-size: 2.6cqw; font-weight: 700; letter-spacing: .1em; display: flex; align-items: center; gap: 1.4cqw; }
.rec::before { content: ""; width: 2.6cqw; aspect-ratio: 1; border-radius: 50%; background: var(--brick); animation: blink 1.2s steps(2, jump-none) infinite; }
@keyframes blink { 50% { opacity: .15; } }
.v-tags { left: 2%; bottom: 4%; display: flex; flex-direction: column; gap: 1.4cqw; z-index: 4; transform: rotate(-4deg); }
.v-tags .tag { font-size: 2.6cqw; }

/* Height chart (ages) */
.chart-floor { left: 0; right: 0; bottom: 6%; border-top: 3px solid var(--ink); }
.ruler {
  left: 3%; top: 4%; bottom: 6%; width: 15%; background: var(--marigold-tint); border-radius: 8px 8px 0 0;
  background-image:
    repeating-linear-gradient(to top, var(--ink) 0 2px, transparent 2px 4.6cqw),
    repeating-linear-gradient(to top, var(--ink) 0 2px, transparent 2px 1.15cqw);
  background-size: 45% 100%, 22% 100%; background-repeat: no-repeat; background-position: right bottom, right bottom;
  box-shadow: var(--shadow);
}
.mark-line { left: 18%; right: 4%; border-top: 2px dashed var(--ink); z-index: 1; }
.mark-line span { position: absolute; left: 0; top: 0; transform: translateY(-120%); font-family: var(--font-mono); font-weight: 700; font-size: 2.8cqw; letter-spacing: .06em; background: var(--paper); padding: 0 1.4cqw; }
.ml-kid { bottom: calc(6% + 50%); }
.ml-teen { bottom: calc(6% + 79%); }
.person { bottom: 6%; display: flex; flex-direction: column; align-items: center; z-index: 2; }
.person .head { width: 58%; aspect-ratio: 1; border-radius: 50%; border: var(--border); background: var(--card); margin-bottom: -2px; position: relative; }
.person .head::before, .person .head::after { content: ""; position: absolute; top: 44%; width: 9%; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }
.person .head::before { left: 30%; } .person .head::after { right: 30%; }
.person .body { width: 100%; border: var(--border); border-bottom: 0; border-radius: 40% 40% 0 0 / 22% 22% 0 0; flex: 1; }
.p-kid { left: 27%; width: 25%; height: 50%; }
.p-kid .body { background: var(--marigold); }
.p-teen { left: 61%; width: 27%; height: 79%; }
.p-teen .body { background: var(--brick); }
.p-teen .head { width: 52%; }
.chart-note { right: 0; top: 30%; transform: rotate(6deg); text-align: right; }
.chart-note .annot { font-size: 4.2cqw; }

/* Chat collage (parents) */
.chat { display: grid; gap: 14px; width: 100%; max-width: 440px; justify-self: end; }
.chat .bubble { font-size: clamp(1rem, 1.6vw, 1.2rem); padding: 12px 18px; }
.chat .divider { justify-self: center; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--spruce-tint); display: flex; align-items: center; gap: 10px; }
.chat .divider::before, .chat .divider::after { content: ""; width: 40px; border-top: 1.5px dashed currentColor; }
@media (max-width: 860px) { .chat { justify-self: stretch; } }

/* Booklet fan (store) */
.fan-1 { left: 2%; top: 14%; width: 44%; transform: rotate(-11deg); --bk-size: 6.4cqw; z-index: 1; }
.fan-2 { left: 30%; top: 6%; width: 44%; transform: rotate(3deg); --bk-size: 6.4cqw; z-index: 2; }
.fan-3 { right: 0; top: 20%; width: 40%; transform: rotate(13deg); --bk-size: 5.4cqw; z-index: 0; }
.fan-price { left: 8%; bottom: 8%; width: 25%; font-size: 8cqw; z-index: 3; transform: rotate(-10deg); }
.fan-free { right: 10%; bottom: 4%; width: 23%; font-size: 5.4cqw; z-index: 3; transform: rotate(9deg); background: var(--spruce-tint); }

/* Envelope (newsletter) */
.env { left: 4%; right: 4%; bottom: 10%; height: 56%; background: var(--card); border-radius: 10px; z-index: 2; overflow: hidden; }
.env::before {                /* flap folds */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top right, transparent calc(50% - 1.5px), var(--ink) calc(50% - 1.5px) calc(50% + 1px), transparent calc(50% + 1px)) left bottom / 50% 62% no-repeat,
    linear-gradient(to top left, transparent calc(50% - 1.5px), var(--ink) calc(50% - 1.5px) calc(50% + 1px), transparent calc(50% + 1px)) right bottom / 50% 62% no-repeat;
}
.letter {
  left: 13%; right: 13%; top: 8%; height: 52%; background: var(--card); z-index: 1; border-radius: 6px;
  padding: 6cqw 6cqw; transform: rotate(-3deg);
}
.letter b { font-family: var(--font-display); font-size: 6.4cqw; letter-spacing: -.03em; display: block; line-height: 1; }
.letter .lines { margin-top: 4cqw; display: grid; gap: 2.4cqw; }
.letter .lines i { display: block; height: 1.6cqw; border-radius: 9px; background: var(--paper-3); }
.letter .lines i:nth-child(2) { width: 82%; } .letter .lines i:nth-child(3) { width: 64%; background: var(--marigold); }
.stamp-b {
  right: 9%; bottom: 36%; width: 17%; aspect-ratio: .85; z-index: 3; transform: rotate(8deg);
  background: var(--brick); color: var(--paper); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 9cqw;
  border: 3px dashed var(--card); outline: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
}
.env-tags { left: 6%; bottom: 2%; z-index: 4; display: flex; gap: 2cqw; transform: rotate(-3deg); }
.env-tags .tag { font-size: 2.6cqw; }
.env-sp { right: 2%; top: 4%; }

/* Index cards (blog) */
.icard {
  width: 64%; aspect-ratio: 1.45; padding: 4cqw 5cqw; border-radius: 4px; border: var(--border); box-shadow: var(--shadow-lg);
  background:
    linear-gradient(var(--brick) 0 0) 0 13cqw / 100% 2px no-repeat,
    repeating-linear-gradient(transparent 0 6.4cqw, #d9e4ea 6.4cqw calc(6.4cqw + 1.5px)) 0 13cqw / 100% 100% no-repeat,
    var(--card);
}
.icard b { font-family: var(--font-mono); font-size: 2.8cqw; letter-spacing: .08em; text-transform: uppercase; display: block; height: 9cqw; }
.icard .annot { font-size: 5.4cqw; color: var(--ink); line-height: 6.4cqw; display: block; }
.icard .annot s { text-decoration-color: var(--brick); text-decoration-thickness: 3px; color: var(--ink-3); }
.icard .tp { position: absolute; top: -4.4cqw; left: 32%; width: 34%; height: 7.5cqw; background: rgba(237,176,60,.72); transform: rotate(-4deg); clip-path: polygon(3% 0, 97% 6%, 100% 50%, 96% 100%, 2% 94%, 0 45%); }
.ic-1 { left: 0; top: 6%; transform: rotate(-6deg); z-index: 1; }
.ic-2 { right: 0; top: 34%; transform: rotate(5deg); z-index: 2; }
.ic-3 { left: 8%; bottom: 2%; transform: rotate(-2deg); z-index: 3; width: 58%; }

/* Refund calendar + stamp (support) */
.cal { left: 6%; top: 8%; width: 56%; border-radius: 14px; overflow: hidden; transform: rotate(-5deg); z-index: 1; text-align: center; }
.cal .top { background: var(--brick); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 3.2cqw; letter-spacing: .1em; text-transform: uppercase; padding: 3cqw 0; border-bottom: var(--border); position: relative; }
.cal .top::before, .cal .top::after { content: ""; position: absolute; top: -1.6cqw; width: 2.6cqw; height: 6cqw; background: var(--paper); border: 2px solid var(--ink); border-radius: 9px; }
.cal .top::before { left: 24%; } .cal .top::after { right: 24%; }
.cal .num { font-family: var(--font-display); font-weight: 800; font-size: 30cqw; letter-spacing: -.06em; line-height: .95; padding: 2cqw 0 0; }
.cal .sub { font-family: var(--font-mono); font-size: 3cqw; letter-spacing: .1em; text-transform: uppercase; padding-bottom: 5cqw; }
.stamp-round { right: 2%; bottom: 8%; --size: 44cqw; transform: rotate(-12deg); }
.stamp-round text { fill: var(--brick); font-size: 14px; }

/* Playground hero extras */
.coin {
  position: absolute; right: 7%; top: 58%; z-index: 2; transform: rotate(-7deg);
  background: var(--card); border: var(--border); box-shadow: var(--shadow); border-radius: 12px;
  padding: 12px 16px; font-weight: 700; line-height: 1.2;
}
.coin small { display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 400; }
.coin .annot { font-size: 1.5rem; }
@media (max-width: 760px) { .coin { display: none; } }

/* Arcade cabinet: marquee sign with bulbs + control panel */
.cabinet-sign {
  position: relative; margin: 0 0 16px; padding: 20px 16px 18px; text-align: center;
  background: var(--brick); border: var(--border); border-color: var(--paper); border-radius: 18px;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 4.6vw, 2.8rem); line-height: 1;
  letter-spacing: .02em; text-transform: uppercase; color: var(--marigold); text-shadow: 3px 3px 0 var(--ink);
}
.cabinet-sign::before {
  content: ""; position: absolute; inset: 6px; border: 5px dotted #ffe6a1; border-radius: 12px;
  animation: bulbs 1.1s steps(2, jump-none) infinite;
}
.cabinet-sign small { display: block; font-family: var(--font-mono); font-weight: 700; font-size: .7rem; letter-spacing: .14em; color: var(--paper); text-shadow: none; margin-top: 6px; }
@keyframes bulbs { 50% { opacity: .45; } }
.cabinet-controls { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 6vw, 56px); padding: 18px 8px 6px; }
.stick { width: 54px; height: 54px; position: relative; }
.stick::before { content: ""; position: absolute; left: 50%; bottom: 4px; width: 8px; height: 30px; margin-left: -4px; background: var(--paper-3); border-radius: 4px; }
.stick::after { content: ""; position: absolute; left: 50%; top: 0; width: 28px; height: 28px; margin-left: -14px; border-radius: 50%; background: var(--brick); border: 2px solid var(--paper); }
.stick i { position: absolute; left: 6px; right: 6px; bottom: 0; height: 12px; border-radius: 50%; background: #2c2622; border: 2px solid var(--paper-3); }
.btn-dots { display: flex; gap: 14px; }
.btn-dots i { width: 30px; height: 30px; border-radius: 50%; background: var(--marigold); border: 2px solid var(--paper); box-shadow: 0 4px 0 #7a5a18; display: block; }
.btn-dots i:nth-child(2) { background: var(--spruce-tint); box-shadow: 0 4px 0 #6d8a7f; transform: translateY(-8px); }
.btn-dots i:nth-child(3) { background: var(--brick); box-shadow: 0 4px 0 var(--brick-deep); }
.cabinet-controls .slot-coin { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-3); border: 1.5px solid var(--paper-3); border-radius: 6px; padding: 6px 10px; }
@media (max-width: 480px) { .cabinet-controls .slot-coin { display: none; } }

/* Confetti (fires on a strong read) */
.confetti { position: absolute; top: -12px; width: 10px; height: 14px; z-index: 20; pointer-events: none; animation: confetti 1.3s cubic-bezier(.2,.6,.4,1) forwards; }
@keyframes confetti {
  0% { transform: translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: translate(var(--dx, 0), 420px) rotate(var(--rot, 540deg)); opacity: 0; }
}

/* Product cover panel with booklet */
.product-cover.panel { justify-content: center; align-items: center; min-height: 400px; padding: 44px 28px; container-type: inline-size; }
.product-cover.panel .booklet { width: min(62%, 250px); transform: rotate(-5deg); --bk-size: clamp(1.6rem, 9cqw, 2.4rem); }
.product-cover.panel .sticker { position: absolute; right: 9%; bottom: 10%; width: clamp(70px, 22cqw, 96px); font-size: clamp(1.4rem, 7cqw, 2rem); transform: rotate(12deg); }
.panel-rain { background: var(--spruce-tint); background-image: radial-gradient(rgba(36,87,79,.22) 1.4px, transparent 1.6px); background-size: 18px 18px; }
.panel-first { background: var(--marigold-tint); background-image: radial-gradient(rgba(142,50,32,.16) 1.4px, transparent 1.6px); background-size: 18px 18px; }
@media (max-width: 820px) { .product-cover.panel { min-height: 320px; } }

/* Toolkit hero: burst + booklet peeking behind the form */
.tk-burst { position: absolute; width: clamp(96px, 12vw, 136px); right: 2%; top: -8px; transform: rotate(10deg); z-index: 2; }
.tk-burst .burst { font-size: clamp(1.2rem, 1.9vw, 1.6rem); }
.tk-burst .burst small { display: block; font-family: var(--font-mono); font-size: .45em; letter-spacing: .08em; }
.signup-stage { position: relative; }
.signup-stage .booklet { position: absolute; width: 190px; right: -34px; top: -70px; transform: rotate(12deg); --bk-size: 1.7rem; z-index: 0; }
.signup-stage .signup { position: relative; z-index: 1; }
@media (max-width: 960px) { .signup-stage .booklet { display: none; } .tk-burst { position: relative; right: auto; top: auto; margin-bottom: 12px; } }

/* About: badge ring around the monogram */
.mono-ring { position: relative; width: 100%; max-width: 230px; aspect-ratio: 1; }
.mono-ring .spin-badge { position: absolute; inset: 0; width: 100%; }
.mono-ring .founder-mono { position: absolute; inset: 17%; box-shadow: var(--shadow); font-size: clamp(3rem, 6vw, 4.4rem); }
.founder-card.ring { grid-template-columns: 230px 1fr; }
@media (max-width: 620px) { .founder-card.ring { grid-template-columns: 1fr; } .mono-ring { max-width: 180px; } }

/* Ages: teens block goes dark */
.age-block.teens.band-ink .big { -webkit-text-stroke: 0; }
.focus-list li { color: var(--ink); }
.band-ink .card { color: var(--ink); }
.band-ink .eyebrow { color: var(--marigold); }

/* Footer wordmark */
.footer-word {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(4.4rem, 20.5vw, 18rem);
  line-height: .78; letter-spacing: -.065em; white-space: nowrap; text-align: center;
  color: transparent; -webkit-text-stroke: 1.5px rgba(245,238,226,.28);
  margin: clamp(40px, 6vw, 72px) 0 -0.08em; user-select: none; overflow: hidden;
}
.footer-word em { font-family: var(--font-serif); font-weight: 400; -webkit-text-stroke: 0; color: var(--marigold); font-size: .5em; letter-spacing: -.02em; vertical-align: .9em; margin-left: .06em; }
.site-footer { overflow: hidden; padding-bottom: 0; }
.site-footer .footer-bottom { padding-bottom: 28px; }

/* Section-head flourish: small numbered label */
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.kicker b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: .72rem; }
.band-ink .kicker b { background: var(--marigold); color: var(--ink); }

/* Scroll-in reveal: CSS scroll-driven animations; browsers without support just show everything */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .door, .pillar, .card, .product, .game-card, .rung, .video, .track, .slot, .post-item, .policy, .signup, .age-jump, .promise, .steps li, .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }
  }
}
@keyframes rise { from { opacity: 0; translate: 0 36px; } to { opacity: 1; translate: 0 0; } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .spin-badge .ring, .sparkle, .cabinet-sign::before, .rec::before { animation: none !important; }
}

/* 22. Age bands, Pre-K to Grade 12 -----------------------------------------
   One color per band, used everywhere a band appears.
   Pre-K = marigold · K-5 = sky · Grades 6-8 = brick · Grades 9-12 = ink
   Shapes get rounder and bouncier toward Pre-K, straighter toward Grade 12. */
:root {
  --sky: #9cc8d4;
  --sky-tint: #deedf1;
  --lilac: #8a7fb0;
}
.tag-prek { background: var(--marigold); }
.tag-k5 { background: var(--sky); }
.tag-68 { background: var(--brick); color: #fff; border-color: var(--brick); }
.tag-912 { background: var(--ink); color: var(--paper); }
.band-sky { background: var(--sky-tint); }
.band-goldtint { background: var(--marigold-tint); }

/* Growth path (home): four bands, rising like a staircase */
.path { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 2vw, 22px); align-items: end; }
.stop {
  position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  border: var(--border); box-shadow: var(--shadow-lg); padding: 22px 20px 20px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.stop:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); color: inherit; }
.stop .grade { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -.05em; line-height: .85; margin-bottom: 10px; }
.stop .persona { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; line-height: 1.1; margin-bottom: 10px; min-height: 1.3em; }
.stop p { font-size: .95rem; margin: 0 0 16px; }
.stop .go { margin-top: auto; font-weight: 700; border-top: 2px solid currentColor; padding-top: 10px; display: flex; justify-content: space-between; }
.stop .go::after { content: "→"; }
.stop-prek { min-height: 280px; background: var(--marigold); border-radius: 34px; }
.stop-k5 { min-height: 320px; background: var(--sky); border-radius: 24px; }
.stop-68 { min-height: 360px; background: var(--brick); color: #fff; border-radius: 14px; }
.stop-68:hover { color: #fff; }
.stop-912 { min-height: 400px; background: var(--ink); color: var(--paper); border-radius: 6px; box-shadow: 7px 7px 0 var(--brick); }
.stop-912:hover { color: var(--paper); box-shadow: 10px 10px 0 var(--brick); }
@media (max-width: 960px) { .path { grid-template-columns: 1fr 1fr; align-items: stretch; } .stop { min-height: 0 !important; } }
@media (max-width: 520px) { .path { grid-template-columns: 1fr; } }

/* Content pillars (the four) */
.pillars4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 22px); }
.p4 { border: var(--border); border-radius: var(--radius-lg); padding: 24px 22px 22px; background: var(--card); box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.p4 .n { font-family: var(--font-display); font-weight: 800; font-size: 4.6rem; line-height: .8; letter-spacing: -.06em; margin-bottom: 18px; -webkit-text-stroke: 2px var(--ink); color: transparent; }
.p4 h3 { margin-bottom: 8px; }
.p4 p { color: var(--ink-2); font-size: .97rem; margin: 0; }
.p4::after { content: ""; position: absolute; right: -28px; top: -28px; width: 96px; height: 96px; border-radius: 50%; border: var(--border); }
.p4-1::after { background: var(--marigold); }
.p4-2::after { background: var(--brick); border-radius: 18px; transform: rotate(20deg); }
.p4-3::after { background: var(--sky); border-radius: 0; transform: rotate(45deg); }
.p4-4::after { background: var(--spruce); border-radius: 50% 50% 0 50%; }
@media (max-width: 960px) { .pillars4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars4 { grid-template-columns: 1fr; } }

/* Playground grouped by band */
.band-row { display: grid; grid-template-columns: 220px 1fr; gap: clamp(18px, 3vw, 36px); padding: clamp(28px, 4vw, 44px) 0; border-top: 2px dashed var(--paper-3); scroll-margin-top: 90px; }
.band-row:first-of-type { border-top: 0; }
.band-label .grade { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); letter-spacing: -.05em; line-height: .85; display: block; margin-bottom: 8px; }
.band-label .persona { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--ink-2); }
.band-row .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 860px) { .band-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .band-row .game-grid { grid-template-columns: 1fr; } }
.art-sky { background: var(--sky); }
.game-art .face-mini { width: 38%; max-width: 130px; }
.game-art .face-mini svg { width: 100%; height: auto; }
.game-card.round-prek { border-radius: 34px; }
.game-card.round-prek .game-art { border-radius: 32px 32px 0 0; }

/* Emotion Decoder */
.dec-start { text-align: left; }
.peeks { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.peek { display: block; animation: bob 2.4s ease-in-out infinite; animation-delay: calc(var(--n) * -.35s); }
.peek svg { width: clamp(40px, 8vw, 64px); height: auto; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-8px) rotate(4deg); } }
.btn-big { font-size: 1.2rem; padding: 18px 28px; }
.sound-toggle, .say-again {
  font: inherit; font-weight: 700; font-size: .92rem; cursor: pointer; color: var(--ink);
  background: var(--card); border: 2px solid var(--ink); border-radius: 999px; padding: 9px 14px;
}
.sound-toggle[aria-pressed="false"] { background: transparent; color: var(--ink-3); border-style: dashed; }
.say-again { margin-top: 14px; background: transparent; border-style: dashed; }
.dec-stage { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 44px); align-items: center; flex: 1; }
.big-face { width: clamp(180px, 30vw, 260px); filter: drop-shadow(6px 6px 0 var(--ink)); }
.big-face svg { width: 100%; height: auto; }
.big-face.is-happy-bounce { animation: faceyes .6s ease; }
@keyframes faceyes { 0% { transform: scale(1); } 35% { transform: scale(1.12) rotate(-6deg); } 70% { transform: scale(.97) rotate(3deg); } 100% { transform: scale(1); } }
.feel-choices { display: grid; gap: 12px; }
.feel-btn {
  font: inherit; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.4vw, 2rem); letter-spacing: -.02em;
  display: flex; align-items: center; gap: 14px; text-align: left; cursor: pointer; color: var(--ink);
  background: var(--card); border: var(--border); border-radius: 22px; padding: 14px 20px; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .1s ease, box-shadow .1s ease, background .1s ease;
}
.feel-btn i { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink); flex: none; }
.feel-btn:hover:not(:disabled) { background: var(--marigold-tint); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.feel-btn:disabled { cursor: default; }
.feel-btn.is-nope { opacity: .38; box-shadow: none; animation: shake .35s ease; }
.feel-btn.is-yes { background: var(--spruce-tint); outline: 3px solid var(--ink); outline-offset: 3px; }
@keyframes shake { 25% { transform: translateX(-6px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-3px); } }
.clue, .yes { margin-top: 16px; border: var(--border); border-radius: 16px; padding: 14px 18px; display: grid; gap: 2px; animation: pop .22s ease-out; }
.clue { background: var(--marigold-tint); }
.yes { background: var(--spruce-tint); margin-bottom: 14px; }
.clue b, .yes b { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.01em; }
@media (max-width: 640px) { .dec-stage { grid-template-columns: 1fr; justify-items: center; } .dec-side { width: 100%; } .hud .sound-toggle { order: 3; } }
.face-board { list-style: none; padding: 0; margin: 8px 0 24px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.face-board li { text-align: center; font-weight: 700; font-size: .95rem; }
.sticker-face { display: block; margin: 0 auto 6px; width: 100%; max-width: 84px; animation: pop .4s ease-out both; filter: drop-shadow(3px 3px 0 var(--ink)); }
.face-board li:nth-child(2) .sticker-face { animation-delay: .08s; } .face-board li:nth-child(3) .sticker-face { animation-delay: .16s; }
.face-board li:nth-child(4) .sticker-face { animation-delay: .24s; } .face-board li:nth-child(5) .sticker-face { animation-delay: .32s; }
.face-board li:nth-child(6) .sticker-face { animation-delay: .4s; }
.sticker-face svg { width: 100%; height: auto; }
@media (max-width: 560px) { .face-board { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Home collage: a face on the game card */
.c-game .c-face { width: 42%; margin: 1cqw 0 2cqw; }
.c-game .c-face svg { width: 100%; height: auto; }

/* Height chart with four kids (ages page) */
.p-1 { left: 22%; width: 16%; height: 34%; }
.p-1 .body { background: var(--marigold); border-radius: 50% 50% 0 0 / 30% 30% 0 0; }
.p-2 { left: 40%; width: 17%; height: 48%; }
.p-2 .body { background: var(--sky); }
.p-3 { left: 59%; width: 18%; height: 64%; }
.p-3 .body { background: var(--brick); }
.p-4 { left: 79%; width: 19%; height: 80%; }
.p-4 .body { background: var(--ink); border-radius: 30% 30% 0 0 / 14% 14% 0 0; }
.p-4 .head { width: 54%; }
.person .lbl { position: absolute; bottom: -7.5cqw; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-weight: 700; font-size: 2.5cqw; white-space: nowrap; }
.chart-floor { bottom: 10%; }
.ages-chart .person, .ages-chart .ruler { bottom: 10%; }

/* Ages blocks, 4 bands */
.age-switch.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.age-switch.four .age-jump { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 20px; }
.age-switch.four .range { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.age-switch.four .lbl { text-align: left; }
.age-jump.prek { background: var(--marigold); border-radius: 30px; }
.age-jump.k5 { background: var(--sky); border-radius: 22px; }
.age-jump.g68 { background: var(--brick); color: #fff; border-radius: 12px; }
.age-jump.g68:hover { color: #fff; }
.age-jump.g912 { background: var(--ink); color: var(--paper); border-radius: 4px; box-shadow: 7px 7px 0 var(--brick); }
.age-jump.g912:hover { color: var(--paper); }
@media (max-width: 860px) { .age-switch.four { grid-template-columns: 1fr 1fr; } }
.age-block.prek .big { color: var(--marigold); -webkit-text-stroke: 2px var(--ink); }
.age-block.k5 .big { color: var(--sky); -webkit-text-stroke: 2px var(--ink); }
.age-block.g68 .big { color: var(--brick); -webkit-text-stroke: 2px var(--ink); }
.age-block.g912 .big { color: var(--marigold); }
.age-block .persona { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; margin: -4px 0 12px; display: block; }
.band-ink .persona { color: var(--marigold); }
.age-block.prek .card { border-radius: 26px; }
.age-block.k5 .card { border-radius: 20px; }

/* Family Cards feature (parents) */
.fc-stage { position: relative; min-height: 360px; container-type: inline-size; }
.fcard {
  position: absolute; width: 44%; aspect-ratio: .7; border: var(--border); border-radius: 16px; box-shadow: var(--shadow);
  padding: 5cqw 4cqw; display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-display); font-weight: 800; font-size: 5.2cqw; letter-spacing: -.02em; line-height: 1;
}
.fcard small { font-family: var(--font-mono); font-weight: 700; font-size: 2.4cqw; letter-spacing: .08em; text-transform: uppercase; }
.fcard .dotrow { display: flex; gap: 1.2cqw; }
.fcard .dotrow i { width: 3cqw; height: 3cqw; border-radius: 50%; border: 1.5px solid currentColor; }
.fc-1 { left: 2%; top: 12%; background: var(--sky); transform: rotate(-12deg); }
.fc-2 { left: 20%; top: 4%; background: var(--marigold); transform: rotate(-4deg); z-index: 1; }
.fc-3 { left: 38%; top: 6%; background: var(--card); transform: rotate(5deg); z-index: 2; }
.fc-4 { left: 54%; top: 16%; background: var(--brick); color: #fff; transform: rotate(13deg); z-index: 3; }
.fc-count { right: 2%; bottom: 0; position: absolute; width: 26%; font-size: 8cqw; z-index: 4; transform: rotate(-8deg); }
.topic-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 22px; padding: 0; list-style: none; }
.topic-cloud li { border: 1.5px solid var(--ink); border-radius: 99px; padding: 5px 12px; font-weight: 700; font-size: .92rem; background: var(--card); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; border: var(--border); border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 48px); }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .fc-stage { min-height: 300px; } }

/* Blog tracks */
.track-head { display: flex; align-items: center; gap: 14px; margin: 0 0 22px; flex-wrap: wrap; scroll-margin-top: 90px; }
.track-head h2 { margin: 0; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.track-head .line { flex: 1; border-top: var(--border); min-width: 30px; }
.post-track + .post-track { margin-top: clamp(44px, 6vw, 72px); }
.post-item .num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; letter-spacing: -.05em; line-height: .8; color: var(--paper-3); display: block; margin-top: 10px; }

/* About: Brooklyn Principle placeholder */
.principle { border: 3px solid var(--ink); border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow-lg); padding: clamp(28px, 5vw, 56px); position: relative; }
.principle .quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 20px; max-width: 20ch; }
.principle .quote::before { content: "“"; color: var(--brick); }
.principle .quote::after { content: "”"; color: var(--brick); }
.placeholder-box { border: 2px dashed var(--ink-3); border-radius: var(--radius); padding: 18px 20px; color: var(--ink-3); background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(30,26,23,.035) 10px 20px); }
.placeholder-box b { color: var(--ink-2); }

/* 23. Fixes after visual review */
.collage > .booklet, .collage > .spin-badge, .collage > .sticker, .collage > .note-card, .collage > .burst-wrap { position: absolute; }
.spin-badge text.core { font-family: var(--font-display); font-size: 56px; font-weight: 800; fill: var(--paper); letter-spacing: 0; text-transform: none; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.5rem); max-width: 15ch !important; }
.hero h1 em { display: block; }
.hero { padding-top: clamp(32px, 5vw, 64px); }
.c-book { right: -1%; bottom: 1%; width: 29%; --bk-size: 4.4cqw; }
.c-game { top: 0; }
.c-game .c-face { width: 36%; }
.hero-doors { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 22px; align-items: center; }
.hero-doors .lbl { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-right: 4px; }
.hero-doors a { text-decoration: none; font-weight: 700; font-size: .95rem; padding: 6px 12px 6px 10px; border-radius: 999px; border: 1.5px solid var(--ink); background: var(--card); display: inline-flex; align-items: center; gap: 8px; }
.hero-doors a i { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--ink); }
.hero-doors a:hover { background: var(--ink); color: var(--paper); }
.nav a.btn-primary, .nav a.btn-primary:hover { color: #fff; }
.nav a.btn-primary[aria-current="page"] { background: var(--ink); color: var(--paper); }
.contact-big { font-size: clamp(1.1rem, 2.5vw, 2rem); word-break: normal; overflow-wrap: anywhere; }
.fan-1, .fan-2 { --bk-size: 5.2cqw; }
.signup-stage .tk-burst { position: absolute; left: -44px; top: -54px; right: auto; z-index: 3; transform: rotate(-12deg); }
@media (max-width: 960px) { .signup-stage .tk-burst { left: auto; right: -6px; top: -48px; width: 96px; } }
.signup-stage .tk-burst { left: auto; top: auto; right: -34px; bottom: -52px; transform: rotate(10deg); }
@media (max-width: 960px) { .signup-stage .tk-burst { right: -6px; bottom: -44px; } }
.marquee-track span { display: block; }
.marquee-track span::after { display: inline-block; vertical-align: middle; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero .collage { max-width: 360px; justify-self: center; } }
.footer-word { font-size: clamp(3.4rem, 15.5vw, 14rem); }
.footer-word em { font-size: .4em; vertical-align: 1.2em; }
@media (max-width: 480px) { .brand-name span { font-size: .58rem; letter-spacing: .06em; } }
.fcard { width: 42%; font-size: 4cqw; }
.fc-1 { left: 0; } .fc-2 { left: 17%; } .fc-3 { left: 34%; } .fc-4 { left: 52%; }
@media (max-width: 420px) { .site-header .brand-name span { display: none; } }
.fcard .w { writing-mode: vertical-rl; transform: rotate(180deg); align-self: flex-start; }
.fc-4 .w { writing-mode: horizontal-tb; transform: none; }

/* 24. Classroom objects -----------------------------------------------------
   The homepage hero is a chalkboard, the hub is a corkboard of pinned
   artifacts, and every inner page opens on a worksheet handout.
   Hero headlines switch to the serif; the grotesque runs everything else. */
:root {
  --board: #1f3b35;
  --board-deep: #172e29;
  --chalk: #f1ede3;
  --chalk-gold: #f2c55e;
  --chalk-sky: #b3d9e3;
  --chalk-pink: #f3ae9e;
  --wood: #c08b55;
  --wood-deep: #8e5f33;
  --cork: #c79a68;
  --rule-blue: #cfdde6;
  --font-stencil: "Stardos Stencil", "Arial Black", Impact, sans-serif;
}

/* Serif display for hero headlines */
.page-hero h1, .board h1 {
  font-family: var(--font-serif); font-weight: 400; letter-spacing: -.025em; line-height: .96;
  font-size: clamp(2.9rem, 6.6vw, 5.8rem); text-wrap: balance;
}
.page-hero h1 em, .board h1 em { font-size: 1em; line-height: inherit; }
.page-hero .lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); }

/* Label buttons: mono caps with a boxed arrow, keeping the brand's hard shadow */
.btn {
  border-radius: 8px; font-family: var(--font-mono); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em; padding: 12px 18px; gap: 16px; line-height: 1.2;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn:has(.arrow) { padding: 10px 10px 10px 18px; }
.btn .arrow {
  display: grid; place-items: center; width: 26px; height: 26px; flex: none;
  border: 1.5px solid currentColor; border-radius: 5px;
  font-family: var(--font-body); font-size: .95rem; letter-spacing: 0; text-transform: none;
}
.btn:hover .arrow { transform: none; }
.btn-sm { padding: 8px 14px; font-size: .72rem; box-shadow: 2px 2px 0 var(--ink); }
.btn-sm:has(.arrow) { padding: 6px 6px 6px 14px; }
.btn-sm .arrow { width: 22px; height: 22px; font-size: .85rem; }
.nav .btn { margin-left: 10px; }
/* The kids' game keeps big, round, friendly buttons */
.screen .btn { font-family: var(--font-display); text-transform: none; letter-spacing: -.01em; font-size: 1.1rem; border-radius: 999px; padding: 14px 22px; }
.screen .btn .arrow { border: 0; width: auto; height: auto; }
.screen .btn-big { font-size: 1.25rem; padding: 18px 28px; }

/* ---- The chalkboard (homepage hero) ---- */
.board {
  position: relative; isolation: isolate; margin: 14px; color: var(--chalk);
  background:
    radial-gradient(ellipse 38% 22% at 72% 30%, rgba(241,237,227,.07), transparent 70%),
    radial-gradient(ellipse 30% 14% at 22% 78%, rgba(241,237,227,.05), transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 10%, rgba(241,237,227,.035), transparent 70%),
    var(--board);
  border: 14px solid var(--wood); border-bottom: 0; border-radius: 20px 20px 0 0;
  box-shadow: inset 0 0 0 2px var(--ink), inset 0 0 60px rgba(0,0,0,.35), 0 0 0 2px var(--ink);
  padding: clamp(56px, 7vw, 96px) 0 clamp(36px, 5vw, 64px);
}
.board::after {                /* chalk dust grain */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)'/%3E%3C/svg%3E");
}
.board > * { position: relative; z-index: 1; }
.board-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.board .chalky { filter: url(#chalk); }
.board-top { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(241,237,227,.72); margin-bottom: clamp(24px, 4vw, 44px); }
.board h1 { color: var(--chalk); max-width: 12.5ch; margin-bottom: .35em; }
.board h1 em { color: var(--chalk-gold); display: block; }
.board .lede { color: rgba(241,237,227,.82); max-width: 42ch; margin-bottom: 26px; }
.board .btn-chalk { background: var(--chalk); color: var(--ink); border-color: var(--ink); }
.board .btn-ghost { background: transparent; color: var(--chalk); border: 1.5px dashed rgba(241,237,227,.7); box-shadow: none; }
.board .btn-ghost:hover { background: rgba(241,237,227,.08); color: var(--chalk); }
.lesson { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: baseline; gap: 10px; }
.ticker { display: inline-block; height: 1.25em; overflow: hidden; vertical-align: bottom; font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 1.35rem; line-height: 1.25em; color: var(--chalk-gold); }
.ticker ul { list-style: none; margin: 0; padding: 0; animation: tick 14s cubic-bezier(.7,0,.3,1) infinite; }
.ticker li { height: 1.25em; white-space: nowrap; }
@keyframes tick {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-1.25em); }
  50%, 70% { transform: translateY(-2.5em); }
  75%, 95% { transform: translateY(-3.75em); }
  100% { transform: translateY(-5em); }
}
.mindmap { width: 100%; max-width: 540px; justify-self: end; }
.mindmap svg { width: 100%; height: auto; overflow: visible; }
.mindmap text { font-family: var(--font-serif); font-style: italic; }
.mindmap a text { transition: fill .2s ease; }
.mindmap a:hover text, .mindmap a:focus text { fill: var(--chalk); text-decoration: underline; }

/* Chalk tray: the three doors, as chalk sticks */
.tray {
  margin: 0 14px; position: relative; z-index: 2;
  background: var(--wood); border: 2px solid var(--ink); border-top: 0; border-radius: 0 0 16px 16px;
  box-shadow: inset 0 10px 0 rgba(0,0,0,.14), 0 5px 0 var(--ink);
  padding: 16px var(--gutter) 18px;
  display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; justify-content: center;
}
.tray .tray-label { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #3b2612; }
.chalkstick {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 1rem; padding: 10px 18px 10px 14px; border-radius: 7px 14px 14px 7px;
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 #5a3a1c; position: relative;
  transition: transform .15s ease;
}
.chalkstick::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: inset 0 0 0 2px rgba(30,26,23,.25); }
.chalkstick:hover { transform: translateY(-3px) rotate(-1deg); color: var(--ink); }
.chalkstick.s1 { background: var(--chalk-gold); transform: rotate(-1.5deg); }
.chalkstick.s2 { background: var(--chalk-pink); transform: rotate(1deg); }
.chalkstick.s3 { background: var(--chalk-sky); transform: rotate(-.5deg); }
.chalkstick.s1:hover, .chalkstick.s2:hover, .chalkstick.s3:hover { transform: translateY(-4px); }
.eraser { width: 78px; height: 26px; border-radius: 5px; border: 2px solid var(--ink); background: linear-gradient(var(--ink) 0 55%, #e9e2d3 55%); box-shadow: 3px 3px 0 #5a3a1c; transform: rotate(4deg); margin-left: auto; }
@media (max-width: 900px) {
  .board-grid { grid-template-columns: 1fr; }
  .mindmap { justify-self: center; max-width: 420px; }
  .eraser { display: none; }
  .tray { justify-content: flex-start; }
}

/* ---- The corkboard (the hub) ---- */
.cork {
  position: relative; border: 12px solid var(--wood); border-radius: 16px;
  box-shadow: 0 0 0 2px var(--ink), inset 0 0 0 2px var(--ink), inset 0 0 40px rgba(60,30,5,.35), 8px 8px 0 2px var(--ink);
  background-color: var(--cork);
  background-image:
    radial-gradient(rgba(90,55,20,.45) 1px, transparent 1.6px),
    radial-gradient(rgba(255,235,200,.35) 1px, transparent 1.6px),
    radial-gradient(rgba(90,55,20,.3) 1.6px, transparent 2.4px);
  background-size: 11px 13px, 17px 19px, 29px 23px;
  background-position: 0 0, 5px 7px, 11px 3px;
  padding: clamp(28px, 4vw, 52px);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(190px, auto); gap: clamp(22px, 3vw, 40px);
}
.pinned {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink); transform: rotate(var(--r, 0deg));
  transition: transform .25s cubic-bezier(.2,.8,.3,1.2);
}
.pinned:hover, .pinned:focus-visible { transform: rotate(0deg) translateY(-6px) scale(1.02); color: var(--ink); z-index: 3; }
.pinned .obj { position: relative; width: 100%; box-shadow: 6px 8px 0 rgba(70,40,12,.38); }
.pinned:hover .obj { box-shadow: 10px 14px 0 rgba(70,40,12,.3); }
.pin {
  position: absolute; top: -9px; left: 50%; width: 22px; height: 22px; margin-left: -11px; z-index: 4; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.75) 0 18%, transparent 22%), var(--pc, var(--brick));
  border: 2px solid var(--ink); box-shadow: 3px 4px 0 rgba(40,20,5,.4);
}
.tape-strip { position: absolute; top: -12px; left: 50%; width: 42%; height: 26px; margin-left: -21%; z-index: 4; background: rgba(243,174,158,.78); transform: rotate(-3deg); clip-path: polygon(2% 0, 98% 6%, 100% 50%, 97% 100%, 1% 94%, 0 46%); }
.dymo {
  display: inline-block; background: #151210; color: #f4f1ea; padding: 6px 12px 5px; border-radius: 3px;
  font-family: var(--font-mono); font-weight: 700; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.18), 0 -1px 0 #000; box-shadow: 2px 3px 0 rgba(40,20,5,.45); transform: rotate(calc(var(--r, 0deg) * -1.5));
}
.dymo.red { background: var(--brick-deep); }
.dymo.blue { background: #1d4a86; }
.dymo.green { background: var(--spruce-deep); }

/* 1 · tear-off flyer (toolkit) */
.p-flyer { grid-row: span 2; }
.flyer-sheet { background: #fbf8f1; padding: 22px 18px 0; display: flex; flex-direction: column; }
.flyer-sheet .fl-kicker { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.flyer-sheet .fl-big { font-family: var(--font-stencil); font-weight: 700; font-size: clamp(3.4rem, 6vw, 5rem); line-height: .82; color: var(--brick); margin: 8px 0 6px; }
.flyer-sheet .fl-head { font-family: var(--font-stencil); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: .95; text-transform: uppercase; }
.flyer-sheet .fl-body { font-size: .92rem; margin: 12px 0 16px; color: var(--ink-2); }
.tabs { display: flex; margin: auto -18px 0; border-top: 2px dashed var(--ink-3); height: 128px; }
.tabs span {
  flex: 1; border-right: 1.5px dashed var(--ink-3); writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: .64rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); background: #fbf8f1;
}
.tabs span.gone { visibility: hidden; }
.tabs span:last-child { border-right: 0; }

/* 2 · kid drawing on construction paper (playground) */
.drawing { background: var(--marigold); aspect-ratio: 1 / .92; display: grid; place-items: center; padding: 14px;
  clip-path: polygon(1% 2%, 12% 0, 30% 1.5%, 52% 0, 73% 1.2%, 99% 0, 100% 22%, 98.5% 48%, 100% 76%, 99% 100%, 70% 98.6%, 44% 100%, 20% 98.8%, 0 100%, 1.2% 70%, 0 40%); }
.drawing svg { width: 62%; height: auto; filter: url(#crayon); }
.drawing .scrawl { position: absolute; left: 10%; bottom: 8%; font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--brick-deep); transform: rotate(-6deg); }
.p-drawing .obj { box-shadow: none; filter: drop-shadow(6px 8px 0 rgba(70,40,12,.38)); }

/* 3 · polaroid (videos) */
.polaroid { background: #fbf8f1; padding: 10px 10px 44px; }
.polaroid .still { aspect-ratio: 4 / 3; background: var(--ink); position: relative; display: grid; place-items: center; overflow: hidden; }
.polaroid .still::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 2px, transparent 2px 4px); }
.polaroid .still i { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--chalk); display: grid; place-items: center; position: relative; }
.polaroid .still i::after { content: ""; border-left: 16px solid var(--chalk); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 5px; }
.polaroid .pcap { position: absolute; left: 0; right: 0; bottom: 10px; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; }

/* 4 · family cards (parents) */
.p-cards .obj { box-shadow: none; aspect-ratio: 1.15; }
.mini {
  position: absolute; width: 52%; aspect-ratio: .7; border: 2px solid var(--ink); border-radius: 10px; padding: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: .95rem; line-height: 1; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 5px 6px 0 rgba(70,40,12,.38);
}
.mini small { font-family: var(--font-mono); font-weight: 700; font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; }
.mini.m1 { left: 0; top: 10%; background: var(--sky); transform: rotate(-12deg); }
.mini.m2 { left: 24%; top: 0; background: #fbf8f1; transform: rotate(-2deg); }
.mini.m3 { right: 0; top: 12%; background: var(--brick); color: #fff; transform: rotate(10deg); }

/* 5 · index card (articles) */
.icard2 {
  background:
    linear-gradient(var(--brick) 0 0) 0 46px / 100% 2px no-repeat,
    repeating-linear-gradient(transparent 0 25px, var(--rule-blue) 25px 26.5px) 0 48px / 100% 100% no-repeat,
    #fbf8f1;
  aspect-ratio: 1.5; padding: 14px 16px;
}
.icard2 b { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; display: block; height: 32px; }
.icard2 span { display: block; font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; line-height: 26.5px; }
.icard2 s { text-decoration-color: var(--brick); text-decoration-thickness: 2px; color: var(--ink-3); }

/* 6 · clipped booklet (store) */
.p-book .obj { box-shadow: none; display: grid; place-items: center; padding-top: 18px; }
.p-book .booklet { width: 66%; --bk-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.clip { position: absolute; top: 0; left: 50%; width: 64px; height: 30px; margin-left: -32px; z-index: 3; background: #151210; clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%); }
.clip::before, .clip::after { content: ""; position: absolute; top: -16px; width: 22px; height: 22px; border: 3px solid #9c958b; border-bottom: 0; border-radius: 12px 12px 0 0; }
.clip::before { left: 8px; } .clip::after { right: 8px; }
.p-book .clip-wrap { position: absolute; top: 2px; left: 0; right: 0; height: 30px; }
.p-book .sticker { position: absolute; right: 6%; bottom: 4%; width: 62px; font-size: 1.25rem; transform: rotate(12deg); z-index: 3; }

/* 7 · postcard (newsletter) */
.postcard { background: #fbf8f1; aspect-ratio: 1.5; padding: 14px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; }
.postcard .pc-left { border-right: 1.5px solid var(--paper-3); padding-right: 12px; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; line-height: 1.15; display: flex; flex-direction: column; justify-content: space-between; }
.postcard .pc-left small { font-family: var(--font-mono); font-style: normal; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.postcard .pc-right { display: flex; flex-direction: column; gap: 12px; }
.postcard .pc-stamp { align-self: flex-end; width: 42px; height: 50px; background: var(--brick); color: var(--paper); font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; border: 3px dashed #fbf8f1; outline: 1.5px solid var(--ink); }
.postcard .pc-right i { display: block; border-bottom: 1.5px solid var(--paper-3); height: 14px; }

@media (max-width: 960px) {
  .cork { grid-template-columns: 1fr 1fr; }
  .p-flyer { grid-row: span 2; }
}
@media (max-width: 560px) {
  .cork { grid-template-columns: 1fr; padding: 26px 20px; }
  .p-flyer { grid-row: auto; }
  .pinned { max-width: 320px; margin: 0 auto; width: 100%; }
}

/* ---- Worksheet handouts (inner page heroes) ---- */
.page-hero.sheet {
  --margin-x: max(10px, calc(var(--gutter) - 22px));
  position: relative; isolation: isolate; margin: 14px; border: 2px solid var(--ink); border-radius: 6px 22px 22px 6px;
  background:
    repeating-linear-gradient(transparent 0 39px, var(--rule-blue) 39px 40px) 0 108px / 100% 100% no-repeat,
    #fbf8f1;
  padding-top: 0; box-shadow: 7px 7px 0 var(--ink);
}
.page-hero.sheet.band-spruce { background: repeating-linear-gradient(transparent 0 39px, rgba(207,221,230,.14) 39px 40px) 0 108px / 100% 100% no-repeat, var(--spruce); }
.page-hero.sheet.band-gold { background: repeating-linear-gradient(transparent 0 39px, rgba(30,26,23,.1) 39px 40px) 0 108px / 100% 100% no-repeat, var(--marigold); }
.sheet .wrap { position: relative; }
.sheet .wrap:not(.sheet-head)::before {       /* red margin line */
  content: ""; position: absolute; left: var(--margin-x); top: -400px; bottom: -400px;
  border-left: 2px solid rgba(184,67,43,.55); pointer-events: none;
}
.sheet.band-spruce .wrap:not(.sheet-head)::before { border-color: rgba(242,197,94,.5); }
.sheet .wrap:not(.sheet-head) > * { position: relative; }
.holes { position: absolute; left: 10px; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-around; padding: 60px 0; z-index: 2; pointer-events: none; }
.holes i { width: 18px; height: 18px; border-radius: 50%; background: var(--paper); border: 1.5px solid rgba(30,26,23,.35); box-shadow: inset 2px 2px 0 rgba(30,26,23,.18); display: block; }
.sheet-head {
  display: flex; align-items: flex-end; flex-wrap: wrap; gap: 10px 26px; padding-top: 30px; padding-bottom: 14px; margin-bottom: clamp(36px, 6vw, 72px);
  border-bottom: 2px solid var(--ink); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.sheet.band-spruce .sheet-head { border-color: rgba(245,238,226,.6); color: var(--paper); }
.sheet-head .field { display: inline-flex; align-items: flex-end; gap: 8px; }
.sheet-head .field span { color: var(--ink-3); }
.sheet.band-spruce .sheet-head .field span { color: var(--spruce-tint); }
.sheet.band-gold .sheet-head .field span { color: var(--brick-deep); }
.sheet-head .blank { display: inline-block; min-width: 120px; border-bottom: 1.5px solid currentColor; height: 1.1em; }
.sheet-head .push { margin-left: auto; }
.sheet-head .crumb a { color: inherit; text-decoration: none; }
.sheet-head .crumb a:hover { text-decoration: underline; }
.sheet .crumbs { display: none; }
@media (max-width: 760px) {
  .holes { display: none; }
  .sheet-head .blank, .sheet-head .opt { display: none; }
  .sheet-head .push { margin-left: 0; }
}

/* Toolkit: the signup is a sign-up sheet on a clipboard */
.clipboard { position: relative; background: var(--wood); border: 2px solid var(--ink); border-radius: 18px; padding: 34px 14px 14px; box-shadow: 7px 7px 0 var(--ink); }
.clipboard::before { content: ""; position: absolute; top: -16px; left: 50%; width: 120px; height: 38px; margin-left: -60px; background: #b9b4ac; border: 2px solid var(--ink); border-radius: 10px 10px 6px 6px; box-shadow: inset 0 -6px 0 rgba(0,0,0,.15); z-index: 2; }
.clipboard::after { content: ""; position: absolute; top: -6px; left: 50%; width: 40px; height: 12px; margin-left: -20px; border-radius: 6px; background: var(--wood-deep); border: 2px solid var(--ink); z-index: 3; }
.clipboard .signup { border-radius: 4px; box-shadow: none; background: repeating-linear-gradient(transparent 0 31px, var(--rule-blue) 31px 32px) 0 96px / 100% 100% no-repeat, #fbf8f1; }

.nav a.btn { font-size: .72rem; padding: 6px 6px 6px 14px; }
.mindmap text.bee { font-family: var(--font-display); font-style: normal; font-weight: 800; }
.board { margin-bottom: 0; }
.tray + .marquee-wrap { margin-top: 18px; }
.flyer-sheet .fl-big { font-size: clamp(2.8rem, 4.6vw, 4.2rem); }
@media (max-width: 760px) { .sheet .wrap:not(.sheet-head)::before { display: none; } }

/* 25. Homepage: what the company is ----------------------------------------- */
.intro { padding: clamp(44px, 7vw, 96px) 0 clamp(52px, 7vw, 96px); position: relative; overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.intro h1 {
  font-family: var(--font-serif); font-weight: 400; letter-spacing: -.025em; line-height: .96;
  font-size: clamp(2.9rem, 6.4vw, 5.6rem); max-width: 13ch; margin-bottom: .35em;
}
.intro h1 em { font-size: 1em; display: block; }
.intro .lede { max-width: 46ch; color: var(--ink-2); margin-bottom: 26px; }
.intro .lede b { color: var(--ink); }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }

/* Emblem: the B at the center of the four pillars */
.emblem { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1; justify-self: end; container-type: inline-size; }
.emblem .plate { position: absolute; inset: 6%; border-radius: 50%; background: var(--spruce-tint); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.emblem .orbit { position: absolute; inset: 17%; border-radius: 50%; border: 2px dashed rgba(30,26,23,.45); animation: spin 60s linear infinite; }
.emblem .em-b {
  position: absolute; left: 50%; top: 50%; width: 30%; aspect-ratio: 1; transform: translate(-50%, -50%) rotate(-6deg);
  background: var(--brick); color: var(--paper); border: 2px solid var(--ink); border-radius: 22%; box-shadow: 6px 6px 0 var(--ink);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 20cqw; line-height: 1; z-index: 2;
}
.orb { position: absolute; width: 30%; display: flex; flex-direction: column; align-items: center; gap: 2cqw; text-align: center; z-index: 3; transform: translate(-50%, -50%); }
.orb .shape { width: 13cqw; aspect-ratio: 1; border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.orb .lbl { font-family: var(--font-mono); font-weight: 700; font-size: max(10px, 2.5cqw); letter-spacing: .08em; text-transform: uppercase; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 6px; padding: .8cqw 1.8cqw; line-height: 1.25; }
.orb.o1 { left: 50%; top: 12%; } .orb.o1 .shape { background: var(--marigold); border-radius: 50%; }
.orb.o2 { left: 86%; top: 50%; } .orb.o2 .shape { background: var(--brick); border-radius: 22%; transform: rotate(14deg); }
.orb.o3 { left: 50%; top: 86%; } .orb.o3 .shape { background: var(--sky); transform: rotate(45deg) scale(.86); }
.orb.o4 { left: 14%; top: 50%; } .orb.o4 .shape { background: var(--spruce); border-radius: 50% 50% 0 50%; }
.emblem .spin-badge { position: absolute; right: -2%; top: -2%; width: 28%; z-index: 4; }
@media (max-width: 900px) { .emblem { justify-self: center; max-width: 400px; } }

/* The gap / what we do / how it's different */
.what { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.what > div { padding: 28px 28px 8px 0; }
.what > div + div { padding-left: 28px; border-left: 2px dashed var(--paper-3); }
.what .n { font-family: var(--font-mono); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); margin-bottom: 12px; display: block; }
.what h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.what p { color: var(--ink-2); }
@media (max-width: 860px) {
  .what { grid-template-columns: 1fr; }
  .what > div + div { padding-left: 0; border-left: 0; border-top: 2px dashed var(--paper-3); }
}
.statement { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.12; letter-spacing: -.015em; max-width: 30ch; margin: 0 0 clamp(32px, 5vw, 56px); }
.statement em { color: var(--brick); }

/* Audiences: what they need, what they get */
.aud { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 28px); }
.aud-card { border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; background: var(--card); }
.aud-top { padding: 24px 24px 20px; border-bottom: var(--border); }
.aud-top .who { font-family: var(--font-mono); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.aud-top h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 0; }
.aud-kids .aud-top { background: var(--marigold); }
.aud-parents .aud-top { background: var(--spruce); color: #fff; }
.aud-workers .aud-top { background: var(--brick); color: #fff; }
.aud-body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.aud-body h4 { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.aud-body p { color: var(--ink-2); font-size: .98rem; }
.aud-body ul { margin: 0 0 18px; padding: 0; list-style: none; }
.aud-body li { padding: 7px 0; border-bottom: 1px dashed var(--paper-3); font-weight: 700; }
.aud-body li a { text-decoration: none; display: flex; justify-content: space-between; gap: 10px; }
.aud-body li a::after { content: "→"; }
.aud-body li a:hover { color: var(--brick); }
@media (max-width: 900px) { .aud { grid-template-columns: 1fr; } }

/* How we work */
.how-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 36px); }
.how-grid > div { border-top: 2px solid rgba(245,238,226,.4); padding-top: 18px; }
.how-grid h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.1rem); letter-spacing: -.01em; line-height: 1.05; color: var(--marigold); margin-bottom: 10px; }
.how-grid p { color: var(--paper-3); font-size: .98rem; margin: 0; }
@media (max-width: 960px) { .how-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .how-grid { grid-template-columns: 1fr; } }

/* Where to find it: the classroom is the featured door */
.find { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 22px); }
.find .card { padding: 20px; }
.find .card h3 { font-size: 1.2rem; }
.find .card p { font-size: .95rem; margin: 0; }
.mini-board {
  grid-column: span 2; grid-row: span 2; position: relative; text-decoration: none; color: var(--chalk); display: flex; flex-direction: column; justify-content: space-between;
  background: radial-gradient(ellipse 50% 30% at 70% 25%, rgba(241,237,227,.07), transparent 70%), var(--board);
  border: 12px solid var(--wood); border-radius: 16px; box-shadow: 0 0 0 2px var(--ink), inset 0 0 0 2px var(--ink), 8px 8px 0 2px var(--ink);
  padding: clamp(22px, 3vw, 34px); min-height: 340px; transition: transform .15s ease;
}
.mini-board:hover { transform: translate(-3px, -3px); color: var(--chalk); }
.mini-board .mb-top { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.mini-board .mb-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: .95; letter-spacing: -.02em; }
.mini-board .mb-title em { color: var(--chalk-gold); display: block; }
.mini-board p { color: rgba(241,237,227,.8); max-width: 38ch; margin: 12px 0 0; }
.mini-board .mb-go { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.mini-board .mb-go span { font-weight: 700; font-size: .9rem; color: var(--ink); padding: 7px 14px 7px 12px; border-radius: 6px 12px 12px 6px; border: 2px solid var(--ink); }
.mini-board .mb-go span:nth-child(1) { background: var(--chalk-gold); }
.mini-board .mb-go span:nth-child(2) { background: var(--chalk-sky); }
.mini-board .mb-go span:nth-child(3) { background: var(--chalk-pink); }
.mini-board .mb-go span:nth-child(4) { background: var(--chalk); }
@media (max-width: 960px) { .find { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .find { grid-template-columns: 1fr; } .mini-board { grid-column: auto; grid-row: auto; } }

.chalkstick.s4 { background: var(--chalk); transform: rotate(1.2deg); }

/* 26. Store catalog, product page, donations ------------------------------- */
/* Catalog filters: radio buttons + :has(), so it works with zero JavaScript */
.catalog-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 30px; }
.catalog-filters .label { font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin-right: 6px; }
.catalog-filters input { position: absolute; opacity: 0; pointer-events: none; }
.catalog-filters label.chip { display: inline-flex; align-items: center; gap: 8px; }
.catalog-filters label.chip .count { font-family: var(--font-mono); font-size: .72rem; opacity: .7; }
.catalog-filters input:checked + label.chip { background: var(--ink); color: var(--paper); }
.catalog-filters input:focus-visible + label.chip { outline: 3px solid var(--brick); outline-offset: 3px; }
.catalog:has(#f-edu:checked) .pcard:not([data-cat~="edu"]),
.catalog:has(#f-fam:checked) .pcard:not([data-cat~="fam"]),
.catalog:has(#f-free:checked) .pcard:not([data-cat~="free"]) { display: none; }

.shelf { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 32px); }
@media (max-width: 960px) { .shelf { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .shelf { grid-template-columns: 1fr; } }
.pcard { background: var(--card); border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; }
.pcard-cover { position: relative; aspect-ratio: 4 / 3; border-bottom: var(--border); display: grid; place-items: center; container-type: inline-size; overflow: hidden; }
.pcard-cover .booklet { width: 44%; transform: rotate(-5deg); --bk-size: 6.4cqw; }
.pcard-cover .sticker { position: absolute; right: 9%; bottom: 9%; width: 20cqw; font-size: 6.4cqw; transform: rotate(10deg); }
.pcard-cover .tag { position: absolute; top: 14px; left: 14px; }
.pcard-cover .fanned { position: relative; width: 60%; aspect-ratio: 1.3; }
.pcard-cover .fanned .mini { width: 46%; font-size: 3.6cqw; }
.pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard-body .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.pcard-body h3 { font-size: 1.45rem; margin-bottom: 6px; }
.pcard-body h3 a { text-decoration: none; }
.pcard-body p { color: var(--ink-2); font-size: .98rem; }
.pcard-facts { display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; padding: 0; list-style: none; }
.pcard-facts li::before { content: "▪ "; color: var(--brick); }
.pcard-foot { margin-top: auto; padding-top: 16px; border-top: 2px dashed var(--paper-3); display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.pcard-foot .price { font-size: 2rem; }
.pcard-foot .price-tbc { font-family: var(--font-mono); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.pcard-foot .buy-slot { min-height: 0; }
.pcard-foot .view { font-weight: 700; font-size: .92rem; margin-left: auto; }
.pcard.add { border-style: dashed; box-shadow: none; background: transparent; display: grid; place-items: center; text-align: center; padding: 30px; min-height: 280px; color: var(--ink-3); }
.pcard.add b { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-2); margin-bottom: 6px; }
.free-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; border: var(--border); border-radius: var(--radius-lg); background: var(--spruce-tint); box-shadow: var(--shadow); padding: 18px 24px; margin-bottom: clamp(30px, 4vw, 48px); }
.free-strip b { font-family: var(--font-display); font-size: 1.3rem; }
.free-strip span { color: var(--ink-2); }

/* Product detail page */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.pd-cover { position: sticky; top: 96px; aspect-ratio: 1 / 1.05; border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: grid; place-items: center; container-type: inline-size; overflow: hidden; }
.pd-cover .booklet { width: 52%; transform: rotate(-5deg); --bk-size: 7cqw; }
.pd-cover .sticker { position: absolute; right: 12%; bottom: 12%; width: 18cqw; font-size: 6cqw; transform: rotate(10deg); }
.pd-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.pd-buy { border: var(--border); border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow); padding: 20px 22px; margin: 22px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.pd-buy .price { font-size: 2.8rem; }
@media (max-width: 860px) { .pd { grid-template-columns: 1fr; } .pd-cover { position: relative; top: 0; max-width: 460px; } }

/* Donations */
.jar { position: absolute; left: 22%; bottom: 4%; width: 52%; aspect-ratio: .8; }
.jar .lid { position: absolute; left: 14%; right: 14%; top: 0; height: 9%; background: var(--brick); border: 2px solid var(--ink); border-radius: 8px; z-index: 2; }
.jar .glass { position: absolute; left: 0; right: 0; top: 7%; bottom: 0; border: 2px solid var(--ink); border-radius: 22% 22% 16% 16% / 12% 12% 10% 10%; background: rgba(222,237,241,.55); box-shadow: 8px 8px 0 var(--ink); overflow: hidden; }
.jar .glass::before { content: ""; position: absolute; left: 10%; top: 8%; width: 7%; height: 60%; border-radius: 9px; background: rgba(255,255,255,.7); }
.jar .coin { position: absolute; width: 20%; aspect-ratio: 1; border-radius: 50%; background: var(--marigold); border: 2px solid var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 4cqw; }
.jar .heart { position: absolute; left: 50%; top: 30%; width: 26%; aspect-ratio: 1; transform: translateX(-50%) rotate(-45deg); background: var(--brick); border: 2px solid var(--ink); }
.jar .heart::before, .jar .heart::after { content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: var(--brick); border: 2px solid var(--ink); }
.jar .heart::before { top: -50%; left: -2px; border-bottom-color: transparent; border-right-color: transparent; }
.jar .heart::after { left: 50%; top: -2px; border-top-color: transparent; border-left-color: transparent; }
.jar .jlabel { position: absolute; left: 12%; right: 12%; top: 58%; background: var(--paper); border: 2px solid var(--ink); border-radius: 6px; text-align: center; font-family: var(--font-mono); font-weight: 700; font-size: 3cqw; letter-spacing: .1em; text-transform: uppercase; padding: 3cqw 0; transform: rotate(-3deg); z-index: 1; }
.donate-box { border: var(--border); border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 40px); }
.freq { display: inline-flex; border: var(--border); border-radius: 999px; overflow: hidden; margin: 6px 0 18px; }
.freq span { padding: 8px 16px; font-weight: 700; font-size: .9rem; }
.freq span:first-child { background: var(--ink); color: var(--paper); }
.amounts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.amounts a { display: grid; place-items: center; text-decoration: none; border: var(--border); border-radius: 12px; padding: 14px 6px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; background: var(--paper); box-shadow: 3px 3px 0 var(--ink); transition: transform .12s ease; }
.amounts a:hover { transform: translate(-2px, -2px); background: var(--marigold-tint); color: var(--ink); }
.amounts a small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 480px) { .amounts { grid-template-columns: 1fr 1fr; } }
.help-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 22px); }
.help-list li { border: var(--border); border-radius: var(--radius); background: var(--card); padding: 20px; box-shadow: var(--shadow); }
.help-list li b { display: block; font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.help-list li span { color: var(--ink-2); font-size: .95rem; }
@media (max-width: 900px) { .help-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .help-list { grid-template-columns: 1fr; } }
.donate-band { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px 32px; }
.donate-band h2 { margin: 0; }

.jar .heart { top: -30%; width: 22%; z-index: 3; animation: drop 3.2s ease-in-out infinite; }
@keyframes drop { 0%, 100% { translate: 0 0; } 50% { translate: 0 10px; } }
.jar .jlabel { top: 26%; }
.jar .coin { width: 18%; }
@media (prefers-reduced-motion: reduce) { .jar .heart { animation: none; } }