/* Meera of Karmana — shared site stylesheet
   One file, linked from every page, so the design stays identical
   across / , /series/volume-1/ through /series/volume-5/ , /author/ , /press/ . */

:root {
  --bg: #0f1412;
  --paper: rgba(255, 248, 235, 0.92);
  --ink: #1c1c18;
  --muted: rgba(28, 28, 24, 0.72);
  --gold: #caa45a;
  --gold2: #8a6b2d;
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--bg);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: max(8px, env(safe-area-inset-top));
  left: max(8px, env(safe-area-inset-left));
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff8eb;
  color: #1c1c18;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.32);
  transform: translateY(-150%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Real, un-hoverable pointers only (Samsung/iPhone touch) get tap feedback
   instead of :hover — otherwise iOS Safari "sticks" the hover state on the
   last-tapped link/button until the user taps elsewhere. */
@media (hover: none), (pointer: coarse) {
  a, button, .btn, .cta { -webkit-tap-highlight-color: transparent; }
}

/* Global fixed background texture, shared across all pages */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(700px 400px at 80% 0%, rgba(202,164,90,.12), transparent 55%),
    linear-gradient(to bottom, rgba(15,20,18,.55), rgba(15,20,18,.82) 35%, rgba(15,20,18,.92));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(12,16,14,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  /* iPhone notch / Dynamic Island: keep the bar's own background behind
     the status bar instead of content sliding under it edge-to-edge. */
  padding-top: env(safe-area-inset-top);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,.92);
}
.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-image: url('/images/brand-cover.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  flex: none;
}
.brand span {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .2px;
}

.navlinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.navlinks a {
  flex: none;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.navlinks a[aria-current="page"] {
  color: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
@media (hover: hover) and (pointer: fine) {
  .navlinks a:hover {
    color: rgba(255,255,255,.95);
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: #1b1407;
  background: linear-gradient(180deg, rgba(255,226,166,.95), rgba(202,164,90,.95));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  white-space: nowrap;
  touch-action: manipulation;
}
.cta:active { transform: translateY(1px); }
/* Outrank .navlinks a[aria-current="page"] so the CTA keeps its gold
   styling on the one page it points to (e.g. Order Now on /order/). */
.navlinks a.cta[aria-current="page"] {
  color: #1b1407;
  background: linear-gradient(180deg, rgba(255,226,166,.95), rgba(202,164,90,.95));
  border-color: rgba(255,255,255,.16);
}

/* Below this width the brand + 7-item navlinks row no longer fits on
   one line — wrap the whole bar so navlinks gets the full viewport
   width to wrap within, instead of overflowing past the edge. */
@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 14px;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }
  .navlinks { gap: 7px 8px; }
  .navlinks a { font-size: 12.5px; padding: 7px 9px; min-height: 30px; display: inline-flex; align-items: center; }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 18px 70px;
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  padding-bottom: max(70px, calc(70px + env(safe-area-inset-bottom)));
}

/* Breadcrumb, used on every page below the header */
.crumbs {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}
.crumbs a { color: rgba(255,255,255,.78); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.28); }
@media (hover: hover) and (pointer: fine) {
  .crumbs a:hover { color: #fff; }
}
.crumbs span[aria-hidden] { margin: 0 6px; opacity: .5; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
}

.panel {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

.hero-left {
  padding: 22px;
  position: relative;
}
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-left-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
  filter: blur(.2px);
}
.hero-left > * {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(28, 28, 24, 0.70);
}
.kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(202,164,90,.95));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

h1 {
  margin: 10px 0 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: .2px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.12;
  margin: 0 0 14px;
}

.subtitle {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.10);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}
.btn.primary {
  background: linear-gradient(180deg, rgba(255,226,166,.98), rgba(202,164,90,.98));
  color: #1b1407;
  border-color: rgba(0,0,0,.10);
}
.btn.secondary {
  background: rgba(255,255,255,.70);
  color: #1b1b18;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { filter: brightness(1.02); }
}
.btn:active { transform: translateY(1px); }

.hero-right {
  display: grid;
  grid-template-rows: auto 1fr;
}
.cover-wrap {
  padding: 18px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items: center;
}
.cover {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  background-image: url('/images/brand-cover.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(0,0,0,.10);
  justify-self: center;
}
.cover-meta h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
}
.cover-meta p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.pillrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}

.quick {
  padding: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: grid;
  gap: 10px;
  align-content: start;
}
.quick .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: rgba(28, 28, 24, 0.82);
}
.quick .row b { color: rgba(28, 28, 24, 0.95); }

.section {
  margin-top: 22px;
  padding: 20px;
}
.section h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 22px;
}
.section p {
  margin: 0 0 1em;
  color: var(--muted);
  line-height: 1.65;
}
.section p:last-child { margin-bottom: 0; }

.grid3 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 248, 235, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: 160%;
  background-position: center;
  opacity: .10;
}
.card > * { position: relative; z-index: 1; }
.card h4 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 18px;
}
.quote {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 28, 24, 0.78);
  margin: 0 0 10px;
}
.who {
  font-weight: 900;
  font-size: 13px;
  color: rgba(28, 28, 24, 0.92);
}
.who a { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(28,28,24,.35); }
@media (hover: hover) and (pointer: fine) {
  .who a:hover { border-bottom-style: solid; }
}

.buybar {
  margin-top: 22px;
  padding: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.store {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .store:hover { background: rgba(255,255,255,.12); color: #fff; }
}

/* ═══ Volumes-at-a-glance list (homepage + cross-links) ═══════════════ */
.vols {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vol-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vol-card .vol-no {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
}
.vol-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
}
.vol-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; flex: 1; }
.vol-card .btn { align-self: start; margin-top: 4px; }
.soon-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.07);
  color: var(--gold2);
  width: fit-content;
}

/* ═══ FAQ ═══════════════════════════════════════════════════════════ */
.faq details {
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.faq details:first-of-type { border-top: 1px solid rgba(0,0,0,.10); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
  touch-action: manipulation;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 12px;
  font-size: 20px;
  color: var(--gold2);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 30px 18px 0; max-width: 68ch; color: var(--muted); }
.faq .ans p:last-child { margin-bottom: 0; }

/* ═══ Long-form FAQ guide: search, topic filters, callouts ════════════ */
.faq-page { --faq-control-bg: rgba(255,255,255,.72); }

.faq-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(115deg, rgba(255,248,235,.96), rgba(245,231,202,.9)),
    var(--paper);
}
.faq-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 92% 6%, rgba(202,164,90,.28), transparent 30%),
    radial-gradient(circle at 8% 95%, rgba(59,92,72,.12), transparent 32%);
  pointer-events: none;
}
.faq-hero .subtitle { max-width: 72ch; font-size: clamp(16px, 2vw, 18px); }
.faq-hero-note {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.faq-hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(202,164,90,.16);
}

.faq-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 620px;
}
.faq-stat {
  padding: 13px 15px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.5);
}
.faq-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--gold2);
}
.faq-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.faq-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.faq-highlight {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.58);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.faq-highlight small {
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.faq-highlight span { font-family: var(--serif); font-weight: 700; line-height: 1.3; }
@media (hover: hover) and (pointer: fine) {
  .faq-highlight:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.88);
    border-color: rgba(138,107,45,.35);
  }
}

.faq-js-tools { display: none; }
.js .faq-js-tools { display: block; }
.faq-tools { padding: clamp(18px, 3vw, 26px); }
.faq-tools h2,
.faq-section h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.15;
}
.faq-tools h2 { font-size: clamp(22px, 2.8vw, 30px); }
.faq-search-label {
  display: block;
  margin: 18px 0 7px;
  font-size: 13px;
  font-weight: 850;
  color: rgba(28,28,24,.84);
}
.faq-search-row { display: flex; gap: 9px; }
.faq-search-box { position: relative; flex: 1; min-width: 0; }
.faq-search-box::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(28,28,24,.58);
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}
.faq-search-box::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 29px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: rgba(28,28,24,.58);
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}
.faq-search-input {
  width: 100%;
  min-height: 54px;
  padding: 13px 48px 13px 48px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.03);
  -webkit-appearance: none;
  appearance: none;
}
.faq-search-input::-webkit-search-cancel-button { display: none; }
.faq-search-input:focus {
  outline: 3px solid rgba(202,164,90,.28);
  border-color: var(--gold2);
}
.faq-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.faq-clear[hidden] { display: none; }
@media (hover: hover) and (pointer: fine) {
  .faq-clear:hover { background: rgba(0,0,0,.06); color: var(--ink); }
}

.faq-filter-label {
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.faq-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.faq-filter,
.faq-tool-button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: var(--faq-control-bg);
  color: var(--ink);
  font: inherit;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
}
.faq-filter[aria-pressed="true"] {
  color: #fff;
  background: #315242;
  border-color: #315242;
  box-shadow: 0 6px 16px rgba(28,60,43,.2);
}
.faq-filter-count { opacity: .7; font-variant-numeric: tabular-nums; }
.faq-filter-count::before { content: " · "; }
.faq-tool-button { border-radius: 10px; background: rgba(255,255,255,.56); }
@media (hover: hover) and (pointer: fine) {
  .faq-filter:hover:not([aria-pressed="true"]),
  .faq-tool-button:hover { background: rgba(255,255,255,.95); }
}
.faq-tool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.09);
}
.faq-status { margin: 0 !important; font-size: 13px; color: var(--muted); }
.faq-tool-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.faq-key {
  display: inline-flex;
  min-width: 20px;
  justify-content: center;
  padding: 1px 5px;
  margin-left: 4px;
  border: 1px solid rgba(0,0,0,.15);
  border-bottom-width: 2px;
  border-radius: 5px;
  background: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 800;
}

.faq-topic-index { padding: 18px 20px; }
.faq-topic-index h2 { margin: 0 0 4px; font-family: var(--serif); font-size: 21px; }
.faq-topic-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.faq-topic-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 11px;
  background: rgba(255,255,255,.5);
  color: var(--ink);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 750;
}
.faq-topic-links a span { color: var(--gold2); font-variant-numeric: tabular-nums; }
@media (hover: hover) and (pointer: fine) {
  .faq-topic-links a:hover { background: rgba(255,255,255,.94); }
}

.faq-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.faq-editorial-note {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.1);
  background: rgba(255,255,255,.5);
}
.faq-editorial-note.is-sensitive {
  background: rgba(202,164,90,.12);
  border-color: rgba(138,107,45,.25);
}
.faq-editorial-note strong { display: block; margin-bottom: 5px; font-family: var(--serif); }
.faq-editorial-note p { margin: 0; font-size: 13px; line-height: 1.55; }

.faq-section,
.faq-page .faq details { scroll-margin-top: 90px; }
.faq-section[hidden],
.faq details[hidden] { display: none; }
.faq-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.faq-section h2 { font-size: clamp(23px, 2.8vw, 31px); }
.faq-section-intro { max-width: 72ch; margin: 7px 0 0 !important; font-size: 14px; }
.faq-section-count {
  flex: none;
  min-width: 52px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138,107,45,.25);
  border-radius: 50%;
  background: rgba(202,164,90,.13);
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.faq-page .faq summary { padding: 17px 40px 17px 0; }
.faq-page .faq summary::after { right: 5px; top: 13px; }
.faq-page .faq summary:focus-visible {
  outline: 3px solid rgba(202,164,90,.34);
  outline-offset: 4px;
  border-radius: 5px;
}
.faq-page .faq details:target {
  margin-inline: -10px;
  padding-inline: 10px;
  border-radius: 8px;
  background: rgba(202,164,90,.13);
}
.faq-question { vertical-align: middle; }
.faq-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  margin-left: 8px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: 2px;
}
.faq-badge.spoiler { color: #7a391f; background: rgba(164,78,46,.11); border-color: rgba(164,78,46,.24); }
.faq-badge.content-note { color: #6d5019; background: rgba(202,164,90,.15); border-color: rgba(138,107,45,.27); }
.faq-badge.author-note { color: #315242; background: rgba(49,82,66,.1); border-color: rgba(49,82,66,.22); }
.faq-page .faq .ans { max-width: 76ch; }
.faq-page .faq .ans p { line-height: 1.68; }
.faq-page .faq .ans a { color: var(--gold2); text-underline-offset: 3px; }
.faq-page .faq .ans .faq-source { margin-top: 10px; font-size: 12.5px; font-weight: 800; }

.faq-cover-hunt {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 4px 0 20px;
  padding: 14px;
  border: 1px solid rgba(138,107,45,.24);
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(202,164,90,.13), rgba(255,255,255,.5));
}
.faq-cover-hunt a { display: block; border-radius: 9px; }
.faq-cover-hunt img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.faq-cover-hunt strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 19px; }
.faq-cover-hunt p { margin: 0 0 7px; font-size: 13.5px; line-height: 1.6; }
.faq-cover-hunt .faq-cover-caution { margin: 0; font-size: 12px; font-weight: 800; color: var(--gold2); }

.faq-no-results {
  padding: 34px 20px;
  text-align: center;
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.42);
}
.faq-no-results[hidden] { display: none; }
.faq-no-results h2 { margin: 0 0 7px; font-family: var(--serif); font-size: 24px; }
.faq-no-results p { margin: 0 0 14px; }

@media (max-width: 860px) {
  .faq-highlights,
  .faq-topic-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .faq-section,
  .faq-page .faq details {
    scroll-margin-top: calc(175px + env(safe-area-inset-top));
  }
}
@media (max-width: 720px) {
  .faq-section,
  .faq-page .faq details {
    scroll-margin-top: calc(220px + env(safe-area-inset-top));
  }
}
@media (max-width: 560px) {
  .faq-stats { grid-template-columns: 1fr; gap: 7px; }
  .faq-stat { display: flex; align-items: baseline; gap: 8px; padding: 10px 12px; }
  .faq-stat strong { font-size: 20px; }
  .faq-stat span { margin: 0; }
  .faq-highlights,
  .faq-topic-links,
  .faq-editorial-grid { grid-template-columns: 1fr; }
  .faq-highlight { min-height: 76px; }
  .faq-filter,
  .faq-tool-button { min-height: 44px; }
  .faq-tool-row { align-items: stretch; }
  .faq-tool-actions { width: 100%; }
  .faq-tool-button { flex: 1; }
  .faq-key { display: none; }
  .faq-section-head { gap: 10px; }
  .faq-section-count { min-width: 44px; min-height: 44px; font-size: 16px; }
  .faq-page .faq summary { font-size: 16px; }
  .faq-badge { display: table; margin: 7px 0 0; }
  .faq-cover-hunt { grid-template-columns: 84px minmax(0, 1fr); gap: 13px; padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-highlight,
  .faq summary::after { transition: none; }
}

/* ═══ Series roadmap (timeline on /series/) ═══════════════════════════ */
.roadmap {
  margin-top: 26px;
  margin-left: 13px;
  border-left: 3px solid rgba(202,164,90,.55);
}
.roadmap-item {
  position: relative;
  padding: 0 0 20px 30px;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-dot {
  position: absolute;
  left: 0;
  top: 24px;
  transform: translate(-50%, 0);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 12px;
  color: #1b1407;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold));
  border: 2px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.roadmap-item.is-upcoming .roadmap-dot {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(202,164,90,.55));
}
.roadmap-card {
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rm-cover {
  flex: none;
  width: 74px;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
  border: 1px dashed rgba(0,0,0,.20);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6px;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(28,28,24,.5);
}
.rm-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rm-main { flex: 1; min-width: 0; }
.rm-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.rm-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
}
.roadmap-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 20px; }
.roadmap-card p { margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.55; max-width: 62ch; }
.roadmap-card .btn { margin-top: 2px; }
.status-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.status-pill.published { background: rgba(88,140,90,.16); color: #3c6b3e; border: 1px solid rgba(88,140,90,.35); }
.status-pill.upcoming { background: rgba(202,164,90,.16); color: var(--gold2); border: 1px solid rgba(202,164,90,.35); }
.rm-date { font-size: 13px; color: var(--muted); }
.rm-date .tbd {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 6px;
  border: 1px dashed rgba(0,0,0,.25);
  color: rgba(28,28,24,.45);
  font-style: italic;
  font-size: 12px;
}
@media (max-width: 560px) {
  .roadmap-card { flex-wrap: wrap; }
  .rm-cover { width: 56px; }
}

/* ═══ Order page: country jump-nav + retailer tiles ════════════════════ */
.country-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.country-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.10);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .15s ease, transform .15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .country-nav a:hover { background: rgba(255,255,255,.95); transform: translateY(-1px); }
}
.country-nav .flag { font-size: 19px; line-height: 1; }

.country-block { scroll-margin-top: 90px; }
.country-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.country-head .flag-lg { font-size: 30px; line-height: 1; }
.country-head h3 { margin: 0; }
.country-note { margin: 0 0 14px; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.buy-link {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease, transform .15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .buy-link:hover { background: rgba(255,255,255,.92); transform: translateY(-1px); }
}
.buy-link .retailer { font-weight: 800; font-size: 14px; }
.buy-link .fmt { font-size: 12px; color: var(--muted); }

/* ═══ Promo banner (coupon codes, limited offers) ══════════════════════ */
.promo-banner {
  margin-top: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,238,204,.6), rgba(255,248,235,.94));
  border: 1px solid rgba(202,164,90,.4);
}
.promo-banner .txt { max-width: 60ch; }
.promo-banner h4 { margin: 0 0 6px; font-family: var(--serif); font-size: 18px; }
.promo-banner p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.promo-code {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .03em;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(202,164,90,.18);
  border: 1px solid rgba(202,164,90,.45);
  color: var(--gold2);
  white-space: nowrap;
}
.buy-link .promo-code { margin-top: 2px; }
.buy-link.unconfirmed { border-style: dashed; }

/* ═══ Coming-soon banner (Volume 2 / Volume 3 pages) ══════════════════ */
.soon-banner {
  margin-top: 22px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.soon-banner .txt { max-width: 60ch; }
.soon-banner h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 20px; }
.soon-banner p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ═══ Author / press portrait slot ═══════════════════════════════════ */
.portrait-slot {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px dashed rgba(0,0,0,.22);
  background: rgba(0,0,0,.04);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: rgba(28,28,24,.55);
  font-size: 13px;
  line-height: 1.5;
}
.portrait-slot.has-photo {
  border: none;
  background: none;
  padding: 0;
  overflow: hidden;
}
.portrait-slot.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-grid {
  display: grid;
  grid-template-columns: 200px minmax(0,1fr);
  gap: 24px;
  align-items: start;
}

/* ═══ Press kit assets ════════════════════════════════════════════════ */
.press-assets {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.asset-card { padding: 18px; text-align: center; }
.asset-card .thumb {
  margin: 0 auto 14px;
  max-width: 160px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.asset-card h4 { margin: 0 0 6px; font-family: var(--serif); font-size: 16px; }
.asset-card p { margin: 0 0 12px; color: var(--muted); font-size: 13px; }

.facts {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.facts div {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.facts div:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.facts dt { flex: 0 0 110px; color: var(--gold2); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 11px; padding-top: .1em; }
.facts dd { margin: 0; color: var(--ink); }

/* ═══ Press coverage: logo bar, review cards, category groups ═══════════ */
.press-note { margin: -4px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.logo-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease, transform .15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .logo-tile:hover { background: rgba(255,255,255,.85); transform: translateY(-1px); }
}
.logo-tile img {
  height: 26px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
  flex: none;
}
.logo-tile .logo-fallback {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
}
.logo-tile span.tile-label { font-size: 12px; font-weight: 700; color: var(--muted); }

.cat-block { margin-top: 30px; }
.cat-block:first-child { margin-top: 0; }
.cat-block h4.cat-title {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 19px;
}
.cat-desc { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 70ch; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.review-card { padding: 18px; }
.review-card .card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card .card-head img {
  height: 22px;
  max-width: 88px;
  width: auto;
  object-fit: contain;
  flex: none;
}
.review-card .card-head .logo-fallback {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
}
.rating {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--gold2);
  background: rgba(202,164,90,.16);
  border: 1px solid rgba(202,164,90,.35);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.review-card .crit {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0,0,0,.12);
}
.type-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0 0 8px;
}

footer {
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 18px;
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  padding-bottom: max(18px, calc(18px + env(safe-area-inset-bottom)));
  color: rgba(255,255,255,.70);
  font-size: 13px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.24);
}
@media (hover: hover) and (pointer: fine) {
  footer a:hover { color: rgba(255,255,255,.95); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .cover-wrap { grid-template-columns: 1fr; }
  .cover { max-width: 260px; }
  .author-grid { grid-template-columns: 1fr; }
  .author-grid .portrait-slot { max-width: 200px; }
}
@media (max-width: 860px) {
  .grid3 { grid-template-columns: 1fr; }
  .vols { grid-template-columns: 1fr; }
}

/* ═══ Reviews page: stat tiles, subjective rank list, platform tags ═══ */
.review-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.stat-tile { padding: 18px; text-align: center; }
.stat-tile .num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1;
}
.stat-tile .lbl {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.platform-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  white-space: nowrap;
}
.platform-tag.instagram { background: rgba(202,90,130,.14); color: #a33d68; border-color: rgba(202,90,130,.32); }
.platform-tag.tiktok { background: rgba(28,28,24,.10); color: #1c1c18; border-color: rgba(28,28,24,.22); }
.platform-tag.snapchat { background: rgba(202,164,90,.16); color: var(--gold2); border-color: rgba(202,164,90,.35); }
.platform-tag.goodreads { background: rgba(115,74,25,.14); color: #6b4413; border-color: rgba(115,74,25,.32); }
.platform-tag.amazon { background: rgba(255,153,0,.16); color: #935e00; border-color: rgba(255,153,0,.38); }

.rank-list {
  list-style: none;
  counter-reset: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.rank-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
}
.rank-item.is-featured {
  background: linear-gradient(180deg, rgba(255,238,204,.6), rgba(255,248,235,.92));
  border-color: rgba(202,164,90,.45);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  padding: 18px 18px;
}
.rank-badge {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 13px;
  color: #1b1407;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.10);
}
.rank-item.is-featured .rank-badge {
  width: 38px;
  height: 38px;
  font-size: 15px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold));
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.rank-main { flex: 1; min-width: 0; }
.rank-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.rank-title { font-family: var(--serif); font-weight: 700; font-size: 15px; }
.rank-title a { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(28,28,24,.35); }
@media (hover: hover) and (pointer: fine) {
  .rank-title a:hover { border-bottom-style: solid; }
}
.rank-date { font-size: 12px; color: var(--muted); margin-left: auto; white-space: nowrap; }
.rank-note { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(28, 28, 24, 0.82); }
.rank-note strong { color: var(--ink); }
.rank-item .crit {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px dashed rgba(0,0,0,.12);
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
}
@media (max-width: 560px) {
  .rank-date { margin-left: 0; }
}

/* Reading list — unranked, alphabetical by title */
.booklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.booklist li {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
}
.booklist li.is-own {
  background: rgba(202,164,90,.16);
  border-color: rgba(202,164,90,.4);
}
.book-title { font-family: var(--serif); font-weight: 700; }
.book-title .own-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-left: 8px;
}
.book-author { display: block; font-size: 13px; color: var(--muted); margin-top: 1px; }
.book-note { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.book-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.book-tags .pill { font-size: 11px; padding: 4px 9px; font-weight: 700; }
@media (max-width: 860px) {
  .booklist { grid-template-columns: 1fr; }
}

/* ═══ Phone tier — Samsung Galaxy (360–412px) & iPhone (375–430px) ═════
   Everything above already reflows at 980/860/720/560px so nothing breaks
   on a phone; this tier is about *density and touch*, not breakage — less
   padding so more of the small screen is content, bigger tap targets on
   the pill-style links, and no orphaned two-column grids on the narrowest
   devices (iPhone SE / compact Galaxy A-series / Fold cover screen). ═════ */
@media (max-width: 480px) {
  main {
    padding: 16px 14px 56px;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-bottom: max(56px, calc(56px + env(safe-area-inset-bottom)));
  }
  .hero { margin-top: 14px; gap: 14px; }
  .hero-left { padding: 18px; }
  .cover-wrap { padding: 14px; gap: 12px; }
  .quick { padding: 14px; }
  .section { padding: 16px; margin-top: 16px; }
  .card { padding: 16px; }
  .buybar, .promo-banner, .soon-banner { padding: 16px; gap: 12px; }
  .roadmap-card { padding: 14px 16px; }
  .press-assets { gap: 12px; }

  /* Pill/tile links: comfortable one-thumb tap targets. */
  .country-nav a,
  .store,
  .buy-link { min-height: 44px; }
  .logo-tile { min-height: 44px; }

  h1 { letter-spacing: 0; }
  .subtitle { font-size: 15px; }
}

@media (max-width: 380px) {
  /* iPhone SE / mini and 360px-class Galaxy phones: the narrowest common
     widths in real traffic, where fixed-width columns stop fitting. */
  .cover { max-width: 180px; }
  .review-stats { gap: 10px; }
  .stat-tile { padding: 14px; }
  .stat-tile .num { font-size: 26px; }

  /* Label/value facts rows (author + press pages): stack instead of
     squeezing a 110px label column into ~300px of usable width. */
  .facts div { flex-direction: column; gap: 2px; padding: 10px 0; }
  .facts dt { flex-basis: auto; padding-top: 0; }

  .pillrow .pill,
  .book-tags .pill { font-size: 11px; padding: 6px 9px; }
}
