/* =========================================================
   GotchaBooks.org — sales engine, editorial elegant
   Cream / ink / oxblood · Newsreader + Source Serif 4
   ========================================================= */

:root {
  --paper:        #f7f3eb;
  --paper-2:      #efe8d8;
  --paper-3:      #faf6ee;
  --rule:         #e2dccb;
  --rule-2:       #ebe5d4;
  --ink:          #181513;
  --ink-2:        #2c2925;
  --muted:        #6e665a;
  --muted-2:      #948a7a;
  --oxblood:      #6f1a1f;
  --oxblood-2:    #56131a;
  --oxblood-3:    #8a2730;

  --maxw:    1480px;
  --reading:  640px;
  --column:   720px;

  /* Fluid spacing — scales with viewport so layout breathes on big screens
     and tightens on small ones without stepping at hard breakpoints. */
  --gutter:        clamp(22px, 4vw, 56px);
  --section-y:     clamp(80px, 11vw, 160px);
  --section-y-sm:  clamp(60px, 7vw, 90px);

  --ff-display: "Newsreader", Georgia, "Times New Roman", serif;
  --ff-body:    "Source Serif 4", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--ink); color: var(--paper); }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color .35s ease, opacity .35s ease;
}
a:hover { color: var(--oxblood); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1.1em; }
ul { padding: 0; margin: 0; list-style: none; }

/* ---------- Layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.column  { max-width: var(--column);  margin: 0 auto; }
.reading { max-width: var(--reading); margin: 0 auto; }
.bleed   { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* ---------- Typographic primitives ---------- */
.overline {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 30px;
}
.dek {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink-2);
  font-style: italic;
  letter-spacing: -0.005em;
}
.kicker {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0 0 18px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: clamp(16px, 2vw, 24px) var(--gutter);
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.wordmark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.wordmark::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("img/sherlock.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  transition: opacity .25s ease;
}
.wordmark::after { display: none; }
.wordmark:hover { color: var(--oxblood); }
.wordmark:hover::before { opacity: 0.7; }

.primary-nav {
  display: flex;
  gap: 38px;
  justify-self: end;
  grid-column: 3;
}
.primary-nav a {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-bottom: 4px;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }
.primary-nav a:hover, .primary-nav a.active { color: var(--oxblood); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, transform .3s ease, border-color .3s ease;
  background-image: none;
}
.btn:hover { background: var(--oxblood); border-color: var(--oxblood); color: var(--paper); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-quiet:hover { background: transparent; color: var(--oxblood); border-color: var(--oxblood); transform: translateY(-1px); }
.sample-chev { transition: transform .35s ease; }
.sample-toggle[open] .sample-chev { transform: rotate(180deg); }

/* ---------- Sample Chapter 1 dropdown ---------- */
.sample-toggle {
  position: relative;
  display: inline-block;
}
.sample-toggle summary {
  list-style: none;
  cursor: pointer;
}
.sample-toggle summary::-webkit-details-marker { display: none; }
.sample-options {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 30;
  min-width: 320px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 1px 1px rgba(20,18,15,.06), 0 22px 50px rgba(20,18,15,.18);
  animation: sample-pop .25s cubic-bezier(.16,1,.3,1);
}
@keyframes sample-pop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sample-opt {
  display: block;
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  background: transparent;
  transition: background .25s ease, color .25s ease;
}
.sample-opt:last-child { border-bottom: 0; }
.sample-opt:hover { background: var(--paper-2); color: var(--oxblood); }
.sample-opt-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sample-opt-meta {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
}
.sample-opt-desc {
  display: block;
  margin-top: 4px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}
.link-arrow svg { transition: transform .3s ease; }
.link-arrow:hover { color: var(--oxblood-2); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============== TITLE BANNER (full width, between header and hero) ============== */
.title-banner {
  padding: clamp(48px, 7vw, 110px) 0 clamp(20px, 3vw, 40px);
  text-align: center;
}
.title-banner .book-title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  margin: 0;
}

/* ============== HERO (sales) ============== */
.hero-sales {
  padding: clamp(40px, 5vw, 80px) 0 var(--section-y);
  position: relative;
}
.hero-sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.hero-text { max-width: 540px; }
.hero-rating {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-rating .stars { color: var(--oxblood); letter-spacing: 0.18em; }
.hero-rating em { font-style: normal; color: var(--ink-2); }

.book-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 24px;
}
.book-title em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 400;
}
.book-tagline {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 460px;
}
.book-byline {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 40px;
}
.book-byline strong { color: var(--ink); font-weight: 600; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-formats {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-formats a {
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .3s ease, color .3s ease;
}
.hero-formats a:hover { color: var(--oxblood); border-bottom-color: var(--oxblood); }
.hero-formats .sep { margin: 0 12px; color: var(--rule); }

/* Cover staging */
.hero-cover-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-cover {
  position: relative;
  max-width: 560px;
  width: 100%;
}
.hero-cover img {
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 4px 14px rgba(20,18,15,.08),
    0 28px 60px rgba(20,18,15,.16);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.hero-cover:hover img { transform: translateY(-4px); }

/* ============== Press strip (quiet) ============== */
.press-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
  background: var(--paper-3);
}
.press-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.press-strip-label {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}
.press-strip-logos {
  display: flex;
  gap: 38px;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
}
.press-strip-logos li {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.press-strip-logos em { color: var(--oxblood); font-style: italic; }

/* ============== Generic section ============== */
.section { padding: var(--section-y) 0; }
.section.tight { padding: var(--section-y-sm) 0; }

/* ============== Featured video ============== */
.video-feature {
  padding: var(--section-y) 0;
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.video-feature-head {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 700px;
}
.video-feature h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.video-feature h2 em { font-style: italic; color: var(--oxblood); }
.video-frame {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 1px rgba(20,18,15,.12),
    0 14px 32px rgba(20,18,15,.18),
    0 40px 80px rgba(20,18,15,.22);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-feature-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============== Reviews ============== */
.reviews {
  padding: var(--section-y) 0;
}
.reviews-head {
  text-align: center;
  margin: 0 auto 70px;
  max-width: 720px;
}
.reviews-head .stars {
  color: var(--oxblood);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.reviews-head h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 16px;
}
.reviews-head .meta {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-list {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}
.reviews-list .review {
  margin: 0;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.reviews-list .review .stars {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--oxblood);
}
.reviews-list blockquote {
  margin: 0 0 16px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.reviews-list figcaption {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-cta { text-align: center; margin-top: 50px; }

/* ============== Email capture ============== */
.email-capture {
  /* Custom inner buffer for this section — wider than the global gutter so
     the text and handprint each get more breathing room from the viewport
     edge. Used by both .shell padding override and ::before right offset. */
  --email-buffer: clamp(32px, 14vw, 260px);
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.email-capture > .shell {
  padding-left: var(--email-buffer);
  padding-right: var(--email-buffer);
}
.email-capture::before {
  content: "";
  position: absolute;
  /* Mirror the left text buffer exactly so the section reads as
     symmetric: text-left edge and handprint-right edge each have the
     same distance from the viewport edge. */
  right: var(--email-buffer);
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 380px;
  max-width: 40vw;
  max-height: 90%;
  background-image: url("img/logo-bloody.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 1080px) {
  .email-capture::before { display: none; }
}
.email-capture-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.email-capture .kicker { color: var(--paper-2); }
.email-capture h2 {
  color: var(--paper);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.email-capture h2 em { font-style: italic; color: var(--paper-2); }
.email-capture p {
  color: var(--paper-2);
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}
.email-form {
  display: flex;
  gap: 0;
  max-width: 540px;
  border-bottom: 1px solid var(--paper-2);
  padding-bottom: 14px;
  align-items: baseline;
}
.email-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-family: var(--ff-body);
  font-size: 18px;
  padding: 14px 0;
}
.email-form input[type="email"]::placeholder { color: var(--muted-2); font-style: italic; }
.email-form input[type="email"]:focus { outline: none; }
.email-form button {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: transparent;
  color: var(--paper);
  border: 0;
  padding: 14px 0 14px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .3s ease;
}
.email-form button:hover { color: var(--paper-2); }
.email-form button .arrow { display: inline-block; margin-left: 10px; transition: transform .3s ease; }
.email-form button:hover .arrow { transform: translateX(4px); }
.email-tiny {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
}

/* ============== About teaser ============== */
.about-teaser { padding: var(--section-y) 0; }
.about-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-teaser-photo {
  max-width: 440px;
  margin: 0 auto;
}
.about-teaser-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px;
  filter: contrast(1.04) brightness(1.01);
}
.about-teaser h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 28px;
  max-width: 540px;
}
.about-teaser h2 em { font-style: italic; color: var(--oxblood); }
.about-teaser p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 540px;
}
.about-teaser p strong { color: var(--ink); font-weight: 600; }
.about-teaser .credits {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 28px;
  margin-bottom: 36px;
}
.about-teaser .credits em { color: var(--oxblood); font-style: italic; }

/* ============== Video grid ============== */
.video-grid-section {
  padding: var(--section-y) 0;
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.video-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 18px;
}
.video-grid-head h2 {
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: -0.018em;
  margin: 0;
}
.video-grid-head h2 em { font-style: italic; color: var(--oxblood); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
}
.video-card {
  display: block;
  background: none;
  color: var(--ink);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.video-card:hover { transform: translateY(-4px); color: var(--ink); }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 18px;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(247, 243, 235, 0.94);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}
.video-thumb::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-30%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--ink);
  z-index: 1;
  transition: border-left-color .3s ease;
}
.video-card:hover .video-thumb::after { transform: translate(-50%, -50%) scale(1.08); background: var(--paper); }
.video-card-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.008em;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

/* ============== Final CTA ============== */
.final-cta {
  padding: var(--section-y) 0;
  text-align: center;
}
.final-cta h2 {
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 0 auto 26px;
  max-width: 880px;
}
.final-cta h2 em { font-style: italic; color: var(--oxblood); }
.final-cta p {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-2);
  margin: 0 auto 44px;
  max-width: 580px;
}
.final-cta .btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============== Long form (about page) ============== */
.long-form {
  font-size: 19px;
  line-height: 1.85;
  color: var(--ink-2);
}
.long-form p { margin: 0 0 1.5em; }
.long-form h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin: 2.5em 0 .8em;
  letter-spacing: -0.016em;
  color: var(--ink);
}
.long-form strong { font-weight: 600; color: var(--ink); }
.long-form em { font-style: italic; }
.long-form a {
  color: var(--ink);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 1px;
}
.long-form a:hover { color: var(--oxblood); }

.dropcap::first-letter {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 5.6em;
  float: left;
  line-height: 0.85;
  margin: 0.06em 0.08em -0.05em 0;
  color: var(--oxblood);
}

.pullquote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.32;
  color: var(--ink);
  border-left: 2px solid var(--oxblood);
  padding: 8px 0 8px 32px;
  margin: 50px 0;
  letter-spacing: -0.01em;
}
.pullquote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============== Page intro (about/press/contact) ============== */
.page-intro {
  padding: var(--section-y) 0 clamp(36px, 4vw, 60px);
  text-align: center;
}
.page-intro h1 {
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  letter-spacing: -0.026em;
  line-height: 1.0;
  max-width: 880px;
  margin: 0 auto 26px;
}
.page-intro h1 em { font-style: italic; color: var(--oxblood); }
.page-intro .dek { max-width: 660px; margin: 0 auto; }

/* ============== About page portrait + body figures ============== */
.about-portrait {
  margin: 30px auto 60px;
  max-width: 440px;
  padding: 0 28px;
}
.about-portrait img {
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 4px 14px rgba(20,18,15,.08),
    0 24px 52px rgba(20,18,15,.14);
}

.bio-figure {
  margin: 50px auto;
  max-width: 380px;
}
.bio-figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 4px 14px rgba(20,18,15,.08),
    0 22px 48px rgba(20,18,15,.14);
}
.bio-figure figcaption {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ============== About page bio grid ============== */
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 90px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 0 130px;
}
.bio-grid .col-text { max-width: 640px; }
.bio-grid aside {
  position: sticky;
  top: 120px;
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.bio-grid aside h3 {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}
.bio-grid aside dl { margin: 0; }
.bio-grid aside dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.bio-grid aside dt {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.bio-grid aside dd { margin: 0; font-size: 15px; color: var(--ink-2); }
.bio-grid aside dd a { color: var(--ink-2); }

/* ============== Buy page hero ============== */
.buy-hero {
  margin: 30px auto 60px;
  max-width: 980px;
  padding: 0 var(--gutter);
}

/* Buy page content wrapper: wider than .reading so card grids can breathe.
   Still capped so single-line foot text doesn't sprawl. */
.buy-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.buy-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 4px 14px rgba(20,18,15,.06),
    0 28px 60px rgba(20,18,15,.12);
}

/* ============== Format cards (Quick Buy) ============== */
.format-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0 28px;
}
.format-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 30px 26px 28px;
  color: var(--ink);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
  background-image: none;
  position: relative;
  min-height: 280px;
}
.format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(20,18,15,.10), 0 4px 12px rgba(20,18,15,.05);
  border-color: var(--ink);
  color: var(--ink);
}
.format-card-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.format-card-featured:hover { background: var(--oxblood); border-color: var(--oxblood); color: var(--paper); }
.format-card-featured .format-card-name,
.format-card-featured .format-card-desc,
.format-card-featured .format-card-cta { color: var(--paper); border-color: var(--paper); }
.format-card-featured .format-icon { color: var(--paper-2); }
.format-card-featured .format-card-tag { color: var(--paper-2); }

.format-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.format-card-featured .format-card-top { border-bottom-color: rgba(245, 241, 232, 0.18); }
.format-icon {
  width: 32px; height: 32px;
  color: var(--oxblood);
}
.format-card-tag {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.format-card-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.014em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.05;
}
.format-card-desc {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  flex: 1;
  margin: 0 0 24px;
}
.format-card-cta {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: transform .25s ease;
}
.format-card:hover .format-card-cta { transform: translateX(4px); }
.format-cards-foot {
  text-align: center;
  margin: 0 0 60px;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}
.format-cards-foot a {
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 1px;
}

.format-cards-three { grid-template-columns: repeat(3, 1fr); }

/* Language card variant — typographic mark instead of icon */
.lang-mark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--oxblood);
}
.lang-card .format-card-name em { font-style: italic; color: var(--ink); }
.lang-card-active {
  border-color: var(--ink);
  background: var(--paper-2);
}
.lang-card-active .format-card-tag::after {
  content: "  · current";
  color: var(--oxblood);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .format-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .format-cards-three { grid-template-columns: repeat(3, 1fr); }
  .format-card { min-height: 240px; padding: 26px 22px 24px; }
}
@media (max-width: 720px) {
  .format-cards-three { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .format-cards { grid-template-columns: 1fr; }
}

/* ============== Retail cards (small uniform retailer grid) ============== */
.retail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0 0;
}
.retail-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--ink);
  background-image: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
}
.retail-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(20,18,15,.06);
  color: var(--ink);
}
.retail-card-name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.retail-card-region {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .25s ease;
}
.retail-card:hover .retail-card-region { color: var(--oxblood); }

/* Coming-soon variant — muted, non-interactive */
.retail-card-soon {
  cursor: default;
  background: transparent;
  border-color: var(--rule);
  border-style: dashed;
  opacity: 0.7;
}
.retail-card-soon:hover {
  transform: none;
  border-color: var(--rule);
  background: transparent;
  box-shadow: none;
}
.retail-card-soon .retail-card-name { color: var(--muted); font-weight: 400; font-style: italic; }
.retail-card-soon .retail-card-region { color: var(--muted-2); }
.retail-card-soon:hover .retail-card-region { color: var(--muted-2); }

@media (max-width: 1080px) {
  .retail-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .retail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .retail-grid { grid-template-columns: 1fr; }
}

/* ============== Buy page sections ============== */
.buy-section {
  margin: 0 0 80px;
}
.buy-section:last-of-type { margin-bottom: 60px; }
.buy-section .kicker { text-align: left; }
.buy-section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--ink);
}
.buy-foot {
  margin: 50px 0 130px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-size: 16px;
}
.buy-foot a { color: var(--oxblood); border-bottom: 1px solid var(--oxblood); padding-bottom: 1px; }

/* ============== Press page bibliography ============== */
.bib { border-top: 1px solid var(--rule); }
.bib .year-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--rule);
  padding: 30px 0;
  align-items: baseline;
}
.bib .year {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--oxblood);
  letter-spacing: -0.01em;
}
.bib .entries { padding: 0; }
.bib .entry {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: baseline;
}
.bib .entry:last-child { margin-bottom: 0; }
.bib .entry .title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bib .entry .title em { font-style: italic; }
.bib .entry .meta {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.bib .entry .blurb {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
}

/* ============== Contact page ============== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 100px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 0 130px;
  align-items: start;
}
.contact-form {
  display: block;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-form .form-note:last-child { margin-bottom: 0; }
.form-row { margin-bottom: 32px; }
.form-row label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-row .req { color: var(--oxblood); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--ff-body);
  font-size: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  transition: border-color .25s ease;
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--oxblood);
}
.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.form-note { margin-top: 14px; font-size: 14px; color: var(--muted); font-style: italic; }
.contact-aside { font-size: 16px; }
.contact-aside h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.contact-aside .group {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
}
.contact-aside .group:first-child { border-top: 2px solid var(--ink); }
.contact-aside .group p { margin: 0 0 .5em; color: var(--ink-2); }
.contact-aside ul li { margin-bottom: 8px; }
.contact-aside ul a { color: var(--ink-2); font-size: 15px; }

/* ============== Signed Copy ============== */
.sign-form {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 8px;
}
.sign-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 48px;
}
.sign-fieldset legend {
  padding: 0;
  margin-bottom: 18px;
  display: block;
  width: 100%;
}
.sign-fieldset .kicker { margin-bottom: 0; }
.sign-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sign-option {
  cursor: pointer;
  display: block;
  position: relative;
}
.sign-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sign-option-card {
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.4);
  padding: 22px 22px 24px;
  border-radius: 10px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}
.sign-option:hover .sign-option-card {
  border-color: var(--ink);
  background: rgba(255,255,255,0.75);
}
.sign-option input:checked + .sign-option-card {
  border-color: var(--oxblood);
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 0 0 1px var(--oxblood);
}
.sign-option input:focus-visible + .sign-option-card {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}
.sign-option-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: var(--ink);
}
.sign-option-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.sign-inscription[hidden] { display: none; }
.optional {
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: 8px;
}
.sign-submit-wrap {
  text-align: center;
  margin-top: 40px;
}
.sign-paywall-note {
  margin: 18px auto 0;
  max-width: 480px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}
.sign-paywall-note strong { color: var(--ink); font-weight: 600; }
.sign-faq {
  max-width: 720px;
  margin: clamp(60px, 9vw, 100px) auto 0;
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--rule);
}
.sign-faq h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.sign-faq dl { margin: 0; }
.sign-faq dt {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 26px;
  color: var(--ink);
}
.sign-faq dt:first-child { margin-top: 0; }
.sign-faq dd {
  margin: 6px 0 0;
  color: var(--ink-2);
  line-height: 1.6;
}
.sign-faq dd a {
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 1px;
}

/* ============== Legal pages (Privacy, Terms) ============== */
.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}
.legal-doc h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 56px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.legal-doc h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 8px;
}
.legal-doc p {
  margin: 0 0 18px;
  color: var(--ink);
}
.legal-doc ul {
  margin: 0 0 22px;
  padding-left: 22px;
}
.legal-doc li {
  margin-bottom: 10px;
}
.legal-doc a {
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.legal-doc a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.legal-doc strong {
  font-weight: 600;
  color: var(--ink);
}
.legal-meta {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.footer-bottom a:hover {
  color: var(--ink);
  border-bottom-color: var(--rule);
}

/* ============== Audio pages (audiobook, preview — private) ============== */
.audio-doc {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--ff-body);
  color: var(--ink);
}
.audio-doc-intro {
  font-style: italic;
  color: var(--ink-2);
  margin: 0 0 36px;
  font-size: 1rem;
  line-height: 1.6;
}
.audio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.audio-track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--rule);
}
.audio-track-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 170px;
  flex-shrink: 0;
}
.audio-track-num {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.audio-track-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}
.audio-track audio {
  flex: 1;
  min-width: 0;
  height: 38px;
}
.audio-meta {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.audio-meta a {
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 1px;
}
.audio-meta a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
@media (max-width: 600px) {
  .audio-track {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .audio-track-meta { min-width: 0; }
  .audio-track audio { width: 100%; }
}

/* ============== Footer ============== */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 80px) 0 30px;
  background: var(--paper);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rule);
}
.footer-mark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.footer-mark::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url("img/sherlock.png");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}
.footer-mark + p { color: var(--muted); font-size: 14px; max-width: 360px; }
.footer-disclaimer {
  font-size: 12px !important;
  color: var(--muted-2) !important;
  font-style: italic;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: 18px;
}
.footer-inner h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer-inner ul li { margin-bottom: 10px; }
.footer-inner ul a { font-size: 14px; color: var(--ink-2); }
.footer-inner ul a:hover { color: var(--oxblood); }

/* Quiet audiobook preview links (footer only, intentionally not exposed
   elsewhere — for family & friends). */
.audio-listen {
  display: flex;
  gap: 14px;
  margin: 18px 0 0;
  align-items: center;
}
.audio-listen a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--oxblood);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}
.audio-listen a:hover {
  color: var(--oxblood-2);
  transform: translateY(-1px);
}
.audio-listen-icon {
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 22px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============== Reveal animations ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}

/* ============== FAQ ============== */
.faq-section { padding: var(--section-y) 0; }
.faq-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.faq-head h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.faq-head h2 em { font-style: italic; color: var(--oxblood); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-of-type { border-bottom: 1px solid var(--rule); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  letter-spacing: -0.012em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color .35s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--oxblood);
  line-height: 1;
  flex: 0 0 auto;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--oxblood); }

.faq-item > p {
  padding: 0 0 28px;
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 720px;
}
.faq-item > p em { font-style: italic; color: var(--ink); }

/* ============== Responsive ============== */
/* Most spacing scales fluidly via clamp() in :root; media queries below
   handle layout *stack-switches* (multi-column → single column) only. */

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .wordmark, .primary-nav { grid-column: auto; }
  .primary-nav { justify-self: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
  .hero-sales-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-cover-wrap { order: -1; }
  .hero-cover { max-width: 280px; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .about-teaser-photo { max-width: 320px; order: -1; }
  .video-grid { grid-template-columns: 1fr; gap: 30px; }
  .bio-grid { grid-template-columns: 1fr; gap: 50px; padding: 40px 0 80px; }
  .bio-grid aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; padding: 30px 0 80px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-list { grid-template-columns: 1fr; column-gap: 0; }
  .reviews-list .review { gap: 14px; }
  .sign-options { grid-template-columns: 1fr; }
  .bib .year-group { grid-template-columns: 70px 1fr; gap: 18px; }
  .bib .year { font-size: 22px; }
  .bib .entry { grid-template-columns: 1fr; gap: 4px; }
  .bib .entry .meta { order: -1; }
  .press-strip-inner { gap: 22px; }
  .press-strip-logos { gap: 22px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pullquote { padding-left: 22px; margin: 36px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .email-form { flex-direction: column; align-items: stretch; gap: 14px; border-bottom: 0; padding-bottom: 0; }
  .email-form input[type="email"] { border-bottom: 1px solid var(--paper-2); padding: 10px 0; }
  .email-form button { padding: 14px 0; text-align: left; }
}
