/* =====================================================================
   Grow in Wonder — shared styles
   Field-naturalist notebook aesthetic. Palette, type, and signature
   devices carried over from the original landing page so the whole
   site reads as one hand.
   ===================================================================== */

:root {
  --ink: #2b2a28;
  --ink-soft: #55524c;
  --paper: #fbf7ee;
  --paper-deep: #f3ecdb;
  --paper-deeper: #ece2cc;
  --gold: #e2ab3d;
  --gold-deep: #c98f24;
  --brick: #bf4438;
  --brick-deep: #a83a2f;
  --sky: #6f9aa8;
  --sky-deep: #4f7986;
  --leaf: #6f8b57;
  --line: rgba(43, 42, 40, 0.14);
  --line-soft: rgba(43, 42, 40, 0.08);
  --radius: 18px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body {
  background-image:
    radial-gradient(circle at 15% 12%, rgba(226, 171, 61, 0.05), transparent 40%),
    radial-gradient(circle at 85% 78%, rgba(111, 154, 168, 0.06), transparent 45%);
}

a { color: inherit; }

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

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

/* ---------------------------------------------------------------------
   Site header + navigation
   --------------------------------------------------------------------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: saturate(1.1) blur(6px);
  -webkit-backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line-soft);
}

.site-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}

.brandmark .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex: none;
}

.site nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site nav a:hover { color: var(--ink); }

.site nav a[aria-current="page"] {
  color: var(--brick);
  border-bottom-color: var(--brick);
}

/* Burger toggle, hidden until the nav no longer fits on one line */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -6px -8px -6px 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 2px; }

.nav-toggle-box {
  position: relative;
  width: 22px;
  height: 16px;
}
.nav-toggle-bar {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.15s ease, top 0.2s ease;
}
.nav-toggle-bar:nth-child(1) { top: 0; }
.nav-toggle-bar:nth-child(2) { top: 7px; }
.nav-toggle-bar:nth-child(3) { top: 14px; }

/* Bars fold into an X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; }

  #site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px -26px rgba(43, 42, 40, 0.5);
    padding: 6px 0 10px;
    display: none;
  }
  #site-nav.open { display: flex; }

  #site-nav a {
    padding: 13px 28px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  #site-nav a[aria-current="page"] {
    border-bottom: none;
    border-left-color: var(--brick);
    background: rgba(191, 68, 56, 0.06);
  }
}

/* ---------------------------------------------------------------------
   Shared type + small devices
   --------------------------------------------------------------------- */

.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--sky-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  transform: rotate(-1deg);
}

.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--sky-deep);
  opacity: 0.6;
}

h1, h2, h3 { font-family: 'Fraunces', serif; }

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.section-title em { font-style: italic; color: var(--brick); }

.lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 52ch;
}

.verse {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--sky-deep);
  margin: 0 0 26px;
  padding-left: 16px;
  border-left: 2px solid var(--sky);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}

.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover { border-color: var(--sky-deep); color: var(--sky-deep); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 2px; }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------------------------------------------------------------------
   Specimen plate — the signature framing device.
   Used for portraits, covers, and "specimens" throughout.
   --------------------------------------------------------------------- */

.plate {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 16px 16px 18px;
  box-shadow: 0 26px 46px -26px rgba(43, 42, 40, 0.34);
}

.plate .washi {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 88px; height: 25px;
  background: var(--gold);
  opacity: 0.85;
  border-radius: 2px;
}

.plate .washi.sky { background: var(--sky); }
.plate .washi.leaf { background: var(--leaf); }

.plate .frame {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  background:
    repeating-linear-gradient(45deg, rgba(43,42,40,0.03) 0 10px, transparent 10px 20px),
    var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed var(--line);
}

.plate .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.plate .frame .await {
  text-align: center;
  padding: 20px;
  color: var(--ink-soft);
}
.plate .frame .await svg { display: block; margin: 0 auto 10px; opacity: 0.55; }
.plate .frame .await span {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  color: var(--sky-deep);
}

.plate .tag {
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px dashed var(--line);
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  line-height: 1.4;
}

.plate .tag .label {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 3px;
}

/* ---------------------------------------------------------------------
   Generic section rhythm
   --------------------------------------------------------------------- */

main { display: block; }

.band {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 54px 28px;
}

.band + .band { padding-top: 12px; }

.band.ruled { border-top: 1px solid var(--line); margin-top: 8px; }

/* ---------------------------------------------------------------------
   Footer — the one signup catch-all, present site-wide
   --------------------------------------------------------------------- */

footer.site {
  margin-top: 40px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.footer-join {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 46px 28px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.footer-join h2 {
  font-weight: 600;
  font-size: 1.55rem;
  margin: 0 0 8px;
}

.footer-join .eyebrow { margin-bottom: 4px; }

.footer-join p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 42ch;
}

/* signup form */
.capture {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  width: 100%;
}

.capture .row { display: flex; gap: 10px; flex-wrap: wrap; }

.capture input {
  flex: 1 1 160px;
  min-width: 0;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.capture input:focus-visible {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(111, 154, 168, 0.25);
}

.capture button {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
  background: var(--brick);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}

.capture button:hover { background: var(--brick-deep); }
.capture button:active { transform: scale(0.97); }
.capture button:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 2px; }
.capture button[disabled] { opacity: 0.6; cursor: default; }

.fineprint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.8;
  margin: 2px 0 0;
}

.form-status {
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 1.2em;
  margin: 2px 0 0;
}
.form-status.ok { color: #3f7a4f; }
.form-status.err { color: var(--brick); }

.footer-meta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px 40px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.footer-meta nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-meta a { text-decoration: none; font-weight: 700; color: var(--sky-deep); }
.footer-meta a:hover { color: var(--ink); }

.footer-follow {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px 28px;
  text-align: center;
}

.footer-follow .gw-social { justify-content: center; }

.gw-social { display: flex; align-items: center; gap: 12px; }
.gw-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper-deep);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.gw-social a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.gw-social svg { width: 26px; height: 26px; }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */

@media (max-width: 860px) {
  .footer-join { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .capture .row { flex-direction: column; }
  .capture button { width: 100%; }
}

/* =====================================================================
   HOME
   ===================================================================== */

.home-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 52px 28px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.home-hero h1 {
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.home-hero h1 em { font-style: italic; color: var(--brick); }

/* Hero portrait — holds the Ava & Sox illustration */
.hero-portrait {
  justify-self: center;
  width: 100%;
  max-width: 380px;
}
.hero-portrait .plate { transform: rotate(1deg); }
.hero-portrait .frame.portrait { aspect-ratio: 4 / 5; background: #fbf9e4; }

/* The "wonder collection" — four mounted specimens, now a lower feature strip */
.collection-strip {
  background: var(--paper-deep);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 28px;
  align-items: center;
}
.collection-strip .strip-lead {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
}
.collection-strip .strip-lead .eyebrow { display: flex; margin-bottom: 6px; font-size: 1.35rem; }
.collection-strip .chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.collection-strip .specimen-chip { padding: 14px 10px 11px; }
.collection-strip .specimen-chip .name { font-size: 1.15rem; }

.collection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px 20px 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 30px 52px -28px rgba(43, 42, 40, 0.36);
  transform: rotate(-0.6deg);
  position: relative;
}
.collection::before {
  content: "Wonder, collected";
  position: absolute;
  top: -14px; left: 18px;
  background: var(--gold);
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  transform: rotate(-1.5deg);
}
.specimen-chip {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 16px 12px 12px;
  text-align: center;
}
.specimen-chip svg { display: block; margin: 0 auto 8px; color: var(--sky-deep); }
.specimen-chip .name {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1;
}
.specimen-chip .kind {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

/* Featured book strip */
.featured {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--paper-deep);
  border-radius: var(--radius);
  padding: 40px;
}
.featured .plate { max-width: 240px; }
.featured h2 { font-weight: 600; font-size: 1.7rem; margin: 0 0 6px; }
.featured .kicker {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--sky-deep);
  display: block;
  margin-bottom: 2px;
}
.featured p { color: var(--ink-soft); margin: 0 0 22px; max-width: 46ch; }

/* Trio teaser */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.trio-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.trio-card .avatar {
  width: 68px; height: 68px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--paper-deeper);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-deep);
}
.trio-card h3 { font-size: 1.2rem; margin: 0 0 4px; }
.trio-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* Two-up: activity + club invitations */
.invite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.invite {
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--line);
}
.invite.activity { background: #fff; }
.invite.club { background: var(--sky-deep); color: #fff; border-color: transparent; }
.invite h3 { font-size: 1.4rem; margin: 0 0 8px; }
.invite p { margin: 0 0 20px; }
.invite.activity p { color: var(--ink-soft); }
.invite.club p { color: rgba(255,255,255,0.9); }
.invite.club .btn-primary { background: var(--gold); color: var(--ink); }
.invite.club .btn-primary:hover { background: var(--gold-deep); }
.invite .icon { margin-bottom: 14px; color: var(--sky-deep); }
.invite.club .icon { color: rgba(255,255,255,0.85); }

/* Coming soon seeds */
.seeds-head { text-align: center; margin-bottom: 8px; }
.seeds-head .eyebrow { justify-content: center; }
.seeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.seed {
  text-align: center;
  padding: 30px 22px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.5);
}
.seed .glyph {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  color: var(--leaf);
}
.seed.lab .glyph { color: var(--sky-deep); }
.seed.sky .glyph { color: var(--gold-deep); }
.seed h3 { font-size: 1.2rem; margin: 0 0 6px; }
.seed p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 10px; }
.seed .soon {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  color: var(--brick);
}

/* Bigger-story path cards (Option 1) */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.path {
  text-align: center;
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
a.path:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -26px rgba(43, 42, 40, 0.4);
  border-color: var(--sky);
}
a.path:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 3px; }
.path .glyph {
  width: 42px; height: 42px;
  margin: 0 auto 14px;
  color: var(--sky-deep);
}
.path:nth-child(1) .glyph { color: var(--brick); }
.path:nth-child(3) .glyph { color: var(--leaf); }
.path h3 { font-size: 1.25rem; margin: 0 0 8px; }
.path p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.path .path-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--brick);
}

@media (max-width: 860px) {
  .home-hero { grid-template-columns: 1fr; padding-top: 34px; }
  .home-hero .hero-portrait { order: -1; max-width: 300px; margin: 0 auto; }
  .collection-strip { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .collection-strip .strip-lead .eyebrow { justify-content: center; }
  .collection-strip .chips { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; text-align: center; }
  .featured .plate { margin: 0 auto; }
  .featured p { margin-left: auto; margin-right: auto; }
  .featured .btn-row { justify-content: center; }
  .trio { grid-template-columns: 1fr; }
  .invite-grid { grid-template-columns: 1fr; }
  .seeds { grid-template-columns: 1fr; }
}

/* =====================================================================
   MEET AVA
   ===================================================================== */

.page-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 28px 8px;
  text-align: center;
}
.page-head h1 {
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.page-head h1 em { font-style: italic; color: var(--brick); }
.page-head .lede { margin: 0 auto; text-align: center; }

.character {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px dashed var(--line);
}
.character:first-of-type { border-top: none; }
.character.flip .portrait { order: 2; }
.character .portrait { max-width: 300px; width: 100%; }
.character h2 { font-weight: 600; font-size: 1.9rem; margin: 0 0 2px; }
.character .role {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--sky-deep);
  display: block;
  margin-bottom: 16px;
}
.character .bio { color: var(--ink-soft); margin: 0 0 18px; max-width: 52ch; }

.fieldnotes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.fieldnotes li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96rem;
}
.fieldnotes li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.fieldnotes li b {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
}

.more-friends {
  text-align: center;
  margin: 12px auto 0;
  padding: 34px;
  background: var(--paper-deep);
  border-radius: var(--radius);
  max-width: var(--maxw);
}
.more-friends p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
}
.more-friends .hero-note {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--brick);
  display: block;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .character { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .character .portrait { margin: 0 auto; max-width: 260px; }
  .character.flip .portrait { order: -1; }
  .character .bio { margin-left: auto; margin-right: auto; }
  .fieldnotes { text-align: left; max-width: 320px; margin: 0 auto; }
}

/* =====================================================================
   THE BOOK
   ===================================================================== */

.book-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 28px 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  align-items: center;
}
.book-hero .plate { max-width: 300px; }
.book-hero h1 {
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.1rem);
  line-height: 1.06;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.book-hero h1 em { font-style: italic; color: var(--brick); }
.meta-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 22px; }
.chip {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: rgba(111,154,168,0.12);
  padding: 6px 12px;
  border-radius: 20px;
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 26px;
}
.beat .mark {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--sky-deep);
  display: block;
  margin-bottom: 4px;
}
.beat h3 { font-weight: 600; font-size: 1.15rem; margin: 0 0 8px; }
.beat p { font-size: 0.97rem; color: var(--ink-soft); margin: 0; }

.buy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.buy-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: #fff;
  text-align: center;
}
.buy-card .format {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 2px;
}
.buy-card .price {
  font-size: 2rem;
  font-family: 'Fraunces', serif;
  color: var(--brick);
  margin: 0 0 4px;
}
.buy-card .note { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 18px; }

.bonus {
  margin-top: 8px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
}
.bonus .seal { color: var(--gold); }
.bonus h3 { font-weight: 600; font-size: 1.5rem; margin: 0 0 8px; color: #fff; }
.bonus p { margin: 0; color: rgba(251,247,238,0.85); max-width: 60ch; }
.bonus .whisper {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .book-hero { grid-template-columns: 1fr; text-align: center; }
  .book-hero .plate { order: -1; margin: 0 auto; }
  .meta-chips { justify-content: center; }
  .book-hero .verse { text-align: left; }
  .beats-grid { grid-template-columns: 1fr; }
  .buy { grid-template-columns: 1fr; }
  .bonus { grid-template-columns: 1fr; text-align: center; }
  .bonus .seal { margin: 0 auto; }
}

/* =====================================================================
   WONDER CLUB
   ===================================================================== */

.club-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 54px 28px 30px;
  text-align: center;
}
.club-hero .eyebrow { justify-content: center; }
.club-hero h1 {
  font-weight: 600;
  font-size: clamp(2.3rem, 4.8vw, 3.2rem);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.club-hero h1 em { font-style: italic; color: var(--brick); }
.club-hero .lede { margin: 0 auto; text-align: center; font-size: 1.18rem; }

.club-hero-image {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px 40px;
}
.club-hero-image .frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* locks 16:9 regardless of image's own dimensions */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: 0 26px 46px -26px rgba(43, 42, 40, 0.34);
  background: var(--paper-deep);
}
.club-hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.gift {
  max-width: 720px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: center;
}
.gift .icon { color: var(--ink); }
.gift h3 { font-weight: 600; font-size: 1.3rem; margin: 0 0 4px; }
.gift p { margin: 0; color: rgba(43,42,40,0.82); }

.benefits {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.benefit .tick {
  flex: none;
  color: var(--leaf);
  margin-top: 2px;
}
.benefit h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; margin: 0 0 3px; }
.benefit p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

.club-arrow {
  text-align: center;
  max-width: 720px;
  margin: 8px auto 0;
  padding: 30px 28px 0;
}
.club-arrow p {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--sky-deep);
  margin: 0;
}
.club-arrow svg { display: block; margin: 6px auto 0; color: var(--sky-deep); }

@media (max-width: 680px) {
  .benefits { grid-template-columns: 1fr; }
  .gift { grid-template-columns: 1fr; text-align: center; }
  .gift .icon { margin: 0 auto; }
  .club-hero-image { padding-bottom: 28px; }
}

/* =====================================================================
   LEGAL / PROSE PAGES  (privacy, and anything text-first later)
   ===================================================================== */

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 28px 20px;
}
.legal .updated {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--sky-deep);
  margin: 0 0 26px;
}
.legal h2 {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 30px 0 8px;
  letter-spacing: -0.01em;
}
.legal h2:first-of-type { margin-top: 6px; }
.legal p {
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.legal a {
  color: var(--brick);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(191, 68, 56, 0.3);
}
.legal a:hover { border-bottom-color: var(--brick); }
