@font-face {
  font-family: "Baloo 2";
  src: url("/assets/fonts/baloo-2.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #242326;
  --muted: #54505a;
  --cream: #fff8e9;
  --pink: #ff5ca8;
  --cyan: #39dffc;
  --yellow: #ffc629;
  --orange: #ff8a00;
  --mint: #a6e8c1;
  --lavender: #d6b4ff;
  --peach: #ffc8a2;
  --line: #e1dbd3;
  --page-width: 1200px;
  font-family: Nunito, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
}
[hidden] {
  display: none !important;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
blockquote {
  margin: 0;
}
button,
input {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
p {
  margin-bottom: 18px;
}
h1,
h2,
h3 {
  font-family: "Baloo 2", Nunito, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(4rem, 6.9vw, 6.3rem);
  margin-bottom: 23px;
}
h2 {
  font-size: clamp(2.4rem, 3.7vw, 3.45rem);
  margin-bottom: 19px;
}
h3 {
  font-size: 1.75rem;
  margin-bottom: 17px;
}
:focus-visible {
  outline: 3px solid #00677e;
  outline-offset: 5px;
}
section:focus {
  outline: none;
}
.wrap {
  width: calc(100% - 96px);
  max-width: var(--page-width);
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.section-heading > p:last-child {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 0;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 4px 0 var(--ink);
  padding: 13px 24px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.button:hover {
  transform: translate(-1px, -2px);
  box-shadow: 4px 6px 0 var(--ink);
}
.button:active {
  transform: translate(2px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}
.button-small {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.8rem;
  gap: 14px;
}
.button-white {
  background: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 0.88rem;
  font-weight: 800;
  min-height: 44px;
  padding: 7px 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  background: none;
  border: none;
  color: var(--ink);
}
.text-link:hover {
  text-decoration-thickness: 3px;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 20;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 12px 20px;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}
.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  background: var(--yellow);
}
.announcement span {
  font-size: 0.9rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 158px;
  height: 96px;
  object-fit: contain;
}
#main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
#main-nav a {
  font-size: 0.89rem;
  font-weight: 800;
  padding: 12px 0;
}
#main-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--cream);
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 36px;
  padding-block: 58px 64px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.pill {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 6px;
  background: var(--cyan);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.pink-underline {
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.pink-underline::after {
  content: "";
  position: absolute;
  height: 0.17em;
  bottom: 0.1em;
  left: 0;
  right: 0;
  background: var(--pink);
  z-index: -1;
  border-radius: 50% 20% 35% 40%;
  transform: rotate(-2deg);
}
.hero-description {
  color: var(--muted);
  font-size: 1.21rem;
  line-height: 1.65;
  margin-bottom: 29px;
}
.hero-note {
  color: var(--muted);
  font-size: 0.81rem;
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note span {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
.hero-art {
  position: relative;
  isolation: isolate;
}
.hero-art > img {
  width: 100%;
  max-width: 525px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.art-blob {
  position: absolute;
  z-index: -1;
  inset: 10% -2% 2%;
  background: var(--yellow);
  border-radius: 48% 52% 39% 59% / 53% 43% 57% 47%;
  transform: rotate(-8deg);
  opacity: 0.62;
}
.doodle {
  position: absolute;
  z-index: 2;
  font-weight: 800;
  line-height: 1;
}
.star-one {
  top: 8%;
  left: 4%;
  font-size: 4.5rem;
  transform: rotate(-12deg);
}
.star-two {
  right: -3%;
  top: 15%;
  font-size: 3.2rem;
  color: #005d70;
}
.heart {
  right: 0;
  bottom: 4%;
  font-size: 4rem;
  transform: rotate(15deg);
}
.art-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  margin: 15px 0 0;
  letter-spacing: 0.02em;
}
.hero-bottom {
  border-top: 1px dashed #bbae92;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 19px 24px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.hero-bottom span:nth-child(even) {
  font-size: 1.3rem;
  line-height: 1;
}
.origin-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  align-items: center;
  gap: 110px;
}
.origin .eyebrow {
  display: inline-block;
  border-bottom: 4px solid var(--pink);
  padding-bottom: 3px;
}
.origin h2 {
  font-size: clamp(2.25rem, 3.15vw, 3rem);
}
.origin blockquote {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.35;
  margin: 23px 0;
}
.origin p:not(.eyebrow) {
  font-size: 0.96rem;
  max-width: 510px;
}
.origin-art {
  position: relative;
  max-width: 320px;
  justify-self: center;
  padding: 18px 18px 10px;
  border: 1px solid #dedbd2;
  background: white;
  box-shadow: 8px 10px 0 #f2eee6;
  transform: rotate(3deg);
}
.origin-art img {
  width: 100%;
}
.origin-art figcaption {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 9px;
}
.origin-art figcaption span {
  font-size: 1.2rem;
  vertical-align: middle;
}
.tape {
  position: absolute;
  top: -14px;
  left: 34%;
  width: 95px;
  height: 32px;
  background: var(--cyan);
  opacity: 0.65;
  transform: rotate(-7deg);
}
.meet-section {
  background: var(--cream);
}
.character-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.character-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 20px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 32px 26px;
  position: relative;
}
.sassy-card {
  box-shadow: 6px 6px 0 var(--peach);
}
.squeak-card {
  box-shadow: 6px 6px 0 var(--cyan);
}
.character-art img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
  margin: auto;
}
.squeak-art {
  padding: 22px 10px;
}
.character-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  background: var(--peach);
  border-radius: 5px;
  padding: 4px 8px;
  margin-bottom: 10px;
}
.squeak-card .character-label {
  background: var(--cyan);
}
.character-copy h3 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}
.standfirst {
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.4;
}
.character-copy > p:not(.standfirst):not(.character-tags) {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
}
.character-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 21px 0 0;
}
.character-tags span {
  font-size: 0.56rem;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid var(--line);
  padding: 3px 6px;
  border-radius: 4px;
}
.meet-note {
  text-align: center;
  margin: 30px 0 0;
  font-size: 0.87rem;
  font-weight: 700;
}
.meet-note span {
  font-size: 1.4rem;
  margin-left: 8px;
}
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.book-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #ddd7ce;
  border-radius: 21px;
  overflow: hidden;
  background: white;
  scroll-margin-top: 25px;
}
.book-art {
  min-height: 365px;
  position: relative;
  background: #e6faff;
  padding: 62px 39px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-art img {
  height: 290px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 6px 7px 0 #24232620;
  transition: transform 0.2s;
}
.book-card:hover .book-art img {
  transform: translateY(-4px);
}
.book-2 .book-art {
  background: #fff0cc;
}
.book-3 .book-art {
  background: #e6f7eb;
  padding-bottom: 38px;
}
.book-3 .book-art img {
  height: 282px;
}
.book-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  border: 1.5px solid var(--ink);
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  background: #fff;
}
.book-1 .book-badge {
  background: var(--yellow);
}
.art-label {
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.book-copy {
  padding: 27px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-copy .eyebrow {
  font-size: 0.66rem;
  margin-bottom: 11px;
}
.book-copy h3 {
  font-size: 1.9rem;
  min-height: 64px;
}
.book-copy > p:not(.eyebrow):not(.book-coming) {
  font-size: 0.91rem;
  color: var(--muted);
}
.book-features {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 8px 0 25px;
  padding: 0;
  gap: 7px 12px;
}
.book-features li {
  font-size: 0.64rem;
  font-weight: 800;
}
.book-features li::before {
  content: "✦";
  font-size: 0.6rem;
  margin-right: 5px;
}
.book-button {
  width: 100%;
  margin-top: auto;
  font-size: 0.84rem;
}
.book-coming {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px dashed #c9c3b9;
  font-size: 0.77rem;
  font-weight: 800;
}
.world-section {
  padding-top: 20px;
}
.world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
}
.world-tile {
  padding: 29px 24px 22px;
  border-radius: 18px;
  border: 1.5px solid var(--ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.costumes {
  background: var(--peach);
}
.jobs {
  background: #fce5ef;
}
.food {
  background: var(--mint);
}
.seasons {
  background: var(--lavender);
}
.world-icon {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 24px;
}
.world-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 9px;
}
.world-tile p {
  font-size: 0.81rem;
  margin-bottom: 24px;
}
.world-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.73rem;
  font-weight: 800;
  margin-top: auto;
}
.world-tile[href]:hover {
  box-shadow: 3px 4px 0 var(--ink);
}
.fun-section {
  background: var(--cream);
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.activity-card {
  border: 1.5px solid var(--ink);
  padding: 30px;
  border-radius: 18px;
  background: white;
  display: flex;
  flex-direction: column;
}
.activity-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--pink);
  border: 1.5px solid var(--ink);
  margin-bottom: 26px;
}
.activity-card:nth-child(2) .activity-number {
  background: var(--cyan);
}
.activity-card:nth-child(3) .activity-number {
  background: var(--yellow);
}
.activity-card h3 {
  font-size: 1.55rem;
}
.activity-card > p:not(.activity-tip) {
  font-size: 0.91rem;
  color: var(--muted);
}
.activity-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
}
.activity-tip {
  margin: auto 0 0;
  font-size: 0.75rem;
  font-weight: 800;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.fun-note {
  text-align: center;
  margin: 32px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}
.friendship {
  background: var(--cyan);
  border-block: 1.5px solid var(--ink);
  padding: 40px 0;
}
.friendship-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.friendship h2 {
  font-size: clamp(2.3rem, 3.9vw, 3.5rem);
}
.friendship .eyebrow {
  margin-bottom: 19px;
}
.friendship p:last-child {
  margin: 0;
  font-size: 0.94rem;
}
.friendship img {
  width: 270px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
}
.values-grid article > span {
  display: inline-flex;
  width: 53px;
  height: 53px;
  justify-content: center;
  align-items: center;
  background: #ffebbe;
  border-radius: 15px;
  font-size: 1.8rem;
  margin-bottom: 22px;
}
.values-grid article:nth-child(2) > span {
  background: #dffaff;
}
.values-grid article:nth-child(3) > span {
  background: #fbe1f0;
}
.values-grid article:nth-child(4) > span {
  background: #e3f6e9;
}
.values-grid h3 {
  font-size: 1.5rem;
}
.values-grid p {
  font-size: 0.91rem;
  color: var(--muted);
  margin: 0;
}
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 95px;
  align-items: center;
}
.about-section h2 {
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
}
.about-quote {
  font-size: 1.4rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 28px;
}
.about-heart {
  display: inline-block;
  font-size: 4rem;
  line-height: 1;
  transform: rotate(-12deg);
  margin-left: 30px;
}
.about-copy {
  padding-top: 35px;
  font-size: 1rem;
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.final-cta {
  text-align: center;
  background: var(--yellow);
  border-block: 1.5px solid var(--ink);
  position: relative;
  overflow: clip;
}
.final-cta h2 {
  font-size: clamp(2.8rem, 4.9vw, 4.6rem);
}
.final-cta .actions {
  justify-content: center;
  margin-top: 31px;
}
.final-cta .button:not(.button-white) {
  background: var(--pink);
}
.final-cta .eyebrow {
  margin-bottom: 15px;
}
.final-star {
  position: absolute;
  top: 65px;
  left: max(5%, calc((100vw - 1240px) / 2));
  font-size: 4rem;
  transform: rotate(-10deg);
}
.faq-section {
  padding-block: 74px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-grid h2 {
  font-size: 2.5rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 800;
  min-height: 54px;
}
.faq-list details p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 23px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 24px;
  background: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr 0.9fr;
  gap: 33px;
}
.footer-brand img {
  width: 172px;
}
.footer-brand p {
  font-size: 0.79rem;
  line-height: 1.7;
  margin: 13px 0 0;
}
.footer-grid h2 {
  font-family: Nunito, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 18px 0 19px;
  line-height: 1.5;
  font-weight: 800;
}
.footer-grid > div > a {
  display: block;
  font-size: 0.79rem;
  min-height: 38px;
  padding: 7px 0;
}
.footer-grid > div > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-message > span {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin: 10px 0 20px;
}
.footer-message p {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}
.footer-bottom {
  margin-top: 35px;
  padding-top: 19px;
  border-top: 1px solid #d8d1c5;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  font-size: 0.72rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  padding: 8px 0;
  min-height: 38px;
  font-weight: 800;
}
.document-page {
  background: var(--cream);
}
.document-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.document-header img {
  width: 145px;
}
.document-content {
  max-width: 740px;
  margin: 65px auto 80px;
  padding-inline: 24px;
}
.document-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.document-content h2 {
  font-size: 1.8rem;
  margin: 33px 0 14px;
}
.document-content p a {
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.document-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
}
.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 (min-width: 1600px) {
  .hero-grid {
    padding-block: 70px 80px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 25px;
  }
  #main-nav {
    gap: 25px;
  }
  .brand img {
    width: 138px;
    height: 88px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-description {
    font-size: 1.07rem;
  }
  .actions {
    gap: 20px;
  }
  .hero .button {
    padding-inline: 17px;
    font-size: 0.82rem;
  }
  .hero .text-link {
    font-size: 0.81rem;
  }
  .origin-grid {
    gap: 65px;
  }
  .character-card {
    grid-template-columns: 0.7fr 1fr;
    padding: 24px 18px;
    gap: 15px;
  }
  .character-copy h3 {
    font-size: 2.2rem;
  }
  .character-copy .standfirst {
    font-size: 0.94rem;
  }
  .character-art img {
    max-height: 250px;
  }
  .book-grid {
    gap: 20px;
  }
  .book-art {
    padding-inline: 28px;
    min-height: 330px;
  }
  .book-art img {
    height: 255px;
  }
  .book-3 .book-art img {
    height: 247px;
  }
  .book-copy {
    padding: 23px;
  }
  .book-copy h3 {
    font-size: 1.65rem;
  }
  .book-copy > p:not(.eyebrow):not(.book-coming) {
    font-size: 0.85rem;
  }
  .world-tile {
    padding: 24px 20px;
  }
  .world-tile h3 {
    font-size: 1.4rem;
  }
  .activity-card {
    padding: 24px;
  }
  .activity-card h3 {
    font-size: 1.4rem;
  }
  .about-grid,
  .faq-grid {
    gap: 60px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 25px;
  }
  .footer-message {
    display: none;
  }
}
@media (max-width: 900px) and (min-width: 761px) {
  .header-shop {
    display: none;
  }
  .hero-grid {
    padding-block: 45px;
  }
  h1 {
    font-size: 4.5rem;
  }
  .hero-copy .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .pill {
    font-size: 0.56rem;
    padding-inline: 9px;
  }
  .character-card {
    grid-template-columns: 1fr;
    padding: 27px;
  }
  .character-art {
    height: 210px;
  }
  .character-art img {
    max-height: 210px;
  }
  .squeak-art img {
    max-height: 170px;
  }
  .world-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .book-art {
    min-height: 275px;
    padding: 60px 20px 28px;
  }
  .book-art img {
    height: 187px;
  }
  .book-3 .book-art img {
    height: 179px;
  }
  .book-copy {
    padding: 19px;
  }
  .book-copy h3 {
    font-size: 1.5rem;
    min-height: 80px;
  }
  .book-button {
    font-size: 0.72rem;
    padding-inline: 12px;
    gap: 8px;
  }
  .book-features {
    gap: 5px;
  }
  .activity-grid {
    gap: 18px;
  }
  .activity-card {
    padding: 22px;
  }
  .activity-card h3 {
    min-height: 46px;
  }
  .friendship img {
    width: 210px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .final-star {
    font-size: 2.7rem;
    left: 4%;
    top: 40px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-brand img {
    width: 130px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 100px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding: 62px 0;
  }
  .announcement {
    min-height: 30px;
    font-size: 0.62rem;
    gap: 18px;
  }
  .header-inner {
    min-height: 85px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .brand img {
    width: 116px;
    height: 80px;
  }
  .header-shop {
    margin-left: auto;
    font-size: 0.68rem;
    min-height: 43px;
    padding: 9px 11px;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 2px 3px 0 var(--ink);
  }
  .header-shop span {
    display: none;
  }
  .menu-toggle:not([hidden]) {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    min-height: 48px;
    font-size: 0.61rem;
    font-weight: 800;
    background: none;
    border: none;
    padding: 5px 0;
  }
  .menu-lines {
    width: 21px;
    height: 14px;
    border-block: 2px solid var(--ink);
    position: relative;
  }
  .menu-lines::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    border-top: 2px solid var(--ink);
  }
  #main-nav {
    order: 4;
    flex: 0 0 100%;
    margin: 0;
    padding: 0 0 17px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  #main-nav a {
    padding: 12px;
    border-top: 1px solid var(--line);
    min-height: 48px;
  }
  .js #main-nav:not(.is-open) {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 39px 35px;
    gap: 25px;
  }
  .hero-copy {
    text-align: left;
  }
  h1 {
    font-size: clamp(3.9rem, 12.5vw, 5.7rem);
    margin-bottom: 22px;
  }
  .pill {
    font-size: 0.58rem;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 1.09rem;
    margin-bottom: 25px;
  }
  .hero .actions {
    gap: 20px;
  }
  .hero .button {
    font-size: 0.8rem;
    min-height: 51px;
    padding-inline: 16px;
    gap: 13px;
  }
  .hero .text-link {
    font-size: 0.8rem;
    gap: 9px;
  }
  .hero-note {
    margin-top: 23px;
    font-size: 0.75rem;
  }
  .hero-art {
    max-width: 380px;
    width: 92%;
    margin-inline: auto;
  }
  .art-caption {
    margin-top: 10px;
    font-size: 0.69rem;
  }
  .star-one {
    font-size: 3.6rem;
  }
  .star-two {
    right: -1%;
    font-size: 2.3rem;
  }
  .heart {
    font-size: 3rem;
  }
  .hero-bottom {
    gap: 15px;
    padding: 18px 20px;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    justify-content: space-around;
  }
  .hero-bottom span:nth-last-child(-n + 2) {
    display: none;
  }
  h2 {
    font-size: 2.45rem;
  }
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }
  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }
  .section-heading > p:last-child {
    font-size: 1rem;
  }
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .origin h2 {
    font-size: 2.3rem;
  }
  .origin blockquote {
    font-size: 1.63rem;
  }
  .origin-art {
    max-width: 270px;
  }
  .origin-art figcaption {
    font-size: 0.59rem;
  }
  .character-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .character-card {
    padding: 25px 21px;
    gap: 16px;
    grid-template-columns: 0.7fr 1fr;
  }
  .character-copy h3 {
    font-size: 2.4rem;
  }
  .character-label {
    font-size: 0.56rem;
  }
  .character-art img {
    max-height: 270px;
  }
  .squeak-art {
    padding: 20px 5px;
  }
  .character-tags {
    gap: 5px;
    margin-top: 18px;
  }
  .character-tags span {
    font-size: 0.51rem;
    padding: 2px 4px;
  }
  .meet-note {
    text-align: left;
    font-size: 0.8rem;
  }
  .book-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .book-art {
    min-height: 385px;
    padding: 64px 35px 30px;
  }
  .book-art img {
    height: 291px;
  }
  .book-3 .book-art img {
    height: 283px;
  }
  .book-badge {
    font-size: 0.59rem;
  }
  .book-copy {
    padding: 28px;
  }
  .book-copy h3 {
    font-size: 2rem;
    min-height: 0;
  }
  .book-copy > p:not(.eyebrow):not(.book-coming) {
    font-size: 0.93rem;
  }
  .book-features {
    margin-bottom: 24px;
  }
  .book-button {
    margin-top: 0;
  }
  .world-section {
    padding-top: 12px;
  }
  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .world-tile {
    padding: 24px 17px 22px;
  }
  .world-tile h3 {
    font-size: 1.4rem;
  }
  .world-tile p {
    font-size: 0.77rem;
    margin-bottom: 22px;
  }
  .world-link {
    font-size: 0.65rem;
  }
  .world-icon {
    font-size: 1.8rem;
    margin-bottom: 21px;
  }
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .activity-card {
    padding: 28px;
  }
  .activity-card h3 {
    font-size: 1.7rem;
  }
  .activity-number {
    margin-bottom: 23px;
  }
  .activity-card > p:not(.activity-tip) {
    font-size: 0.95rem;
  }
  .activity-card .text-link {
    font-size: 0.82rem;
  }
  .fun-note {
    font-size: 0.79rem;
  }
  .friendship {
    padding: 48px 0 30px;
  }
  .friendship-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .friendship h2 {
    font-size: 2.45rem;
  }
  .friendship img {
    width: 220px;
    align-self: center;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }
  .values-grid h3 {
    font-size: 1.4rem;
  }
  .values-grid p {
    font-size: 0.85rem;
  }
  .values-grid article > span {
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-section h2 {
    font-size: 2.45rem;
  }
  .about-quote {
    font-size: 1.3rem;
    margin: 25px 0 16px;
  }
  .about-heart {
    font-size: 2.8rem;
    margin-left: 12px;
  }
  .about-copy {
    padding-top: 30px;
    font-size: 0.95rem;
  }
  .final-cta .eyebrow {
    margin-top: 5px;
  }
  .final-cta h2 {
    font-size: 2.75rem;
  }
  .final-cta p:not(.eyebrow) {
    font-size: 0.95rem;
  }
  .final-cta .actions {
    flex-direction: column;
    gap: 17px;
  }
  .final-cta .button {
    width: 100%;
    max-width: 310px;
  }
  .final-star {
    display: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-grid h2 {
    font-size: 2.3rem;
  }
  .faq-list summary {
    font-size: 0.9rem;
  }
  .faq-list details p {
    font-size: 0.88rem;
  }
  .site-footer {
    padding-top: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 25px;
  }
  .footer-brand img {
    width: 145px;
  }
  .footer-brand p {
    font-size: 0.73rem;
    margin-top: 7px;
  }
  .footer-grid h2 {
    font-size: 0.65rem;
    margin-bottom: 15px;
  }
  .footer-grid > div > a {
    min-height: 44px;
    font-size: 0.77rem;
    padding-block: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 30px;
    font-size: 0.66rem;
  }
  .document-header {
    gap: 18px;
  }
  .document-header img {
    width: 120px;
  }
  .document-header .text-link {
    font-size: 0.7rem;
    gap: 8px;
  }
  .document-content {
    margin-top: 40px;
    padding-inline: 24px;
  }
  .document-content h1 {
    font-size: 3rem;
  }
  .document-content h2 {
    font-size: 1.7rem;
  }
  .desktop-break {
    display: none;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header-inner {
    gap: 10px;
  }
  .brand img {
    width: 98px;
  }
  .header-shop {
    font-size: 0.61rem;
    padding-inline: 9px;
  }
  h1 {
    font-size: 3.6rem;
  }
  .hero .actions {
    gap: 12px;
  }
  .hero .button {
    font-size: 0.74rem;
    padding-inline: 12px;
  }
  .hero .text-link {
    font-size: 0.73rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .character-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .character-art img {
    max-height: 210px;
  }
  .squeak-art img {
    max-height: 160px;
  }
  .character-copy .standfirst {
    font-size: 1.05rem;
  }
  .character-tags span {
    font-size: 0.58rem;
    padding: 3px 6px;
  }
  .world-grid {
    gap: 12px;
  }
  .world-tile {
    padding-inline: 14px;
  }
  .world-tile h3 {
    font-size: 1.25rem;
  }
  .world-link {
    font-size: 0.6rem;
  }
  .book-art {
    min-height: 345px;
    padding-inline: 30px;
  }
  .book-art img {
    height: 251px;
  }
  .book-3 .book-art img {
    height: 243px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .announcement,
  .hero-bottom,
  .skip-link,
  .activity-card button {
    display: none !important;
  }
  html {
    scroll-padding-top: 0;
  }
  .section {
    padding: 25px 0;
  }
  .wrap {
    width: 100%;
  }
  .hero-grid {
    padding-block: 30px;
  }
  .book-card,
  .character-card,
  .activity-card {
    break-inside: avoid;
  }
  .button {
    box-shadow: none;
  }
}
