/* ==========================================================================
   NovaSeed Press — site styles
   Planting Stories That Grow Minds

   No external requests: fonts are system stacks, all art is local.
   Per-book accent colors are set with --accent on <body data-book="...">.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul[role="list"], ol[role="list"] { list-style: none; }

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

button, input, textarea, select { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  /* Press brand — teals sampled directly from NovaSeedPress_logo.png */
  --ink:          #14172b;
  --ink-soft:     #2b3050;
  --paper:        #fbf8f2;
  --paper-warm:   #f4eee3;
  --paper-edge:   #e5dccb;
  --seed:         #1a7181;   /* deep teal — the book and the star */
  --seed-deep:    #12545f;   /* darker, for link text contrast */
  --seed-light:   #63c7cd;   /* light teal — the sprout */
  --gold:         #d99a2b;

  --text:         #24263a;
  --text-muted:   #5c6076;
  --text-faint:   #8a8fa3;

  --accent:       var(--seed);
  --accent-ink:   #ffffff;

  --radius:       14px;
  --radius-lg:    22px;
  --shadow-sm:    0 1px 2px rgba(20, 23, 43, .06), 0 2px 8px rgba(20, 23, 43, .05);
  --shadow-md:    0 4px 12px rgba(20, 23, 43, .08), 0 12px 32px rgba(20, 23, 43, .09);
  --shadow-book:  0 8px 18px rgba(20, 23, 43, .16), 0 26px 60px rgba(20, 23, 43, .20);

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
                  Georgia, "Times New Roman", serif;
  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
                  Arial, sans-serif;
  /* The logo sets "NovaSeed Press" in a geometric sans. The header wordmark
     matches that rather than the editorial serif, so the brand name reads the
     same everywhere it appears. Headlines stay serif. */
  --font-brand:   "Avenir Next", "Segoe UI", "Century Gothic", system-ui,
                  -apple-system, sans-serif;
  /* The NovaSeed Kids logotype is set in Comic Sans MS. We do NOT self-host it
     — it is a licensed Microsoft font and shipping the .ttf as a webfont is a
     redistribution problem. This stack uses the reader's locally installed copy
     (present on essentially all Windows and macOS machines) and falls back to
     other friendly rounded faces elsewhere. */
  --font-kids:    "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Chalkboard",
                  "Marker Felt", "Segoe Print", cursive;

  --wrap:         1140px;
  --wrap-narrow:  720px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
}

/* Per-book accents */
body[data-book="my-perfect-pet"] {
  --accent:     #e0761f;   /* the orange autumn canopy on the cover */
  --accent-ink: #ffffff;
  --book-wash:  linear-gradient(165deg, #fdf1e2 0%, #f6f9ef 55%, #eaf4fb 100%);
}

body[data-book="12-weeks"] {
  --accent:     #6a5a99;   /* the dusk sky on the cover */
  --accent-ink: #ffffff;
  --book-wash:  linear-gradient(165deg, #efeaf6 0%, #f6f1ea 60%, #fdf6ea 100%);
}

/* NovaSeed Kids™ — the imprint runs warmer than the press. Same bones,
   brighter skin. Orange sampled straight out of the paw mark. */
body[data-imprint="kids"] {
  --accent:     #e98531;
  --accent-ink: #ffffff;
}
body[data-imprint="kids"] .hero {
  background:
    radial-gradient(120% 90% at 10% 0%, #fdeedd 0%, transparent 60%),
    radial-gradient(100% 80% at 92% 6%, #e6f4fb 0%, transparent 58%),
    radial-gradient(90% 70% at 60% 100%, #edf7e6 0%, transparent 60%),
    var(--paper);
}
body[data-imprint="kids"] .hero__eyebrow {
  color: #a2540f; background: #fdeedd; border-color: #f4d5b3;
}

/* --- Base ----------------------------------------------------------------- */

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 1.6rem + 3.1vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.4rem + 1.7vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem); }

p { text-wrap: pretty; }

a { color: var(--seed-deep); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }

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

.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - (var(--gutter) * 2), var(--wrap-narrow)); margin-inline: auto; }

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

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -110%);
  background: var(--ink); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  z-index: 200; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 242, .88);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--paper-edge);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: .85rem;
}

/* Wordmark — placeholder mark, swap the <svg> when the real logo lands */
.wordmark {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--ink);
}
.wordmark:hover { color: var(--ink); }
.wordmark__mark { height: 38px; width: auto; flex: 0 0 auto; }
.wordmark__text { display: flex; flex-direction: column; line-height: 1; }
.wordmark__name {
  font-family: var(--font-brand);
  font-size: 1.24rem; font-weight: 600; letter-spacing: -.005em;
  color: var(--seed);
}
.wordmark__name em { font-style: normal; color: var(--seed); }
.wordmark__tag {
  font-size: .625rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-faint); margin-top: .28rem; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: clamp(.9rem, 2.4vw, 2rem); }
.nav a {
  text-decoration: none; color: var(--text-muted);
  font-size: .9375rem; font-weight: 500;
  padding-block: .3rem; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--ink); border-bottom-color: var(--accent);
}

@media (max-width: 720px) {
  .wordmark__tag { display: none; }
  .nav { gap: 1rem; }
  .nav a { font-size: .875rem; }
}

/* Below ~620px the wordmark and four nav links can't share a row without
   overflowing the viewport. Drop the nav onto its own full-width row and
   spread it, rather than hiding navigation behind a hamburger. */
@media (max-width: 620px) {
  .site-header__inner { flex-wrap: wrap; gap: .35rem 1rem; padding-block: .7rem; }
  .wordmark__mark { width: 28px; height: 28px; }
  .wordmark__name { font-size: 1.15rem; }
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: .4rem;
    border-top: 1px solid var(--paper-edge);
    padding-top: .45rem;
  }
  .nav a { font-size: .82rem; padding-block: .2rem; }
  .book-hero__cover { position: static; }
}

/* Six nav items will not sit on one 320px row at .82rem. Rather than hide
   navigation behind a hamburger, let it wrap to two tidy centred rows. */
@media (max-width: 400px) {
  .nav { flex-wrap: wrap; justify-content: center; gap: .3rem .85rem; }
  .nav a { font-size: .8rem; }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  background:
    radial-gradient(115% 85% at 12% 0%, #e8f5f7 0%, transparent 58%),
    radial-gradient(95% 75% at 92% 8%, #fdf3e4 0%, transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--paper-edge);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--seed-deep);
  background: #e4f3f5; border: 1px solid #c6e6ea;
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.4rem;
}

.hero__title { max-width: 15ch; }
.hero__title em { font-style: italic; color: var(--seed); }

.hero__lede {
  font-size: clamp(1.06rem, 1rem + 0.4vw, 1.28rem);
  color: var(--text-muted); max-width: 54ch; margin-top: 1.35rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .9375rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease,
              background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink); color: #fff; box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--ink-soft); color: #fff; box-shadow: var(--shadow-md); }

.btn--accent {
  background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm);
}
.btn--accent:hover { color: var(--accent-ink); filter: brightness(1.07); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--paper-edge);
}
.btn--ghost:hover { background: #fff; border-color: var(--ink); color: var(--ink); }

/* --- Sections ------------------------------------------------------------- */

.section { padding-block: clamp(3.25rem, 7vw, 6rem); }
.section--warm { background: var(--paper-warm); border-block: 1px solid var(--paper-edge); }
.section--ink { background: var(--ink); color: #d8dae8; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section__head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .7rem;
}
.section--ink .section__kicker { color: var(--gold); }
.section__head p { color: var(--text-muted); margin-top: .9rem; font-size: 1.06rem; }
.section--ink .section__head p { color: #a7abc4; }

/* --- Catalog -------------------------------------------------------------- */

.catalog { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }

.book-card {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  background: #fff; border: 1px solid var(--paper-edge);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.book-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

@media (min-width: 800px) {
  .book-card { grid-template-columns: minmax(240px, 340px) minmax(0, 1fr); }
  .book-card--flip .book-card__media { order: 2; }
}

.book-card__media { position: relative; }

.book-cover {
  border-radius: 6px; box-shadow: var(--shadow-book);
  width: 100%; height: auto;
  transition: transform .3s cubic-bezier(.2, .7, .3, 1);
}
.book-card:hover .book-cover { transform: scale(1.02) rotate(-.4deg); }

.book-card__badge {
  position: absolute; top: -.6rem; left: -.6rem; z-index: 2;
  background: var(--accent); color: var(--accent-ink);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .38rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}

.book-card__imprint {
  font-size: .74rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .6rem;
}
.book-card__title { margin-bottom: .5rem; }
.book-card__title a { color: inherit; text-decoration: none; }
.book-card__title a:hover { color: var(--accent); }
.book-card__byline { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.1rem; }
.book-card__blurb { color: var(--text-muted); margin-bottom: 1.5rem; }

.meta-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.meta-pill {
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  background: var(--paper-warm); border: 1px solid var(--paper-edge);
  padding: .32rem .75rem; border-radius: 999px;
}

.book-card__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* --- Book detail ---------------------------------------------------------- */

.book-hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: var(--book-wash, var(--paper));
  border-bottom: 1px solid var(--paper-edge);
}

.book-hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr); align-items: start;
}
@media (min-width: 860px) {
  .book-hero__grid { grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); }
}

.book-hero__cover { position: sticky; top: 6rem; }
@media (max-width: 859px) { .book-hero__cover { position: static; } }

.book-hero__title { margin-bottom: .6rem; }
.book-hero__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem);
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.book-hero__byline { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.8rem; }
.book-hero__byline strong { color: var(--ink); font-weight: 600; }

.buy-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.1rem; }
.buy-note { font-size: .84rem; color: var(--text-faint); margin-bottom: 2rem; }

.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h3 { margin-top: 2.4rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li + li { margin-top: .45rem; }
.prose strong { color: var(--ink); }

/* Verse / excerpt block */
.verse {
  font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + .6vw, 1.45rem);
  line-height: 1.6; color: var(--ink);
  background: #fff; border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.verse p + p { margin-top: 1.1rem; }
.verse cite {
  display: block; margin-top: 1.3rem; font-family: var(--font-body);
  font-size: .82rem; font-style: normal; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint); font-weight: 600;
}

/* Details table */
.spec { width: 100%; border-collapse: collapse; font-size: .94rem; table-layout: fixed; }
.spec caption { text-align: left; font-family: var(--font-display); font-size: 1.3rem;
                color: var(--ink); margin-bottom: 1rem; }
.spec th, .spec td {
  text-align: left; padding: .72rem .5rem;
  border-bottom: 1px solid var(--paper-edge);
  /* Long labels (ISBN channel names) and unbroken values (ISBNs) must wrap
     rather than force the table wider than the viewport. */
  overflow-wrap: anywhere;
}
.spec th { color: var(--text-muted); font-weight: 600; width: 45%; }
.spec td { color: var(--ink); }

/* Below 420px a two-column spec table is unreadable — stack it. */
@media (max-width: 420px) {
  .spec, .spec tbody, .spec tr, .spec th, .spec td { display: block; width: auto; }
  .spec tr { padding-block: .55rem; border-bottom: 1px solid var(--paper-edge); }
  .spec th, .spec td { border: 0; padding: 0; }
  .spec th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
  .spec td { margin-top: .15rem; }
}

/* --- Galleries ------------------------------------------------------------ */

.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.gallery--wide { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }

.gallery figure {
  margin: 0; background: #fff; border: 1px solid var(--paper-edge);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; height: auto; }
.gallery figcaption {
  padding: .7rem .9rem; font-size: .82rem; color: var(--text-muted);
  border-top: 1px solid var(--paper-edge); background: var(--paper);
}

/* --- Steps / program ------------------------------------------------------ */

.steps { display: grid; gap: 1.25rem; counter-reset: step;
         grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.step {
  background: #fff; border: 1px solid var(--paper-edge);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-grid; place-items: center; width: 2.1rem; height: 2.1rem;
  border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: .9rem; margin-bottom: .9rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.step p { font-size: .93rem; color: var(--text-muted); }

/* --- Values / about ------------------------------------------------------- */

.values { display: grid; gap: 1.5rem;
          grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.value__icon { color: var(--accent); margin-bottom: .9rem; }
.section--ink .value__icon { color: var(--gold); }
.value h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.value p { font-size: .95rem; color: var(--text-muted); }
.section--ink .value p { color: #a7abc4; }

/* --- About page ----------------------------------------------------------- */

/* The four belief statements — each stands alone, so each gets its own rule. */
.beliefs p {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1rem + .5vw, 1.32rem);
  line-height: 1.5; color: var(--ink);
  padding: 1.15rem 0 1.15rem 1.5rem;
  border-left: 3px solid var(--seed-light);
}
.beliefs p + p { border-top: 1px solid var(--paper-edge); }

/* Nova / Seed definition split */
.name-split { display: grid; gap: 1rem; }
@media (min-width: 640px) { .name-split { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.name-split > div {
  background: #fff; border: 1px solid var(--paper-edge);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.name-split dt {
  font-family: var(--font-display); font-size: 1.7rem;
  color: var(--seed); margin-bottom: .45rem;
}
.name-split dd { margin: 0; color: var(--text-muted); }

.tagline-mark {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 1.15rem + 1.7vw, 2.4rem);
  line-height: 1.25; color: var(--seed);
  margin-top: 1rem; text-wrap: balance;
}

/* --- Forms (contact + bulk order) ----------------------------------------- */

.form { margin-top: 2rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field label {
  font-size: .84rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: .4rem; letter-spacing: .01em;
}
.field input, .field textarea, .field select {
  width: 100%; padding: .72rem .9rem;
  border: 1.5px solid var(--paper-edge); border-radius: 10px;
  background: #fff; color: var(--text);
  font-family: inherit; font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.55; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--seed);
  box-shadow: 0 0 0 3px rgba(26, 113, 129, .15);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #c0453f; box-shadow: 0 0 0 3px rgba(192, 69, 63, .12);
}
.field__hint { font-size: .8rem; color: var(--text-faint); margin-top: .35rem; }

/* Honeypot — off-screen for people, still fillable by bots. Not display:none,
   which some bots detect and skip. */
.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden;
}

.form__status { margin-top: 1rem; font-size: .92rem; min-height: 1.4em; }
.form__status[data-state="ok"]   { color: var(--seed-deep); font-weight: 600; }
.form__status[data-state="err"]  { color: #b03b35; }
.form__status[data-state="busy"] { color: var(--text-muted); }

/* --- Order page buy list -------------------------------------------------- */

.buy-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.buy-list li + li { margin-top: .6rem; }

.buy-list__link {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--paper-edge); border-radius: var(--radius);
  background: var(--paper); text-decoration: none; color: var(--ink);
  transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}
a.buy-list__link:hover {
  border-color: var(--accent); background: #fff;
  transform: translateY(-1px); color: var(--ink);
}
.buy-list__link--static { background: transparent; border-style: dashed; }

.buy-list__where { font-weight: 600; font-size: .98rem; }
.buy-list__what  { font-size: .88rem; color: var(--text-muted); }
.buy-list__what strong { color: var(--ink); white-space: nowrap; }

/* --- NovaSeed Kids imprint lockup ----------------------------------------- */

.imprint-lockup {
  display: flex; align-items: center; gap: clamp(.9rem, 2.5vw, 1.6rem);
  flex-wrap: wrap; margin-bottom: 1.4rem;
}
.imprint-lockup__paw {
  width: clamp(72px, 12vw, 124px); height: auto; flex: 0 0 auto;
}
.imprint-lockup__name {
  font-family: var(--font-kids);
  font-size: clamp(2rem, 1.2rem + 3.6vw, 4rem);
  line-height: 1.05; color: var(--accent);
  font-weight: 700; letter-spacing: -.01em; margin: 0;
}
.imprint-lockup__name sup {
  font-size: .28em; vertical-align: super; margin-left: .12em;
  letter-spacing: 0; font-weight: 400;
}

/* Comic Sans carries the imprint voice on this page, but only for the
   imprint's own name and section headings — body copy stays readable. */
body[data-imprint="kids"] .section__kicker { font-family: var(--font-body); }

/* --- Forthcoming title placeholder ---------------------------------------- */

/* Stands in for a cover that doesn't exist yet. Deliberately not a fake book
   jacket — it should read as "in progress", not as a real product. */
.coming-cover {
  aspect-ratio: 1 / 1;
  display: grid; place-content: center; justify-items: center;
  gap: .9rem; padding: 2rem 1.5rem; text-align: center;
  border: 2px dashed var(--paper-edge); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(224,118,31,.035) 12px 24px),
    var(--paper-warm);
  color: var(--text-muted);
}
.coming-cover img { width: 74px; height: auto; opacity: .5; }
.coming-cover__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.coming-cover__note { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }

/* --- Age band chips ------------------------------------------------------- */

.age-bands { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.age-band {
  display: inline-flex; align-items: baseline; gap: .45rem;
  background: #fff; border: 1px solid var(--paper-edge);
  border-radius: 999px; padding: .45rem .95rem; font-size: .88rem;
}
.age-band strong { color: var(--accent); font-weight: 700; }
.age-band span { color: var(--text-muted); }

/* --- Newsletter ----------------------------------------------------------- */

.signup { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.signup input[type="email"] {
  flex: 1 1 260px; min-width: 0;
  padding: .78rem 1.1rem; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07); color: #fff;
}
.signup input::placeholder { color: #8f94ad; }
.signup input:focus { border-color: var(--gold); background: rgba(255, 255, 255, .12); }

.signup__status { margin-top: .9rem; font-size: .9rem; min-height: 1.4em; }
.signup__status[data-state="ok"]   { color: #7fd6a2; }
.signup__status[data-state="err"]  { color: #f5a3a3; }
.signup__status[data-state="busy"] { color: #a7abc4; }

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--ink); color: #9ba0b8;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .92rem;
}
.site-footer a { color: #d8dae8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__grid h4 {
  color: #fff; font-size: .8rem; letter-spacing: .13em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem;
}
.footer__grid ul { list-style: none; }
.footer__grid li + li { margin-top: .55rem; }

.footer__brand__logo { width: 210px; max-width: 100%; height: auto; margin-bottom: 1rem; }
.footer__brand p { max-width: 34ch; color: #9ba0b8; }

.footer__legal {
  padding-top: 1.8rem; display: flex; flex-wrap: wrap;
  gap: 1rem 2rem; justify-content: space-between; font-size: .84rem;
  color: #7d8299;
}

/* --- Utilities ------------------------------------------------------------ */

.stack > * + * { margin-top: 1.15rem; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; margin-inline: auto; }
