/* ============================================================
   ORIENTIERUNGSLAUF — One-Pager
   Editorial / Magazin · black / white / yellow
   ============================================================ */

:root {
  --black: #0b0b0b;
  --ink: #141414;
  --paper: #f5f3ee;       /* warm off-white (book paper) */
  --paper-2: #efece4;
  --white: #ffffff;
  --yellow: #ffd60a;
  --yellow-deep: #f5c400;
  --cyan: #00d9e8;
  --line: #1a1a1a;
  --line-soft: rgba(11,11,11,.12);
  --muted: #6b6b6b;

  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --sans: "Roboto Condensed", sans-serif;
  --serif: "Roboto Condensed";
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay { transition-delay: .15s; }
@media (prefers-reduced-motion: reduce){
  .reveal { transition: none; opacity:1; transform:none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
}
.nav__mark {
  width: 22px; height: 22px;
  background: var(--black);
  position: relative;
  display: inline-block;
}
.nav__mark::after {
  content:"";
  position:absolute; inset:0;
  background: var(--yellow);
  transform: rotate(45deg) scale(.5);
}
.nav__brandtext { font-family: var(--display); font-size: 16px; letter-spacing: .01em; }
.nav__links {
  display: flex;
  gap: 26px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--black); }
.nav__links a::after {
  content:""; position:absolute; left:0; right:100%; bottom: -2px;
  height: 2px; background: var(--yellow);
  transition: right .25s ease;
}
.nav__links a:hover::after { right: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border: 2px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  position: relative;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--yellow); }
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}
.btn--primary:hover { background: var(--black); color: var(--yellow); box-shadow: 6px 6px 0 var(--yellow); }
.btn--ghost {
  background: transparent;
  color: var(--black);
}
.btn--ghost:hover { background: var(--black); color: var(--white); box-shadow: 6px 6px 0 var(--yellow); }
.btn--small {
  padding: 9px 14px;
  font-size: 12px;
}
.btn--full {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--pad) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-num--light { color: rgba(245,243,238,.55); }
.section-num--muted { color: rgba(11,11,11,.45); }
.section-title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 124px);
  line-height: .92;
  margin: 0;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.section-title--light { color: var(--paper); }
.section-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 620px;
  margin: 6px 0 0;
}
.section-kicker--light { color: rgba(245,243,238,.7); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  display: inline-block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) var(--pad) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: .88;
  letter-spacing: -.03em;
  margin: 14px 0 24px;
  text-transform: none;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: balance;
}
.hero__title .word { display: inline-block; }
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 600px;
  margin: 0 0 36px;
}
.hero__lede em { color: var(--muted); }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin: 0;
  max-width: 540px;
}
.hero__meta div { padding-right: 16px; }
.hero__meta dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero__meta dd {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

/* ---------- Cover stack ---------- */
.hero__cover-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cover-stack {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.cover-stack__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero__cover-wrap:hover .cover-stack__img { transform: scale(1.015); }
.cover-stack__shadow { display: none; }
.cover-stack__sticker {
  position: absolute;
  z-index: 3;
  top: -28px;
  right: -28px;
  width: 132px; height: 132px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  transform: rotate(12deg);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.cover-stack__sticker span:first-child {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}
.cover-stack__sticker span:last-child {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}
.cover-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-inline: auto;
}
.cover-caption__num {
  background: var(--black);
  color: var(--paper);
  padding: 4px 8px;
  font-weight: 500;
}

/* ---------- Marquee bar ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 32px;
  padding: 14px 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero diagonal tape ---------- */
.tape {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}
.tape--hero {
  top: calc(30% - 70px);
  left: -10%;
  right: -10%;
  height: 64px;
  transform: rotate(-6deg);
  z-index: 5;
  opacity: .92;
}
.tape__strip {
  display: flex;
  background: var(--yellow);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  white-space: nowrap;
  animation: tape-slide 35s linear infinite;
  width: max-content;
}
.tape__strip span {
  font-family: var(--display);
  color: var(--black);
  font-size: 32px;
  line-height: 64px;
  letter-spacing: .02em;
  padding: 0 32px;
}
@keyframes tape-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   BOOK SECTION
   ============================================================ */
.book {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.book__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.essay {
  font-family: var(--sans);
  font-size: 1.4rem;
  line-height: 1.7;
  max-width: 640px;
}
.essay p { margin: 0 0 22px; }
.essay em { font-family: var(--serif); font-style: italic; font-size: 1.05em; color: var(--ink); }
.essay__drop { font-size: 22px; line-height: 1.5; }
.dropcap {
  font-family: var(--display);
  float: left;
  font-size: 78px;
  line-height: .85;
  padding: 4px 12px 0 0;
  color: var(--black);
}
.dropcap::first-letter { background: var(--yellow); }

.callouts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.callout {
  border: 2px solid var(--black);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.callout:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--black); }
.callout__num {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.02em;
}
.callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
.callout--yellow {
  background: var(--yellow);
}
.callout--cyan {
  background: var(--cyan);
}
.phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.phase {
  background: var(--black);
  border: 2px solid var(--black);
  color: var(--yellow);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.phase:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--yellow); }
.phase__name {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--yellow);
}
.phase__mode {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: .75;
  margin-bottom: 8px;
}
.phase p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--yellow);
}

/* ---------- Chapters ---------- */
.chapters {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 110px);
}
.chapters__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.chapters__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.chapters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.chapters__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  cursor: default;
  transition: background .2s ease, padding .2s ease;
  position: relative;
}
.chapters__list li::before {
  content:"";
  position:absolute;
  left:0; top:0; bottom:0; width:0;
  background: var(--yellow);
  z-index: 0;
  transition: width .3s ease;
}
.chapters__list li > * { position: relative; z-index: 1; }
.chapters__list li:hover { padding-left: 16px; }
.chapters__list li:hover::before { width: 100%; }
.ch-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--muted);
  padding-top: 6px;
}
.ch-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ch-title {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -.01em;
  line-height: 1.05;
}
.ch-sub {
  font-family: var(--sans);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--muted);
  max-width: 52ch;
}
.ch-page {
  font-family: var(--mono);
  font-size: 13px;
  text-align: right;
  color: var(--muted);
  padding-top: 6px;
}

/* ============================================================
   LESEPROBE (excerpt)
   ============================================================ */
.excerpt {
  background: var(--black);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.excerpt::before,
.excerpt::after {
  content:"";
  position:absolute;
  left:0; right:0;
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 22px,
    var(--black) 22px 44px
  );
}
.excerpt::before { top: 0; }
.excerpt::after { bottom: 0; }

.excerpt .section-head { padding-top: clamp(80px, 9vw, 130px); }
.excerpt__lead {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
}
.excerpt__lead .section-kicker { margin: 0; }
.excerpt__pdf { flex: none; }

.reader {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(90px, 10vw, 140px);
}
.reader__frame {
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  padding: clamp(20px, 3vw, 40px);
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
}
.reader__frame::before {
  content:"";
  position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.reader__book {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  height: clamp(440px, 60vh, 620px);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.reader__book::after {
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(11,11,11,.18), transparent);
  pointer-events: none;
}
.page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  font-family: "Baskervville", Georgia, "Times New Roman", serif;
  padding: clamp(36px, 5vw, 64px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.page.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.page.is-leaving {
  opacity: 0;
  transform: translateX(-40px);
}
.page__head, .page__foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.page__head { margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.page__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  justify-content: center;
}
.page__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -.01em;
}
.page__lede {
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  margin: 0 0 22px;
}
.page p { margin: 0 0 18px; max-width: 56ch; }
.page em { font-style: italic; color: var(--ink); }
.page__pull {
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  padding: 18px 0 18px 22px;
  margin: 12px 0 24px !important;
  border-left: 4px solid var(--yellow);
  max-width: 50ch;
}
.page__hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: auto !important;
}

.reader__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0 0;
  color: var(--paper);
}
.reader__btn {
  background: transparent;
  border: 1.5px solid rgba(245,243,238,.4);
  color: var(--paper);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s ease;
}
.reader__btn:hover { border-color: var(--yellow); color: var(--yellow); }
.reader__btn--primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.reader__btn--primary:hover { background: var(--paper); border-color: var(--paper); color: var(--black); }
.reader__btn:disabled { opacity: .3; cursor: not-allowed; }
.reader__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#pageLabel {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,243,238,.7);
}
.reader__bar {
  height: 2px;
  background: rgba(245,243,238,.15);
  position: relative;
}
.reader__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: var(--yellow);
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   AUTHOR
   ============================================================ */
.author {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.author__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.author__portrait {
  position: relative;
  max-width: 402px;
}
.author__photo {
  display: block;
  width: 100%;
  max-height: 600px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--black);
}
.portrait-placeholder {
  aspect-ratio: 4/5;
  width: 100%;
  background: 
    repeating-linear-gradient(135deg, rgba(11,11,11,.04) 0 14px, rgba(11,11,11,.07) 14px 28px);
  border: 2px solid var(--black);
  display: grid;
  place-items: center;
  position: relative;
}
.portrait-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.portrait-placeholder__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--paper);
  padding: 5px 10px;
}
.portrait-placeholder__name {
  font-family: var(--display);
  font-size: 20px;
}
.tape--small {
  position: absolute;
  left: -20px; right: -20px;
  bottom: 36px;
  height: 44px;
  transform: rotate(-4deg);
  z-index: 3;
  overflow: hidden;
}
.tape__strip--small span {
  font-size: 22px;
  line-height: 44px;
}

.author__copy { padding-top: 8px; }
.author__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  margin: 0 0 36px;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--yellow);
  max-width: 600px;
}
.author__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 0 0 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.author__facts dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.author__facts dd {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}
.author__bio {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
}
.author__bio em { font-family: var(--serif); font-style: italic; }

/* ============================================================
   PRESS
   ============================================================ */
.press {
  background: var(--black);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) var(--pad);
}
.press__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.press__quote {
  margin: 0;
  padding: 32px clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(245,243,238,.15);
}
.press__quote:last-child { border-right: none; }
.press__quote blockquote {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.press__quote blockquote em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.press__quote figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,243,238,.6);
}

/* ============================================================
   ORDER
   ============================================================ */
.order {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.order__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.card {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--black); }
.card--featured { background: var(--yellow); border-color: var(--black); }
.card--featured:hover { box-shadow: 8px 8px 0 var(--black); }
.card__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card__tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--paper);
  padding: 4px 10px;
}
.card h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 0;
  letter-spacing: -.01em;
}
.card__price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card__amount {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -.02em;
}
.card__amount small {
  font-size: 24px;
  vertical-align: top;
}
.card__detail {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.card--featured .card__detail { color: rgba(11,11,11,.7); }
.card__list, .card__retailers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card__list li {
  font-size: 14px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}
.card__list li::before {
  content:"→";
  position:absolute;
  left:0;
  font-weight: 700;
}
.card__retailers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: padding .2s ease;
}
.card__retailers li:hover { padding-left: 8px; }
.card__retailers li:last-child { border-bottom: none; }
.card__arrow { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--paper);
  position: relative;
}
.tape--footer {
  position: relative;
  top:auto; left:auto; right:auto;
  height: 44px;
  transform: none;
  overflow: hidden;
}
.tape--footer .tape__strip span { font-size: 22px; line-height: 44px; }

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(50px, 6vw, 80px) var(--pad) 32px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
}
.footer__brand .nav__mark { background: var(--paper); }
.footer__brand .nav__mark::after { background: var(--yellow); }
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer__cols h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer__cols p, .footer__cols li {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,243,238,.75);
  margin: 0 0 10px;
}
.footer__cols ul { list-style:none; padding:0; margin:0; }
.footer__cols a { text-decoration: none; transition: color .2s ease; }
.footer__cols a:hover { color: var(--yellow); }

.footer__form {
  display: flex;
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(245,243,238,.25);
}
.footer__form input {
  background: transparent;
  border: none;
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  flex: 1;
  outline: none;
}
.footer__form input::placeholder { color: rgba(245,243,238,.4); }
.footer__form button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease;
}
.footer__form button:hover { background: var(--paper); }

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad);
  border-top: 1px solid rgba(245,243,238,.15);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,243,238,.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .book__grid { grid-template-columns: 1fr; }
  .author__grid { grid-template-columns: 1fr; }
  .order__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr; }
  .press__grid { grid-template-columns: 1fr; }
  .press__quote { border-right: none; border-bottom: 1px solid rgba(245,243,238,.15); }
  .chapters__list li { grid-template-columns: 50px 1fr 60px; gap: 14px; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 12px 0; }
}
/* ---------- Handwritten accent (Reenie Beanie) ---------- */
.section-title em,
.section-kicker,
.hero__lede,
.essay em,
.author__quote,
.author__bio em,
.press__quote blockquote em,
.page {
  letter-spacing: -0.01em;
}
.section-title em,
.section-kicker,
.hero__lede,
.essay em,
.author__quote,
.author__bio em,
.press__quote blockquote em {
  font-family: var(--display);
  text-transform: uppercase;
  font-style: normal;
  color: var(--yellow-deep);
}
.section-kicker { font-size: clamp(22px, 2vw, 28px); line-height: 1.05; }
.hero__lede { font-size: clamp(24px, 2.2vw, 32px); line-height: 1.06; }
.essay em { font-size: 1.4em; }
.author__bio em { font-size: 1.08em; }
.author__quote { font-size: clamp(28px, 3vw, 44px); line-height: 1; }

@media (max-width: 560px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .cover-stack__sticker { width: 96px; height: 96px; top: -16px; right: -8px; }
  .cover-stack__sticker span:first-child { font-size: 20px; }
  .reader__controls { grid-template-columns: 1fr 1fr; }
  .reader__progress { grid-column: 1 / -1; order: -1; }
  .hero__meta { grid-template-columns: 1fr; }
}
