:root {
  --ink: #4a3322;
  --muted: #7c6d5f;
  --paper: #fffaf0;
  --cream: #f6ead7;
  --soft-cream: #fbf4e8;
  --sage: #b4b889;
  --sage-dark: #737b58;
  --sky: #92d9ee;
  --sky-soft: #e4f6fb;
  --teal: #2eada7;
  --teal-dark: #247c7a;
  --teal-soft: #dff5f2;
  --dusty-pink: #d8a096;
  --dusty-pink-soft: #f1d9d3;
  --tan: #c99a6f;
  --tan-dark: #7b5738;
  --gold: #b98a32;
  --gold-soft: #e7d2a1;
  --mustard: #b99a3b;
  --duck-egg: #b9c8be;
  --duck-egg-soft: #e8efea;
  --terracotta: #c57a4f;
  --terracotta-soft: #e5aa87;
  --backpack-red: #d94332;
  --backpack-red-soft: #f5c8bf;
  --heart: var(--backpack-red);
  --lavender-soft: #d9d5f4;
  --line: rgba(74, 51, 34, 0.14);
  --shadow: 0 18px 52px rgba(74, 51, 34, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --hand: "Noteworthy", "Bradley Hand", "Segoe Print", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(146, 217, 238, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(46, 173, 167, 0.16), transparent 25rem),
    radial-gradient(circle at 78% 78%, rgba(217, 67, 50, 0.055), transparent 22rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(217, 67, 50, 0.13) 1.3px, transparent 1.4px),
    radial-gradient(circle, rgba(46, 173, 167, 0.12) 1.2px, transparent 1.35px),
    linear-gradient(135deg, rgba(146, 217, 238, 0.08) 0 18%, transparent 18% 100%);
  background-position: 22px 26px, 68px 78px, 0 0;
  background-size: 128px 128px, 164px 164px, 72px 72px;
  opacity: 0.22;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.home-page .site-header,
.home-page main,
.home-page footer {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(74, 51, 34, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: circle(50%);
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(46, 173, 167, 0.14);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(74, 51, 34, 0.06);
}

nav a:hover,
nav a:focus-visible {
  color: var(--backpack-red);
  background: rgba(228, 246, 251, 0.7);
  border-color: rgba(217, 67, 50, 0.25);
}

.picture-book-hero {
  position: relative;
  min-height: calc(100vh - 91px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(110px, 14vw, 190px) clamp(18px, 6vw, 88px) clamp(42px, 7vw, 86px);
  background: var(--tan-dark);
}

.picture-book-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(58, 38, 26, 0.68), rgba(58, 38, 26, 0.28) 42%, rgba(58, 38, 26, 0.02) 72%),
    linear-gradient(0deg, rgba(58, 38, 26, 0.56), transparent 42%);
  pointer-events: none;
}

.lifestyle-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.78) 34%, rgba(255, 250, 242, 0.22) 58%, rgba(255, 250, 242, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 250, 242, 0.52), rgba(255, 250, 242, 0.04) 42%);
}

.picture-book-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lifestyle-hero .picture-book-hero-art {
  object-position: center right;
  filter: saturate(1.06) contrast(1.04);
}

.lifestyle-hero::after {
  position: absolute;
  left: clamp(136px, 13vw, 260px);
  bottom: clamp(20px, 3vw, 58px);
  z-index: 1;
  width: min(58vw, 880px);
  aspect-ratio: 2.45 / 1;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px 16px 24px 22px;
  clip-path: polygon(0 12%, 50% 26%, 100% 6%, 100% 92%, 54% 100%, 4% 82%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.picture-book-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(45, 29, 19, 0.32);
}

.lifestyle-hero .picture-book-hero-copy {
  max-width: 680px;
  color: var(--ink);
  text-shadow: none;
}

.picture-book-hero-copy .hero-seal {
  width: clamp(94px, 12vw, 150px);
  margin-bottom: 20px;
}

.picture-book-hero-copy .eyebrow,
.picture-book-hero-copy .hero-text {
  color: rgba(255, 250, 242, 0.92);
}

.lifestyle-hero .picture-book-hero-copy .eyebrow,
.lifestyle-hero .picture-book-hero-copy .hero-text {
  color: var(--ink);
}

.picture-book-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
}

.picture-book-hero-copy .button.primary {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(255, 250, 242, 0.82);
}

.lifestyle-hero .picture-book-hero-copy .button.primary {
  color: var(--paper);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.picture-book-hero-copy .button.secondary {
  color: var(--paper);
  background: rgba(255, 250, 242, 0.14);
  border-color: rgba(255, 250, 242, 0.52);
}

.lifestyle-hero .picture-book-hero-copy .button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 250, 242, 0.64);
  border-color: rgba(46, 173, 167, 0.3);
}

.hero {
  min-height: calc(100vh - 67px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(197, 122, 79, 0.2), transparent 24rem),
    linear-gradient(115deg, rgba(247, 239, 226, 0.98), rgba(255, 250, 242, 0.78) 52%, rgba(238, 224, 207, 0.95));
  position: relative;
  overflow: hidden;
}

.hero::after,
.featured-book::after,
.story-heart::after,
.teacher-band::after,
.signup-section::after,
.story-page-hero::after {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  content: "♡  ♕  ☂";
  color: rgba(217, 67, 50, 0.12);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: 0.35em;
  pointer-events: none;
}

.brand-hero::before,
.discovery-section::before,
.clothing-section::before,
.gift-shop-section::before,
.club-inline::before,
.about-section::before {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 28px;
  content: "♕  ·  ♡";
  color: rgba(46, 173, 167, 0.13);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0.42em;
  pointer-events: none;
}

.book-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 480px);
}

.hero-copy {
  max-width: 690px;
}

.hero-seal {
  width: clamp(132px, 16vw, 220px);
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  clip-path: circle(50%);
  box-shadow: 0 14px 30px rgba(74, 51, 34, 0.1);
}

.eyebrow,
.cover-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-family: var(--hand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(3.1rem, 7.8vw, 7rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.text-panel p,
.activity-grid p,
.market-band p,
.about-section p,
.signup-copy p,
.form-note {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.signup-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.signup-form button {
  color: var(--paper);
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.52);
  border-color: rgba(46, 173, 167, 0.26);
}

.button:hover,
.button:focus-visible,
.signup-form button:hover,
.signup-form button:focus-visible {
  color: var(--paper);
  background: var(--backpack-red);
  border-color: var(--backpack-red);
  outline: none;
  transform: translateY(-1px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--paper);
  background: var(--teal);
  border-color: var(--teal);
}

.hero-image {
  margin: 0;
  padding: clamp(10px, 2vw, 18px);
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.hero-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-align: center;
}

.hero-cover {
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-cover img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  border-radius: 12px;
}

.wonder-cover img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.book-hero-cover {
  width: min(440px, 100%);
  justify-self: center;
  background: #fff;
}

.book-hero-cover img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.values-strip span {
  padding: 9px 14px;
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.62);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-family: var(--hand);
  font-size: 0.88rem;
  font-weight: 800;
}

.book-grid-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(146, 217, 238, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--paper), var(--soft-cream));
}

.book-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.book-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.book-card-cover {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(185, 138, 50, 0.14), transparent 10rem),
    #fff;
}

.book-card-cover img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(74, 51, 34, 0.14));
}

.elroi-book-cover,
.amber-book-cover {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.elroi-book-cover img,
.amber-book-cover img {
  display: block;
  max-height: none;
  aspect-ratio: 2351 / 1646;
  object-fit: cover;
  filter: none;
}

.amber-book-cover img {
  border-radius: 0;
}

.future-cover-placeholder {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 0;
  aspect-ratio: 2351 / 1646;
  place-items: center;
  align-content: center;
  padding: 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(146, 217, 238, 0.22), transparent 9rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(223, 245, 242, 0.56));
}

.future-cover-placeholder::before {
  position: absolute;
  right: 9%;
  bottom: 0;
  width: 54px;
  height: 116px;
  content: "";
  background:
    linear-gradient(90deg, transparent 48%, rgba(123, 87, 56, 0.18) 48% 53%, transparent 53%),
    radial-gradient(ellipse at 50% 22%, rgba(180, 184, 137, 0.22) 0 42%, transparent 44%);
  opacity: 0.62;
}

.future-cover-placeholder img {
  width: min(116px, 42%);
  padding: 0;
  opacity: 0.36;
  border-radius: 50%;
  filter: saturate(0.88);
}

.future-cover-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.book-card-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.book-card-copy p {
  color: var(--muted);
}

.book-card-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.book-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.book-link-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.64);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.featured-story-card {
  border-color: rgba(185, 138, 50, 0.26);
}

.amber-peek-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 9% 16%, rgba(216, 160, 214, 0.2), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(184, 201, 196, 0.18), transparent 20rem),
    linear-gradient(135deg, #fff9f5, #f2e7f6 58%, #fbf4e8);
}

.amber-peek-section::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(132, 89, 148, 0.14);
  border-radius: 18px;
  pointer-events: none;
}

.amber-peek-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.amber-peek-copy h2 {
  margin-inline: auto;
  color: #5e4172;
}

.amber-peek-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.amber-peek-copy .hero-actions {
  justify-content: center;
}

.amber-peek-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.amber-cover-book,
.amber-open-book {
  margin: 0;
}

.amber-cover-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.amber-cover-book {
  position: relative;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(46, 173, 167, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(74, 51, 34, 0.12);
}

.amber-cover-book img {
  display: block;
  width: 100%;
  height: auto;
}

.amber-song-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(132, 89, 148, 0.18);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(74, 51, 34, 0.1);
}

.amber-song-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #6c4b82;
  background: rgba(231, 218, 239, 0.82);
  border-radius: 50%;
  font-weight: 900;
}

.amber-song-card h3 {
  margin-bottom: 4px;
  color: #5e4172;
  font-family: var(--serif);
  font-size: 1.22rem;
}

.amber-song-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.amber-song-card audio {
  width: 100%;
  margin-bottom: 10px;
  accent-color: var(--teal);
}

.amber-song-card a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 11px;
  color: #5e4172;
  background: rgba(231, 218, 239, 0.72);
  border: 1px solid rgba(132, 89, 148, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.amber-preview-stack {
  display: grid;
  gap: 18px;
}

.amber-open-book {
  position: relative;
  overflow: hidden;
  padding: clamp(8px, 1.4vw, 14px);
  background:
    linear-gradient(90deg, rgba(231, 218, 239, 0.7), rgba(255, 250, 242, 0.92) 12% 88%, rgba(231, 218, 239, 0.7)),
    #fffaf0;
  border: 1px solid rgba(132, 89, 148, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(74, 51, 34, 0.12);
}

.amber-open-book img {
  width: 100%;
  aspect-ratio: 3750 / 2917;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.amber-open-book-large {
  box-shadow: 0 24px 62px rgba(74, 51, 34, 0.14);
}

.amber-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.amber-preview-grid .amber-open-book {
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(74, 51, 34, 0.1);
}

.featured-book {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  background: var(--soft-cream);
}

.featured-cover {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.featured-cover img {
  width: 100%;
  aspect-ratio: 1400 / 544;
  object-fit: cover;
  object-position: center;
}

.featured-cover.front-cover {
  padding: 18px;
}

.featured-cover.front-cover img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.featured-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-heart {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 720px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 18%, rgba(146, 217, 238, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--paper), var(--cream));
  position: relative;
  overflow: hidden;
}

.story-art {
  margin: 0;
  padding: 18px 18px 26px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.story-art img {
  width: 100%;
  aspect-ratio: 848 / 1200;
  object-fit: cover;
  border-radius: 12px;
}

.story-art p {
  margin: 16px 0 0;
  color: var(--terracotta);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.8rem;
  text-align: center;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  color: var(--tan-dark);
  background: rgba(243, 222, 217, 0.66);
  border-left: 5px solid var(--terracotta);
  border-radius: 16px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.story-highlight,
.gold-line {
  color: var(--terracotta) !important;
  font-weight: 900;
}

.cover-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--soft-cream);
}

.cover {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(82, 63, 47, 0.1);
}

.cover-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% center;
  opacity: 0.88;
}

.cover-seal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 104px;
  height: 104px;
  object-fit: cover;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  clip-path: circle(50%);
  box-shadow: var(--shadow);
  z-index: 1;
}

.cover::before,
.cover::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.cover::before {
  inset: 18px;
  border: 1px dashed rgba(197, 122, 79, 0.28);
  border-radius: 14px;
}

.cover::after {
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  content: "♡  ♕";
  color: rgba(217, 67, 50, 0.26);
  background: none;
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.22em;
}

.cover h2,
.cover h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  max-width: 390px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--ink);
  text-shadow: none;
}

.cover p,
.cover-kicker {
  position: relative;
  z-index: 2;
  color: var(--muted);
  text-shadow: none;
}

.cover p {
  margin-bottom: 0;
  font-weight: 750;
}

.amber-preview {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 52px 0 18px;
}

.amber-preview img {
  width: 100%;
  aspect-ratio: 2000 / 1467;
  object-fit: cover;
  border: 5px solid rgba(255, 250, 240, 0.92);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(74, 51, 34, 0.12);
}

.cover-elroi {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(247, 239, 226, 0.92)),
    var(--cream);
}

.cover-amber {
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 160, 150, 0.3), transparent 9rem),
    linear-gradient(135deg, var(--paper), var(--dusty-pink-soft));
}

.cover-adventure {
  background:
    radial-gradient(circle at 82% 16%, rgba(146, 217, 238, 0.28), transparent 9rem),
    linear-gradient(135deg, var(--paper), var(--teal-soft));
}

.cover-upcoming {
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 168, 131, 0.32), transparent 9rem),
    linear-gradient(135deg, var(--paper), rgba(201, 168, 131, 0.24));
}

.cover-showcase.compact {
  padding: 0;
  background: transparent;
}

.cover-showcase.compact .cover {
  min-height: 350px;
}

.section,
.signup-section,
.market-band {
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px);
}

.discovery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(184, 201, 196, 0.18), transparent 18rem),
    radial-gradient(ellipse at 0% 100%, rgba(201, 168, 131, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(251, 244, 232, 0.92));
}

.section-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 760px;
  font-size: 1.05rem;
}

.section-heading::after {
  display: block;
  width: min(148px, 45vw);
  height: 5px;
  margin-top: 18px;
  content: "";
  background:
    linear-gradient(90deg, rgba(46, 173, 167, 0.66), rgba(146, 217, 238, 0.6) 48%, rgba(217, 67, 50, 0.3) 76%, transparent);
  border-radius: 999px;
}

.section-heading .eyebrow::before,
.bonus-song-copy .eyebrow::before,
.review-page-copy .eyebrow::before {
  margin-right: 0.46rem;
  color: var(--gold);
  content: "♕";
  font-family: var(--serif);
  font-size: 0.84em;
}

.sneak-peek-section .section-heading .eyebrow::before,
.music-section .section-heading .eyebrow::before,
.bonus-song-copy .eyebrow::before {
  color: var(--teal);
  content: "☂";
}

.gift-shop-section .section-heading .eyebrow::before,
.review-page-copy .eyebrow::before {
  color: var(--backpack-red);
  content: "♡";
}

.book-strip {
  overflow: hidden;
  margin-bottom: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.book-strip img {
  width: 100%;
  aspect-ratio: 1400 / 544;
  object-fit: cover;
  object-position: center;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.book-feature img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.book-feature-copy {
  max-width: 620px;
}

.book-feature-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.two-column,
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-panel,
.activity-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.tinted {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(146, 217, 238, 0.18), rgba(246, 234, 215, 0.86)),
    var(--cream);
}

.section-seal {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 44px;
  width: clamp(86px, 12vw, 156px);
  opacity: 0.2;
  pointer-events: none;
}

.section-seal.light {
  opacity: 0.2;
  mix-blend-mode: screen;
}

.resource-row,
.teacher-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.resource-row span,
.resource-row a,
.teacher-list span,
.market-list span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 850;
}

.resource-row span,
.resource-row a {
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(46, 173, 167, 0.16);
}

.discovery-row span:nth-child(2) {
  border-color: rgba(197, 122, 79, 0.34);
}

.discovery-row span:nth-child(3) {
  border-color: rgba(200, 164, 86, 0.34);
}

.discovery-row span:nth-child(4) {
  border-color: rgba(184, 201, 196, 0.42);
}

.clothing-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(197, 122, 79, 0.14), transparent 18rem),
    radial-gradient(ellipse at 100% 100%, rgba(46, 173, 167, 0.1), transparent 16rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(241, 217, 211, 0.54));
}

.clothing-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.clothing-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
}

.clothing-icon {
  width: min(260px, 72vw);
  margin: 0 0 22px;
}

.elroi-gateway {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(184, 201, 196, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.elroi-journey-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 126px) clamp(18px, 5vw, 72px) clamp(92px, 11vw, 150px);
  background:
    radial-gradient(circle at 14% 6%, rgba(185, 138, 50, 0.08), transparent 24rem),
    radial-gradient(circle at 94% 76%, rgba(238, 224, 207, 0.32), transparent 18rem),
    var(--paper);
}

.journey-path-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
  opacity: 0.84;
  filter: sepia(0.12) saturate(1.05) contrast(1.08);
  pointer-events: none;
}

.journey-details {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.journey-marker {
  position: absolute;
  width: clamp(104px, 11vw, 168px);
  height: clamp(104px, 11vw, 168px);
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(74, 51, 34, 0.1));
}

.journey-marker-giraffes {
  top: 13%;
  left: 51%;
  width: clamp(128px, 13.5vw, 206px);
  height: clamp(128px, 13.5vw, 206px);
}

.journey-marker-elephants {
  top: 28%;
  left: 43%;
  width: clamp(124px, 13vw, 198px);
  height: clamp(124px, 13vw, 198px);
}

.journey-marker-horses {
  top: 41%;
  left: 18%;
  width: clamp(140px, 15vw, 232px);
  height: clamp(140px, 15vw, 232px);
}

.journey-marker-owls {
  top: 48%;
  right: 6%;
  width: clamp(112px, 12vw, 180px);
  height: clamp(112px, 12vw, 180px);
  padding: 8px;
  background: radial-gradient(circle, rgba(255, 250, 242, 0.5), rgba(255, 250, 242, 0) 70%);
  border-radius: 50%;
}

.journey-marker-lizards {
  top: 61%;
  right: 26%;
  width: clamp(108px, 11.5vw, 176px);
  height: clamp(108px, 11.5vw, 176px);
}

.journey-marker-fish {
  top: 66%;
  left: 10%;
  width: clamp(112px, 12vw, 182px);
  height: clamp(112px, 12vw, 182px);
}

.journey-marker-bears {
  bottom: 11%;
  left: 6%;
  width: clamp(126px, 14vw, 204px);
  height: clamp(126px, 14vw, 204px);
}

.journey-marker-parade {
  right: 18%;
  bottom: 10%;
  width: clamp(94px, 10vw, 148px);
  height: clamp(94px, 10vw, 148px);
  opacity: 0.78;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at 53% 52%, #000 48%, rgba(0, 0, 0, 0.82) 64%, transparent 88%);
  mask-image: radial-gradient(ellipse 78% 70% at 53% 52%, #000 48%, rgba(0, 0, 0, 0.82) 64%, transparent 88%);
}

.journey-footprint,
.journey-footprint::before,
.journey-footprint::after {
  position: absolute;
  width: 8px;
  height: 13px;
  content: "";
  background: rgba(123, 87, 56, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.journey-footprint::before {
  top: -16px;
  left: 13px;
}

.journey-footprint::after {
  top: 15px;
  left: -12px;
}

.footprint-one {
  top: 25%;
  left: 28%;
}

.footprint-two {
  top: 48%;
  right: 23%;
  transform: rotate(16deg);
}

.footprint-three {
  bottom: 21%;
  left: 34%;
  transform: rotate(-8deg);
}

.journey-butterfly {
  position: absolute;
  width: 18px;
  height: 14px;
  opacity: 0.48;
}

.journey-butterfly::before,
.journey-butterfly::after {
  position: absolute;
  width: 9px;
  height: 13px;
  content: "";
  background: rgba(216, 160, 150, 0.5);
  border: 1px solid rgba(185, 138, 50, 0.2);
  border-radius: 70% 40% 70% 40%;
}

.journey-butterfly::before {
  left: 1px;
  transform: rotate(-28deg);
}

.journey-butterfly::after {
  right: 1px;
  transform: rotate(28deg) scaleX(-1);
}

.butterfly-one {
  top: 18%;
  right: 18%;
}

.butterfly-two {
  bottom: 28%;
  left: 14%;
  transform: scale(0.78) rotate(-10deg);
}

.journey-grass,
.journey-flower {
  position: absolute;
  width: 34px;
  height: 28px;
  opacity: 0.42;
  border-bottom: 2px solid rgba(115, 123, 88, 0.2);
}

.journey-grass::before,
.journey-grass::after,
.journey-flower::before,
.journey-flower::after {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 22px;
  content: "";
  background: rgba(115, 123, 88, 0.24);
  border-radius: 999px;
  transform-origin: bottom;
}

.journey-grass::before,
.journey-flower::before {
  left: 12px;
  transform: rotate(-18deg);
}

.journey-grass::after,
.journey-flower::after {
  left: 20px;
  transform: rotate(18deg);
}

.grass-one {
  top: 37%;
  left: 7%;
}

.grass-two {
  right: 8%;
  bottom: 17%;
}

.flower-one {
  bottom: 41%;
  left: 83%;
}

.flower-one {
  border-bottom-color: rgba(216, 160, 150, 0.24);
}

.journey-tree {
  position: absolute;
  width: 34px;
  height: 82px;
  opacity: 0.22;
}

.journey-tree::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 62px;
  content: "";
  background: rgba(180, 184, 137, 0.38);
  border-radius: 70% 70% 55% 55%;
  transform: translateX(-50%);
}

.journey-tree::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3px;
  height: 48px;
  content: "";
  background: rgba(123, 87, 56, 0.35);
  transform: translateX(-50%);
}

.tree-one {
  top: 13%;
  left: 9%;
}

.tree-two {
  right: 7%;
  bottom: 9%;
  transform: scale(0.74);
}

.journey-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto clamp(70px, 9vw, 130px);
  text-align: center;
}

.journey-heading h2 {
  margin-inline: auto;
}

.journey-heading p {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-song-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(560px, 100%);
  margin: 28px auto 0;
  padding: 16px;
  text-align: left;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(185, 138, 50, 0.2);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(74, 51, 34, 0.1);
}

.journey-song-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--terracotta);
  background: rgba(243, 222, 217, 0.76);
  border-radius: 50%;
  font-weight: 900;
}

.journey-song-card h3 {
  margin-bottom: 8px;
  color: var(--tan-dark);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.journey-song-card audio {
  width: 100%;
  accent-color: var(--teal);
}

.journey-book-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(96px, 14vw, 188px);
}

.journey-book {
  width: min(920px, 78vw);
  margin: 0;
  aspect-ratio: 1390 / 813;
  overflow: hidden;
  filter: drop-shadow(0 22px 34px rgba(74, 51, 34, 0.13));
}

.journey-book img {
  width: 110.5%;
  max-width: none;
  object-fit: cover;
  transform: translate(-4.7%, -10.8%);
}

.journey-left {
  justify-self: start;
}

.journey-right {
  justify-self: end;
}

.journey-center {
  width: min(1020px, 86vw);
  justify-self: center;
}

.sneak-peek-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 9vw, 124px);
  padding-bottom: clamp(80px, 10vw, 140px);
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 201, 196, 0.22), transparent 22rem),
    radial-gradient(circle at 86% 38%, rgba(185, 138, 50, 0.12), transparent 28rem),
    linear-gradient(135deg, var(--paper), var(--soft-cream));
}

.sneak-peek-section .section-heading {
  max-width: 1040px;
  margin: 0 auto clamp(48px, 7vw, 92px);
  text-align: center;
}

.sneak-peek-section .section-heading h2 {
  margin-inline: auto;
}

.sneak-peek-section .section-heading p {
  margin-inline: auto;
}

.sneak-peek-list {
  display: grid;
  gap: clamp(64px, 10vw, 136px);
}

.peek-card {
  position: relative;
  width: min(1180px, 100%);
  display: block;
  scroll-margin-top: 32px;
  margin: 0;
  padding: clamp(10px, 1.6vw, 18px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 242, 0.9)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(74, 51, 34, 0.14);
  transform: rotate(-0.35deg);
}

.peek-card:nth-child(odd) {
  justify-self: start;
}

.peek-card:nth-child(even) {
  justify-self: end;
  transform: rotate(0.35deg);
}

.peek-card::before {
  position: absolute;
  inset: clamp(18px, 2.2vw, 30px);
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 250, 242, 0.55);
  border-radius: 10px;
  pointer-events: none;
}

.peek-card img {
  width: 100%;
  aspect-ratio: 1400 / 1089;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(74, 51, 34, 0.1);
}

.peek-card figcaption {
  max-width: 760px;
  margin: clamp(18px, 3vw, 30px) auto clamp(4px, 1vw, 10px);
  color: var(--tan-dark);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.curiosity-card {
  display: grid;
  justify-items: center;
}

.curiosity-card figcaption {
  margin-bottom: 18px;
}

.night-card {
  background:
    linear-gradient(135deg, rgba(49, 68, 100, 0.08), rgba(255, 250, 242, 0.88)),
    var(--paper);
}

@supports (animation-timeline: view()) {
  .peek-card {
    animation: page-reveal both ease-out;
    animation-timeline: view();
    animation-range: entry 12% cover 34%;
  }

  .peek-card:nth-child(even) {
    animation-name: page-reveal-even;
  }
}

@keyframes page-reveal {
  from {
    opacity: 0.62;
    transform: translateY(36px) rotate(-0.35deg) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-0.35deg) scale(1);
  }
}

@keyframes page-reveal-even {
  from {
    opacity: 0.62;
    transform: translateY(36px) rotate(0.35deg) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0.35deg) scale(1);
  }
}

.plushie-section {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(197, 122, 79, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--cream), var(--paper));
}

.plushie-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.plushie-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
}

.plushie-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.music-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(185, 138, 50, 0.14), transparent 18rem),
    linear-gradient(135deg, var(--paper), var(--duck-egg-soft));
}

.music-player-list {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.music-player-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(920px, 100%);
  max-width: 920px;
  padding: 20px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.music-player-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--terracotta);
  background: rgba(243, 222, 217, 0.72);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.music-player-card audio {
  width: 100%;
  accent-color: var(--teal);
}

.music-player-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.62);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.song-purchase-note {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.62);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.25;
}

.song-purchase-note a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.journey-song-card .song-purchase-note,
.amber-song-card .song-purchase-note {
  margin: 0;
}

.journey-song-card .song-purchase-note {
  margin-top: 10px;
}

.amber-song-card .song-purchase-note {
  color: #5e4172;
  background: rgba(231, 218, 239, 0.72);
  border-color: rgba(132, 89, 148, 0.18);
}

.pathway-grid,
.world-grid,
.download-grid {
  display: grid;
  gap: 16px;
}

.pathway-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pathway-grid a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--teal-dark);
  background: rgba(255, 250, 242, 0.78);
  border: 1px dashed rgba(46, 173, 167, 0.26);
  border-radius: 18px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(82, 63, 47, 0.06);
}

.world-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 201, 196, 0.24), transparent 24rem),
    linear-gradient(115deg, rgba(247, 239, 226, 0.98), rgba(255, 250, 242, 0.78) 52%, rgba(243, 222, 217, 0.72));
}

.product-journey {
  background: var(--soft-cream);
}

.world-grid,
.download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.world-card,
.download-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 14%, rgba(197, 122, 79, 0.14), transparent 8rem),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.world-card > span,
.download-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--terracotta);
  background: rgba(243, 222, 217, 0.72);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.world-card p,
.download-card p {
  color: var(--muted);
}

.print-note {
  max-width: 720px;
  padding: 14px 16px;
  color: var(--tan-dark) !important;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(185, 138, 50, 0.2);
  border-radius: 14px;
  font-weight: 750;
}

.colouring-page-card {
  min-height: 0;
}

.colouring-page-preview {
  overflow: hidden;
  margin: 0 0 18px;
  background: #fff;
  border: 1px solid rgba(74, 51, 34, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(74, 51, 34, 0.08);
}

.colouring-page-preview img {
  width: 100%;
  aspect-ratio: 1419 / 1109;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.colouring-page-preview.square-preview img {
  aspect-ratio: 1;
}

.colouring-page-card > span {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.world-card audio,
.download-card audio {
  width: 100%;
  margin: 8px 0 14px;
  accent-color: var(--teal);
}

.related-items {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.related-items a,
.download-card a,
.download-card .download-disabled {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.62);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
}

.download-card .download-disabled {
  color: var(--muted);
}

.downloads-hero h1 {
  font-size: clamp(3.6rem, 9vw, 8rem);
}

.downloads-intro {
  background: var(--soft-cream);
}

.download-grid-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(200, 164, 86, 0.14), transparent 18rem),
    var(--paper);
}

.purchase-downloads {
  background:
    radial-gradient(circle at 86% 16%, rgba(146, 217, 238, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--soft-cream), var(--paper));
}

.audio-card {
  background:
    radial-gradient(circle at 82% 14%, rgba(185, 138, 50, 0.18), transparent 8rem),
    var(--paper);
}

.gift-shop-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(200, 164, 86, 0.12), transparent 18rem),
    radial-gradient(ellipse at 4% 96%, rgba(46, 173, 167, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(246, 234, 215, 0.78));
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gift-grid article,
.add-in-panel {
  padding: 22px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.gift-grid article span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 50%;
  font-weight: 900;
}

.gift-product-photo {
  overflow: hidden;
  margin: 0 0 18px;
  aspect-ratio: 4 / 5;
  background: rgba(246, 234, 215, 0.52);
  border-radius: 14px;
}

.gift-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.add-in-product-photo {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 18px;
}

.add-in-product-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(74, 51, 34, 0.1);
}

.add-in-product-photo.hoodie-photo img {
  aspect-ratio: 5 / 4;
}

.add-in-product-photo figcaption {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}

.gift-grid article p,
.add-in-panel p {
  color: var(--muted);
}

.add-in-panel {
  margin-top: 18px;
}

.gift-shop-actions {
  margin-top: 22px;
}

.add-in-panel h3 {
  margin-bottom: 16px;
}

.hoodie-collection-hero {
  background:
    radial-gradient(circle at 16% 16%, rgba(197, 122, 79, 0.16), transparent 22rem),
    linear-gradient(115deg, rgba(247, 239, 226, 0.98), rgba(255, 250, 242, 0.82) 52%, rgba(232, 239, 234, 0.9));
}

.hoodie-collection-hero h1 {
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

.hoodie-hero-image img {
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  object-position: center;
}

.hoodie-intro {
  background:
    radial-gradient(circle at 88% 18%, rgba(185, 138, 50, 0.12), transparent 18rem),
    linear-gradient(135deg, var(--paper), var(--soft-cream));
}

.hoodie-feature-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hoodie-feature-row span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  color: var(--teal-dark);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
}

.hoodie-grid-section {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(216, 160, 150, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(232, 239, 234, 0.58));
}

.hoodie-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hoodie-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hoodie-card > a {
  display: block;
  overflow: hidden;
  background: #eadbcf;
}

.hoodie-card img {
  width: 100%;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  object-position: center;
}

.hoodie-card-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.hoodie-card-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.hoodie-card-copy p {
  color: var(--muted);
}

.hoodie-card-copy .button {
  width: fit-content;
  margin-top: auto;
}

.hoodie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 20px;
}

.hoodie-card-meta span,
.hoodie-price-field {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: rgba(228, 246, 251, 0.62);
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.hoodie-product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 201, 196, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--paper), var(--soft-cream));
}

.hoodie-product-gallery {
  display: grid;
  gap: 18px;
}

.hoodie-product-gallery img {
  width: 100%;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  object-position: center;
  background: #eadbcf;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hoodie-product-panel {
  position: sticky;
  top: 96px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hoodie-product-panel h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

.hoodie-product-panel .hero-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.hoodie-spec-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.hoodie-spec-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 51, 34, 0.1);
}

.hoodie-spec-list dt {
  color: var(--tan-dark);
  font-weight: 900;
}

.hoodie-spec-list dd {
  margin: 0;
  color: var(--muted);
}

.size-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.size-selector legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.size-selector label {
  cursor: pointer;
}

.size-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-selector span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  color: var(--teal-dark);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(46, 173, 167, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.size-selector input:checked + span,
.size-selector input:focus-visible + span {
  color: var(--paper);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.teacher-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(228, 246, 251, 0.18), transparent 18rem),
    linear-gradient(135deg, #2f7471, #6aa7a2);
  color: var(--paper);
}

.teacher-band::before {
  position: absolute;
  top: 10%;
  right: 0;
  width: min(420px, 44vw);
  height: 80%;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='420' height='360' viewBox='0 0 420 360' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M410 28C332 44 276 88 270 138C264 194 330 207 316 258C305 298 253 321 185 330' stroke='%23fffaf2' stroke-width='5' stroke-linecap='round' stroke-dasharray='1 18'/%3E%3Cpath d='M354 92C333 75 306 76 294 94C279 117 299 146 332 143C361 140 374 111 354 92Z' stroke='%23fffaf2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='1 15'/%3E%3Cpath d='M246 268C232 249 206 246 193 262C177 282 192 310 222 311C250 311 262 289 246 268Z' stroke='%23fffaf2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='1 14'/%3E%3Cpath d='M145 329C159 315 176 315 188 329C176 344 158 344 145 329Z' fill='%23fffaf2'/%3E%3C/svg%3E") right center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}

.teacher-band .eyebrow,
.teacher-band .section-heading p {
  color: rgba(255, 250, 242, 0.82);
}

.teacher-list span {
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.24);
}

.market-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px) minmax(260px, 360px);
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(231, 179, 159, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--tan-dark), var(--terracotta));
  color: var(--paper);
}

.market-promo {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border: 8px solid rgba(255, 250, 242, 0.88);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.market-band .eyebrow,
.market-band p {
  color: rgba(255, 250, 242, 0.84);
}

.market-list {
  display: grid;
  gap: 12px;
}

.market-list span {
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.about-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px minmax(0, 860px);
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(201, 168, 131, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(251, 244, 232, 0.82));
}

.about-mark {
  display: grid;
  width: 170px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(185, 138, 50, 0.28);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(74, 51, 34, 0.1);
}

.about-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mark.clothing-mark {
  width: min(260px, 100%);
  aspect-ratio: 421 / 335;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.about-mark.clothing-mark img {
  object-fit: contain;
}

.about-author-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 132px);
  background:
    radial-gradient(circle at 12% 14%, rgba(146, 217, 238, 0.18), transparent 19rem),
    radial-gradient(circle at 92% 82%, rgba(185, 138, 50, 0.1), transparent 22rem),
    #f7f3eb;
}

.about-author-section::before {
  position: absolute;
  top: clamp(34px, 6vw, 72px);
  left: clamp(24px, 5vw, 68px);
  width: 118px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(46, 173, 167, 0.42), transparent);
}

.author-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.author-seal {
  display: block;
  width: clamp(82px, 10vw, 126px);
  height: auto;
  margin-bottom: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  clip-path: circle(50%);
  box-shadow: 0 16px 34px rgba(74, 51, 34, 0.1);
}

.author-copy h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.author-copy .author-intro {
  max-width: 540px;
  margin: -6px 0 24px;
  color: var(--teal-dark);
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  font-weight: 800;
  line-height: 1.45;
}

.author-copy p:not(.eyebrow):not(.author-intro) {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.78;
}

.author-copy .button {
  margin-top: 12px;
}

.author-image {
  position: relative;
  z-index: 1;
  margin: 0;
}

.author-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(46, 173, 167, 0.16);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(74, 51, 34, 0.14);
}

.author-butterfly {
  position: absolute;
  top: 7%;
  left: -18px;
  z-index: 2;
  width: 34px;
  height: 28px;
  transform: rotate(-16deg);
}

.author-butterfly::before,
.author-butterfly::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 42% 46%, rgba(185, 138, 50, 0.78) 0 28%, transparent 29%),
    radial-gradient(ellipse at 52% 54%, rgba(216, 160, 150, 0.56) 0 18%, transparent 19%),
    rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(86, 96, 57, 0.36);
  border-radius: 70% 28% 70% 28%;
  box-shadow: 0 8px 18px rgba(74, 51, 34, 0.12);
}

.author-butterfly::before {
  transform: translateX(-8px) rotate(-18deg);
}

.author-butterfly::after {
  transform: translateX(8px) scaleX(-1) rotate(-18deg);
}

.signup-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 330px) minmax(320px, 460px);
  gap: 38px;
  align-items: start;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201, 168, 131, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(251, 244, 232, 0.98), rgba(255, 250, 242, 0.94));
}

.club-inline {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 160, 150, 0.12), transparent 18rem),
    radial-gradient(ellipse at 0% 100%, rgba(46, 173, 167, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(223, 245, 242, 0.66));
}

.club-inline p {
  color: var(--muted);
  font-size: 1.05rem;
}

.signup-seal {
  width: 124px;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  clip-path: circle(50%);
  box-shadow: 0 12px 24px rgba(74, 51, 34, 0.1);
}

.signup-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.signup-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
}

.signup-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.signup-form label {
  font-size: 0.9rem;
  font-weight: 850;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  margin-bottom: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(92, 74, 57, 0.18);
  border-radius: 999px;
  font: inherit;
}

.signup-form input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 2px 0 10px;
  color: var(--muted);
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.35;
}

.signup-form input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(146, 217, 238, 0.38);
}

.signup-form button {
  width: 100%;
}

.story-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 122, 79, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--paper), var(--cream));
  text-align: center;
}

.story-page-hero h1 {
  max-width: none;
  margin-bottom: 6px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 500;
  line-height: 0.82;
}

.story-page-hero > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-page-seal {
  width: clamp(86px, 13vw, 156px);
  margin: 0 auto 22px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  clip-path: circle(50%);
  box-shadow: 0 12px 24px rgba(74, 51, 34, 0.1);
}

.story-page {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 72px) clamp(64px, 8vw, 110px);
}

.story-page-art {
  position: sticky;
  top: 96px;
  margin: 0;
  padding: 18px 18px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.image-enlarge-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 12px;
  cursor: zoom-in;
  font: inherit;
}

.image-enlarge-trigger:focus-visible {
  outline: 3px solid rgba(146, 217, 238, 0.52);
  outline-offset: 4px;
}

.story-page-art img {
  width: 100%;
  aspect-ratio: 848 / 1200;
  object-fit: cover;
  border-radius: 12px;
}

.image-lightbox {
  width: min(94vw, 980px);
  max-width: none;
  max-height: 94vh;
  padding: clamp(12px, 2vw, 18px);
  background: var(--paper);
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(28, 19, 12, 0.38);
}

.image-lightbox::backdrop {
  background: rgba(28, 19, 12, 0.62);
  backdrop-filter: blur(4px);
}

.image-lightbox img {
  width: 100%;
  max-height: calc(94vh - 36px);
  object-fit: contain;
  border-radius: 10px;
}

.image-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(28, 19, 12, 0.18);
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.story-page-art figcaption {
  margin-top: 16px;
  color: var(--terracotta);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.9rem;
  text-align: center;
}

.story-page-copy {
  max-width: 780px;
}

.story-page-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
}

.story-page-copy blockquote span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58em;
  font-weight: 700;
}

.centered-story {
  color: var(--ink) !important;
  font-weight: 800;
  text-align: center;
}

.script-note {
  margin-top: 26px;
  color: var(--ink) !important;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  line-height: 1.1;
}

.signature {
  margin: 34px 0 0;
  color: var(--ink) !important;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.4rem, 5vw, 4.5rem) !important;
  line-height: 1;
}

.signature-brand {
  color: var(--terracotta) !important;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-note {
  margin: 2px 0 0;
  font-size: 0.88rem;
}

.review-page-hero {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  justify-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 16%, rgba(191, 232, 243, 0.34), transparent 18rem),
    radial-gradient(circle at 10% 82%, rgba(210, 126, 88, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 243, 235, 0.98));
}

.review-page-hero > .review-options-panel {
  width: min(100%, 860px);
}

.review-page-copy {
  max-width: 760px;
  text-align: center;
}

.review-page-copy h1 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 1;
}

.review-page-copy .hero-text {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.review-clean-card {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(260px, 420px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  width: min(100%, 980px);
  padding: clamp(22px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(46, 173, 167, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(74, 51, 34, 0.1);
}

.review-card-preview {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid rgba(46, 173, 167, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(74, 51, 34, 0.1);
}

.review-card-preview img {
  display: block;
  width: 100%;
}

.review-qr-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.review-qr-panel h2 {
  max-width: 380px;
  margin: 0 auto 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  line-height: 1.08;
}

.review-qr-box {
  display: grid;
  width: min(64vw, 260px);
  aspect-ratio: 1;
  margin: 4px auto 24px;
  place-items: center;
  color: var(--teal-dark);
  background: #fff;
  border: 12px solid rgba(191, 232, 243, 0.84);
  border-radius: 30px;
  box-shadow: 0 16px 34px rgba(74, 51, 34, 0.08);
  text-align: center;
  text-decoration: none;
}

.review-qr-box img {
  width: 88%;
  height: 88%;
}

.review-main-button {
  margin-top: 4px;
  font-size: 1rem;
}

.review-note {
  max-width: 390px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-options-panel {
  display: grid;
  justify-items: center;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(46, 173, 167, 0.12);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(74, 51, 34, 0.08);
}

.review-options-panel h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.02;
}

.review-option-list {
  display: grid;
  gap: 14px;
  width: min(100%, 560px);
}

.review-option-button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 18px;
  color: var(--teal-dark);
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(46, 173, 167, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(74, 51, 34, 0.06);
  font-weight: 900;
  text-align: left;
}

.review-option-button:hover,
.review-option-button:focus-visible {
  color: var(--backpack-red);
  border-color: rgba(217, 67, 50, 0.22);
  box-shadow: 0 16px 32px rgba(74, 51, 34, 0.1);
  transform: translateY(-1px);
}

.review-option-disabled,
.review-option-disabled:hover,
.review-option-disabled:focus-visible {
  color: var(--muted);
  border-color: rgba(74, 51, 34, 0.08);
  box-shadow: 0 10px 24px rgba(74, 51, 34, 0.04);
  transform: none;
}

.review-option-button span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 1rem;
}

.review-option-button small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.bonus-song-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 480px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(231, 210, 161, 0.28), transparent 18rem),
    radial-gradient(circle at 10% 82%, rgba(185, 200, 190, 0.3), transparent 22rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(247, 243, 235, 0.96));
}

.bonus-song-copy {
  max-width: 760px;
}

.bonus-song-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6.8vw, 6rem);
  line-height: 1;
}

.bonus-subheading {
  max-width: 680px;
  margin: -6px 0 18px;
  color: var(--tan-dark);
  font-size: clamp(1.04rem, 2.1vw, 1.32rem);
  font-weight: 800;
  line-height: 1.45;
}

.bonus-audio-card {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(46, 173, 167, 0.12);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(74, 51, 34, 0.1);
}

.bonus-audio-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.bonus-audio-card audio {
  width: 100%;
  accent-color: var(--teal);
}

.bonus-download-button {
  justify-content: center;
  width: fit-content;
}

.bonus-song-art {
  position: relative;
  margin: 0;
}

.bonus-song-art::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 24% 18%, rgba(185, 138, 50, 0.18), transparent 12rem),
    rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(46, 173, 167, 0.12);
  border-radius: 34px;
  transform: rotate(-2deg);
}

.bonus-song-art img {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(46, 173, 167, 0.14);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(74, 51, 34, 0.14);
}

.bonus-lyrics-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(246, 234, 215, 0.72)),
    var(--paper);
}

.bonus-future-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(191, 232, 243, 0.28), transparent 20rem),
    linear-gradient(135deg, rgba(232, 239, 234, 0.72), rgba(255, 250, 242, 0.96));
}

.bonus-future-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bonus-future-grid article {
  padding: 22px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(46, 173, 167, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(74, 51, 34, 0.08);
}

.bonus-future-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 50%;
  font-weight: 900;
}

.bonus-future-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.bonus-future-grid p {
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer {
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 242, 0.78);
  background: var(--tan-dark);
}

footer p {
  margin: 0;
}

.footer-signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.footer-signup strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.footer-signup .button.secondary {
  color: var(--paper);
  background: rgba(255, 250, 242, 0.12);
  border-color: rgba(255, 250, 242, 0.3);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .featured-book,
  .book-card-grid,
  .story-heart,
  .story-page,
  .market-band,
  .signup-section,
  .about-section,
  .about-author-section,
  .book-feature,
  .clothing-section,
  .club-inline,
  .plushie-section,
  .peek-card,
  .peek-card:nth-child(even),
  .music-player-card,
  .bonus-song-hero {
    grid-template-columns: 1fr;
  }

  .picture-book-hero {
    min-height: 78vh;
    align-items: end;
  }

  .author-image {
    order: -1;
  }

  .author-butterfly {
    left: 18px;
  }

  .picture-book-hero::before {
    background:
      linear-gradient(0deg, rgba(58, 38, 26, 0.74), rgba(58, 38, 26, 0.24) 68%, rgba(58, 38, 26, 0.04)),
      linear-gradient(90deg, rgba(58, 38, 26, 0.48), transparent 72%);
  }

  .lifestyle-hero::after {
    left: 10%;
    bottom: 3%;
    width: 70vw;
  }

  .book-card-cover:not(.elroi-book-cover, .amber-book-cover) {
    min-height: 300px;
  }

  .journey-path-art {
    opacity: 0.5;
    object-fit: cover;
  }

  .journey-book,
  .journey-center {
    width: 100%;
  }

  .journey-book-list {
    gap: clamp(58px, 12vw, 96px);
  }

  .journey-marker {
    width: clamp(72px, 18vw, 120px);
    height: clamp(72px, 18vw, 120px);
    opacity: 0.82;
  }

  .journey-marker-bears {
    width: clamp(82px, 20vw, 136px);
    height: clamp(82px, 20vw, 136px);
  }

  .journey-marker-parade {
    width: clamp(66px, 16vw, 104px);
    height: clamp(66px, 16vw, 104px);
  }

  .peek-card:nth-child(even) img,
  .peek-card:nth-child(even) figcaption,
  .peek-card:nth-child(even) .button {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .story-page-art {
    position: static;
  }

  .cover-showcase,
  .activity-grid,
  .resource-row,
  .teacher-list,
  .pathway-grid,
  .amber-peek-layout,
  .world-grid,
  .download-grid,
  .hoodie-feature-row,
  .hoodie-card-grid,
  .hoodie-product-section,
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .bonus-future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hoodie-product-panel {
    position: static;
  }

  .add-in-product-photo {
    grid-template-columns: 1fr;
  }

  .cover {
    min-height: 350px;
  }
}

@media (max-width: 680px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .amber-peek-section::before {
    inset: 12px;
  }

  .amber-preview-grid {
    grid-template-columns: 1fr;
  }

  .amber-cover-book {
    width: min(100%, 560px);
    justify-self: center;
  }

  .size-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hoodie-spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .music-player-card {
    justify-items: start;
  }

  .review-page-hero,
  .review-clean-card {
    grid-template-columns: 1fr;
  }

  .review-card-preview {
    max-width: 520px;
    margin: 0 auto;
  }

  .bonus-song-hero {
    padding-top: 44px;
  }

  .bonus-download-button {
    width: 100%;
  }

  .bonus-future-grid {
    grid-template-columns: 1fr;
  }

  .footer-signup {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-mark {
    width: 118px;
    font-size: 1.7rem;
  }
}
