:root {
  --ink: #25372f;
  --deep: #173b31;
  --sage: #6f8c73;
  --soft-sage: #dfe9dd;
  --cream: #fbf5e9;
  --warm: #f5dfb7;
  --gold: #d99e42;
  --orange: #d76f35;
  --card: rgba(255,255,255,.86);
  --border: rgba(37,55,47,.12);
  --shadow: 0 24px 70px rgba(35,60,44,.12);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 85% 4%, rgba(245,223,183,.45), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 40%, #ffffff 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 20;
}

.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-mark { font-weight: 850; letter-spacing: .08em; font-size: .98rem; }
.brand-sub { margin-top: 5px; color: var(--sage); font-size: .72rem; }

.nav { display: flex; justify-content: center; gap: 26px; font-size: .94rem; }
.nav a { opacity: .78; transition: opacity .2s ease, transform .2s ease; }
.nav a:hover { opacity: 1; transform: translateY(-1px); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-weight: 750;
  letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(23,59,49,.18);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(23,59,49,.22); }
.btn-secondary { background: rgba(255,255,255,.72); color: var(--deep); border: 1px solid var(--border); box-shadow: none; backdrop-filter: blur(8px); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .9rem; }

.hero {
  width: min(1440px, 100%);
  min-height: 720px;
  margin: 0 auto;
  padding: 20px 28px 0;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(650px, 1.45fr);
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  max-width: 600px;
  padding-left: clamp(0px, 4vw, 58px);
  position: relative;
  z-index: 3;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(3.3rem, 5.1vw, 6.4rem);
  letter-spacing: -.055em;
  line-height: .95;
  color: var(--deep);
}
.hero h1 span { color: #a4562f; }
.hero-lede { max-width: 590px; margin: 26px 0 0; font-size: clamp(1rem, 1.3vw, 1.18rem); color: rgba(37,55,47,.78); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-note { margin-top: 22px; color: var(--sage); font-size: .9rem; font-style: italic; }

.hero-visual {
  align-self: end;
  position: relative;
  z-index: 2;
  margin-left: -84px;
  margin-right: -30px;
  margin-bottom: -2px;
}
.hero-visual img {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  filter: drop-shadow(0 26px 34px rgba(21,48,38,.14));
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(22px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; background: rgba(245,223,183,.32); right: 12%; top: 10%; }
.hero-glow-two { width: 360px; height: 360px; background: rgba(223,233,221,.5); left: 5%; bottom: -160px; }

.promise-strip {
  width: min(1140px, calc(100% - 40px));
  margin: 8px auto 0;
  padding: 18px 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--deep);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(30,70,52,.06);
  backdrop-filter: blur(8px);
  font-weight: 700;
}
.promise-strip i { color: var(--gold); font-style: normal; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4vw, 4.5rem); letter-spacing: -.04em; line-height: 1.02; color: var(--deep); }
.section-heading { max-width: 720px; margin-bottom: 40px; }
.section-heading.centered { margin: 0 auto 42px; text-align: center; }
.section-heading p { color: rgba(37,55,47,.72); font-size: 1.06rem; }

.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: start; }
.story-copy { padding-top: 8px; font-size: 1.1rem; color: rgba(37,55,47,.75); }
.story-copy p:first-child { margin-top: 0; }
.section h2 .story-accent { color: #b76a3c; }
.story-copy strong { color: var(--deep); font-weight: 700; }

.lessons { width: min(1240px, calc(100% - 40px)); }
.lesson-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lesson-card { padding: 26px; min-height: 220px; background: rgba(255,255,255,.8); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 14px 42px rgba(29,62,47,.07); }
.lesson-icon { font-size: 2.2rem; display: block; margin-bottom: 20px; }
.lesson-card h3 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; color: var(--deep); }
.lesson-card p { margin: 0; color: rgba(37,55,47,.68); }

.preview-panel {
  min-height: 510px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7e9c6 0%, #e7efdf 100%);
  border: 1px solid rgba(37,55,47,.09);
  box-shadow: var(--shadow);
}
.preview-copy { align-self: center; padding: clamp(34px, 6vw, 80px); }
.preview-copy p { max-width: 520px; font-size: 1.08rem; color: rgba(37,55,47,.74); margin: 20px 0 28px; }
.preview-art { position: relative; overflow: hidden; min-height: 420px; }
.sun { width: 140px; height: 140px; border-radius: 50%; background: #f7c86f; position: absolute; right: 18%; top: 14%; box-shadow: 0 0 80px rgba(247,200,111,.5); }
.hill { position: absolute; border-radius: 50% 50% 0 0; bottom: -25%; }
.hill-one { width: 110%; height: 75%; right: -30%; background: #789773; transform: rotate(-8deg); }
.hill-two { width: 110%; height: 62%; left: -12%; background: #315f4a; transform: rotate(8deg); }
.monkey { position: absolute; font-size: 9rem; right: 30%; bottom: 8%; filter: drop-shadow(0 14px 18px rgba(0,0,0,.18)); }
.leaf { position: absolute; font-size: 6rem; }
.leaf-one { left: 3%; top: 8%; transform: rotate(-15deg); }
.leaf-two { right: 4%; bottom: 3%; transform: rotate(18deg); }

.signup { padding-top: 34px; }
.signup-card, .buy-card {
  padding: clamp(34px, 5vw, 66px);
  border-radius: var(--radius-lg);
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow);
}
.signup-card h2, .buy-card h2 { color: white; }
.signup-card p, .buy-card p { color: rgba(255,255,255,.72); }
.signup-form { display: grid; gap: 12px; }
.signup-form input { width: 100%; min-height: 56px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.1); color: white; padding: 0 20px; font-size: 1rem; outline: none; }
.signup-form input::placeholder { color: rgba(255,255,255,.58); }
.signup-form .btn { background: #f4d899; color: var(--deep); box-shadow: none; }

.merch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.merch-card { aspect-ratio: 1 / 1; border-radius: var(--radius-md); display: grid; place-items: center; text-align: center; font-family: Georgia, "Times New Roman", serif; font-weight: 800; font-size: clamp(2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.04em; border: 1px solid var(--border); box-shadow: 0 16px 44px rgba(34,65,50,.08); }
.merch-hugs { background: #f3e2c2; color: #633719; }
.merch-ready { background: #3e8558; color: white; }
.merch-well { background: #e9eee2; color: var(--deep); }
.text-link { display: inline-block; margin-top: 22px; font-weight: 800; color: var(--deep); }

.buy { padding-top: 30px; }
.buy-card { background: linear-gradient(135deg, #274f40, #173b31); }
.buy-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.buy-actions .btn:first-child { background: #f2d49a; color: var(--deep); box-shadow: none; }
.buy-actions .btn-secondary { color: white; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }

.author-card { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: center; }
.author-monogram { width: 220px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--warm), var(--soft-sage)); color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-size: 4.5rem; font-weight: 800; border: 10px solid white; box-shadow: var(--shadow); }
.author-card p { max-width: 750px; font-size: 1.08rem; color: rgba(37,55,47,.72); }
.author-line { font-family: Georgia, "Times New Roman", serif; font-style: italic; color: #9b5b36 !important; }

.footer { width: min(1240px, calc(100% - 40px)); margin: 40px auto 0; padding: 38px 0 46px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; color: rgba(37,55,47,.68); }
.footer > div:first-child { display: flex; flex-direction: column; }
.footer > div:first-child span { font-size: .78rem; color: var(--sage); }
.footer-links { display: flex; gap: 18px; }
.footer small { white-space: nowrap; }
.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; }

@media (max-width: 1100px) {
  .nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 50px; min-height: auto; }
  .hero-copy { text-align: center; margin: 0 auto; padding-left: 0; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin: 10px -16px 0; }
  .hero-visual img { margin: 0 auto; }
  .lesson-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { height: 76px; width: min(100% - 28px, 1280px); }
  .brand-sub { display: none; }
  .hero { padding: 42px 14px 0; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.3rem); }
  .hero-lede { font-size: 1rem; }
  .hero-visual { margin-top: 26px; }
  .promise-strip { border-radius: 24px; gap: 10px 12px; font-size: .9rem; }
  .section { width: min(100% - 28px, 1180px); padding: 78px 0; }
  .story-grid, .preview-panel, .signup-card, .buy-card, .author-card { grid-template-columns: 1fr; gap: 26px; }
  .lesson-grid, .merch-row { grid-template-columns: 1fr; }
  .preview-art { min-height: 360px; }
  .signup-form { width: 100%; }
  .buy-actions { justify-content: flex-start; }
  .author-monogram { width: 150px; font-size: 3.2rem; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}


/* --- July 5 refinement pass --- */
.hero { min-height: 690px; }
.hero::before,
.hero::after { content: none !important; }
.hero-glow { display: none !important; }
.btn-tertiary {
  background: transparent;
  color: var(--deep);
  border: 1px solid rgba(23,59,49,.28);
  box-shadow: none;
}
.btn-tertiary:hover { box-shadow: 0 10px 24px rgba(23,59,49,.08); }

.preview-heading { max-width: 760px; margin-bottom: 34px; }
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sample-card {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}
.sample-screen {
  min-height: 410px;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  box-shadow: 0 18px 46px rgba(29,62,47,.10);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
  position: relative;
}
.sample-card:hover .sample-screen {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(29,62,47,.14);
}
.sample-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,30,22,.58) 100%);
}
.sample-screen > * { position: relative; z-index: 1; }
.sample-one { background: linear-gradient(145deg, #9ec6a2 0%, #315f4a 55%, #163a31 100%); color: white; }
.sample-two { background: linear-gradient(145deg, #f3d597 0%, #c97b43 55%, #78472f 100%); color: white; }
.sample-three { background: linear-gradient(145deg, #e8e5bc 0%, #789773 55%, #284a3c 100%); color: white; }
.sample-label {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(5px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sample-screen strong { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; line-height: 1.05; }
.sample-screen p { margin: 10px 0 0; color: rgba(255,255,255,.86); }

.merch-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.merch-heading > div { max-width: 760px; }
.merch-shop-btn { white-space: nowrap; align-self: end; }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.merch-product {
  min-height: 310px;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(34,65,50,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.merch-product:hover { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(34,65,50,.13); }
.merch-product strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; color: var(--deep); }
.merch-product small { margin-top: 5px; color: rgba(37,55,47,.62); }
.merch-badge {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  color: var(--deep);
  font-weight: 850;
}
.merch-tone-one { background: linear-gradient(145deg,#f5e4c8,#efe0bd); }
.merch-tone-two { background: linear-gradient(145deg,#edf1e7,#dfe8d8); }
.merch-tone-three { background: linear-gradient(145deg,#dcebdd,#b8d5bc); }
.merch-tone-four { background: linear-gradient(145deg,#f5dfb7,#edc98b); }
.merch-tone-five { background: linear-gradient(145deg,#f1e7db,#dfc9af); }
.merch-tone-six { background: linear-gradient(145deg,#e5ece2,#cadbc7); }

@media (max-width: 900px) {
  .sample-grid, .merch-grid { grid-template-columns: 1fr 1fr; }
  .merch-heading { grid-template-columns: 1fr; }
  .merch-shop-btn { justify-self: start; }
}
@media (max-width: 650px) {
  .sample-grid, .merch-grid { grid-template-columns: 1fr; }
  .sample-screen { min-height: 340px; }
}

/* --- Animal lesson rewrite --- */
.lesson-grid { align-items: stretch; }
.lesson-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 30px;
}
.lesson-avatar {
  width: 120px;
  height: 120px;
  margin: -70px auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(231, 231, 231, 0.95);
  box-shadow: 0 10px 22px rgba(29,62,47,.10);
  background: #f5efe4;
  flex: 0 0 auto;
}
.lesson-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lesson-card h3 { margin: 2px 0 8px; }
.lesson-practice {
  display: block;
  margin: -2px 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.lesson-card p { flex: 1; max-width: 26ch; }

/* v5 image slots */
.sample-card img { display:block; width:100%; height:auto; border-radius:24px; }
.merch-product img { display:block; width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:22px; margin-bottom:14px; }


@media (max-width: 900px) {
  .lesson-avatar { width: 108px; height: 108px; margin-top: -62px; }
}
@media (max-width: 650px) {
  .lesson-avatar { width: 100px; height: 100px; margin-top: -56px; }
}

/* --- Layered jungle hero --- */
.hero {
  width: 100%;
  max-width: none;
  min-height: 720px;
  margin: 0;
  padding: 46px clamp(24px, 6vw, 96px) 0;
  grid-template-columns: minmax(330px, .8fr) minmax(560px, 1.35fr);
  gap: 12px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255,249,235,.12), rgba(255,249,235,0)), url('assets/hero-jungle-bg.png');
  background-size: cover;
  background-position: center center;
  isolation: isolate;
}
.hero::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,250,238,.64) 0%, rgba(255,250,238,.28) 33%, rgba(255,250,238,0) 62%);
  pointer-events: none;
}
.hero-copy {
  align-self: center;
  max-width: 610px;
  padding-left: clamp(0px, 3vw, 42px);
  padding-bottom: 56px;
}
.hero h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}
.hero-lede {
  max-width: 560px;
  color: rgba(37,55,47,.86);
}
.hero-actions {
  align-items: center;
  gap: 20px;
}
.hero-text-link {
  font-weight: 800;
  color: var(--deep);
  border-bottom: 1px solid rgba(23,59,49,.32);
  padding: 8px 0 5px;
}
.hero-text-link:hover { border-bottom-color: var(--deep); }
.hero-visual {
  align-self: end;
  margin: 0 -3vw -4px -8vw;
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  filter: drop-shadow(0 22px 28px rgba(29,54,42,.16));
}

@media (max-width: 1100px) {
  .hero {
    min-height: 680px;
    grid-template-columns: 1fr 1.15fr;
    padding: 42px 22px 0;
    background-position: 42% center;
  }
  .hero-copy { text-align: left; margin: 0; padding-left: 20px; }
  .hero-actions { justify-content: flex-start; }
  .hero-visual { margin: 0 -14vw 0 -10vw; }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 40px 18px 0;
    background-size: auto 100%;
    background-position: 44% center;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(255,250,238,.70) 0%, rgba(255,250,238,.34) 44%, rgba(255,250,238,.02) 72%);
  }
  .hero-copy {
    text-align: center;
    margin: 0 auto;
    padding: 0 6px 8px;
    max-width: 580px;
  }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5.1rem); }
  .hero-actions { justify-content: center; }
  .hero-visual {
    margin: 10px -42vw -2px -22vw;
  }
  .hero-visual img {
    width: 148%;
    max-width: none;
    margin: 0;
  }
}

/* --- v7 hero polish: warmer copper, grounding, tighter mobile crop --- */
.hero h1 span {
  color: #b76a3c;
}

.hero-visual {
  position: relative;
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 1.6%;
  width: 22%;
  height: 3.5%;
  border-radius: 50%;
  background: rgba(47, 68, 43, 0.20);
  filter: blur(14px);
  transform: scaleX(1.2);
  z-index: 0;
  pointer-events: none;
}
.hero-visual img {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .hero-visual {
    margin: 12px -18vw -2px -10vw;
  }
  .hero-visual img {
    width: 128%;
    max-width: none;
    margin: 0;
  }
  .hero-visual::after {
    left: 19%;
    bottom: 1.4%;
    width: 24%;
    height: 3%;
    filter: blur(10px);
  }
}

/* --- Final content polish: printable, reviews, merch, author --- */
.printable-card {
  grid-template-columns: 1fr auto;
}
.printable-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.printable-action .btn {
  background: #f4d899;
  color: var(--deep);
  box-shadow: none;
}
.printable-action small {
  color: rgba(255,255,255,.65);
  padding-left: 10px;
}

.reviews {
  padding-top: 42px;
}
.reviews-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(34,65,50,.08);
}
.review-card p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.28;
  color: var(--deep);
}
.review-card footer {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--accent);
}
.review-featured {
  background: linear-gradient(145deg, #f8e9ca, #eef1e5);
}

.merch-product {
  background: #fff;
  padding: 18px;
}
.merch-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 16px;
  background: #fff;
}
.merch-product strong {
  margin-top: 2px;
}

.compact-author {
  grid-template-columns: 170px 1fr;
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(34,65,50,.07);
}
.author-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid #fff;
  box-shadow: var(--shadow);
}
.compact-author h2 {
  margin-bottom: 10px;
}
.compact-author p {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .printable-card {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .compact-author {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px;
  }
  .author-photo {
    margin: 0 auto;
  }
  .compact-author p {
    margin-left: auto;
    margin-right: auto;
  }
}


/* --- v11 finishing pass --- */
.lesson-avatar {
  width: 116px;
  height: 116px;
  margin: -68px auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 10px 22px rgba(29,62,47,.10);
}
.lesson-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.printable-card {
  grid-template-columns: minmax(0, 1.15fr) 240px auto;
  gap: 28px;
}
.printable-copy { max-width: 620px; }
.printable-preview {
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.printable-preview img {
  width: 100%;
  max-width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 28px rgba(8,22,18,.22);
}
.printable-preview span {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 700;
}

.review-card,
.review-featured {
  background: rgba(255,255,255,.82);
}
.review-card footer {
  color: rgba(37,55,47,.88);
}

.merch-product {
  min-height: 350px;
}
.merch-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
  border-radius: 20px;
  margin-bottom: 18px;
  background: #fff;
}

@media (max-width: 980px) {
  .printable-card {
    grid-template-columns: 1fr;
  }
  .printable-preview {
    justify-self: start;
  }
}


/* --- v14 single-review carousel --- */
.review-carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.review-viewport {
  min-height: 310px;
  position: relative;
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(34,65,50,.09);
  overflow: hidden;
  outline: none;
}
.review-viewport:focus-visible {
  box-shadow: 0 0 0 4px rgba(111,140,115,.22), 0 18px 48px rgba(34,65,50,.09);
}
.review-slide {
  margin: 0;
  padding: clamp(40px, 6vw, 72px);
  min-height: 310px;
  display: none;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  animation: reviewFade .38s ease both;
}
.review-slide.is-active { display: flex; }
.review-slide p {
  margin: 0 auto 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--deep);
}
.review-slide footer {
  font-size: .95rem;
  font-weight: 850;
  letter-spacing: .04em;
  color: rgba(37,55,47,.82);
}
.review-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  color: var(--deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(34,65,50,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34,65,50,.13);
}
@keyframes reviewFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .review-slide { animation: none; }
}
@media (max-width: 650px) {
  .review-carousel { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; }
  .review-arrow { width: 44px; height: 44px; font-size: 1.25rem; }
  .review-viewport, .review-slide { min-height: 300px; }
  .review-slide { padding: 34px 24px; }
  .review-slide p { font-size: clamp(1.55rem, 7vw, 2.2rem); }
}

/* Final purchase and contact links */
.buy-text-link {
  align-self: center;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding: 8px 0 5px;
}
.buy-text-link:hover { border-bottom-color: #fff; }


/* Author contact CTA */
.author-contact {
  margin-top: 22px;
}
.author-contact p {
  margin: 0 0 12px;
  font-size: .96rem;
  color: rgba(37,55,47,.68);
}
.author-contact-btn {
  display: inline-flex;
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
  box-shadow: none;
}
.author-contact-btn:hover {
  box-shadow: 0 10px 24px rgba(23,59,49,.14);
}


/* --- Breathing Tree email signup --- */
.breathing-tree { padding-top: 34px; }
.breathing-tree-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7e8c8 0%, #e8efe0 100%);
  border: 1px solid rgba(37,55,47,.10);
  box-shadow: var(--shadow);
}
.breathing-tree-copy { max-width: 700px; }
.breathing-tree-copy h2 { margin-bottom: 18px; }
.breathing-tree-copy > p {
  max-width: 650px;
  margin: 0 0 22px;
  color: rgba(37,55,47,.74);
  font-size: 1.05rem;
}
.breathing-tree-preview-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.breathing-tree-preview-wrap img {
  width: 100%;
  max-width: 290px;
  border-radius: 18px;
  border: 8px solid rgba(255,255,255,.78);
  box-shadow: 0 18px 38px rgba(30,62,48,.18);
}
.breathing-tree-preview-wrap span {
  color: var(--deep);
  font-weight: 800;
  font-size: .92rem;
}
.breathing-tree-note {
  display: block;
  margin-top: 10px;
  color: rgba(37,55,47,.62);
}
.breathing-tree .ml-embedded { max-width: 620px; }

@media (max-width: 820px) {
  .breathing-tree-card { grid-template-columns: 1fr; }
  .breathing-tree-preview-wrap { align-items: flex-start; }
  .breathing-tree-preview-wrap img { max-width: 240px; }
}


/* MailerLite form alignment: keep the embedded form integrated with the section copy. */
.breathing-tree .ml-embedded {
  width: 100%;
  max-width: 620px;
  margin: 24px 0 0 !important;
  text-align: left !important;
}
.breathing-tree .ml-form-embedContainer,
.breathing-tree .ml-form-embedWrapper,
.breathing-tree .ml-form-embedBody,
.breathing-tree .ml-form-embedContent {
  width: 100% !important;
  max-width: 620px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}
.breathing-tree .ml-form-embedWrapper {
  background: transparent !important;
  padding: 0 !important;
}
.breathing-tree .ml-form-embedBody {
  padding: 0 !important;
}
.breathing-tree .ml-form-embedContent h4,
.breathing-tree .ml-form-embedContent p {
  text-align: left !important;
}

/* Cache-busted production stylesheet: 2026-07-28 */

/* --- July 29 landing-page update: jungle cast + mobile navigation --- */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(29,62,47,.08);
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--deep);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.jungle { padding-top: 42px; padding-bottom: 42px; }
.jungle-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 20px;
  padding: clamp(38px, 6vw, 76px) clamp(28px, 5vw, 68px) 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f8edda 0%, #eef3e7 58%, #e1ebdd 100%);
  box-shadow: var(--shadow);
}
.jungle-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: -220px;
  border-radius: 50%;
  background: rgba(247,200,111,.22);
}
.jungle-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 70px; }
.jungle-copy p { max-width: 540px; font-size: 1.08rem; color: rgba(37,55,47,.74); }
.jungle-copy .jungle-line { color: #9b5b36; font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.jungle-visual { position: relative; z-index: 1; align-self: end; margin-right: -4%; }
.jungle-visual img { width: 100%; max-width: 760px; display: block; margin-left: auto; filter: drop-shadow(0 22px 28px rgba(29,62,47,.13)); }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .site-header { position: sticky; }
  .nav {
    display: none;
    position: absolute;
    z-index: 100;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,253,248,.98);
    box-shadow: 0 18px 48px rgba(21,48,38,.16);
  }
  .nav.is-open { display: grid; }
  .nav a { padding: 12px 14px; border-radius: 12px; }
  .nav a:hover { background: rgba(37,55,47,.06); }
  .jungle-card { grid-template-columns: 1fr; text-align: center; padding-bottom: 0; }
  .jungle-copy { padding-bottom: 6px; }
  .jungle-copy p { margin-left: auto; margin-right: auto; }
  .jungle-visual { margin: 0 auto; }
  .jungle-visual img { margin: 0 auto; }
}

@media (max-width: 760px) {
  .header-buy { display: none; }
  .jungle { padding-top: 24px; padding-bottom: 24px; }
  .jungle-card { min-height: 0; padding: 38px 18px 0; border-radius: 28px; }
  .jungle-copy p { font-size: 1rem; }
  .jungle-visual { margin-top: 8px; }
}


/* July 29 copy refinement */
.wish-line {
  max-width: 620px;
  margin-top: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-style: italic;
  line-height: 1.45;
  color: #3d493f;
}

.author-card p {
  max-width: 760px;
}

/* --- July 29 superpowers carousel update --- */
.superpowers-heading {
  margin-bottom: 40px;
}

.superpowers-heading h2 {
  margin: 0;
  line-height: .94;
}

.superpowers-heading .meet-their {
  display: block;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -.045em;
  text-transform: none;
}

.superpowers-heading .superpowers-word {
  display: block;
  color: #b76a3c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -.035em;
  text-transform: none;
}

.lesson-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
}

.lesson-viewport {
  width: 100%;
  overflow: hidden;
  outline: none;
  padding: 54px 0 18px;
}

.lesson-viewport:focus-visible {
  border-radius: 26px;
  box-shadow: 0 0 0 4px rgba(111,140,115,.18);
}

.lesson-track {
  display: flex;
  gap: 18px;
  transition: transform .42s ease;
  will-change: transform;
}

.lesson-track .lesson-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}

.lesson-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--deep);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(34,65,50,.08);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.lesson-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34,65,50,.13);
}

.lesson-arrow:disabled {
  opacity: .32;
  cursor: default;
  box-shadow: none;
}

.lesson-superpower-label {
  display: block;
  margin: 2px 0 2px;
  color: #c74335;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lesson-track .lesson-practice {
  margin: 0 0 12px;
  color: var(--deep);
}

.lesson-dots {
  display: none;
}

@media (max-width: 760px) {
  .superpowers-heading {
    margin-bottom: 20px;
  }

  .superpowers-heading .meet-their {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .superpowers-heading .superpowers-word {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .lesson-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .lesson-viewport {
    padding-top: 50px;
  }

  .lesson-track {
    gap: 14px;
  }

  .lesson-track .lesson-card {
    flex-basis: 100%;
  }

  .lesson-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .lesson-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }

  .lesson-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(37,55,47,.22);
    cursor: pointer;
  }

  .lesson-dot.is-active {
    background: #c74335;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lesson-track {
    transition: none;
  }
}



/* --- Final landing-page story pass --- */
.signature-pause {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 20px 22px;
  text-align: center;
}
.signature-pause p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-style: italic;
  color: #b76a3c;
}
.signature-pause-strong {
  padding-top: 24px;
  padding-bottom: 26px;
}
.signature-pause-strong p {
  color: var(--deep);
  font-style: normal;
  font-weight: 700;
}
.author-mission {
  margin: 24px 0 !important;
  padding: 20px 22px;
  border-left: 4px solid #b76a3c;
  border-radius: 0 16px 16px 0;
  background: rgba(247,232,200,.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem) !important;
  line-height: 1.38;
  color: var(--deep) !important;
}
.compact-author p strong {
  color: var(--deep);
}
@media (max-width: 760px) {
  .signature-pause {
    width: min(100% - 28px, 1060px);
    padding: 24px 12px 12px;
  }
  .signature-pause-strong {
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .author-mission {
    padding: 17px 18px;
    text-align: left;
  }
}


/* --- July 30 final landing-page polish --- */
.jungle-card {
  grid-template-columns: .82fr 1.18fr;
  min-height: 545px;
  padding: clamp(42px, 5.5vw, 70px) clamp(30px, 5vw, 66px) 0;
}
.jungle-copy {
  padding-bottom: 42px;
}
.jungle-copy .section-kicker {
  margin-bottom: 18px;
}
.jungle-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(4rem, 6.4vw, 7rem);
  line-height: .91;
  letter-spacing: -.055em;
}
.jungle-copy .jungle-line {
  margin: 0 0 22px;
  max-width: none;
  color: #c85e32;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}
.jungle-visual {
  margin-right: -5%;
}
.jungle-visual img {
  max-width: 720px;
}

.reviews {
  padding-top: 56px;
  padding-bottom: 58px;
}
.reviews-heading {
  margin-bottom: 30px !important;
}
.reviews-heading h2 {
  margin-bottom: 0;
}
.review-carousel {
  max-width: 1120px;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
}
.review-viewport {
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.review-slide {
  position: relative;
  min-height: 250px;
  padding: 42px 28px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(34,65,50,.08);
}
.review-slide::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}
.review-slide p {
  max-width: 29ch;
  margin: 18px auto 22px;
  font-family: inherit;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.45;
  letter-spacing: 0;
}
.review-slide footer {
  position: relative;
  margin-top: auto;
  padding-top: 25px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0;
}
.review-slide footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 1px;
  transform: translateX(-50%);
  background: #d86b3d;
}
.review-slide footer::after {
  content: "♥";
  margin-left: 8px;
  color: #d86b3d;
  font-size: .8rem;
}
.review-arrow {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.compact-author {
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}
.author-photo {
  align-self: start;
  margin-top: 4px;
}
.author-bio {
  max-width: 720px !important;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem) !important;
  line-height: 1.7;
}

.author-bio p {
  margin: 0;
  font: inherit;
  line-height: inherit;
}

.author-bio p + p {
  margin-top: 1rem;
}

@media (max-width: 1100px) {
  .jungle-card { grid-template-columns: 1fr; }
  .jungle-copy h2 { font-size: clamp(3.8rem, 10vw, 6rem); }
  .jungle-visual { margin-right: auto; }
}

@media (max-width: 760px) {
  .jungle-copy h2 {
    font-size: clamp(3.5rem, 16vw, 5.1rem);
    line-height: .92;
  }
  .jungle-copy .jungle-line {
    font-size: 1.25rem;
  }
  .reviews { padding-top: 44px; padding-bottom: 46px; }
  .review-carousel { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 8px; }
  .review-viewport {
    min-height: 285px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .review-slide {
    min-height: 285px;
    padding: 44px 24px 28px;
  }
  .review-slide p {
    font-size: clamp(1.08rem, 5vw, 1.35rem);
  }
  .review-arrow { width: 42px; height: 42px; }
  .compact-author {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .author-photo {
    width: min(240px, 70vw);
    margin: 0 auto 6px;
  }
  .compact-author p { margin-left: 0; margin-right: 0; }
}


/* --- July 30 final refinements: author emphasis + mobile merch carousel --- */
.author-bio strong {
  color: var(--deep);
  font-weight: 700;
}

@media (max-width: 760px) {
  .merch-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 18px 20px 2px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .merch-grid::-webkit-scrollbar { display: none; }
  .merch-product {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }
}

/* --- Merchandise carousel --- */
.merch-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}
.merch-viewport {
  overflow: hidden;
  min-width: 0;
  padding: 8px 0 16px;
}
.merch-carousel .merch-grid {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.merch-carousel .merch-product {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.merch-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.94);
  color: var(--deep);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(34,65,50,.10);
  transition: transform .2s ease, opacity .2s ease;
}
.merch-arrow:hover:not(:disabled) { transform: translateY(-2px); }
.merch-arrow:disabled { opacity: .28; cursor: default; }
.merch-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.merch-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23,59,49,.22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.merch-dot.is-active { width: 24px; background: var(--deep); }

@media (max-width: 900px) {
  .merch-carousel .merch-product { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 650px) {
  .merch-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }
  .merch-carousel .merch-product { flex-basis: 100%; }
  .merch-arrow { width: 38px; height: 38px; font-size: 1.05rem; }
  .merch-product { min-height: 0; }
}


/* Final Meet the Animals heading refinement */
.superpowers-heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.superpowers-heading h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  letter-spacing: -.04em;
  line-height: 1.02;
}

.superpowers-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(37,55,47,.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .superpowers-heading {
    margin-bottom: 24px;
  }

  .superpowers-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .superpowers-heading p {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.55;
  }
}

/* --- July 30 mobile carousel + author photo corrections --- */
.compact-author {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
}
.author-photo {
  width: 170px;
  height: 170px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  justify-self: end;
  border-radius: 50%;
}

/* The carousel track is moved by JavaScript; keep scrolling on the viewport only. */
.merch-carousel .merch-grid {
  overflow: visible !important;
  overflow-x: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
  scrollbar-width: auto;
}
.merch-carousel .merch-product {
  scroll-snap-align: none !important;
  height: auto;
}

@media (max-width: 760px) {
  .compact-author {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }
  .author-photo {
    width: 190px;
    height: 190px;
    margin: 0 auto 4px;
    justify-self: center;
    object-position: center 28%;
  }
}

@media (max-width: 650px) {
  .merch-viewport {
    overflow: hidden;
    padding: 8px 0 12px;
  }
  .merch-carousel .merch-grid {
    gap: 0;
  }
  .merch-carousel .merch-product {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
  }
}


/* --- July 31 content updates --- */
.signature-pause-strong p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .3em;
}
.signature-pause-strong .grow-together {
  color: #c85e32;
}
.author-role {
  margin: -8px 0 20px;
  color: rgba(37,55,47,.62);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.author-gift-line {
  margin-top: 22px !important;
  color: #c85e32 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1rem, 1.3vw, 1.14rem) !important;
  font-style: italic;
}
@media (max-width: 760px) {
  .signature-pause-strong p {
    display: block;
  }
  .signature-pause-strong p span {
    display: block;
  }
  .author-role {
    margin-top: -4px;
  }
}
