:root {
  --amber-deep: #c9610a;
  --amber-mid: #e8820a;
  --amber-light: #f5a623;
  --amber-panel: rgba(15, 11, 8, 0.15);
  --amber-panel-border: rgba(15, 11, 8, 0.2);
  --ink: #0f0b08;
  --cream: #fdf3e3;
  --body-font: "Inter", system-ui, sans-serif;
  --display-font: "Playfair Display", Georgia, serif;
  --site-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--amber-mid);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
}

img,
video {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--amber-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 11, 8, 0.4);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 11, 8, 0.7);
}

.site-wrap {
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.site-wrap > main {
  flex: 1 0 auto;
}

.orange-page {
  background: var(--amber-mid);
}

.deep-page {
  background: var(--amber-deep);
}

.container {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
}

.grain {
  position: relative;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--ink);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  background: rgba(201, 97, 10, 0.94);
  border-bottom: 1px solid rgba(15, 11, 8, 0.22);
  box-shadow: 0 8px 22px rgba(15, 11, 8, 0.12);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(var(--site-width), calc(100% - 48px));
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
}

.brand em {
  font-style: italic;
  color: rgba(15, 11, 8, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: right 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  padding: 96px 28px 28px;
  background: rgba(201, 97, 10, 0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  width: fit-content;
  padding: 8px 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 11vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--amber-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-base,
.hero-media img,
.hero-media video,
.hero-fade,
.hero-bottom-fade {
  position: absolute;
  inset: 0;
}

.hero-base {
  background: linear-gradient(135deg, #c9610a 0%, #e8820a 40%, #f5a623 70%, #e8820a 100%);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  opacity: 0.5;
  transition: opacity 260ms ease;
}

.hero-media img.is-hidden {
  opacity: 0;
}

.hero-media video {
  opacity: 0.56;
}

.hero-fade {
  background: linear-gradient(90deg, rgba(232, 130, 10, 0.78) 0%, rgba(232, 130, 10, 0.34) 55%, rgba(15, 11, 8, 0.14) 100%);
}

.hero-bottom-fade {
  top: auto;
  height: 210px;
  background: linear-gradient(to bottom, transparent, var(--amber-deep));
}

.hero-content {
  position: relative;
  z-index: 8;
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
  padding: 118px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: center;
  gap: 64px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(15, 11, 8, 0.2);
  background: rgba(15, 11, 8, 0.12);
  color: rgba(15, 11, 8, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.pill-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--ink);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  margin: 28px 0 24px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(4.1rem, 8vw, 6.25rem);
  font-weight: 800;
  line-height: 0.94;
}

.hero-title em {
  font-style: italic;
}

.brush-word {
  position: relative;
  display: inline-block;
}

.brush-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 7px;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,8 Q50,2 100,7 Q150,12 200,5' stroke='%230F0B08' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-text,
.page-lede,
.body-copy {
  color: rgba(15, 11, 8, 0.7);
}

.hero-text {
  max-width: 330px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 23px;
  overflow: hidden;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(15, 11, 8, 0.33);
}

.btn-secondary {
  border: 1.5px solid rgba(15, 11, 8, 0.3);
  background: rgba(15, 11, 8, 0.12);
  color: var(--ink);
}

.btn-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 13px;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: translateX(-110%);
  animation: shimmer-sweep 2.6s linear infinite;
}

.hero-book {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 380px;
}

.book-stage {
  position: relative;
  width: fit-content;
}

.book-mockup {
  position: relative;
  z-index: 1;
  width: 330px;
  max-width: min(45vw, 100%);
  filter: drop-shadow(-14px 22px 24px rgba(0, 0, 0, 0.28));
  transition: transform 650ms cubic-bezier(0.23, 1, 0.32, 1);
}

.book-mockup.home-mockup {
  width: 350px;
  margin-top: 68px;
  top: 58px;
}

.book-mockup.catalog-mockup {
  width: 430px;
}

.book-mockup:hover {
  transform: scale(1.025) translateY(-2px);
}

.book-mockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.stage-shadow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 210px;
  height: 50px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(15, 11, 8, 0.34);
  filter: blur(22px);
}

.book {
  --book-w: 240px;
  --book-h: 340px;
  --book-spine: 26px;
  position: relative;
  width: var(--book-w);
  height: var(--book-h);
  perspective: 1000px;
}

.book.small {
  --book-w: 160px;
  --book-h: 230px;
  --book-spine: 18px;
}

.book-inner {
  position: relative;
  width: var(--book-w);
  height: var(--book-h);
  transform: rotateY(-22deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.23, 1, 0.32, 1);
}

.book:hover .book-inner {
  transform: rotateY(-6deg) rotateX(1deg);
}

.book-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--book-spine);
  height: var(--book-h);
  transform: translateX(calc(var(--book-spine) * -1)) rotateY(-90deg);
  transform-origin: right center;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, #e8520a 0%, #c44008 100%);
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.25);
}

.book-pages {
  position: absolute;
  top: 4px;
  right: -8px;
  bottom: 4px;
  width: 10px;
  transform: rotateY(90deg);
  transform-origin: left center;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #f5f0e8, #ede5d0);
}

.book-cover {
  position: relative;
  width: var(--book-w);
  height: var(--book-h);
  overflow: hidden;
  border-radius: 6px;
  box-shadow: -6px 10px 30px rgba(0, 0, 0, 0.3), -2px 2px 6px rgba(0, 0, 0, 0.15);
}

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

.book-cover::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 20px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
}

.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.book-floor-shadow {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -16px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
  filter: blur(6px);
}

.float {
  animation: gentle-float 6s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  width: 20px;
  height: 36px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  transform: translateX(-50%);
  border: 2px solid rgba(15, 11, 8, 0.3);
  border-radius: 999px;
  animation: cue-bob 2s ease-in-out infinite;
}

.scroll-cue::after {
  content: "";
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 11, 8, 0.42);
}

.home-card-band {
  position: relative;
  z-index: 6;
  background: var(--amber-deep);
}

.home-cards {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
  padding: 22px 0 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-card {
  position: relative;
  min-height: 206px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
  border-radius: 16px;
  border: 1.5px solid rgba(15, 11, 8, 0.2);
  background: rgba(15, 11, 8, 0.18);
  color: var(--cream);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, background 220ms ease;
}

.home-card:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(253, 243, 227, 0.08);
}

.home-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(253, 243, 227, 0.4), transparent);
  transition: opacity 220ms ease;
}

.home-card:hover::before {
  opacity: 1;
}

.icon-tile {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(253, 243, 227, 0.12);
}

.home-card h2 {
  margin: 0 0 8px;
  color: var(--cream);
  font-family: var(--display-font);
  font-size: 21px;
  line-height: 1.15;
}

.home-card p {
  margin: 0;
  color: rgba(253, 243, 227, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.home-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: rgba(253, 243, 227, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.home-card:hover .card-cta svg {
  transform: translateX(3px);
}

.home-card .card-cta svg {
  transition: transform 180ms ease;
}

.page-main {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
  padding: 118px 0 84px;
}

.narrow-main {
  width: min(760px, calc(100% - 48px));
}

.medium-main {
  width: min(900px, calc(100% - 48px));
}

.page-header {
  margin-bottom: 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  color: rgba(15, 11, 8, 0.5);
  font-size: 14px;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--ink);
}

.page-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(2.9rem, 6vw, 4.5rem);
  line-height: 1.04;
}

.page-lede {
  max-width: 650px;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.panel {
  border: 1.5px solid var(--amber-panel-border);
  border-radius: 16px;
  background: var(--amber-panel);
  backdrop-filter: blur(8px);
}

.catalog-panel {
  padding: clamp(28px, 5vw, 52px);
  margin-bottom: 30px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 80px);
}

.catalog-visual {
  display: flex;
  justify-content: center;
}

.book-info {
  padding-top: 6px;
}

.book-info h2,
.update-card h2,
.publisher-card h2,
.publisher-card h3,
.upcoming h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
}

.book-info h2 {
  max-width: 530px;
  margin: 14px 0 4px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.byline {
  margin: 0 0 28px;
  color: rgba(15, 11, 8, 0.5);
  font-size: 14px;
}

.book-summary {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(15, 11, 8, 0.72);
  line-height: 1.7;
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin: 0 0 28px;
}

.meta-label {
  margin: 0 0 3px;
  color: rgba(15, 11, 8, 0.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.meta-value {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.retailers {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(15, 11, 8, 0.15);
}

.retailers h3 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: 24px;
}

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

.retailer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 11, 8, 0.15);
  border-radius: 12px;
  background: rgba(15, 11, 8, 0.1);
  overflow: hidden;
}

.retailer-live {
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.retailer-live:hover,
.retailer-live:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 11, 8, 0.28);
  background: rgba(15, 11, 8, 0.13);
}

.retailer-live .icon-sm {
  color: var(--ink);
}

.retailer strong {
  display: block;
  margin-bottom: 1px;
  color: var(--ink);
  font-size: 14px;
}

.retailer span,
.retailer-note,
.quiet-note {
  color: rgba(15, 11, 8, 0.45);
  font-size: 12px;
}

.retailer-note {
  margin: 16px 0 0;
}

.upcoming {
  padding: 28px;
}

.upcoming h2 {
  margin-bottom: 7px;
  font-size: 24px;
}

.upcoming p {
  margin: 0;
  color: rgba(15, 11, 8, 0.55);
  font-size: 14px;
}

.update-card {
  padding: clamp(28px, 4vw, 36px);
  margin-bottom: 38px;
}

.update-card h2 {
  margin: 18px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.16;
}

.update-card p {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(15, 11, 8, 0.72);
  line-height: 1.75;
}

.center-note {
  text-align: center;
  color: rgba(15, 11, 8, 0.42);
  font-size: 14px;
}

.publisher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.publisher-card {
  padding: 30px;
}

.publisher-card.wide {
  grid-column: 1 / -1;
}

.publisher-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.publisher-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.publisher-card p {
  margin: 0 0 14px;
  color: rgba(15, 11, 8, 0.72);
  line-height: 1.7;
}

.publisher-card a:not(.btn) {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(15, 11, 8, 0.66);
  font-size: 14px;
}

.contact-feedback {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(15, 11, 8, 0.62);
}

.mascot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.mascot-card img {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(15, 11, 8, 0.2);
}

.mascot-card blockquote {
  margin: 0;
  color: rgba(15, 11, 8, 0.66);
  font-family: var(--display-font);
  font-size: 20px;
  font-style: italic;
}

.signup-panel {
  padding: clamp(28px, 5vw, 42px);
}

.signup-panel p {
  margin: 0 0 28px;
  color: rgba(15, 11, 8, 0.72);
  line-height: 1.75;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(15, 11, 8, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(15, 11, 8, 0.25);
  border-radius: 12px;
  outline: 0;
  background: rgba(15, 11, 8, 0.12);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field input::placeholder {
  color: rgba(15, 11, 8, 0.38);
}

.form-field input:focus {
  border-color: rgba(15, 11, 8, 0.55);
  background: rgba(253, 243, 227, 0.08);
}

.form-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
}

.fine-print {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(15, 11, 8, 0.42);
  font-size: 12px;
}

.fine-print a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.popup-fine-print .popup-privacy-link {
  display: block;
  width: fit-content;
  margin: 7px auto 0;
  padding-left: 12px;
}

.success-box {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 0;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 11, 8, 0.12);
}

.success-box h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 28px;
}

.success-box p {
  max-width: 360px;
  margin: 0;
  color: rgba(15, 11, 8, 0.64);
}

.reader-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 11, 8, 0.58);
  backdrop-filter: blur(10px);
}

.reader-popup[hidden] {
  display: none;
}

.reader-popup-open {
  overflow: hidden;
}

.reader-popup-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 32px;
  border: 1.5px solid rgba(15, 11, 8, 0.24);
  border-radius: 18px;
  background: #e8820a;
  box-shadow: 0 24px 70px rgba(15, 11, 8, 0.42);
  text-align: center;
}

.reader-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 11, 8, 0.12);
  color: var(--ink);
}

.reader-popup-mascot {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(15, 11, 8, 0.14);
}

.reader-popup-kicker {
  margin: 0 0 8px;
  color: rgba(15, 11, 8, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.reader-popup h2 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  font-size: 30px;
  line-height: 1.05;
}

.reader-popup-copy {
  margin: 0 auto 22px;
  color: rgba(15, 11, 8, 0.68);
  line-height: 1.65;
}

.not-found {
  min-height: calc(100vh - 320px);
  display: grid;
  place-items: center;
  padding: 140px 24px 80px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: rgba(15, 11, 8, 0.22);
  font-family: var(--display-font);
  font-size: 96px;
  line-height: 1;
}

.not-found h2 {
  margin: 12px 0 8px;
  font-family: var(--display-font);
  font-size: 36px;
}

.not-found p {
  max-width: 440px;
  margin: 0 auto 24px;
  color: rgba(15, 11, 8, 0.62);
}

.site-footer {
  position: relative;
  z-index: 6;
  margin-top: auto;
  background: var(--ink);
  color: var(--cream);
}

.footer-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
  padding: 54px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 52px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--display-font);
  font-weight: 800;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
}

.footer-brand em {
  color: var(--amber-light);
}

.footer-copy,
.footer-bottom p,
.footer-links a,
.footer-contact a {
  color: rgba(253, 243, 227, 0.55);
}

.footer-copy {
  max-width: 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 16px;
  color: rgba(253, 243, 227, 0.36);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cream);
}

.footer-links a:hover {
  transform: translateX(3px);
}

.footer-contact .btn {
  margin-top: 20px;
  background: var(--amber-mid);
  color: var(--ink);
  box-shadow: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(253, 243, 227, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.privacy-link {
  margin-left: 10px;
  color: rgba(253, 243, 227, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-link:hover {
  color: var(--cream);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.eye-glow {
  animation: eye-glow 3s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-up 650ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 360ms;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(1deg);
  }
  66% {
    transform: translateY(-6px) rotate(-0.5deg);
  }
}

@keyframes cue-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

@keyframes shimmer-sweep {
  to {
    transform: translateX(200%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes eye-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 4px #f5c518);
  }
  50% {
    filter: drop-shadow(0 0 16px #f5c518) drop-shadow(0 0 30px rgba(245, 197, 24, 0.6));
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .hero-book {
    justify-content: center;
    min-height: 320px;
  }

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

  .catalog-grid,
  .publisher-grid {
    grid-template-columns: 1fr;
  }

  .publisher-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-inner,
  .hero-content,
  .home-cards,
  .page-main,
  .narrow-main,
  .medium-main,
  .footer-inner {
    width: min(100% - 32px, var(--site-width));
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .brand {
    font-size: 17px;
  }

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

  .hero {
    min-height: 880px;
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 96px;
  }

  .hero-title {
    font-size: clamp(4rem, 20vw, 5rem);
  }

  .actions {
    align-items: stretch;
  }

  .btn {
    flex: 1 1 180px;
  }

  .book {
    --book-w: 200px;
    --book-h: 284px;
    --book-spine: 22px;
  }

  .book-mockup,
  .book-mockup.home-mockup,
  .book-mockup.catalog-mockup {
    width: min(330px, 78vw);
    margin-top: 22px;
    top: 0;
  }

  .home-cards,
  .retailer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-cards {
    padding-bottom: 64px;
  }

  .page-main {
    padding-top: 104px;
    padding-bottom: 62px;
  }

  .catalog-panel,
  .publisher-card,
  .update-card,
  .signup-panel,
  .upcoming {
    border-radius: 14px;
  }

  .catalog-visual {
    justify-content: center;
  }

  .book-meta {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .scroll-cue {
    width: 34px;
    height: 34px;
    padding-top: 0;
    align-items: center;
    border: 0;
  }

  .scroll-cue::after {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(15, 11, 8, 0.48);
    border-bottom: 2px solid rgba(15, 11, 8, 0.48);
    border-radius: 0;
    background: transparent;
    transform: rotate(45deg);
  }

  .reader-popup-panel {
    padding: 28px 22px;
  }
}

@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;
  }
}
