/* ==========================================================================
   BookQuoters — Airbnb design system (per DESIGN-airbnb.md spec)
   Single-file re-skin over tokens.css. White canvas, Rausch #ff385c used
   scarcely, Inter (Cereal substitute) at modest weights, 14px cards / 8px
   buttons / pill search + orb, one shadow tier. Markup unchanged.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* type — Inter is the spec's Cereal substitute */
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', sans-serif;
  --font-display: var(--font-ui);
  --font-body: var(--font-ui);

  /* colour tokens (exact) */
  --bg: #ffffff;             /* canvas */
  --surface: #ffffff;        /* surface-card */
  --surface-alt: #f7f7f7;    /* surface-soft */
  --surface-strong: #f2f2f2; /* surface-strong */
  --ink: #222222;            /* ink */
  --ink-soft: #3f3f3f;       /* body */
  --ink-faint: #6a6a6a;      /* muted */
  --muted-soft: #929292;     /* muted-soft */
  --line: #dddddd;           /* hairline */
  --hairline: #ebebeb;       /* hairline-soft */
  --border-strong: #c1c1c1;  /* border-strong */
  --accent: #ff385c;         /* Rausch */
  --accent-2: #e00b41;       /* Rausch active */
  --accent-disabled: #ffd1da;
  --accent-soft: #fff0f3;    /* faint tint for save-hover only */
  --accent-text: #ffffff;

  /* shape */
  --radius: 14px;       /* md — cards */
  --radius-sm: 8px;     /* sm — buttons, inputs */
  --radius-lg: 20px;
  --radius-xl: 32px;

  --measure: 70ch;
  --wrap: 1280px;
  --wrap-narrow: 760px;
  --pad-x: clamp(20px, 5vw, 80px);

  /* the one shadow tier (spec) */
  --shadow-1: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px 0, rgba(0,0,0,0.1) 0 4px 8px 0;
  --shadow-card: var(--shadow-1);
  --shadow-soft: var(--shadow-1);
  --shadow-lift: var(--shadow-1);
  --ease: cubic-bezier(0.2, 0.8, 0.3, 1);
  --header-h: 80px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }   /* no global smooth scroll: Chrome animates scroll-restoration through the whole page (loads every lazy cover); smooth only via JS on anchor clicks */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-ui); font-size: 16px; line-height: 1.5; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
/* modest display weights — Airbnb trusts photography, not type muscle */
h1, h2, h3, h4 { font-family: var(--font-ui); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
::selection { background: var(--accent); color: #fff; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap.narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink-faint); margin: 0 0 14px; display: flex; align-items: center; gap: 8px;
}

/* ==========================================================================
   Top nav (80px, white, 1px bottom hairline)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60; background: transparent;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* blur on a pseudo-element, NOT on .site-header itself — backdrop-filter would make
   the header a containing block for the position:fixed drawer, pushing it on-page
   and creating horizontal scroll */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
}
.site-header.scrolled { border-bottom-color: color-mix(in srgb, var(--ink) 12%, transparent); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 22px; max-width: 1720px; }
.brand { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; color: var(--accent); }
.brand-mark { color: var(--accent); font-weight: 700; line-height: 0; }
.brand .brand-mark { font-size: 28px; transform: translateY(5px); }
.brand-name { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); }

.primary-nav { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.primary-nav a {
  font-size: 16px; font-weight: 600; color: var(--ink); padding: 10px 14px; border-radius: 999px;
  transition: background-color 0.18s var(--ease);
}
.primary-nav a:hover { background: var(--surface-alt); }
.primary-nav a.active { color: var(--ink); }
.primary-nav a.active::after { content: ""; display: block; height: 2px; background: var(--ink); margin-top: 5px; border-radius: 2px; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
/* search-bar-pill: white, full radius, hairline + one shadow tier, orb at right */
.header-search {
  position: relative;
  display: flex; align-items: center; gap: 8px; flex-direction: row-reverse;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 6px 6px 20px; min-width: 560px; box-shadow: var(--shadow-1);
  transition: box-shadow 0.2s var(--ease);
}
.header-search:hover { box-shadow: rgba(0,0,0,0.04) 0 2px 8px 0, rgba(0,0,0,0.12) 0 6px 16px 0; }
.header-search input { border: none; background: none; outline: none; width: 100%; font-size: 14px; font-weight: 500; color: var(--ink); }
.header-search input::placeholder { color: var(--ink-faint); font-weight: 400; }
/* live autocomplete dropdown */
.hs-pop { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 90; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 36px rgba(0,0,0,0.16); padding: 6px; max-height: 72vh; overflow-y: auto; }
.hs-pop[hidden] { display: none; }
.hs-group { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); padding: 9px 12px 4px; }
.hs-row { display: flex; flex-direction: column; gap: 1px; padding: 8px 12px; border-radius: 9px; color: var(--ink); text-decoration: none; }
.hs-row:hover, .hs-row.hs-active { background: var(--surface-alt); }
.hs-t { font-size: 14px; font-weight: 600; line-height: 1.25; }
.hs-s { font-size: 12px; color: var(--ink-faint); }
.hs-all { font-weight: 600; color: var(--accent); padding: 11px 12px; }
/* search-orb */
.i-search { width: 36px; height: 36px; flex-shrink: 0; padding: 9px; border-radius: 999px; background: var(--accent); stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; flex-shrink: 0;
  color: var(--ink); border: 1px solid var(--line); background: var(--surface);
  transition: box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}
.icon-btn:hover { box-shadow: var(--shadow-1); }
.icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* global hamburger — always visible, opens a dropdown menu */
.nav-toggle { display: grid; }
/* full slide-in drawer (categories + links) */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.site-header.nav-open .drawer { visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(8,8,10,0.5); opacity: 0; transition: opacity 0.3s ease; }
.site-header.nav-open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(380px, 88vw);
  background: var(--surface); box-shadow: -10px 0 40px rgba(0,0,0,0.22); overflow-y: auto;
  padding: 16px 16px 48px; transform: translateX(100%); transition: transform 0.32s cubic-bezier(.4,0,.2,1); }
.site-header.nav-open .drawer-panel { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 10px; }
.drawer-title { font-family: var(--font-display, inherit); font-size: 18px; font-weight: 600; }
.drawer-close { display: grid; place-items: center; width: 38px; height: 38px; border: 0; background: none; cursor: pointer; border-radius: var(--radius-sm); color: var(--ink); }
.drawer-close:hover { background: var(--surface-alt); }
.drawer-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.drawer-main { display: flex; flex-direction: column; gap: 1px; }
.drawer-main a { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--ink); padding: 11px 10px; border-radius: var(--radius-sm); }
.drawer-main a:hover { background: var(--surface-alt); }
.drawer-main a.active { color: var(--accent); }
.di { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; color: var(--ink-faint); }
.di-q { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display, Georgia, serif); font-size: 26px; line-height: 0; color: var(--accent); transform: translateY(0.18em); }
.drawer-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-faint); margin: 18px 10px 7px; }
.drawer-genres { display: flex; flex-direction: column; gap: 1px; }
.dg-item { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: var(--radius-sm); color: var(--ink); }
.dg-item:hover { background: var(--surface-alt); }
.gic { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; color: var(--accent); }
.dg-name { flex: 1; font-size: 14.5px; font-weight: 500; }
.dg-count { font-size: 12px; font-weight: 600; color: var(--ink-faint); background: var(--surface-alt); padding: 2px 8px; border-radius: 999px; }
.drawer-foot { display: flex; flex-direction: column; gap: 1px; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); }
.drawer-foot a { font-size: 13.5px; color: var(--ink-faint); padding: 8px 10px; border-radius: var(--radius-sm); }
.drawer-foot a:hover { background: var(--surface-alt); color: var(--ink); }
body.nav-lock { overflow: hidden; }

/* header Genres popup (desktop) */
.nav-genres { position: relative; }
.nav-genres-btn { display: inline-flex; align-items: center; gap: 4px; font: inherit; font-size: 16px; font-weight: 600; color: var(--ink); background: none; border: 0; cursor: pointer; padding: 10px 14px; border-radius: 999px; }
.nav-genres-btn:hover { color: var(--ink); background: var(--surface-alt); }
.nav-genres-btn.active { color: var(--ink); }   /* no persistent grey backing on category pages */
.nav-genres-btn .chev { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.nav-genres.open .nav-genres-btn .chev { transform: rotate(180deg); }
.nav-pop { position: absolute; top: calc(100% + 8px); left: 0; z-index: 80;
  width: 580px; max-width: 86vw; padding: 8px; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-1); }
/* transparent bridge over the gap so hover can travel from button to popup */
.nav-pop::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav-genres.open .nav-pop, .nav-genres:hover .nav-pop { display: grid; }
.nav-pop a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: var(--radius-sm); font-size: 16px; font-weight: 500; color: var(--ink); }
.nav-pop a:hover { background: transparent; color: var(--accent); }
.nav-pop a:hover .np-count { color: var(--accent); }
.nav-pop .gic { width: 20px; height: 20px; }
.np-head { grid-column: 1 / -1; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-faint); padding: 7px 13px 6px; }
.np-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-count { font-size: 12.5px; font-weight: 600; color: var(--ink-faint); background: var(--surface-alt); padding: 2px 9px; border-radius: 999px; }

/* ==========================================================================
   Buttons (primary 8px Rausch wt500 · secondary white 1px ink · no transform)
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500;
  padding: 14px 24px; border-radius: var(--radius-sm); cursor: pointer; border: 1px solid transparent;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: var(--surface); border-color: var(--ink); color: var(--ink); padding: 13px 23px; }
.btn-ghost:hover { background: var(--surface-alt); }

.pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500;
  padding: 5px 12px; border-radius: 999px; background: var(--surface-strong); color: var(--ink);
  border: 1px solid transparent; white-space: nowrap;
}
.pill.ghost { background: transparent; border-color: var(--line); }
a.pill.ghost { transition: border-color 0.18s var(--ease); }
a.pill.ghost:hover { border-color: var(--ink); }
.cites { font-size: 14px; color: var(--ink-faint); white-space: nowrap; }

.back-link { display: inline-block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.back-link:hover { text-decoration: underline; }
.see-all { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.see-all:hover { text-decoration: underline; }

/* ==========================================================================
   Sections (64px bands, modest heads)
   ========================================================================== */
.band { padding: clamp(40px, 6vw, 64px) 0; }
.band + .band { padding-top: 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-head h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.page-head { padding: clamp(32px, 5vw, 56px) 0 6px; }
.page-head h1 { font-size: clamp(26px, 3.6vw, 32px); font-weight: 600; letter-spacing: -0.02em; }
.lede { font-size: 16px; color: var(--ink-faint); max-width: 68ch; margin: 12px 0 0; line-height: 1.5; }

/* ==========================================================================
   Hero — image (a montage of real book covers) + scrim + headline
   ========================================================================== */
.hero { position: relative; overflow: hidden; min-height: clamp(420px, 54vw, 580px); display: flex; align-items: center; justify-content: center; padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px); margin-bottom: 0; background: #14110d url('/i/hero.jpg') center / cover no-repeat; }
.hero-media { display: none; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.4) 100%); }
/* frosted-glass backing plate behind the headline for crisp contrast */
.hero-inner {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 880px; width: 100%; margin: 0;
  padding: clamp(30px, 4vw, 48px) clamp(28px, 5vw, 56px);
  background: rgba(15, 15, 18, 0.42);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}
.hero-h1 { color: #fff; font-size: clamp(30px, 5.2vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin: 0 auto; }
.hero-h1 .hl { background: #ff385c; color: #fff; padding: 0 0.2em; border-radius: 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
@media (min-width: 768px) { .hero-h1 { white-space: nowrap; } }
.hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(16px, 2vw, 20px); margin: 18px auto 0; max-width: 54ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.hero .btn-ghost { background: #fff; border-color: #fff; color: var(--ink); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.88); }

/* stats band */
/* stats — a floating card that overlaps the bottom edge of the hero */
.stats-band { position: relative; z-index: 5; margin-top: clamp(-52px, -4vw, -34px); margin-bottom: clamp(20px, 3vw, 36px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
  padding: clamp(20px, 2.4vw, 30px) clamp(6px, 1.5vw, 18px); }
.stat { display: flex; align-items: center; justify-content: center; gap: 14px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 48px; background: var(--line); }
.stat-ic { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface)); }
.stat-ic .ic { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.stat-txt { display: flex; flex-direction: column; }
.stats dt { font-size: clamp(24px, 2.6vw, 33px); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; }
.stats dt a { color: inherit; text-decoration: none; transition: color 0.15s var(--ease); }
.stats dt a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.stats dd { margin: 0; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }

/* ==========================================================================
   Quote card — clean white, hairline border, one shadow on hover
   ========================================================================== */
.quote-wall { column-gap: 24px; }
@media (min-width: 680px)  { .quote-wall { columns: 2; } }
@media (min-width: 1040px) { .quote-wall { columns: 3; } }

.quote-card {
  break-inside: avoid; margin: 0 0 24px; position: relative;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 22px 22px 14px; transition: box-shadow 0.2s var(--ease);
}
.quote-card .q-mark { display: none; }
.quote-card:hover { box-shadow: var(--shadow-1); }
.quote-card blockquote { margin: 0; }
.q-text { font-size: 16px; line-height: 1.5; font-weight: 500; color: var(--ink); display: block; }
.q-text::before { content: "\201C"; } .q-text::after { content: "\201D"; }
#quote-feed .q-text { font-family: 'Newsreader', Georgia, 'Times New Roman', serif; font-size: clamp(19px, 2vw, 23px); line-height: 1.55; font-weight: 400; }
.quote-card figcaption { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 2px; }
.q-book { font-weight: 600; font-size: 15px; color: var(--ink); }
.q-book:hover { text-decoration: underline; }
.q-author { font-size: 14px; font-weight: 400; color: var(--ink-faint); }
.q-author:hover { text-decoration: underline; }
.q-ctx { font-size: 13px; color: var(--ink-faint); margin-top: 4px; }
.q-actions { display: flex; gap: 4px; margin-top: 12px; }
.q-act { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; color: var(--ink-faint); transition: color 0.18s var(--ease), background-color 0.18s var(--ease); }
.q-act svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.q-act:hover { color: var(--ink); background: var(--surface-strong); }
.q-act.js-like.liked { color: var(--accent); }
.q-act.js-like.liked svg { fill: var(--accent); }
.quote-card.featured { background: var(--surface-alt); }

/* ==========================================================================
   Book page — stacked quotes
   ========================================================================== */
.book-quotes { max-width: 760px; margin: 0 auto; }
/* single cover: an overlay rail spans the hero + content, so the SAME cover sits
   in the hero on load and rides down (sticky) with the scroll until "Keep reading" */
.book-shell { position: relative; }
.book-read { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: start; }
.book-read-main { min-width: 0; }
.book-read-main .book-quotes { margin: 0 auto; }
.book-cover-rail { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
/* padding-top drops the cover to its harmonious hero spot on load (aligned with
   the description); it then sticks at top:96 once scrolled */
.book-cover-rail > .wrap { height: 100%; padding-top: clamp(48px, 7vw, 96px); }
.book-cover-sticky { position: sticky; top: 104px; width: 240px; pointer-events: auto; }
.cover.book-read-cover { max-width: 240px; border-radius: 9px; transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease); transform-origin: center bottom; }
/* HERO state — cover resting in the dark hero band: editorial lift + slight tilt */
.book-cover-sticky:not(.is-pinned) .cover.book-read-cover {
  transform: none;
  box-shadow: 0 8px 34px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.1); }
/* PINNED state — cover has travelled into the left column over light content: straight + crisp */
.book-cover-sticky.is-pinned .cover.book-read-cover {
  transform: rotate(0deg) scale(0.955);
  box-shadow: 0 14px 32px rgba(0,0,0,0.20), 0 0 0 1px rgba(0,0,0,0.05); }
/* CTA + share follow the cover: a touch tighter once pinned */
.book-cover-sticky .cover-cta, .book-cover-sticky .cover-share { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.book-cover-sticky.is-pinned .cover-cta, .book-cover-sticky.is-pinned .cover-share { transform: scale(0.955); }
/* "Get on Amazon" CTA under the cover — neutral */
.cover-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 14px; padding: 11px 14px; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; line-height: 1.1; white-space: nowrap; box-shadow: none; transition: background-color 0.18s var(--ease); pointer-events: auto; }
.cover-cta:hover { background: #e62a4e; }
.cover-cta svg { width: 17px; height: 17px; flex: none; }
/* share buttons under the Amazon CTA (replaces the old left-edge floating rail) */
.cover-share { display: none; }
.cover-meta-line { justify-content: center; margin: 14px 0 2px; font-size: 13px; }
.cover-meta-line .cm-dot { color: var(--ink-faint); }
/* Year·rating + Report a mistake only appear once the cover has travelled down to quote level (pinned) */
.book-cover-sticky .report-link { display: none; }
.book-cover-sticky.is-pinned .report-link { display: block; }
.book-cover-sticky .cover-meta-line { display: none; }
.book-cover-sticky.is-pinned .cover-meta-line { display: flex; }
.report-link { display: block; width: 100%; text-align: center; margin-top: 11px; font-size: 12.5px; color: var(--ink-faint); text-decoration: none; pointer-events: auto; transition: color 0.15s var(--ease); }
.report-link:hover { color: var(--accent); text-decoration: underline; }
.book-hero-coverslot .report-link { color: rgba(255,255,255,0.55); }
.book-hero-coverslot .report-link:hover { color: #fff; }
/* left-column extras: visual rating + find-it links */
.cover-extra { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.cx-rating { display: flex; align-items: baseline; gap: 6px; font-size: 13px; }
.cx-stars { font-size: 15px; letter-spacing: 1px; line-height: 1; }
.cx-stars .on { color: var(--accent); }
.cx-stars .off { color: color-mix(in srgb, var(--ink) 18%, transparent); }
.cx-rating b { color: var(--ink); font-size: 14px; }
.cx-rc { color: var(--ink-faint); }
.cx-find { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 7px 12px; align-items: baseline; font-size: 13px; }
.cx-label { width: 100%; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }
.cx-find a { color: var(--accent); text-decoration: none; font-weight: 600; }
.cx-find a:hover { text-decoration: underline; }
.cs-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--hairline); background: var(--surface); color: var(--ink-soft); cursor: pointer; transition: background-color 0.15s var(--ease), color 0.15s var(--ease); pointer-events: auto; }
.cs-btn:hover { background: var(--surface-alt); color: var(--ink); }
.cs-btn svg { width: 17px; height: 17px; }
.cs-fb svg, .cs-x svg { fill: currentColor; }
/* desktop: overlay cover replaces the hero cover; keep the hero as tall as the
   cover so the description centres beside it, exactly as before */
@media (min-width: 901px) { .book-hero-coverslot .cover { display: none; } .book-hero-coverslot .cover-cta, .book-hero-coverslot .cover-share { display: none; } .book-hero-coverslot { min-height: 360px; } }
@media (max-width: 900px) { .book-hero-coverslot .cover-cta { font-size: 12px; gap: 5px; padding: 9px 8px; margin-top: 10px; } .book-hero-coverslot .cover-cta svg { width: 14px; height: 14px; } }
@media (max-width: 900px) { .book-cover-rail { display: none; } .book-read { display: block; } .book-read-aside { display: none; } }
.book-quote { position: relative; margin: 0; padding: 48px 0 44px; }
.book-quote:first-child { padding-top: 4px; }
/* decorative separator instead of a flat grey rule: a centred trio of accent dots */
.book-quote:not(:last-child)::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: -13px 0 0 var(--accent), 13px 0 0 var(--accent); opacity: 0.55; }
.book-quote .q-mark { display: none; }
.bq-text { margin: 0; }
.bq-text .q-text { font-family: 'Newsreader', Georgia, 'Times New Roman', serif; font-size: clamp(20px, 2.2vw, 24px); line-height: 1.55; font-weight: 400; color: var(--ink); display: block; cursor: text; -webkit-user-select: text; user-select: text; }
.bq-text .q-text::before { content: "\201C"; } .bq-text .q-text::after { content: "\201D"; }
.bq-ctx { font-size: 14px; color: var(--ink-faint); margin: 10px 0 0; }
.bq-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.bq-btn {
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 9px 15px; cursor: pointer;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.bq-btn:hover { background: var(--surface-alt); border-color: var(--border-strong); }
.bq-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bq-btn.brand svg { fill: currentColor; stroke: none; }
.bq-btn.js-like.liked { color: var(--accent); border-color: var(--accent); }
.bq-btn.js-like.liked svg { fill: var(--accent); }
.bq-btn.js-copy { order: 5; margin-left: auto; }   /* Copy text pinned to the right edge of the block */
.bq-btn.js-like { display: none; } /* Save button hidden */
.bq-likes { display: none; }   /* quote likes hidden */

/* book page "Quotes from the Book" heading — centered with a coral quote flourish */
.section-head:has(+ .book-quotes), .section-head-centered { flex-direction: column; align-items: center; text-align: center; gap: 4px; margin-bottom: 30px; }
.section-head:has(+ .book-quotes) h2, .section-head-centered h2 { font-size: clamp(26px, 4vw, 36px); }
.section-head:has(+ .book-quotes) h2::before, .section-head-centered h2::before { content: "\201C"; display: block; font-family: var(--font-display); font-size: 54px; line-height: 0.5; color: var(--accent); margin-bottom: 10px; }

/* book page FAQ + "About this book" facts (first-10 books) */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 0; font-size: 17px; font-weight: 500; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--ink-faint); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); line-height: 1.6; font-size: 16px; max-width: 66ch; }
.book-facts { max-width: 760px; margin: 40px auto 0; }
.book-facts h3 { font-size: 18px; font-weight: 600; margin: 0 0 12px; }
.book-facts dl { margin: 0; }
.book-facts dl > div { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
.book-facts dt { width: 150px; flex-shrink: 0; color: var(--ink-faint); font-size: 14px; }
.book-facts dd { margin: 0; color: var(--ink); font-size: 15px; }
.book-facts dd a { color: var(--link); }
.book-facts dd a:hover { text-decoration: underline; }
.prose.book-essay { max-width: none; }   /* About the book spans the full content block (beats .prose --measure) */
.book-essay h2 { margin-top: 0; font-size: clamp(24px, 3.2vw, 32px); font-weight: 600; letter-spacing: -0.01em; }

/* rich per-book content blocks (first-10 books) */
.book-block { padding: 0 0 clamp(40px, 5vw, 60px); scroll-margin-top: 96px; }
/* divider limited to the block content width (760px centred), not the full column */
.book-block::before { content: ""; display: block; height: 1px; background: var(--hairline); max-width: 760px; margin: 0 auto clamp(40px, 5vw, 60px); }
.hero-more { color: var(--accent); font-weight: 600; text-decoration: none; white-space: nowrap; }
.hero-more:hover { text-decoration: underline; }
/* blocks now live inside the right column so the cover stays sticky until "Keep reading" */
.book-read-main .book-block .wrap { max-width: 760px; padding-inline: 0; }
.block-title { display: flex; align-items: center; gap: 13px; font-size: clamp(22px, 3vw, 28px); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 22px; }
.block-ic { width: 38px; height: 38px; flex: 0 0 auto; padding: 8px; border-radius: 10px; background: color-mix(in srgb, var(--accent) 11%, transparent); color: var(--accent); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.theme-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.theme-card { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 20px; }
.theme-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; }
.theme-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.topics { display: grid; gap: 22px; }
.topic h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); margin: 0 0 10px; }
.topic ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.topic li { font-family: 'Newsreader', Georgia, serif; font-size: 18px; line-height: 1.45; color: var(--ink); border-left: 3px solid var(--accent); padding-left: 14px; }
.char-list { list-style: none; margin: 0; padding: 0; }
.char-list li { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.char-list b { font-weight: 600; }
.char-list span { color: var(--ink-faint); font-size: 14px; }
.ctx { display: grid; gap: 26px; }
.ctx-item blockquote { margin: 0 0 8px; font-family: 'Newsreader', Georgia, serif; font-size: 20px; line-height: 1.4; color: var(--ink); }
.ctx-item p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
/* fact panels (Book details, Reading guide) read as boxed reference cards */
.facts-dl { margin: 0; background: var(--surface-alt); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 4px 24px; }
@media (min-width: 640px) { .facts-dl { display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px; } }
.facts-dl > div { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.facts-dl > div:last-child { border-bottom: none; }
.facts-dl dt { width: 124px; flex-shrink: 0; color: var(--ink-faint); font-size: 14px; }
.facts-dl dd { margin: 0; font-size: 15px; color: var(--ink); }
.facts-dl dd a { color: var(--link); }
.rt-wave { vertical-align: -2px; margin-right: 5px; color: var(--accent); }
/* nonfiction subcategory browse */
.subcat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 40px; }
.subcat-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--hairline); border-radius: 999px; font-size: 14px; color: var(--ink); text-decoration: none; background: var(--surface); transition: border-color .15s, color .15s; }
.subcat-chip:hover { border-color: var(--accent); color: var(--accent); }
.subcat-chip span { font-size: 12px; color: var(--ink-faint); }
.subcat-rail { margin: 0 0 48px; scroll-margin-top: 90px; }
.section-head-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.subcat-count { font-size: 14px; color: var(--ink-faint); flex-shrink: 0; }
.facts-dl dd a.gr-link { color: var(--ink); text-decoration: none; white-space: nowrap; }
.facts-dl dd a.gr-link:hover { color: var(--link); }
.gr-arrow { color: var(--ink-faint); transition: transform .15s; display: inline-block; }
.facts-dl dd a.gr-link:hover .gr-arrow { color: var(--link); transform: translateX(2px); }
.adapt-list { list-style: none; margin: 0; padding: 0; }
.adapt-list li { padding: 14px 0; border-bottom: 1px solid var(--hairline); color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.adapt-list b { color: var(--ink); }
.adapt-list span { color: var(--ink-faint); }
.author-block { display: flex; gap: 20px; align-items: flex-start; }
.author-block > div p { margin: 0 0 10px; color: var(--ink-soft); line-height: 1.6; }
.trivia-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.trivia-list li { position: relative; padding-left: 26px; color: var(--ink-soft); line-height: 1.6; }
.trivia-list li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.rg-questions li { color: var(--ink-soft); line-height: 1.55; }
.rg-sub { font-size: 15px; font-weight: 600; margin: 24px 0 10px; }
.rg-questions { margin: 0; padding-left: 22px; display: grid; gap: 10px; }
.involve-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.series-list { list-style: none; margin: 0; padding: 0; }
.series-list li { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; color: var(--ink); }
.ser-n { flex-shrink: 0; width: 26px; height: 26px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--surface-alt); color: var(--ink-faint); font-size: 12px; font-weight: 600; align-self: center; }
.setting-note { margin: 14px 0 0; color: var(--ink-soft); line-height: 1.6; }
.readalike-list { list-style: none; margin: 0; padding: 0; }
.readalike-list li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.readalike-list li:last-child { border-bottom: none; }
.ra-num { flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-alt); color: var(--ink-soft); font-size: 13px; font-weight: 700; margin-top: 1px; }
.ra-body { min-width: 0; }
.readalike-list a { color: var(--accent); font-weight: 600; font-size: 16px; text-decoration: none; }
.readalike-list a:hover { text-decoration: underline; }
.ra-why { display: block; color: var(--ink-faint); font-size: 14px; margin-top: 3px; line-height: 1.5; }

.moreby-link { display: inline-block; margin-top: 18px; }

/* Movie & TV adaptations — one film per row: poster left, details right */
.adapt-grid { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.adapt-card { display: flex; gap: 18px; align-items: flex-start; padding: 14px; border: 1px solid var(--hairline); border-radius: 12px; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.adapt-card:hover { border-color: color-mix(in srgb, var(--ink) 16%, transparent); box-shadow: 0 8px 22px rgba(0,0,0,0.07); }
.ad-poster-link { flex: 0 0 auto; line-height: 0; }
.ad-poster { width: 84px; height: 126px; object-fit: cover; border-radius: 7px; background: var(--surface-alt); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.ad-noposter { display: flex; align-items: center; justify-content: center; font-weight: 700; letter-spacing: 0.04em; color: var(--accent); border: 1px solid var(--hairline); box-shadow: none; }
.ad-meta { min-width: 0; flex: 1; }
.ad-title { display: block; font-weight: 600; font-size: 16px; line-height: 1.3; color: var(--ink); }
.ad-yr { color: var(--ink-faint); font-weight: 500; }
.ad-rating { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 7px; font-size: 14px; color: var(--ink-soft); }
.ad-star { color: #f5c518; }   /* IMDb gold */
.ad-rating b { color: var(--ink); font-size: 15px; }
.ad-rating-max { color: var(--ink-faint); margin-left: -5px; }
.ad-votes { color: var(--ink-faint); }
.ad-note { margin: 9px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.ad-imdb { display: inline-block; margin-top: 11px; font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.ad-imdb:hover { text-decoration: underline; }
.adapt-text { font-size: 14px; color: var(--ink-soft); }

/* Get-the-book modal: 3s "link generation" + test 300x300 ad */
.getbook-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.getbook-modal[hidden] { display: none; }
.gm-backdrop { position: absolute; inset: 0; background: rgba(15,15,20,0.55); }
.gm-dialog { position: relative; z-index: 1; width: 400px; max-width: 100%; background: var(--surface, #fff); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); padding: 30px 26px 26px; text-align: center; }
.gm-close { position: absolute; top: 8px; right: 12px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.gm-close:hover { color: var(--ink); }
.gm-stage { min-height: 74px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.gm-spinner { width: 30px; height: 30px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--accent); animation: gm-spin 0.7s linear infinite; }
@keyframes gm-spin { to { transform: rotate(360deg); } }
.gm-status { font-size: 15px; color: var(--ink-soft); font-weight: 500; margin: 0; }
.gm-go { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #fff; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 999px; text-decoration: none; }
.gm-go[hidden] { display: none; }
.gm-go:hover { filter: brightness(0.95); }
.gm-ad { margin-top: 22px; text-align: center; }
.gm-ad ins.adsbygoogle { max-width: 100%; }
.gm-ad-label { display: none; /* hidden per request */  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.gm-ad-box { width: 300px; max-width: 100%; height: 300px; margin: 0 auto; display: grid; place-items: center; background: repeating-linear-gradient(45deg, var(--surface-alt) 0 12px, transparent 12px 24px); border: 1px dashed var(--line); border-radius: 8px; color: var(--ink-faint); font-size: 14px; font-weight: 600; }

/* Mobile sticky "second header" — slides in once the book hero is scrolled past */
.book-minibar { position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 55; display: none; align-items: center; gap: 12px; padding: 8px 14px; background: var(--surface, #fff); border-bottom: 1px solid var(--hairline); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: transform 0.26s var(--ease), opacity 0.26s var(--ease), visibility 0.26s var(--ease); }
.book-minibar.show { transform: translateY(0); opacity: 1; visibility: visible; }
.bmb-cover { width: 34px; height: 51px; object-fit: cover; border-radius: 4px; flex: 0 0 auto; box-shadow: 0 2px 6px rgba(0,0,0,0.25); }
.bmb-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.bmb-title { font-weight: 600; font-size: 14px; line-height: 1.25; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bmb-author { font-size: 13px; line-height: 1.2; color: var(--muted-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bmb-cta { width: auto; flex: 0 0 auto; display: inline-flex; margin-top: 0; border-radius: 999px; padding: 9px 16px; font-size: 13px; gap: 5px; }
.bmb-cta svg { width: 15px; height: 15px; }
.readalike-after { margin-top: 24px; }

/* "In the press" — external links to media reviews of the book */
.press-list { list-style: none; margin: 0; padding: 0; }
.press-list li { padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.press-list li:last-child { border-bottom: none; }
.press-list a { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; text-decoration: none; }
.press-list .pr-outlet { flex-shrink: 0; font-size: 16px; font-weight: 700; color: var(--ink); }
.press-list .pr-title { font-weight: 600; font-size: 15.5px; color: var(--accent); }
.press-list a:hover .pr-title { text-decoration: underline; }
.press-list .pr-main { min-width: 0; }   /* title + year ride together (year stays on the title's line) */
.press-list .pr-year { color: var(--ink-faint); font-size: 13px; font-weight: 500; margin-left: 7px; white-space: nowrap; }
.press-list .pr-note { display: block; color: var(--ink-faint); font-size: 13.5px; line-height: 1.5; margin-top: 3px; }
.press-list a .pr-title::after { content: " ↗"; color: var(--accent); font-weight: 400; font-size: 12px; }
.press-list .pr-hidden { display: none; }
.pr-more { margin-top: 14px; padding: 0; background: none; border: 0; color: var(--ink-soft); font-weight: 600; font-size: 14px; cursor: pointer; }
.pr-more:hover { text-decoration: underline; }
/* tighten the gap above Keep reading */
.kr-band { padding-top: clamp(18px, 2.5vw, 28px); }
/* "Watch on YouTube" — lite embedded players (facade → iframe on click) */
.yt-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
@media (max-width: 640px) { .yt-grid { grid-template-columns: 1fr; } }
.yt-card { min-width: 0; }
.yt-facade { display: block; position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 0; padding: 0; border: none; border-radius: 12px; overflow: hidden; cursor: pointer; background: #000; }
.yt-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s var(--ease), opacity 0.2s; }
.yt-facade:hover .yt-thumb { transform: scale(1.045); opacity: 0.88; }
.yt-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 66px; height: 46px; border-radius: 13px; background: rgba(0,0,0,0.55); transition: background 0.2s; }
.yt-facade:hover .yt-play { background: var(--accent); }
.yt-play::after { content: ""; position: absolute; left: 53%; top: 50%; transform: translate(-50%, -50%); border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; }
.yt-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 12px; display: block; }
.yt-meta { margin-top: 11px; }
.yt-channel { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.yt-title { display: block; margin-top: 2px; font-weight: 600; font-size: 15px; line-height: 1.4; color: var(--accent); text-decoration: none; }
.yt-title:hover { text-decoration: underline; }

/* ==========================================================================
   Cover — photo-first card, 14px clip, image zoom on hover
   ========================================================================== */
.cover {
  position: relative; display: block; aspect-ratio: 2 / 3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--cf, #6a6a6a), var(--ct, #222));
  transition: box-shadow 0.22s var(--ease);
}
.cover-spine { display: none; }
.cover-sheen { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,0.12), transparent 45%); pointer-events: none; }
.cover-body { position: absolute; inset: 0; padding: 16px 14px; display: flex; flex-direction: column; gap: 6px; color: #fff; }
.cover-title { font-weight: 700; font-size: 1rem; line-height: 1.18; letter-spacing: -0.01em; text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
.cover-author { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; margin-top: auto; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.cover-mono { position: absolute; right: 10px; bottom: 8px; font-weight: 700; font-size: 12px; opacity: 0.3; color: #fff; }
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; border-radius: inherit; background: linear-gradient(150deg, var(--cf, #6a6a6a), var(--ct, #222)); }
.cover.has-img .cover-body, .cover.has-img .cover-mono { display: none; }
.cover.has-img .cover-sheen { z-index: 2; opacity: 0.45; }
.cover-lg { max-width: 240px; }

/* book card — title-md + body-sm meta, price-style ink count */
.book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 28px 18px; }
/* roomier grid for the home "Most quoted books" section */
.book-grid-lg { grid-template-columns: repeat(4, 1fr); gap: 40px 24px; }
.book-grid-lg .cover { border: none; box-shadow: 0 6px 18px rgba(0,0,0,0.18); border-radius: 8px; width: 100%; }
/* unified grid (home rail + categories + keep-reading): covers FILL the cell and a
   gentle zoom-centre clips the thin dark scan border off the edges; uniform 2:3 cells
   keep the bottoms level */
/* transparent cell AND transparent image so the dark gradient never shows behind an
   image cover — incl. the contain letterbox areas (the cause of dark side/top lines) */
.cover.has-img { background: transparent; }
.cover.has-img .cover-img { background: transparent; }
/* book-page hero cover: fill + gentle zoom-centre to clip the thin dark scan border,
   which is visible at the large hero size (clipped by .cover overflow:hidden) */
.book-cover-sticky .cover-img, .book-hero-coverslot .cover-img { transform: scale(1.025); transition: transform 0.22s var(--ease); }
/* grid covers (home rail + categories + keep-reading): each cover shown WHOLE in its own
   proportions (contain, no 2:3 crop) but anchored to a common BOTTOM baseline so the
   bottom edges line up; drop-shadow hugs the real cover shape */
/* perimeter shadow on .cover (drop-shadow follows its content and still renders
   OUTSIDE despite overflow:hidden); overflow:hidden + a tiny zoom-centre on the image
   shaves the thin pixel border off all edges */
/* each card takes the cover's own aspect-ratio (inline, from build) so the image
   FILLS its cell — no 2:3 crop, no letterbox gap, tops aligned (fixes the "cut top"
   on wide covers). perimeter shadow; tiny zoom trims the pixel border; hover = zoom */
.book-grid-lg .cover.has-img { overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.book-grid-lg .cover.has-img .cover-img { object-fit: cover; object-position: center; border-radius: 0; filter: none; transform: scale(1.04); transition: transform 0.3s var(--ease); }
.book-grid-lg .cover.has-img:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.18); }   /* shadow stays constant */
.book-grid-lg .cover.has-img:hover .cover-img { transform: scale(1.1); }   /* zoom on hover */
/* 4 per row, smaller centred covers + richer cards (title, author, year, rating) */
.book-grid-lg .book-card { max-width: 224px; margin-inline: auto; width: 100%; }
.hc .book-card-meta { gap: 2px; }
.hc-foot { display: flex; align-items: center; gap: 9px; margin-top: 4px; font-size: 12.5px; color: var(--ink-faint); }
.hc-foot .hc-year { font-weight: 500; }
.hc-votes { color: var(--ink-faint); font-weight: 400; }
.hc-foot .hc-rating { font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.hc-foot .hc-year + .hc-rating { position: relative; padding-left: 9px; }
.hc-foot .hc-year + .hc-rating::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
@media (max-width: 760px) { .book-grid-lg .book-card { max-width: none; } }
.book-grid-lg .cover:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.26); }
/* title block matches the cover width so titles line up under the covers */
.book-grid-lg .book-card-meta { width: 100%; }
@media (max-width: 900px) { .book-grid-lg { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .book-grid-lg { grid-template-columns: repeat(2, 1fr); } }
.book-card { display: flex; flex-direction: column; gap: 10px; }
.book-card-meta { display: flex; flex-direction: column; gap: 1px; }
.book-card-title { font-size: 15px; font-weight: 600; line-height: 1.25; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.book-card-title:hover { text-decoration: underline; }
.book-card-quote { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; margin-top: 10px; font-family: var(--font-ui); font-size: 14px; line-height: 1.5; color: var(--ink-soft); text-decoration: none; }
.book-card-quote:hover { color: var(--accent); }
.hc .book-card-quote + .hc-foot { margin-top: 10px; }
.book-card-author { font-size: 14px; font-weight: 400; color: var(--ink-faint); }
.book-card-author:hover { text-decoration: underline; }
.book-card-row { display: flex; align-items: center; gap: 8px; margin: 2px 0 0; flex-wrap: wrap; }
.book-card-row .pill { background: transparent; padding: 0; color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Genres — soft tiles (14px)
   ========================================================================== */
.genre-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.genre-chip {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 16px 18px; min-height: 78px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--hairline); background: var(--surface);
  transition: box-shadow 0.2s var(--ease);
}
.genre-chip::before { content: ""; position: absolute; inset: 0; opacity: 0.12; background: linear-gradient(135deg, var(--cf, #888), var(--ct, #333)); }
.genre-chip:hover { box-shadow: var(--shadow-1); }
.genre-chip-ic { position: relative; display: grid; place-items: center; width: 30px; flex: 0 0 auto; }
.genre-chip-ic .gic { width: 24px; height: 24px; color: var(--ink-faint); }
.genre-chip-text { position: relative; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.genre-chip-name { position: relative; font-size: 16px; font-weight: 600; }
.genre-chip-count { position: relative; font-size: 13px; font-weight: 400; color: var(--ink-faint); }

.genre-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.genre-card { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 190px; display: flex; align-items: flex-end; color: #fff; background: linear-gradient(150deg, var(--cf, #777), var(--ct, #222)); transition: box-shadow 0.2s var(--ease); }
.genre-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.5)); }
.genre-card-body { position: relative; padding: 22px; display: flex; flex-direction: column; gap: 4px; }
.genre-card-name { font-size: 21px; font-weight: 600; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.genre-card-meta { font-size: 14px; font-weight: 400; opacity: 0.92; }
.genre-card:hover { box-shadow: var(--shadow-1); }
.genre-hero { position: relative; overflow: hidden; color: #fff; padding: clamp(40px, 6vw, 76px) 0 clamp(28px, 4vw, 48px); background: linear-gradient(150deg, var(--cf, #333), var(--ct, #111)); }
.genre-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--accent); z-index: 3; }
.genre-hero-art { position: absolute; inset: 0; background-size: cover; background-position: center; }
.genre-hero-scrim { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(10,10,12,0.58), rgba(10,10,12,0.8)); }
.genre-hero-inner { position: relative; z-index: 2; }
.genre-hero-inner .back-link { color: rgba(255,255,255,0.85); }
.genre-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); font-weight: 600; letter-spacing: -0.02em; margin: 8px 0 14px; }
.genre-hero-stats { display: flex; gap: 8px; }
.genre-hero-stats .pill { background: rgba(255,255,255,0.18); color: #fff; border: 0; }
.genre-hero-stats .pill.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.45); color: #fff; }

/* ==========================================================================
   Authors
   ========================================================================== */
.author-avatar { display: grid; place-items: center; flex-shrink: 0; width: 46px; height: 46px; border-radius: 999px; background: var(--surface-strong); color: var(--ink); font-weight: 700; font-size: 15px; }
.author-avatar.lg { width: 84px; height: 84px; font-size: 28px; }
.author-avatar.has-photo { overflow: hidden; background: var(--surface-strong); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.author-pill { display: flex; align-items: center; gap: 13px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: box-shadow 0.18s var(--ease); }
.author-pill:hover { box-shadow: var(--shadow-1); }
.author-pill-meta { display: flex; flex-direction: column; }
.author-pill-meta b { font-weight: 600; font-size: 15px; }
.author-pill-meta i { font-style: normal; font-size: 14px; color: var(--ink-faint); }
.author-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.author-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 26px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: box-shadow 0.2s var(--ease); }
.author-card:hover { box-shadow: var(--shadow-1); }
.author-card-name { font-size: 16px; font-weight: 600; }
.author-card-meta { font-size: 14px; font-weight: 400; color: var(--ink-faint); }
.author-head-inner { display: flex; align-items: center; gap: 22px; }

/* ==========================================================================
   Book hero
   ========================================================================== */
/* book page hero — the book's own cover, blurred, as a full-bleed backdrop */
.book-hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 7vw, 96px); color: #fff; background: linear-gradient(155deg, var(--cf, #333), var(--ct, #111)); }
.book-hero-art { position: absolute; inset: -60px; background-size: cover; background-position: center; filter: blur(44px) saturate(1.35) brightness(0.85); transform: scale(1.18); }
.book-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.5), rgba(8,8,10,0.78)); }
.book-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: center; }
/* mirror the quotes column (760px centred in the 1fr main area) so the H1 left edge
   lines up exactly with the quote text below */
.book-hero-meta { max-width: 760px; margin-inline: auto; width: 100%; min-width: 0; }
.book-hero .cover { border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.book-hero .back-link { color: rgba(255,255,255,0.8); }
.book-hero .back-link:hover { color: #fff; }
.book-hero-meta h1 { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 52px); margin-top: 12px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; color: #fff; text-wrap: balance; }
.book-hero-author { font-size: 16px; color: rgba(255,255,255,0.82); margin: 14px 0 0; }
.book-hero-author a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.4); text-decoration: none; }
.book-hero-author a:hover { border-color: #fff; }
.book-hero-blurb { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: none; margin: 16px 0 0; }
.book-hero-facts { font-size: 14px; color: rgba(255,255,255,0.78); margin: 14px 0 0; }
.book-hero-stats { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 0; align-items: center; }
.book-hero .pill { background: rgba(255,255,255,0.16); color: #fff; border-color: transparent; }
.book-hero .pill.ghost { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
.book-hero a.pill.ghost:hover { border-color: #fff; }

/* ==========================================================================
   Filters / pagination
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.filter-chip { font-size: 14px; font-weight: 500; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink); background: var(--surface); transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease); }
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.empty-state { font-size: 15px; color: var(--ink-faint); padding: 40px 0; text-align: center; }

.pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.page-btn { font-size: 14px; font-weight: 600; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 18px; transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease); }
.page-btn:hover { border-color: var(--ink); background: var(--surface-alt); }
.page-btn.disabled { color: var(--ink-faint); opacity: 0.5; pointer-events: none; }
.page-now { font-size: 14px; font-weight: 400; color: var(--ink-faint); }

/* ==========================================================================
   Search
   ========================================================================== */
.search-hero { position: relative; display: flex; align-items: center; gap: 14px; margin-top: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 14px 24px; box-shadow: var(--shadow-1); }
.search-hero:focus-within { border-color: var(--ink); }
.search-hero .i-search { width: 24px; height: 24px; padding: 0; background: none; stroke: var(--accent); }
.search-hero input { border: none; background: none; outline: none; width: 100%; font-size: clamp(18px, 2.2vw, 22px); font-weight: 600; color: var(--ink); }
.search-hero input::placeholder { color: var(--ink-faint); font-weight: 400; }
.search-summary { font-size: 14px; color: var(--ink-faint); margin: 16px 0 0; min-height: 20px; }
.search-group-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); margin: 6px 0 16px; }
.result-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.result-line .author-avatar { width: 40px; height: 40px; font-size: 14px; }
.result-line b { font-weight: 600; font-size: 16px; }
.result-line span { font-size: 14px; color: var(--ink-faint); }
.result-line:hover b { text-decoration: underline; }

/* ==========================================================================
   Prose / about
   ========================================================================== */
.prose { max-width: var(--measure); }
.prose.legal { max-width: 960px; }   /* Terms / Privacy: wider than the essay measure */
.prose p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 1.2em; }
.prose h2 { font-size: 21px; font-weight: 600; margin: 1.5em 0 0.5em; color: var(--ink); }
.prose code { font-family: ui-monospace, Menlo, monospace; font-size: 0.9em; background: var(--surface-strong); padding: 2px 7px; border-radius: 5px; }
.prose a:not(.btn) { color: var(--ink); font-weight: 600; text-decoration: underline; }
.prose .btn { margin-top: 12px; }
.drop-cap::first-letter { font-weight: 700; float: left; font-size: 3.2rem; line-height: 0.84; padding: 6px 12px 0 0; color: var(--ink); }

/* ==========================================================================
   Footer — white (no contrast footer), hairline splits
   ========================================================================== */
.site-footer { margin-top: clamp(48px, 8vw, 80px); border-top: 1px solid var(--hairline); background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-top: 48px; padding-bottom: 36px; }
.footer-brand .brand-mark { font-size: 30px; color: var(--accent); display: block; line-height: 0.6; }
.footer-name { font-size: 18px; font-weight: 700; margin: 12px 0 4px; color: var(--accent); }
.footer-tag { color: var(--ink-faint); margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-cols h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 0 0 12px; }
.footer-cols a { display: block; font-size: 14px; color: var(--ink); padding: 5px 0; }
.footer-cols a:hover { text-decoration: underline; }
.footer-copy { font-size: 13px; color: var(--ink-faint); margin: 8px 0 0; padding: 5px 0; }
.footer-base { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid var(--hairline); }
.footer-base p { font-size: 13px; color: var(--ink-faint); margin: 0; }
.ghost-toggle { font-size: 14px; font-weight: 500; color: var(--ink); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; transition: border-color 0.18s var(--ease); }
.ghost-toggle:hover { border-color: var(--ink); }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 16px); background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; padding: 13px 22px; border-radius: var(--radius-sm); box-shadow: 0 6px 20px rgba(0,0,0,0.25); opacity: 0; pointer-events: none; z-index: 90; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Floating: left share rail (book pages, desktop) + scroll-to-top
   ========================================================================== */
.float-share { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 55; display: flex; flex-direction: column; gap: 2px; padding: 6px; background: var(--surface); border: 1px solid var(--hairline); border-left: none; border-radius: 0 14px 14px 0; box-shadow: var(--shadow-1); }
.fs-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); transition: background-color 0.16s var(--ease), color 0.16s var(--ease); }
.fs-btn:hover { background: var(--surface-alt); color: var(--accent); }
.fs-btn svg { width: 18px; height: 18px; fill: currentColor; }
.fs-link svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.scroll-top { position: fixed; right: 24px; bottom: 24px; z-index: 55; width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; background: var(--ink); color: #fff; border: none; box-shadow: var(--shadow-1); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: #000; }
.scroll-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1024px) { .float-share { display: none; } }   /* share rail = desktop only */

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .primary-nav { display: none; }
  .header-inner { gap: 12px; }
  .header-actions { flex: 1; min-width: 0; }
  .header-search { display: flex; flex: 1; min-width: 0; padding: 6px 6px 6px 16px; box-shadow: none; background: var(--surface-strong); border-color: transparent; }
  .nav-toggle { display: grid; flex: 0 0 auto; }
  .header-search .i-search { background: none; stroke: var(--ink-soft); width: 22px; height: 22px; padding: 0; margin-right: 5px; }   /* no orb fill; medium dark-grey magnifier on mobile */
  .book-hero-inner { grid-template-columns: 130px 1fr; gap: 22px; }
  .cover-lg { max-width: 130px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px 8px; }
  .stat + .stat::before { display: none; }   /* dividers only on the desktop row */
  .book-minibar { display: flex; }
}
@media (max-width: 640px) {
  /* phone book hero: centered single column, comfortable cover + Get button */
  .book-hero { padding: 28px 0 32px; text-align: center; }
  .book-hero-inner { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
  .book-hero-coverslot { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .book-hero-coverslot .cover, .cover-hero-mobile { width: 150px; max-width: 150px; }
  .book-hero-coverslot .cover-cta { display: none; }   /* Get is in the sticky minibar on phones */
  .book-hero-meta { text-align: center; max-width: 520px; margin-inline: auto; }
  .book-hero-meta h1 { font-size: clamp(22px, 6vw, 30px); margin-top: 8px; }
  .book-hero-author { margin-top: 10px; }
  .book-hero-blurb { margin-top: 12px; }
  .book-hero-facts { display: none; }   /* facts repeat in Book details — keep the phone hero tight */
  .book-hero .back-link, .book-hero-coverslot .report-link { display: none; }   /* declutter the phone hero */
  .book-hero-stats { justify-content: center; margin-top: 16px; }
  /* slightly larger, more readable quotes on phones */
  .bq-text .q-text { font-size: 21px; line-height: 1.6; }
  .bq-btn.js-copy { order: 0; margin-left: 0; }   /* Copy text sits left with the share buttons on phones */
}
@media (max-width: 540px) {
  .stat-ic { width: 42px; height: 42px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .section-head-centered, .section-head:has(+ .book-quotes) { align-items: center; text-align: center; }   /* keep Keep reading / quotes headings centred on phones */
  .footer-base { flex-direction: column; align-items: flex-start; }
}

.foot-heart { vertical-align: -2px; margin-left: 3px; color: var(--accent, #b08d57); }
