:root {
  --ink: #10183a;
  --ink-2: #202950;
  --paper: #fff9eb;
  --white: #ffffff;
  --acid: #d8ff32;
  --yellow: #ffd72e;
  --coral: #d93450;
  --aqua: #59ded2;
  --pink: #ff88bc;
  --line: rgba(16, 24, 58, .18);
  --shadow: 8px 8px 0 var(--ink);
  --radius: 20px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--acid); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }
*:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .wordmark, .eyebrow {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
h1, h2, h3 { line-height: .96; letter-spacing: -.025em; }
h1 { font-size: clamp(3.5rem, 8vw, 7.7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { font-size: 1.9rem; }
p { font-size: 1.05rem; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--white);
  border: 2px solid var(--ink);
  padding: .7rem 1rem;
}
.skip-link:focus { transform: none; }
.noscript-banner { padding: 1rem max(20px, calc((100vw - var(--max)) / 2)); border-bottom: 2px solid var(--ink); background: var(--yellow); font-weight: 900; }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: .38rem 1rem;
  color: var(--paper);
  background: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.announcement a { color: var(--acid); }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 249, 235, .95);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr 110px;
  align-items: center;
  gap: 24px;
}
.wordmark {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  gap: .2rem;
  text-decoration: none;
  letter-spacing: -.02em;
  transform: rotate(-1.5deg);
}
.wordmark span {
  padding: .1rem .28rem;
  color: var(--ink);
  background: var(--acid);
  font-size: 1.45rem;
  line-height: 1;
}
.wordmark b { font-size: 1.78rem; line-height: 1; }
.wordmark i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-left: .12rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-style: normal;
  font-size: 1rem;
}
.site-nav { display: flex; justify-content: center; gap: clamp(20px, 4vw, 48px); }
.site-nav a {
  position: relative;
  padding: .55rem .1rem;
  text-decoration: none;
  font-weight: 800;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .2rem;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--coral);
  transition: transform .18s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-current::after { transform: scaleX(1); }
.cart-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  font-weight: 900;
  text-decoration: none;
}
.cart-link b {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 .35rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .72rem 1.18rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover, .button:focus-visible { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.button:active { transform: translate(0); box-shadow: none; }
.button--primary { background: var(--acid); }
.button--dark { color: var(--white); background: var(--ink); }
.button--ghost { background: transparent; }
.button--large { min-height: 56px; padding: .9rem 1.55rem; }
.button--full { width: 100%; }
.button--disabled { opacity: .48; pointer-events: none; }
.button:disabled { cursor: not-allowed; opacity: .5; transform: none; box-shadow: none; }
.text-link {
  font-weight: 900;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.text-link--large { font-size: 1.1rem; }
.eyebrow {
  margin-bottom: .8rem;
  color: var(--coral);
  font-size: .94rem;
  letter-spacing: .12em;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(circle at 48% 22%, rgba(216, 255, 50, .55), transparent 20%),
    linear-gradient(145deg, var(--paper) 0 67%, var(--aqua) 67%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 36px;
  left: -55px;
  width: 180px;
  height: 62px;
  transform: rotate(-22deg);
  border: 2px solid var(--ink);
  background: var(--pink);
}
.hero__copy {
  width: min(680px, calc(100% - 64px));
  align-self: center;
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding: 60px 24px 70px 0;
}
.hero h1 { max-width: 780px; margin-bottom: 1.6rem; text-transform: uppercase; }
.hero h1 em {
  position: relative;
  color: var(--coral);
  font-style: normal;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.06em;
  left: 0;
  height: .08em;
  transform: rotate(-1deg);
  background: var(--ink);
}
.hero__copy > p { max-width: 650px; font-size: clamp(1.15rem, 2vw, 1.42rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.hero__note {
  max-width: 590px;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2.2rem;
  font-size: .9rem;
  font-weight: 800;
}
.hero__note span {
  flex: 0 0 auto;
  padding: .32rem .5rem;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-family: Impact, sans-serif;
  letter-spacing: .05em;
}
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 70px 70px 80px 20px;
}
.hero__visual .cover { z-index: 2; }
.hero-burst {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 7%;
  display: grid;
  width: 146px;
  height: 146px;
  place-items: center;
  transform: rotate(11deg);
  clip-path: polygon(50% 0,61% 17%,79% 5%,82% 27%,100% 27%,88% 47%,100% 61%,78% 65%,79% 87%,59% 78%,48% 100%,38% 79%,17% 93%,18% 69%,0 63%,13% 47%,0 31%,23% 28%,22% 7%,41% 18%);
  background: var(--yellow);
  font-family: Impact, sans-serif;
  font-size: 1.35rem;
  line-height: .9;
  text-align: center;
}
.hero-sticker {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 10%;
  padding: 1rem 1.2rem;
  transform: rotate(-7deg);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Impact, sans-serif;
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: .05em;
}
.hero-sticker b { color: var(--coral); font-size: 1.35em; }
.cover {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  aspect-ratio: .68;
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--coral);
  box-shadow: var(--shadow);
  text-align: center;
}
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover--card { width: min(100%, 270px); }
.cover--hero { width: min(340px, 72%); transform: rotate(3.4deg); }
.cover--detail { width: min(420px, 80%); transform: rotate(-2.2deg); }
.cover--placeholder {
  align-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(16,24,58,.16) 48% 52%, transparent 52%),
    var(--yellow);
}
.cover--placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--ink);
}
.cover--placeholder small, .cover-fallback small { font-family: Impact, sans-serif; letter-spacing: .11em; }
.cover--placeholder strong, .cover-fallback strong { position: relative; font-family: Impact, sans-serif; font-size: clamp(1.7rem, 4vw, 3.5rem); line-height: .93; text-transform: uppercase; }
.cover--placeholder span, .cover-fallback span { position: relative; padding: .3rem .55rem; background: var(--paper); font-weight: 900; }
.cover-fallback { display: none; }
.cover.is-broken img { display: none; }
.cover.is-broken .cover-fallback { display: grid; height: 100%; align-content: center; gap: 1rem; padding: 1.5rem; }
.hero-empty { padding: 3rem; border: 2px dashed var(--ink); font-family: Impact, sans-serif; font-size: 2rem; }

.marquee { overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--ink); color: var(--paper); white-space: nowrap; }
.marquee div { width: max-content; padding: .85rem 0; font-family: Impact, sans-serif; font-size: 1.15rem; letter-spacing: .1em; animation: marquee 28s linear infinite; }
.marquee i { margin: 0 1rem; color: var(--acid); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .marquee div { animation: none; } * { transition-duration: 0s !important; } }

.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: clamp(70px, 9vw, 125px) 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 3rem; }
.section-heading h2 { max-width: 770px; margin-bottom: 0; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(24px, 3vw, 42px); }
.product-grid--catalog { row-gap: 70px; }
.product-card { min-width: 0; }
.product-card__cover { min-height: 365px; display: grid; place-items: end center; padding: 28px; border: 2px solid var(--ink); background: var(--aqua); text-decoration: none; }
.product-card:nth-child(3n + 2) .product-card__cover { background: var(--pink); }
.product-card:nth-child(3n + 3) .product-card__cover { background: var(--yellow); }
.product-card__cover .cover { transition: transform .2s ease; }
.product-card__cover:hover .cover { transform: rotate(-2deg) translateY(-5px); }
.product-card__body { padding: 1.5rem .15rem 0; }
.product-card__meta { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; color: var(--coral); font-family: Impact, sans-serif; font-size: .84rem; letter-spacing: .07em; text-transform: uppercase; }
.product-card__meta span:first-child { padding: .25rem .45rem; background: var(--yellow); color: var(--ink); }
.card-price { color: var(--ink); font-family: "Trebuchet MS", sans-serif; font-weight: 900; letter-spacing: 0; text-transform: none; }
.card-price--soft { opacity: .62; }
.product-card h3 { margin-bottom: .2rem; text-transform: uppercase; }
.product-card h3 a { text-decoration: none; }
.product-card .subtitle { margin-bottom: .8rem; color: var(--coral); font-weight: 900; }
.product-card__body > p:not(.subtitle) { min-height: 78px; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; }
.card-actions .button { min-height: 42px; padding: .55rem .9rem; }

.split-feature {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 380px;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(60px, 8vw, 110px) max(24px, calc((100vw - var(--max)) / 2));
  border-block: 2px solid var(--ink);
  background: var(--yellow);
}
.split-feature__number { align-self: start; font-family: Impact, sans-serif; font-size: 6rem; line-height: 1; opacity: .18; }
.split-feature h2 { max-width: 700px; text-transform: uppercase; }
.split-feature > div:nth-child(2) p { max-width: 650px; font-size: 1.2rem; }
.split-feature aside {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: center;
  padding: 2.5rem;
  transform: rotate(2deg);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.split-feature aside span { position: absolute; top: 18px; right: 18px; padding: .3rem .5rem; background: var(--coral); color: var(--white); font-family: Impact, sans-serif; }
.split-feature aside strong { font-family: Impact, sans-serif; font-size: 3.6rem; line-height: .92; text-transform: uppercase; }
.newsletter-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(70px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: var(--ink);
}
.newsletter-band h2 { color: var(--white); text-transform: uppercase; }
.newsletter-band p { max-width: 590px; color: rgba(255,255,255,.76); }
.newsletter-form { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 16px; }
.newsletter-form label { display: grid; gap: .35rem; font-size: .9rem; font-weight: 900; }
.newsletter-form input:not([type="checkbox"]) { min-height: 52px; padding: .8rem 1rem; border: 2px solid var(--paper); background: transparent; color: var(--white); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: .7rem; font-weight: 500; }
.newsletter-form .consent input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: .14rem; accent-color: var(--acid); }
.newsletter-form button, .newsletter-form .form-status { grid-column: 1 / -1; }
.form-status { min-height: 1.4em; margin: 0; font-size: .9rem; font-weight: 800; }
.form-status.is-error { color: var(--coral); }
.form-status.is-success { color: var(--acid); }
.honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

.page-hero {
  min-height: 440px;
  display: grid;
  align-content: end;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 2px solid var(--ink);
  background: var(--aqua);
}
.page-hero h1 { max-width: 1100px; margin-bottom: 1rem; text-transform: uppercase; }
.page-hero p { max-width: 700px; margin-bottom: 0; font-size: 1.25rem; }
.page-hero--books { background: linear-gradient(120deg, var(--pink), var(--paper) 72%); }
.page-hero--downloads { background: linear-gradient(120deg, var(--yellow), var(--paper) 72%); }
.page-hero--freebies { color: var(--paper); background: var(--ink); }
.page-hero--about { background: linear-gradient(120deg, var(--acid), var(--paper) 75%); }
.page-hero--compact { min-height: 340px; background: var(--paper); }
.empty-state {
  padding: clamp(40px, 7vw, 90px);
  border: 2px dashed var(--ink);
  background: rgba(255,255,255,.4);
  text-align: center;
}
.empty-state h2 { margin-bottom: 1rem; text-transform: uppercase; }
.empty-state--loud { background: var(--yellow); box-shadow: var(--shadow); }
.empty-state--loud > span { display: inline-block; margin-bottom: 1rem; padding: .4rem .7rem; background: var(--coral); color: var(--white); font-family: Impact, sans-serif; }

.book-detail {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  min-height: 690px;
  border-bottom: 2px solid var(--ink);
}
.book-detail__art { position: relative; display: grid; place-items: center; padding: 70px 30px; overflow: hidden; background: var(--aqua); }
.book-detail__art::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}
.book-detail__art .cover { z-index: 2; }
.doodle-note {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 7%;
  padding: .8rem 1rem;
  transform: rotate(5deg);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Impact, sans-serif;
  line-height: 1;
}
.book-detail__copy { align-self: center; max-width: 720px; padding: 70px clamp(35px, 7vw, 100px); }
.back-link { display: inline-block; margin-bottom: 3rem; font-weight: 900; }
.book-detail h1 { margin-bottom: .3rem; font-size: clamp(3.6rem, 7vw, 7.3rem); text-transform: uppercase; }
.book-subtitle { color: var(--coral); font-family: Impact, sans-serif; font-size: 1.7rem; text-transform: uppercase; }
.book-lede { max-width: 650px; margin: 1.7rem 0; font-size: 1.22rem; }
.book-facts { display: flex; flex-wrap: wrap; gap: 0; margin: 2rem 0; border-block: 2px solid var(--ink); }
.book-facts span { display: grid; gap: .05rem; padding: 1rem 1.4rem 1rem 0; margin-right: 1.4rem; }
.book-facts small { color: rgba(16,24,58,.62); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.book-facts b { font-size: .98rem; }
.book-buy { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.book-buy small { max-width: 280px; color: rgba(16,24,58,.64); }
.book-story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(70px, 10vw, 135px) max(24px, calc((100vw - var(--max)) / 2));
}
.book-story h2 { text-transform: uppercase; }
.book-story > div:last-child > p:first-child { font-size: 1.25rem; }
.content-note { padding: 1.3rem 1.5rem; border-left: 7px solid var(--coral); background: var(--yellow); }
.preview-gallery { width: min(var(--max), calc(100% - 40px)); margin: 0 auto clamp(75px, 9vw, 120px); }
.preview-gallery__heading { max-width: 720px; margin-bottom: 2rem; }
.preview-gallery__heading h2 { margin-bottom: 0; text-transform: uppercase; }
.preview-gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(20px, 3vw, 36px); }
.preview-gallery--single { width: min(970px, calc(100% - 40px)); }
.preview-gallery__item { display: grid; place-items: center; min-width: 0; margin: 0; overflow: hidden; border: 2px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.preview-gallery__item img { display: block; width: 100%; height: auto; max-height: 760px; object-fit: contain; }
.reviews-section { padding: clamp(70px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2)); border-block: 2px solid var(--ink); background: var(--aqua); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-grid blockquote { margin: 0; padding: 2rem; border: 2px solid var(--ink); background: var(--paper); box-shadow: 5px 5px 0 var(--ink); }
.stars { color: var(--coral); letter-spacing: .16em; }
.review-grid h3 { margin: 1rem 0 .6rem; }
.review-grid footer { font-weight: 900; }
.soft-copy { color: rgba(16,24,58,.68); }
.review-form-wrap { margin-top: 2rem; border-top: 2px solid var(--ink); }
.review-form-wrap summary { width: max-content; padding: 1rem 0; cursor: pointer; font-weight: 900; }
.review-form-wrap form { max-width: 760px; padding-top: 1rem; }
.section--related { max-width: 920px; }

.freebie-panel {
  width: min(1000px, calc(100% - 40px));
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  margin: 90px auto;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.freebie-panel__art { min-height: 460px; display: grid; place-content: center; gap: .2rem; background: var(--yellow); text-align: center; }
.freebie-panel__art b { color: var(--coral); font-family: Impact, sans-serif; font-size: 7rem; line-height: .8; }
.freebie-panel__art span { font-family: Impact, sans-serif; font-size: 5rem; line-height: .9; }
.freebie-panel__art i { justify-self: center; padding: .3rem .6rem; background: var(--ink); color: var(--white); font-style: normal; font-weight: 900; }
.newsletter-form--light { padding: clamp(35px, 6vw, 70px); color: var(--ink); }
.newsletter-form--light h2 { grid-column: 1 / -1; font-size: 3.5rem; text-transform: uppercase; }
.newsletter-form--light input:not([type="checkbox"]) { border-color: var(--ink); color: var(--ink); }
.newsletter-form--light input::placeholder { color: rgba(16,24,58,.45); }
.newsletter-form--light .form-status.is-success { color: #087361; }

.about-grid {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(50px, 9vw, 130px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
}
.about-quote { align-self: start; padding: 2.5rem; transform: rotate(-2deg); border: 2px solid var(--ink); background: var(--pink); box-shadow: var(--shadow); font-family: Impact, sans-serif; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .93; text-transform: uppercase; }
.about-grid h2 { text-transform: uppercase; }
.about-grid > div:last-child > p { font-size: 1.18rem; }

.cart-layout {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(35px, 6vw, 80px);
  margin: 0 auto;
  padding: 65px 0 110px;
}
.cart-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; align-items: center; padding: 1.4rem 0; border-bottom: 2px solid var(--ink); }
.cart-row__image { width: 76px; aspect-ratio: .72; display: grid; place-items: center; overflow: hidden; border: 2px solid var(--ink); background: var(--yellow); font-family: Impact, sans-serif; }
.cart-row__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-row h3 { margin-bottom: .4rem; font-size: 1.55rem; text-transform: uppercase; }
.cart-row__controls { display: flex; align-items: center; gap: .5rem; }
.cart-row__controls button { width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 50%; background: var(--white); font-weight: 900; }
.cart-row__controls button[data-remove] { width: auto; margin-left: .7rem; border: 0; border-radius: 0; background: transparent; text-decoration: underline; }
.cart-row__price { font-weight: 900; white-space: nowrap; }
.cart-summary { align-self: start; position: sticky; top: 115px; padding: 2rem; border: 2px solid var(--ink); background: var(--yellow); box-shadow: var(--shadow); }
.cart-summary h2 { font-size: 2.5rem; text-transform: uppercase; }
.cart-summary > div { display: flex; justify-content: space-between; padding: 1rem 0; border-block: 2px solid var(--ink); font-size: 1.1rem; }
.cart-summary p, .cart-summary small { display: block; color: rgba(16,24,58,.68); font-size: .9rem; }

.result-page { width: min(760px, calc(100% - 40px)); min-height: 650px; display: grid; justify-items: center; align-content: center; margin: 0 auto; padding: 80px 0; text-align: center; }
.result-page h1 { font-size: clamp(3rem, 7vw, 6rem); text-transform: uppercase; }
.result-page > p { max-width: 610px; font-size: 1.2rem; }
.result-mark { display: grid; width: 95px; height: 95px; place-items: center; margin-bottom: 1.5rem; transform: rotate(-5deg); border: 3px solid var(--ink); border-radius: 50%; background: var(--acid); box-shadow: 5px 5px 0 var(--ink); font-family: Impact, sans-serif; font-size: 3rem; }
.result-mark--cancel { background: var(--coral); color: var(--white); }
.result-mark--pending { background: var(--yellow); color: var(--ink); }
.download-list { width: 100%; margin: 2rem 0; padding: 1.5rem; border: 2px solid var(--ink); background: var(--white); text-align: left; }
.download-list h2 { font-size: 2rem; }
.download-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); font-weight: 900; text-decoration: none; }
.download-link small { display: block; color: rgba(16,24,58,.6); font-weight: 500; }

.contact-layout {
  width: min(1050px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  margin: 0 auto;
  padding: 70px 0 110px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: .4rem; font-weight: 900; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
}
.form-grid textarea { resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid small { color: rgba(16,24,58,.62); font-weight: 500; }
.contact-layout aside { align-self: start; padding: 2rem; border: 2px solid var(--ink); background: var(--acid); box-shadow: var(--shadow); }
.contact-layout aside a { overflow-wrap: anywhere; font-size: 1.1rem; font-weight: 900; }
.faq-list, .legal-copy { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px; }
.faq-list details { border-bottom: 2px solid var(--ink); }
.faq-list summary { position: relative; padding: 1.6rem 3rem 1.6rem 0; cursor: pointer; font-family: Impact, sans-serif; font-size: 1.7rem; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding-bottom: 1.4rem; }
.legal-copy h2 { font-size: 3rem; text-transform: uppercase; }
.legal-copy > p { font-size: 1.15rem; }
.notice { padding: 1rem 1.2rem; border: 2px solid currentColor; }
.notice--draft { margin: 2rem 0; background: var(--yellow); }
.notice--draft p { margin: .4rem 0 0; }
.notice--error { margin-bottom: 1.4rem; color: #9b1c1c; background: #fff1f1; }

.site-footer { padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 24px; border-top: 2px solid var(--ink); color: var(--paper); background: var(--ink); }
.site-footer__lead { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 40px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.2); }
.wordmark--footer b { color: var(--white); }
.site-footer__lead p { max-width: 600px; margin: 0; color: rgba(255,255,255,.74); }
.age-chip { padding: .5rem .7rem; border: 2px solid var(--acid); color: var(--acid); font-family: Impact, sans-serif; letter-spacing: .08em; }
.site-footer__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 40px; padding: 55px 0; }
.site-footer__links > div { display: grid; align-content: start; gap: .55rem; }
.site-footer__links strong { margin-bottom: .5rem; color: var(--acid); font-family: Impact, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__links a { width: max-content; color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer__links a:hover { color: var(--white); text-decoration: underline; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); font-size: .82rem; }
.toast-region { position: fixed; z-index: 100; right: 20px; bottom: 20px; display: grid; gap: 10px; }
.toast { max-width: 360px; padding: 1rem 1.2rem; border: 2px solid var(--ink); background: var(--acid); box-shadow: 5px 5px 0 var(--ink); font-weight: 900; animation: toast-in .2s ease; }
.toast--error { color: var(--white); background: var(--coral); }
@keyframes toast-in { from { transform: translateY(10px); opacity: 0; } }

.installer-body { min-height: 100vh; background: linear-gradient(145deg, var(--acid) 0 36%, var(--paper) 36%); }
.installer-shell { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: 45px 0 80px; }
.wordmark--dark { margin-bottom: 35px; }
.installer-card { padding: clamp(32px, 7vw, 70px); border: 2px solid var(--ink); background: var(--white); box-shadow: 10px 10px 0 var(--ink); }
.installer-card h1 { margin-bottom: 1rem; font-size: clamp(3.3rem, 8vw, 6.5rem); text-transform: uppercase; }
.installer-card .lede { max-width: 720px; font-size: 1.18rem; }
.preflight { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 2rem 0; }
.check { display: flex; align-items: center; gap: .6rem; padding: .65rem .8rem; background: #f3f3ef; font-weight: 800; }
.check span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: var(--white); }
.check--pass span { background: #087361; }
.check--fail span { background: #a92727; }

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: 1fr auto auto; }
  .js .menu-toggle { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 9px; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); }
  .menu-toggle span { height: 2px; background: var(--ink); }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; padding: 18px 20px 25px; border-bottom: 2px solid var(--ink); background: var(--paper); }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: grid; }
  .site-nav a { font-size: 1.2rem; text-align: center; }
  .hero { grid-template-columns: 1fr .8fr; min-height: 640px; }
  .hero__copy { margin-left: 24px; }
  .hero__visual { padding-right: 35px; }
  .hero-burst { width: 110px; height: 110px; font-size: 1rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-feature { grid-template-columns: 70px 1fr; }
  .split-feature aside { grid-column: 2; }
  .book-detail { grid-template-columns: .9fr 1.1fr; }
  .book-detail__copy { padding-inline: 35px; }
  .book-story { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__lead { grid-template-columns: 1fr auto; }
  .site-footer__lead p { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
  .book-detail { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 720px) {
  h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .announcement { min-height: 42px; font-size: .72rem; text-align: center; }
  .announcement a { display: none; }
  .site-header__inner { width: calc(100% - 24px); min-height: 70px; grid-template-columns: 1fr auto auto; gap: 10px; }
  .wordmark span { font-size: 1.05rem; }
  .wordmark b { font-size: 1.28rem; }
  .wordmark i { width: 21px; height: 21px; }
  .cart-link span { display: none; }
  .cart-link b { min-width: 32px; height: 32px; }
  .hero { display: block; min-height: 0; background: var(--paper); }
  .hero__copy { width: calc(100% - 36px); margin: 0 auto; padding: 55px 0; }
  .hero h1 em { white-space: normal; }
  .hero__visual { min-height: 520px; padding: 60px 30px 70px; border-top: 2px solid var(--ink); background: var(--aqua); }
  .hero__visual .cover { width: min(280px, 74%); }
  .hero-burst { top: 7%; right: 5%; }
  .hero-sticker { right: 5%; bottom: 6%; }
  .marquee div { font-size: .95rem; }
  .section { width: calc(100% - 28px); padding: 70px 0; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 2.2rem; }
  .product-grid { grid-template-columns: 1fr; gap: 55px; }
  .product-card__cover { min-height: 390px; }
  .product-card__body > p:not(.subtitle) { min-height: 0; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .button { width: 100%; }
  .split-feature { display: grid; grid-template-columns: 1fr; padding: 65px 22px; }
  .split-feature__number { display: none; }
  .split-feature aside { grid-column: auto; min-height: 270px; }
  .newsletter-band { grid-template-columns: 1fr; padding: 65px 22px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form label, .newsletter-form .consent, .newsletter-form button, .newsletter-form .form-status { grid-column: auto; }
  .page-hero { min-height: 360px; padding: 60px 22px; }
  .page-hero--compact { min-height: 280px; }
  .book-detail { grid-template-columns: 1fr; }
  .book-detail__art { min-height: 540px; padding: 60px 20px; }
  .book-detail__art::before { width: 430px; height: 430px; }
  .book-detail__copy { padding: 55px 22px 65px; }
  .back-link { margin-bottom: 2rem; }
  .book-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .book-facts span { margin-right: 0; padding-right: 1rem; }
  .book-story { padding: 70px 22px; }
  .preview-gallery, .preview-gallery--single { width: calc(100% - 28px); margin-bottom: 80px; }
  .preview-gallery__grid { grid-template-columns: 1fr; }
  .reviews-section { padding: 70px 22px; }
  .review-grid { grid-template-columns: 1fr; }
  .freebie-panel { grid-template-columns: 1fr; width: calc(100% - 28px); margin: 50px auto 80px; }
  .freebie-panel__art { min-height: 360px; }
  .freebie-panel__art b { font-size: 5.5rem; }
  .freebie-panel__art span { font-size: 4rem; }
  .newsletter-form--light { padding: 35px 22px; }
  .about-grid { grid-template-columns: 1fr; width: calc(100% - 28px); padding: 70px 0; }
  .cart-layout { grid-template-columns: 1fr; width: calc(100% - 28px); }
  .cart-row { grid-template-columns: 70px 1fr; }
  .cart-row__image { width: 65px; }
  .cart-row__price { grid-column: 2; }
  .cart-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; width: calc(100% - 28px); gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .faq-list, .legal-copy { width: calc(100% - 28px); }
  .site-footer { padding-inline: 22px; }
  .site-footer__lead { grid-template-columns: 1fr; }
  .age-chip { width: max-content; }
  .site-footer__links { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .site-footer__bottom { flex-direction: column; }
  .preflight { grid-template-columns: 1fr; }
  .installer-shell { width: calc(100% - 28px); padding-top: 25px; }
  .installer-card { padding: 30px 20px; box-shadow: 6px 6px 0 var(--ink); }
}

@media (max-width: 420px) {
  .wordmark i { display: none; }
  .hero__actions .button { width: 100%; }
  .product-card__cover { min-height: 340px; }
  .site-footer__links { grid-template-columns: 1fr; }
}
