@font-face {
  font-family: "FredokaLocal";
  src: url("assets/fonts/fredoka-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NunitoLocal";
  src: url("assets/fonts/nunito-extra-bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --blue: #1576d1;
  --blue-deep: #1576d1;
  --blue-soft: #d9f3ff;
  --yellow: #f8c72d;
  --yellow-deep: #f8c72d;
  --red: #e43d30;
  --red-deep: #b82c24;
  --ink: #0d1421;
  --cream: #fffae8;
  --muted: #52606f;
  --green: #49a347;
  --white: #ffffff;
  --shadow: 0 18px 34px rgba(21, 118, 209, 0.18);
  --outline: 0 0 0 4px var(--white), 0 8px 0 rgba(16, 32, 51, 0.16);
  --font-body: "NunitoLocal", Nunito, Avenir, Helvetica, Arial, sans-serif;
  --font-display: "FredokaLocal", Fredoka, "Arial Black", Avenir, Helvetica, Arial, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--blue-soft);
  overflow-x: hidden;
}

body.animals-page {
  background: var(--blue);
}

body.activities-page {
  background: var(--cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--blue-deep);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.5vw, 20px);
  font-size: 0.98rem;
  font-weight: 900;
}

.site-nav a {
  padding: 10px 2px;
  border-bottom: 4px solid transparent;
  white-space: nowrap;
}

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

.site-nav .nav-cta {
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--red-deep);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 4px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: clamp(620px, 88svh, 690px);
  margin-top: -84px;
  padding: 118px max(18px, calc((100vw - 1180px) / 2)) 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--blue);
  border-bottom: 6px solid var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
  min-width: 0;
}

.hero h1 {
  font-family: var(--font-display);
  max-width: 720px;
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.8rem, 6vw, 5.05rem);
  font-weight: 1000;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  paint-order: stroke fill;
  text-shadow: none;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 6px var(--white);
  paint-order: stroke fill;
  text-shadow: 0 8px 0 rgba(16, 32, 51, 0.16);
}

.hero h1 span:nth-child(2) {
  color: var(--blue-deep);
  -webkit-text-stroke-color: var(--white);
}

.hero-copy p {
  max-width: min(500px, 100%);
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 2px 0 rgba(16, 32, 51, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.button {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  font-weight: 1000;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.play-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 7px 0 var(--red-deep);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 7px 0 var(--yellow-deep);
}

.hero-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.featured-video {
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 16 / 9;
  background: var(--white);
  border: 6px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--outline);
  transform: translateY(-44px) rotate(0.8deg);
  overflow: hidden;
}

.featured-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(70px, 8vw, 102px);
  height: clamp(70px, 8vw, 102px);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 5px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.22);
  transform: translate(-50%, -50%);
}

.video-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 4px solid var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 1000;
  box-shadow: 0 5px 0 rgba(16, 32, 51, 0.2);
}

.hero-real-animal {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  filter:
    drop-shadow(0 0 0 var(--white))
    drop-shadow(0 12px 0 rgba(16, 32, 51, 0.16));
}

.hero-peaches {
  left: clamp(8px, 3vw, 52px);
  bottom: clamp(-96px, -5vw, -52px);
  width: clamp(270px, 30vw, 435px);
  transform: rotate(-3deg);
}

.section-heading {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.parents-section h2,
.final-cta h2 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 4px var(--white);
  paint-order: stroke fill;
  text-shadow: 0 6px 0 rgba(16, 32, 51, 0.12);
}

.section-heading p,
.parents-section p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.watch-section {
  scroll-margin-top: 110px;
  padding: 56px 0 70px;
  background: var(--cream);
}

.animal-preview-section {
  scroll-margin-top: 110px;
  padding: 68px 0 80px;
  background: var(--white);
}

.home-animal-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-animal-card {
  min-height: 348px;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-animal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(16, 32, 51, 0.13);
}

.home-animal-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: 50% 44%;
  border: 3px solid var(--white);
  border-radius: 8px;
}

.home-animal-card strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 1000;
  line-height: 1;
}

.home-animal-card span {
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 1000;
}

.home-animal-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.animal-preview-link {
  margin: 28px max(18px, calc((100vw - 1180px) / 2)) 0;
}

.activities-hero {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(34px, 6vw, 70px) auto 0;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 340px);
  gap: clamp(20px, 6vw, 70px);
  align-items: center;
  color: var(--white);
  background: var(--blue);
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(16, 32, 51, 0.16);
}

.activities-hero h1 {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 1000;
  line-height: 0.9;
  text-transform: uppercase;
  -webkit-text-stroke: 4px var(--white);
  paint-order: stroke fill;
  text-shadow: 0 8px 0 rgba(16, 32, 51, 0.2);
}

.activities-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.4;
}

.activities-hero img {
  width: min(100%, 330px);
  justify-self: center;
  filter: drop-shadow(0 14px 0 rgba(16, 32, 51, 0.18));
}

.counting-game-section {
  scroll-margin-top: 110px;
  padding: 68px 0 82px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.1)),
    var(--yellow);
  border-block: 6px solid var(--ink);
}

.activities-counting-section {
  margin-top: 54px;
}

.egg-game {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
  background: var(--white);
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(16, 32, 51, 0.14);
}

.egg-game-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.egg-game-copy h3 {
  font-family: var(--font-display);
  margin: 18px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 1000;
  line-height: 0.96;
  text-transform: uppercase;
}

.egg-game-copy p {
  min-height: 56px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 900;
  line-height: 1.35;
}

.egg-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.egg-game-actions .button {
  min-height: 48px;
  cursor: pointer;
}

.egg-game-actions .button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.egg-game-board {
  min-height: 430px;
  padding: clamp(16px, 3vw, 26px);
  display: grid;
  grid-template-rows: minmax(150px, auto) minmax(190px, 1fr);
  gap: 22px;
  background:
    linear-gradient(180deg, var(--blue-soft) 0 52%, #8ed16a 52% 100%);
  border: 4px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.egg-yard {
  min-height: 150px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
}

.egg-button {
  position: relative;
  width: clamp(58px, 8vw, 82px);
  height: clamp(78px, 10vw, 110px);
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: grab;
  touch-action: none;
}

.egg-button span,
.carton-egg {
  display: block;
  width: 76%;
  height: 86%;
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    #fff9df;
  border: 4px solid var(--ink);
  border-radius: 52% 52% 46% 46% / 62% 62% 42% 42%;
  box-shadow: 0 7px 0 rgba(16, 32, 51, 0.12);
}

.egg-button:hover span,
.egg-button:focus-visible span {
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    var(--cream);
}

.egg-button:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
  border-radius: 999px;
}

.egg-button.is-dragging {
  z-index: 5;
  cursor: grabbing;
}

.egg-button.is-collected {
  opacity: 0.22;
  cursor: default;
}

.carton-zone {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
}

.carton-eggs {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 4;
  width: min(306px, 78%);
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(5, minmax(32px, 44px));
  align-items: end;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: none;
}

.carton-egg {
  width: 42px;
  height: 56px;
  border-width: 3px;
  box-shadow: 0 4px 0 rgba(16, 32, 51, 0.12);
}

.carton-shape {
  position: relative;
  width: min(350px, 88%);
  height: 154px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.carton-shape::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 88%;
  height: 72px;
  background:
    linear-gradient(180deg, #ffe3a0, #f7c955);
  border: 6px solid var(--ink);
  border-bottom-width: 4px;
  border-radius: 18px 18px 10px 10px;
  box-shadow: inset 0 -10px 0 rgba(16, 32, 51, 0.08);
  transform: translateX(-50%);
}

.carton-shape span {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 92px;
  background:
    radial-gradient(circle at 12% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 31% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 50% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 69% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 88% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    linear-gradient(180deg, #f7d98e, #d8a75c);
  border: 6px solid var(--ink);
  border-radius: 18px 18px 28px 28px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.16);
}

.carton-zone strong {
  position: relative;
  z-index: 3;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 1000;
}

.carton-zone.is-ready .carton-shape span {
  background:
    radial-gradient(circle at 12% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 31% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 50% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 69% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    radial-gradient(circle at 88% 48%, rgba(16, 32, 51, 0.18) 0 18px, transparent 19px),
    linear-gradient(180deg, #ffe4a7, #e4b667);
}

.egg-game.is-complete .carton-zone strong {
  color: var(--white);
  background: var(--green);
}

.coloring-section {
  padding: 76px 0 88px;
  background: var(--cream);
}

.coloring-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.coloring-card {
  min-width: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
}

.coloring-card img {
  width: 100%;
  aspect-ratio: 8.5 / 11;
  object-fit: contain;
  background: var(--white);
}

.coloring-card h3 {
  min-height: 2.5em;
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 1000;
  line-height: 1.05;
}

.coloring-card .button {
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
}

.episode-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.episode-card {
  position: relative;
  min-height: 382px;
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(16, 32, 51, 0.13);
}

.episode-card > img,
.episode-art,
.episode-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 4px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  overflow: hidden;
}

.episode-art {
  display: grid;
  place-items: end center;
}

.episode-photo {
  display: grid;
  place-items: center;
}

.episode-photo img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.episode-card .episode-photo {
  align-items: center;
  justify-items: center;
  place-items: center;
}

.episode-card .episode-photo img {
  align-self: center;
  justify-self: center;
}

.episode-art img {
  max-width: 76%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 8px 0 rgba(16, 32, 51, 0.12));
}

.episode-art.yellow {
  background: var(--yellow);
}

.episode-art.blue {
  background: var(--blue);
}

.episode-chip {
  align-self: flex-start;
  margin-top: 14px;
  padding: 7px 10px;
  color: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.episode-chip.red {
  background: var(--red);
}

.episode-chip.yellow {
  color: var(--ink);
  background: var(--yellow);
}

.episode-chip.blue {
  background: var(--blue-deep);
}

.episode-card h3 {
  font-family: var(--font-display);
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 1000;
  line-height: 0.98;
}

.episode-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.card-action {
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--yellow-deep);
  font-size: 0.88rem;
  font-weight: 1000;
  line-height: 1;
}

.friends-section {
  scroll-margin-top: 110px;
  padding: 60px 0 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.28)),
    var(--yellow);
  border-block: 6px solid var(--ink);
}

.friend-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.friend-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.friend-button {
  min-height: 188px;
  padding: 10px;
  display: grid;
  place-items: center;
  gap: 6px;
  color: var(--ink);
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 7px 0 rgba(16, 32, 51, 0.12);
  font: inherit;
  font-size: 1rem;
  font-weight: 1000;
  cursor: pointer;
}

.friend-button img {
  width: min(100%, 132px);
  height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 6px 0 rgba(16, 32, 51, 0.12));
}

.friend-button[data-friend="peaches"] img {
  width: min(100%, 172px);
  height: 136px;
}

.friend-button.real-friend img {
  width: min(100%, 146px);
  object-fit: cover;
  object-position: 50% 48%;
  border: 3px solid var(--ink);
  border-radius: 8px;
  filter: none;
}

.friend-button[data-friend="ryan"] img {
  object-position: 42% 44%;
}

.friend-button[data-friend="cheese"] img {
  object-position: 42% 42%;
}

.friend-button[data-friend="topper"] img {
  object-position: 50% 36%;
}

.friend-button.is-active {
  background: var(--blue);
  color: var(--white);
}

.friend-note {
  min-height: 388px;
  padding: clamp(18px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: var(--white);
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.14);
}

.friend-note img {
  width: 138%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 10px 0 rgba(16, 32, 51, 0.14));
  transform: translateX(-16%);
}

.friend-note img.is-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: none;
  object-fit: cover;
  object-position: 50% 42%;
  border: 4px solid var(--ink);
  border-radius: 8px;
  filter: none;
  transform: none;
}

.friend-note span {
  display: inline-flex;
  padding: 8px 11px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.friend-note h3 {
  margin: 16px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
}

.friend-note p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
}

.inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--yellow-deep);
  font-size: 0.9rem;
  font-weight: 1000;
  line-height: 1;
}

.parents-section {
  scroll-margin-top: 110px;
  width: 100%;
  margin: 0;
  padding: 78px max(18px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 30px;
  align-items: start;
  color: var(--white);
  background: var(--blue-deep);
}

.parents-section p {
  margin-top: 18px;
  color: var(--white);
}

.parents-section h2 {
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.parents-link {
  margin-top: 24px;
}

.parent-side {
  display: grid;
  gap: 14px;
}

.real-photo-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 150px 150px;
  gap: 12px;
}

.real-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 7px 0 rgba(16, 32, 51, 0.1);
}

.real-photo-stack img:first-child {
  grid-row: span 2;
}

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

.promise-list div {
  padding: 18px;
  display: grid;
  gap: 6px;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 7px 0 rgba(16, 32, 51, 0.1);
}

.promise-list strong {
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 1000;
}

.promise-list span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.38;
}

.final-cta {
  padding: 60px 18px 66px;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
  background: var(--blue);
  border-top: 6px solid var(--ink);
}

.final-cta img {
  width: 150px;
  filter: drop-shadow(0 8px 0 rgba(16, 32, 51, 0.16));
}

.final-cta h2 {
  max-width: 820px;
  color: var(--yellow);
}

.animal-hero {
  width: 100%;
  min-height: 520px;
  margin: -84px 0 0;
  padding: 150px max(18px, calc((100vw - 1180px) / 2)) 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: var(--blue);
}

.animal-hero h1 {
  font-family: var(--font-display);
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.75rem, 5.4vw, 4.7rem);
  font-weight: 1000;
  line-height: 1.03;
}

.animal-hero p {
  max-width: 540px;
  margin: 20px 0 24px;
  color: var(--white);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 2px 0 rgba(16, 32, 51, 0.2);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.animal-hero-photo {
  position: relative;
  min-height: 360px;
}

.animal-hero-main {
  width: min(100%, 430px);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 0 rgba(16, 32, 51, 0.15));
  transform: rotate(-3deg);
}

.animal-hero-peaches {
  aspect-ratio: auto;
}

.animal-hero-small {
  position: absolute;
  width: clamp(142px, 17vw, 232px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--outline);
}

.animal-hero-peaches-card {
  left: -22px;
  bottom: -18px;
  object-position: 48% 52%;
  transform: rotate(-4deg);
}

.animal-hero-arlo-card {
  right: 0;
  top: -36px;
  object-position: 48% 44%;
  transform: rotate(3deg);
}

.animal-directory {
  padding: 64px 0 76px;
  background: var(--cream);
  border-block: 0;
}

.animal-directory-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.animal-page-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.animal-page-card {
  min-height: 580px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.12);
}

.animal-page-card:hover {
  transform: translateY(-2px);
}

.animal-page-card:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.animal-page-card .animal-page-media {
  min-height: 248px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.animal-page-card .animal-page-media img {
  height: 214px;
  max-width: 92%;
}

.animal-page-card .animal-page-media .home-friend-real {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
}

.animal-page-type {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.animal-page-card strong {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 1000;
  line-height: 0.95;
}

.animal-page-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.35;
}

.animal-page-facts {
  margin: 16px 0 18px;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
}

.animal-page-facts li + li {
  margin-top: 8px;
}

.animal-page-hint {
  align-self: flex-start;
  margin-top: auto;
}

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

.animal-card {
  min-height: 274px;
  padding: 14px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  color: var(--ink);
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 7px 0 rgba(16, 32, 51, 0.12);
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.animal-card img {
  width: 100%;
  height: 138px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 0 rgba(16, 32, 51, 0.1));
}

.animal-card.real-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  object-position: 46% 45%;
  border: 3px solid var(--ink);
  border-radius: 8px;
  filter: none;
}

.animal-card[data-animal="tina-turner"] img {
  object-position: 48% 28%;
}

.animal-card span {
  justify-self: start;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 1000;
  line-height: 1;
}

.animal-card small {
  justify-self: start;
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 900;
}

.animal-card.is-selected {
  color: var(--white);
  background: var(--blue);
}

.animal-card.is-selected small {
  color: var(--white);
}

.animal-detail {
  position: static;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.animal-detail-main,
.fact-panel,
.real-animal-photo {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.12);
}

.animal-detail-main {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(140px, 0.64fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  grid-row: span 2;
}

.animal-detail-image {
  min-height: 240px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 8px;
}

.animal-detail-image img {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 8px 0 rgba(16, 32, 51, 0.14));
}

.animal-detail-main span {
  display: inline-flex;
  padding: 8px 11px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.animal-detail-main h3 {
  margin: 14px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  font-weight: 1000;
  line-height: 0.88;
  text-transform: uppercase;
}

.animal-detail-main p,
.real-animal-photo p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.42;
}

.fact-panel {
  padding: 20px;
}

.fact-panel h4 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.fact-panel ul {
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.5;
}

.fact-panel li + li {
  margin-top: 8px;
}

.real-animal-photo {
  padding: 12px;
}

.real-animal-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 8px;
}

.parents-page {
  background: var(--white);
}

.watch-page {
  background: var(--blue);
}

.parent-page-hero {
  min-height: 560px;
  margin-top: -84px;
  padding: 150px max(18px, calc((100vw - 1180px) / 2)) 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 54px;
  align-items: center;
  color: var(--white);
  background: var(--blue-deep);
}

.parent-page-hero h1 {
  font-family: var(--font-display);
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5rem);
  font-weight: 1000;
  line-height: 1.05;
}

.parent-page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.45;
}

.parent-hero-photos {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 150px 150px;
  gap: 12px;
}

.parent-hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 8px;
}

.parent-hero-photos img:first-child {
  grid-row: span 2;
}

.watch-page-hero {
  margin-top: -84px;
  padding: 150px max(18px, calc((100vw - 1180px) / 2)) 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--blue);
  border-bottom: 6px solid var(--ink);
}

.watch-page-hero h1 {
  font-family: var(--font-display);
  max-width: 690px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 1000;
  line-height: 0.92;
  letter-spacing: 0;
}

.watch-page-hero p {
  max-width: 560px;
  margin: 22px 0 24px;
  color: var(--white);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.4;
}

.watch-featured-video {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--outline);
}

.watch-featured-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playlist-section {
  padding: 72px 0 86px;
  background: var(--cream);
}

.latest-video-section {
  padding: 72px 0 78px;
  background: var(--white);
}

.video-card-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  min-height: 354px;
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(16, 32, 51, 0.13);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 8px;
}

.video-card h3 {
  font-family: var(--font-display);
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 1000;
  line-height: 1;
}

.video-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.playlist-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.playlist-card {
  min-height: 374px;
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.playlist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(16, 32, 51, 0.13);
}

.playlist-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-soft);
  border: 4px solid var(--ink);
  border-radius: 8px;
}

.playlist-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playlist-art.animals img {
  object-position: 52% 42%;
}

.playlist-art.calm img {
  object-position: 50% 28%;
}

.playlist-art.parents img {
  object-position: 50% 32%;
}

.playlist-card h3 {
  font-family: var(--font-display);
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 1000;
  line-height: 1;
}

.playlist-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.watch-final-band {
  padding: 52px max(18px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--white);
  background: var(--blue-deep);
  border-top: 6px solid var(--ink);
}

.watch-final-band h2 {
  font-family: var(--font-display);
  max-width: 690px;
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  font-weight: 1000;
  line-height: 0.92;
  letter-spacing: 0;
}

.watch-final-band p {
  max-width: 560px;
  margin: 14px 0 0;
  font-weight: 900;
  line-height: 1.4;
}

.watch-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.parent-promise,
.seo-blocks {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 0;
}

.parent-promise h2,
.seo-blocks h2 {
  font-family: var(--font-display);
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 1000;
  line-height: 1;
}

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

.promise-card-grid article,
.seo-row {
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
}

.promise-card-grid article {
  min-height: 120px;
  padding: 24px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.promise-card-grid article span {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 999px;
}

.promise-card-grid article:nth-child(2n) span {
  background: var(--red);
}

.promise-card-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 1000;
  line-height: 1.2;
}

.seo-blocks {
  padding-bottom: 92px;
}

.seo-row {
  min-height: 112px;
  margin-top: 22px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  background: var(--white);
}

.seo-row h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 1000;
}

.seo-row p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.real-animal-photo p {
  margin: 10px 4px 2px;
  font-size: 0.92rem;
}

.site-footer {
  min-height: 86px;
  padding: 24px max(18px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.site-footer a {
  color: var(--yellow);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 28px));
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 4px solid var(--ink);
    border-radius: 8px;
    box-shadow: 0 8px 0 rgba(16, 32, 51, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .animal-hero,
  .activities-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero-stage {
    min-height: 420px;
    align-items: start;
  }

  .episode-grid,
  .home-animal-grid,
  .egg-game,
  .animal-directory-layout,
  .friend-layout,
  .parents-section {
    grid-template-columns: 1fr;
  }

  .animal-detail {
    position: static;
  }

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

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

  .parent-page-hero {
    grid-template-columns: 1fr;
    margin-top: -84px;
  }

  .watch-page-hero {
    grid-template-columns: 1fr;
  }

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

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

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

  .watch-final-band {
    display: grid;
  }

  .watch-final-actions {
    justify-content: flex-start;
  }

  .promise-card-grid,
  .seo-row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .brand span {
    max-width: 138px;
  }

  .menu-toggle {
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .hero {
    padding-inline: 14px;
    padding-bottom: 20px;
  }

  .hero h1,
  .animal-hero h1,
  .activities-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3.1rem);
  }

  .hero h1 span,
  .animal-hero h1 span {
    -webkit-text-stroke-width: 3px;
  }

  .activities-hero h1 {
    -webkit-text-stroke-width: 3px;
  }

  .animal-hero {
    margin-top: 0;
    padding-inline: 14px;
    padding-bottom: 38px;
  }

  .activities-hero {
    width: calc(100% - 20px);
    margin-top: 18px;
    padding: 96px 18px 28px;
  }

  .activities-hero img {
    width: min(100%, 260px);
  }

  .animal-hero p {
    max-width: 330px;
    font-size: 1rem;
  }

  .animal-hero-photo {
    min-height: 310px;
  }

  .animal-hero-main {
    width: min(100%, 300px);
  }

  .animal-hero-small {
    width: 118px;
  }

  .animal-hero-peaches-card {
    left: 8px;
    bottom: 4px;
  }

  .animal-hero-arlo-card {
    right: 4px;
    top: 154px;
  }

  .animal-page-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .animal-page-card {
    min-height: auto;
    padding: 14px;
  }

  .animal-page-card .animal-page-media {
    min-height: 216px;
  }

  .animal-page-card .animal-page-media img {
    height: 184px;
  }

  .animal-page-card .animal-page-media .home-friend-real {
    height: 100%;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 1rem;
  }

  .counting-game-section {
    padding: 52px 0 60px;
  }

  .egg-game {
    width: calc(100% - 28px);
    padding: 14px;
  }

  .egg-game-copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .egg-game-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .egg-game-board {
    min-height: 390px;
    padding: 14px;
    grid-template-rows: minmax(150px, auto) minmax(176px, 1fr);
  }

  .egg-button {
    width: 58px;
    height: 78px;
  }

  .carton-shape {
    width: min(290px, 94%);
  }

  .coloring-section {
    padding: 54px 0 66px;
  }

  .coloring-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 276px;
  }

  .featured-video {
    width: min(100%, 300px);
    justify-self: start;
    transform: translateY(-18px) rotate(0.8deg);
  }

  .hero-peaches {
    left: 88px;
    top: 112px;
    bottom: auto;
    width: 184px;
  }

  .video-badge {
    top: 8px;
    right: 8px;
    font-size: 0.72rem;
  }

  .episode-card {
    min-height: 0;
  }

  .friend-picker {
    grid-template-columns: 1fr 1fr;
  }

  .friend-button {
    min-height: 152px;
  }

  .friend-button img {
    height: 94px;
  }

  .friend-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .animal-card {
    min-height: 216px;
  }

  .animal-card img {
    height: 104px;
  }

  .animal-card.real-card img {
    width: 100%;
    height: 104px;
  }

  .animal-detail-main {
    grid-template-columns: 1fr;
    grid-row: auto;
  }

  .animal-detail-image {
    min-height: 190px;
  }

  .animal-detail-image img {
    max-height: 200px;
  }

  .friend-note img {
    max-height: 240px;
  }

  .real-photo-stack {
    grid-template-rows: 118px 118px;
  }

  .home-animal-grid {
    grid-template-columns: 1fr;
  }

  .home-animal-card {
    min-height: 0;
  }

  .parent-page-hero {
    margin-top: 0;
    padding: 118px 14px 48px;
  }

  .parent-page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .watch-page-hero {
    margin-top: 0;
    padding: 118px 14px 48px;
  }

  .watch-page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.55rem);
  }

  .playlist-grid {
    grid-template-columns: 1fr;
  }

  .video-card-grid {
    grid-template-columns: 1fr;
  }

  .playlist-card {
    min-height: 0;
  }

  .parent-hero-photos {
    grid-template-rows: 118px 118px;
  }

  .parent-promise,
  .seo-blocks {
    width: calc(100% - 28px);
    padding-top: 54px;
  }

  .seo-row {
    gap: 12px;
    padding: 20px;
  }

  .section-heading h2,
  .parents-section h2,
  .final-cta h2 {
    -webkit-text-stroke-width: 3px;
  }

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

/* Combined Claude + Codex design pass */
:root {
  --cream-2: #f7edda;
  --cream-card: #fffdf4;
  --blue-muted: #1576d1;
  --blue-mist: #d9e5f1;
  --red-soft: #f8d6d1;
  --yellow-soft: #fde8b9;
  --ink-warm: #41372e;
  --shadow-soft: 0 16px 36px rgba(65, 55, 46, 0.12);
}

body {
  background:
    linear-gradient(180deg, rgba(217, 243, 255, 0.8), rgba(255, 250, 232, 0.92) 58%),
    var(--blue-soft);
}

.site-header {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.14), var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.combined-hero {
  position: relative;
  isolation: isolate;
  align-items: center;
  margin-top: -92px;
  padding-top: 170px;
  background:
    linear-gradient(180deg, rgba(64, 166, 229, 0.98) 0%, rgba(38, 150, 222, 0.98) 72%, rgba(255, 250, 232, 0.98) 72.2%),
    var(--blue);
  overflow: hidden;
}

.combined-hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -28px;
  z-index: -1;
  height: 118px;
  background: var(--cream);
  border-top: 5px solid var(--ink);
  border-radius: 50% 50% 0 0 / 56% 56% 0 0;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.sun-orb,
.cloud,
.moon-orb,
.star {
  position: absolute;
  display: block;
}

.moon-orb,
.star {
  display: none;
}

.sun-orb {
  top: 128px;
  right: 9vw;
  width: clamp(92px, 12vw, 164px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 34%, #fff6b8 0 16%, var(--yellow) 17% 68%, #eda300 69%);
  border: 5px solid var(--white);
  opacity: 0.34;
}

.cloud {
  width: 156px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    34px -16px 0 8px rgba(255, 255, 255, 0.76),
    82px -6px 0 2px rgba(255, 255, 255, 0.76);
  opacity: 0.5;
}

.cloud-one {
  top: 170px;
  left: 10vw;
}

.cloud-two {
  top: 318px;
  right: 28vw;
  transform: scale(0.72);
}

.cloud-three {
  top: 520px;
  left: 47vw;
  transform: scale(0.58);
  opacity: 0.34;
}

.combined-hero .hero-copy {
  max-width: 620px;
}

.combined-hero .hero-copy h1 {
  font-size: clamp(2.65rem, 5.55vw, 4.7rem);
}

.combined-hero .hero-copy p {
  max-width: 540px;
  width: fit-content;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(255, 253, 244, 0.94);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 6px 0 rgba(16, 32, 51, 0.12);
  text-shadow: none;
}

.combined-hero .hero-stage {
  align-self: center;
  transform: rotate(1.5deg);
}

.combined-hero .featured-video {
  border-radius: 22px;
  box-shadow: 0 0 0 5px var(--white), 0 14px 0 rgba(16, 32, 51, 0.13), 0 28px 44px rgba(13, 20, 33, 0.18);
  overflow: visible;
}

.combined-hero .featured-video > img {
  border-radius: 16px;
}

.combined-hero .hero-peaches {
  right: 18%;
  bottom: -74px;
  width: min(45vw, 430px);
  filter: drop-shadow(0 18px 0 rgba(16, 32, 51, 0.13));
}

.home-friends-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 232, 0.96), rgba(247, 237, 218, 0.96)),
    var(--cream);
}

.home-friend-grid {
  align-items: stretch;
}

.home-friend-card {
  appearance: none;
  width: 100%;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.home-friend-card:focus-visible,
.learning-tile:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.home-friend-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 50% 92%, rgba(255, 201, 31, 0.28), transparent 42%),
    var(--blue-mist);
  border: 4px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
}

.home-friend-media img {
  width: auto;
  height: 150px;
  max-width: 88%;
  object-fit: contain;
}

.home-friend-media .home-friend-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 220ms ease, transform 220ms ease;
}

.home-friend-card.is-showing-real .home-friend-real {
  opacity: 1;
  transform: scale(1);
}

.home-friend-card.is-showing-real .home-friend-toon {
  opacity: 0;
}

.home-friend-hint {
  display: inline-flex;
  margin-top: auto;
  padding: 7px 10px;
  color: var(--blue-deep);
  background: var(--yellow-soft);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.calm-learning-section {
  scroll-margin-top: 124px;
  padding: clamp(58px, 8vw, 92px) 0 clamp(38px, 6vw, 70px);
  background: var(--cream-2);
}

.watch-section,
.home-friends-section,
.breathe-section,
.parents-section,
.final-cta,
.animal-hero,
.activities-hero,
.parent-page-hero,
.watch-page-hero,
.animal-directory,
.activity-section,
.parent-promise,
.seo-blocks,
.video-section {
  scroll-margin-top: 124px;
}

.calm-learning-layout {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.learning-card,
.breathe-card {
  background: var(--cream-card);
  border: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 8px 0 rgba(16, 32, 51, 0.13);
}

.learning-card {
  padding: clamp(20px, 3vw, 30px);
}

.learning-card h3,
.breathe-card h3 {
  margin: 0 0 14px;
  font: 900 clamp(1.6rem, 3vw, 2.35rem)/0.95 var(--font-display);
}

.learning-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.learning-tile {
  min-height: 152px;
  padding: 0;
  display: block;
  background: transparent;
  border: 0;
  font: 900 0.95rem/1.1 var(--font-body);
  cursor: pointer;
  perspective: 900px;
}

.learning-tile-inner {
  position: relative;
  display: block;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.learning-tile.is-flipped .learning-tile-inner {
  transform: rotateY(180deg);
}

.learning-tile-face {
  position: absolute;
  inset: 0;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 5px 0 rgba(16, 32, 51, 0.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.learning-tile-back {
  background:
    radial-gradient(circle at 50% 85%, rgba(248, 199, 45, 0.2), transparent 48%),
    var(--blue-soft);
  transform: rotateY(180deg);
}

.learning-tile-front img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.learning-tile-picture {
  width: auto;
  max-width: 128px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 5px 0 rgba(16, 32, 51, 0.1));
}

.learning-tile-picture--barn {
  max-width: 158px;
  height: 108px;
}

.tile-animal-friends {
  width: min(194px, 96%);
  min-height: 94px;
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.86fr;
  align-items: end;
  justify-items: center;
}

.tile-animal-friends img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 5px 0 rgba(16, 32, 51, 0.12));
}

.tile-animal-friends img:nth-child(1) {
  max-height: 98px;
  transform: translate(9px, 4px) scale(1);
}

.tile-animal-friends img:nth-child(2) {
  max-height: 102px;
  transform: translateY(4px);
  z-index: 2;
}

.tile-animal-friends img:nth-child(3) {
  max-height: 98px;
  transform: translate(-9px, 4px) scale(1.04);
}

.learning-tile-back strong {
  color: var(--ink);
  font: 900 1.08rem/1.05 var(--font-display);
}

.tile-count-objects {
  min-height: 88px;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

.tile-count-objects img {
  width: auto;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 5px 0 rgba(16, 32, 51, 0.1));
}

.tile-count-objects--goats img:nth-child(2),
.tile-count-objects--chicks img:nth-child(2) {
  transform: translateY(-4px) scale(0.94);
}

.tile-count-objects--chicks img {
  height: 64px;
}

.tile-count-objects--chicks img:nth-child(3) {
  transform: translateY(2px) scale(0.9);
}

.tile-egg {
  width: 56px;
  height: 74px;
  display: inline-block;
  border: 3px solid var(--ink);
  border-radius: 48% 48% 44% 44% / 58% 58% 42% 42%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.92) 0 12%, transparent 13%),
    linear-gradient(145deg, #fffef7 0%, #f6edd0 100%);
  box-shadow: 0 5px 0 rgba(16, 32, 51, 0.12);
}

.breathe-section {
  padding: clamp(36px, 6vw, 74px) 0 clamp(62px, 8vw, 110px);
  background:
    linear-gradient(180deg, var(--cream-2), var(--cream));
}

.breathe-card {
  width: min(980px, calc(100% - 28px));
  min-height: clamp(430px, 42vw, 560px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 25% 45%, rgba(217, 229, 241, 0.8), transparent 35%),
    var(--cream-card);
}

.breathe-visual {
  position: relative;
  min-height: clamp(260px, 28vw, 360px);
  display: grid;
  place-items: center;
}

.breathe-ring {
  position: absolute;
  width: clamp(176px, 19vw, 240px);
  aspect-ratio: 1;
  border: 8px solid var(--yellow);
  border-radius: 999px;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 9px var(--ink);
  opacity: 0.9;
}

.breathe-visual img {
  position: relative;
  z-index: 1;
  max-height: clamp(230px, 25vw, 320px);
  filter: drop-shadow(0 10px 0 rgba(16, 32, 51, 0.12));
}

.breathe-card h2 {
  max-width: 520px;
  margin: 10px 0 18px;
  font: 900 clamp(2.4rem, 5.6vw, 4.2rem)/0.92 var(--font-display);
}

.breathe-card p {
  max-width: 480px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.breathe-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(260px, 100%);
  margin-top: 14px;
  padding: 12px 20px 14px;
  border: 5px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 7px 0 rgba(16, 32, 51, 0.16);
  color: var(--white);
  font: 900 clamp(1.5rem, 3.2vw, 2.35rem)/1 var(--font-display);
  letter-spacing: 0;
  text-align: center;
}

.breathe-card .button {
  margin-top: 18px;
  min-width: min(240px, 100%);
  min-height: 68px;
}

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

@media (max-width: 1040px) {
  .site-nav {
    order: 4;
  }

  .menu-toggle {
    order: 3;
  }
}

@media (max-width: 920px) {
  .combined-hero {
    grid-template-columns: 1fr;
    padding-top: 142px;
  }

  .combined-hero .hero-stage {
    transform: rotate(0deg);
  }

  .combined-hero .hero-peaches {
    right: 6%;
    bottom: -66px;
    width: min(65vw, 360px);
  }

  .calm-learning-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: min(100% - 16px, 1180px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    font-size: 0.92rem;
    max-width: 126px;
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end;
  }

  .combined-hero {
    margin-top: -96px;
    padding-top: 138px;
  }

  .hero-art-row {
    width: min(420px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 18px;
  }

  .hero-logo-mark {
    width: clamp(128px, 36vw, 170px);
  }

  .combined-hero .hero-copy h1 {
    text-align: center;
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .sun-orb {
    top: 112px;
    right: -18px;
    opacity: 0.22;
  }

  .cloud {
    opacity: 0.32;
  }

  .combined-hero .hero-peaches {
    right: -2%;
    bottom: -46px;
    width: min(76vw, 310px);
  }

  .home-friend-media {
    min-height: 156px;
  }

  .home-friend-media img {
    height: 126px;
  }

  .learning-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .breathe-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .breathe-visual {
    min-height: 198px;
  }
}

/* Calm centered welcome hero */
.combined-hero {
  min-height: clamp(760px, 92svh, 900px);
  margin-top: -92px;
  padding: 148px max(18px, calc((100vw - 1180px) / 2)) 72px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  background: #fff6e6;
  overflow: hidden;
}

.combined-hero::before,
.combined-hero::after {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  z-index: -1;
  border: 0;
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.combined-hero::before {
  bottom: -11vw;
  height: 24vw;
  min-height: 178px;
  background: #eadfbd;
}

.combined-hero::after {
  bottom: -15vw;
  height: 25vw;
  min-height: 188px;
  background: #d9eab7;
  opacity: 0.74;
}

.combined-hero .hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  max-width: 900px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-art-row {
  width: min(900px, 100%);
  margin: 0 auto clamp(22px, 3.4vw, 34px);
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  column-gap: clamp(24px, 4.8vw, 64px);
}

.hero-logo-mark {
  width: clamp(148px, 14vw, 220px);
  margin: 0;
  filter: drop-shadow(0 10px 16px rgba(65, 55, 46, 0.08));
}

.combined-hero .hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--red);
  font-size: clamp(2.2rem, 4.2vw, 4.45rem);
  line-height: 0.92;
  text-align: left;
  text-transform: none;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.combined-hero .hero-copy h1 span {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.74);
}

.combined-hero .hero-copy h1 span:nth-child(2) {
  color: var(--blue-deep);
}

.combined-hero .hero-copy h1 span:nth-child(3) {
  display: block;
  color: var(--yellow-deep);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.82);
}

.combined-hero .hero-copy p {
  max-width: 540px;
  width: auto;
  margin: clamp(18px, 2.6vw, 24px) auto 0;
  padding: 0;
  color: #6b5f52;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 900;
  line-height: 1.55;
}

.combined-hero .hero-actions {
  justify-content: center;
  margin-top: clamp(26px, 4vw, 36px);
}

.combined-hero .hero-actions .button {
  min-height: 70px;
  min-width: 224px;
  padding: 18px 34px;
  border-width: 0;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(217, 93, 78, 0.18);
  font-size: clamp(1.28rem, 2vw, 1.55rem);
}

.hero-start-button {
  justify-content: center;
}

.hero-farmer-kids {
  width: clamp(172px, 17vw, 270px);
  margin-top: clamp(30px, 4.4vw, 46px);
  filter: drop-shadow(0 14px 18px rgba(65, 55, 46, 0.1));
}

.hero-farmer-kids-night {
  display: none;
  width: clamp(280px, 35vw, 470px);
  margin-top: clamp(24px, 4vw, 38px);
}

.combined-hero .sun-orb {
  top: 38px;
  right: 6.5vw;
  width: clamp(66px, 5.8vw, 98px);
  border: 10px solid rgba(252, 231, 188, 0.82);
  opacity: 0.95;
}

.combined-hero .cloud {
  width: 72px;
  height: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    20px -7px 0 5px rgba(255, 255, 255, 0.9),
    45px 0 0 0 rgba(255, 255, 255, 0.9);
  opacity: 0.74;
}

.combined-hero .cloud-one {
  top: 66px;
  left: -4px;
}

.combined-hero .cloud-two {
  top: 150px;
  right: 15vw;
  transform: scale(0.74);
}

.combined-hero .cloud-three {
  top: auto;
  bottom: 118px;
  left: 15vw;
  transform: scale(0.52);
  opacity: 0.3;
}

.night-home body {
  background:
    linear-gradient(180deg, #0b234f 0%, #123f7b 36%, #1576d1 100%),
    #0b234f;
}

.night-home main {
  background:
    radial-gradient(circle at 12% 32%, rgba(248, 199, 45, 0.12), transparent 19rem),
    radial-gradient(circle at 88% 64%, rgba(255, 255, 255, 0.12), transparent 21rem),
    linear-gradient(180deg, #102d65 0%, #135aa5 34%, #1576d1 100%);
}

.night-home .site-header {
  background: rgba(255, 253, 244, 0.97);
  box-shadow: 0 8px 0 rgba(6, 20, 48, 0.26), 0 16px 36px rgba(6, 20, 48, 0.16);
}

.night-home .combined-hero {
  background:
    radial-gradient(circle at 68% 18%, rgba(248, 199, 45, 0.2), transparent 12%),
    linear-gradient(180deg, #102d65 0%, #1d5d9f 54%, #fff7e8 86%);
}

.night-home .combined-hero::before {
  background: rgba(234, 223, 189, 0.88);
}

.night-home .combined-hero::after {
  background: #d9dfb9;
  opacity: 0.82;
}

.night-home .combined-hero .sun-orb {
  display: none;
}

.night-home .combined-hero .moon-orb {
  top: 42px;
  right: 8vw;
  display: block;
  width: clamp(70px, 6.4vw, 108px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: #fff4bd;
  border: 10px solid rgba(248, 199, 45, 0.2);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.12),
    0 0 54px rgba(255, 244, 189, 0.48);
}

.night-home .combined-hero .moon-orb::after {
  content: "";
  position: absolute;
  inset: -4px -14px 4px 14px;
  border-radius: inherit;
  background: #102d65;
}

.night-home .combined-hero .star {
  display: block;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #fff8d5;
  box-shadow: 0 0 14px rgba(255, 248, 213, 0.72);
  opacity: 0.86;
}

.night-home .combined-hero .star-one {
  top: 162px;
  left: 16vw;
}

.night-home .combined-hero .star-two {
  top: 244px;
  right: 22vw;
  width: 7px;
}

.night-home .combined-hero .star-three {
  top: 108px;
  left: 63vw;
  width: 6px;
  opacity: 0.68;
}

.night-home .combined-hero .cloud {
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    20px -7px 0 5px rgba(255, 255, 255, 0.56),
    45px 0 0 0 rgba(255, 255, 255, 0.56);
  opacity: 0.38;
}

.night-home .hero-logo-mark {
  filter: drop-shadow(0 12px 20px rgba(6, 20, 48, 0.22));
}

.night-home .combined-hero .hero-copy h1 span {
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.58);
}

.night-home .combined-hero .hero-copy p {
  max-width: 560px;
  color: #fff7e8;
  text-shadow: 0 2px 0 rgba(6, 20, 48, 0.3);
}

.night-home .combined-hero .hero-actions .button {
  background: #e43d30;
  box-shadow: 0 14px 28px rgba(6, 20, 48, 0.22);
}

.night-home .hero-farmer-kids {
  filter: drop-shadow(0 14px 18px rgba(6, 20, 48, 0.24));
}

.night-home .hero-farmer-kids-day {
  display: none;
}

.night-home .hero-farmer-kids-night {
  display: block;
}

.night-home .watch-section,
.night-home .home-friends-section,
.night-home .calm-learning-section,
.night-home .parents-section,
.night-home .final-cta {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 23, 52, 0.22), rgba(7, 23, 52, 0.02)),
    transparent;
}

.night-home .watch-section {
  padding-top: clamp(68px, 9vw, 112px);
}

.night-home .section-heading h2,
.night-home .parents-section h2,
.night-home .final-cta h2 {
  color: var(--yellow);
  -webkit-text-stroke-color: rgba(255, 253, 244, 0.96);
  text-shadow: 0 7px 0 rgba(6, 20, 48, 0.22);
}

.night-home .section-heading p,
.night-home .parents-section p,
.night-home .breathe-card p {
  color: #fff7e8;
}

.night-home .episode-card,
.night-home .home-animal-card,
.night-home .learning-card,
.night-home .breathe-card,
.night-home .promise-list div {
  background: rgba(255, 250, 232, 0.96);
  box-shadow: 0 8px 0 rgba(6, 20, 48, 0.28);
}

.night-home .home-friend-media,
.night-home .learning-tile {
  background:
    radial-gradient(circle at 50% 92%, rgba(248, 199, 45, 0.26), transparent 42%),
    #d8ebfb;
}

.night-home .final-cta {
  border-top: 0;
}

.night-home .site-footer {
  background: #071734;
  box-shadow: inset 0 6px 0 rgba(255, 255, 255, 0.08);
}

.parent-newsletter-preview {
  padding: clamp(64px, 8vw, 96px) max(18px, calc((100vw - 920px) / 2));
  color: var(--white);
  background: var(--blue-deep);
  text-align: center;
}

.parent-newsletter-preview .eyebrow {
  color: var(--ink);
  background: var(--yellow);
}

.parent-newsletter-preview h2 {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1;
}

.parent-newsletter-preview p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.privacy-hero {
  min-height: 520px;
  margin-top: -84px;
  padding: 150px max(18px, calc((100vw - 1080px) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  color: var(--ink);
  background: var(--cream);
}

.privacy-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.privacy-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.privacy-hero img {
  width: min(100%, 330px);
  justify-self: center;
  filter: drop-shadow(0 12px 0 rgba(16, 32, 51, 0.12));
}

.privacy-details {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 90px) 0;
}

.privacy-details article {
  padding: 30px 0;
  border-bottom: 3px solid rgba(16, 32, 51, 0.16);
}

.privacy-details article:first-child {
  padding-top: 0;
}

.privacy-details h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.privacy-details p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.65;
}

.privacy-details a {
  color: var(--blue);
  font-weight: 1000;
}

.privacy-updated {
  padding-top: 28px;
  color: var(--muted) !important;
  font-size: 0.94rem !important;
}

.external-exit-gate {
  width: min(92vw, 620px);
  max-width: 620px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.external-exit-gate::backdrop {
  background: rgba(7, 23, 52, 0.58);
}

.external-exit-panel {
  padding: clamp(26px, 5vw, 46px);
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 9px 0 rgba(7, 23, 52, 0.28);
  text-align: center;
}

.external-exit-panel h2 {
  margin: 16px 0 12px;
  color: var(--blue);
  font-family: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1;
}

.external-exit-panel p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.external-exit-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.external-exit-actions .button {
  min-height: 56px;
}

@media (max-width: 920px) {
  .privacy-hero {
    grid-template-columns: 1fr;
  }

  .privacy-hero img {
    width: min(58vw, 260px);
  }

  .combined-hero {
    padding-top: 132px;
    min-height: clamp(720px, 86svh, 840px);
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    min-height: 0;
    padding-bottom: 54px;
  }

  .external-exit-actions {
    display: grid;
  }

  .external-exit-actions .button {
    width: 100%;
  }

  .combined-hero {
    margin-top: -96px;
    min-height: 740px;
    padding: 126px 18px 48px;
  }

  .hero-logo-mark {
    width: 118px;
    margin-bottom: 28px;
  }

  .combined-hero .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .combined-hero .hero-copy h1 span {
    display: block;
  }

  .combined-hero .hero-copy p {
    max-width: 330px;
    font-size: 1rem;
  }

  .combined-hero .hero-actions .button {
    width: auto;
    min-width: min(78vw, 250px);
    min-height: 66px;
    padding-inline: 30px;
  }

  .hero-farmer-kids {
    width: min(62vw, 230px);
  }

  .combined-hero::after {
    bottom: -118px;
    min-height: 182px;
  }

  .combined-hero::before {
    bottom: -82px;
    min-height: 162px;
  }

  .combined-hero .sun-orb {
    top: 104px;
    right: 16px;
    opacity: 0.64;
  }

  .night-home .combined-hero .moon-orb {
    top: 104px;
    right: 16px;
  }

  .night-home .combined-hero .star-one {
    top: 178px;
    left: 16%;
  }

  .night-home .combined-hero .star-two {
    top: 260px;
    right: 18%;
  }
}

/* Calm real-animal enhancements */
.real-friend-spotlight {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--blue-mist);
  border-block: 5px solid var(--ink);
}

.real-friend-spotlight-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.real-friend-photo {
  min-width: 0;
  margin: 0;
}

.real-friend-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
  border: 6px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 12px 0 rgba(13, 20, 33, 0.16);
}

.real-friend-photo figcaption {
  margin: 18px 8px 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 900;
}

.real-friend-copy {
  min-width: 0;
}

.real-friend-copy h2 {
  max-width: 560px;
  margin: 16px 0 20px;
  color: var(--blue);
  font: 900 clamp(2.65rem, 6vw, 5rem)/0.9 var(--font-display);
}

.real-friend-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2.1vw, 1.4rem);
  font-weight: 900;
  line-height: 1.45;
}

.real-friend-observation {
  max-width: 560px;
  margin: 28px 0 30px;
  padding: 2px 0 2px 20px;
  display: grid;
  gap: 5px;
  border-left: 8px solid var(--yellow);
}

.real-friend-observation strong {
  color: var(--red);
  font: 900 1.12rem/1 var(--font-display);
}

.real-friend-observation span {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.4;
}

.home-friend-card.is-showing-real .home-friend-real,
.home-friend-card.is-showing-real .home-friend-toon {
  opacity: 0;
}

.home-friend-card.is-showing-real:not(.is-real-loaded) .home-friend-toon {
  opacity: 1;
}

.home-friend-card.is-showing-real.is-real-loaded .home-friend-real {
  opacity: 1;
  transform: scale(1);
}

.tile-real-animal-friends {
  width: min(212px, 96%);
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
}

.tile-real-animal-friends img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
}

.tile-real-animal-friends img:nth-child(1) {
  object-position: 50% 38%;
}

.tile-real-animal-friends img:nth-child(2) {
  object-position: 48% 48%;
}

.tile-real-animal-friends img:nth-child(3) {
  object-position: 50% 18%;
}

.breathe-topper-cartoon,
.breathe-topper-real {
  transition: opacity 320ms ease, transform 320ms ease;
}

.breathe-visual .breathe-topper-real {
  position: absolute;
  width: clamp(210px, 24vw, 300px);
  height: auto;
  aspect-ratio: 1;
  max-height: none;
  object-fit: cover;
  object-position: 50% 18%;
  opacity: 0;
  transform: scale(0.94);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--ink);
  filter: none;
}

.breathe-visual.is-real-reveal .breathe-topper-cartoon {
  opacity: 0;
  transform: scale(0.94);
}

.breathe-visual.is-real-reveal .breathe-topper-real {
  opacity: 1;
  transform: scale(1);
}

.night-home .real-friend-spotlight {
  color: var(--white);
  background: #0d2b58;
  border-color: rgba(255, 255, 255, 0.62);
}

.night-home .real-friend-copy h2 {
  color: var(--yellow);
}

.night-home .real-friend-copy > p,
.night-home .real-friend-observation span,
.night-home .real-friend-photo figcaption {
  color: #fff7e8;
}

.night-home .real-friend-observation strong {
  color: #ff746a;
}

@media (max-width: 820px) {
  .real-friend-spotlight-inner {
    grid-template-columns: 1fr;
  }

  .real-friend-copy {
    text-align: center;
  }

  .real-friend-copy h2,
  .real-friend-copy > p,
  .real-friend-observation {
    margin-inline: auto;
  }

  .real-friend-observation {
    padding: 18px 0 0;
    border-top: 8px solid var(--yellow);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .real-friend-spotlight {
    padding: 52px 0 60px;
  }

  .real-friend-spotlight-inner {
    width: min(100% - 24px, 1160px);
    gap: 30px;
  }

  .real-friend-photo img {
    border-width: 4px;
  }

  .real-friend-copy h2 {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
  }
}

/* Store */
.store-page {
  background: var(--cream);
}

.store-hero {
  min-height: 520px;
  margin-top: -84px;
  padding: 140px max(18px, calc((100vw - 1180px) / 2)) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--blue-soft);
  border-bottom: 6px solid var(--ink);
}

.store-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  line-height: 0.92;
}

.store-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  font-weight: 800;
  line-height: 1.5;
}

.store-hero > img {
  width: min(100%, 390px);
  max-height: 390px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 14px 0 rgba(13, 20, 33, 0.12));
}

.store-catalog {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0 100px;
}

.store-status {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
}

.store-toolbar {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.store-cart-button {
  min-width: 150px;
  min-height: 54px;
  padding: 8px 10px 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--yellow-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  cursor: pointer;
}

.store-cart-button strong {
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 999px;
  line-height: 1;
}

.store-cart-button:focus-visible {
  outline: 5px solid var(--blue);
  outline-offset: 3px;
}

.store-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-card {
  min-width: 0;
}

.store-product-card {
  width: 100%;
  height: 100%;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 9px 0 rgba(13, 20, 33, 0.14);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-product-card:hover,
.store-product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 0 rgba(13, 20, 33, 0.14);
}

.store-product-card:focus-visible {
  outline: 5px solid var(--yellow);
  outline-offset: 3px;
}

.store-product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 20px;
  display: grid;
  place-items: center;
  background: #f5f9fc;
  border-bottom: 4px solid var(--ink);
}

.store-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-product-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.store-category {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.store-product-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.08;
}

.store-product-price {
  margin-top: auto;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 1000;
}

.store-fallback {
  margin-top: 34px;
  padding: 30px;
  border-top: 5px solid var(--yellow);
  text-align: center;
}

.store-fallback p {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
}

.store-product-dialog {
  width: min(920px, calc(100% - 28px));
  max-width: 920px;
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: auto;
}

.store-product-dialog::backdrop,
.store-cart-dialog::backdrop {
  background: rgba(7, 23, 52, 0.62);
}

.store-product-panel {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 52px);
  align-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(7, 23, 52, 0.28);
}

.store-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 1000;
  line-height: 1;
  cursor: pointer;
}

.store-dialog-image-wrap {
  aspect-ratio: 1 / 1;
  padding: 22px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 8px;
}

.store-dialog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-dialog-copy h2 {
  margin: 16px 0 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.store-dialog-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.store-dialog-price {
  color: var(--red) !important;
  font-size: 1.35rem !important;
  font-weight: 1000 !important;
}

.store-option-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-option-fields:empty {
  display: none;
}

.store-option-fields label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 1000;
}

.store-option-fields select {
  width: 100%;
  min-height: 48px;
  padding: 8px 36px 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
}

.store-option-fields select:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 2px;
}

.store-selection-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--blue) !important;
}

.store-dialog-copy .button:disabled {
  color: var(--muted);
  background: #d9d9d9;
  box-shadow: 0 6px 0 #b8b8b8;
  cursor: not-allowed;
}

.store-dialog-copy .button {
  margin-top: 10px;
}

.store-cart-dialog {
  width: min(760px, calc(100% - 28px));
  max-width: 760px;
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: auto;
}

.store-cart-panel {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background: var(--cream);
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(7, 23, 52, 0.28);
}

.store-cart-panel h2 {
  margin: 14px 0 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  line-height: 0.95;
}

.store-cart-intro,
.store-cart-empty,
.store-checkout-note {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.store-cart-items {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.store-cart-item {
  padding: 14px 0 18px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 3px solid rgba(13, 20, 33, 0.18);
}

.store-cart-item > img {
  width: 92px;
  height: 92px;
  padding: 6px;
  object-fit: contain;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
}

.store-cart-item-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.08;
}

.store-cart-item-copy p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.store-cart-item-copy strong {
  color: var(--blue);
}

.store-cart-quantity {
  display: grid;
  grid-template-columns: 38px 34px 38px;
  gap: 6px;
  align-items: center;
  justify-items: center;
}

.store-cart-quantity button {
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 1000;
  line-height: 1;
  cursor: pointer;
}

.store-cart-quantity .store-cart-remove {
  width: auto;
  height: auto;
  grid-column: 1 / -1;
  padding: 5px 8px;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  text-decoration: underline;
}

.store-cart-quantity button:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 2px;
}

.store-cart-summary {
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 5px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.store-cart-summary strong {
  color: var(--red);
}

.store-checkout-button {
  width: 100%;
  margin-top: 22px;
  text-align: center;
}

.store-checkout-note {
  margin-bottom: 0;
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 920px) {
  .store-hero {
    grid-template-columns: 1fr;
  }

  .store-hero > img {
    width: min(62vw, 300px);
  }

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

@media (max-width: 640px) {
  .store-hero {
    min-height: 0;
    margin-top: -96px;
    padding: 132px 18px 48px;
    gap: 24px;
  }

  .store-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .store-catalog {
    width: min(100% - 20px, 1180px);
    padding: 58px 0 76px;
  }

  .store-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-cart-button {
    width: 100%;
  }

  .store-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-product-panel {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .store-dialog-image-wrap {
    width: min(100%, 360px);
    justify-self: center;
  }

  .store-dialog-copy .button {
    width: 100%;
  }

  .store-option-fields {
    grid-template-columns: 1fr;
  }

  .store-cart-panel {
    padding: 70px 18px 24px;
  }

  .store-cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .store-cart-item > img {
    width: 76px;
    height: 76px;
  }

  .store-cart-quantity {
    grid-column: 1 / -1;
    grid-template-columns: 44px 40px 44px auto;
    justify-content: start;
  }

  .store-cart-quantity .store-cart-remove {
    grid-column: auto;
    padding-left: 10px;
  }
}
