/* =====================================================================
   The Daily Brave / Fear-Full  ·  design system
   Colours (measured contrast in the QA report):
     Light surface  bg #faf8f4  text #111111  muted #5c5c5c  gold text #7a5f1e
     Dark surface   bg #000000  text #dddddd  muted #a3a3a3  gold text #b8963e / #d4b76a
     Lines/ornament gold #b8963e (decorative only on light), border #d5d0c8 / #2a2a2a
   Type: Cormorant Garamond (display), EB Garamond (body), self-hosted, SIL OFL
   Scale: 15 / 17 / 18 / 20 / 24 / 30 / 40 / 52 / 96px
   Spacing: 8px base  (8 16 24 40 64 96 128)
   Corners: 0 everywhere. Motion: colour only, hero fade guarded by reduced-motion.
   ===================================================================== */

@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/cormorant-garamond-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 300; font-display: swap; src: url("../fonts/cormorant-garamond-latin-300-italic.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/eb-garamond-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/eb-garamond-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/eb-garamond-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/eb-garamond-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/eb-garamond-latin-500-italic.woff2") format("woff2"); }

:root {
  --bg: #faf8f4;
  --bg-2: #f0ece2;
  --ink: #111111;
  --muted: #5c5c5c;
  --gold-text: #7a5f1e;      /* gold for text on light surfaces (5.7:1) */
  --gold: #b8963e;           /* decorative gold; text only on dark (7.5:1) */
  --gold-light: #d4b76a;
  --line: #d5d0c8;

  --dark: #000000;
  --dark-2: #161616;
  --dark-text: #dddddd;
  --dark-muted: #a3a3a3;
  --dark-line: #2a2a2a;

  --display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --body: "EB Garamond", "Georgia", "Times New Roman", serif;

  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px; --s6: 96px; --s7: 128px;
  --container: 1100px;
  --narrow: 680px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
strong { font-weight: 600; }
em { font-style: italic; }

/* Focus: visible on every interactive element, both surfaces */
:focus-visible { outline: 3px solid var(--gold-text); outline-offset: 3px; }
.dark :focus-visible, .topbar :focus-visible, footer :focus-visible { outline-color: var(--gold-light); }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; font-family: var(--display); letter-spacing: 2px; text-transform: uppercase; font-size: 15px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ===== Type helpers ===== */
.eyebrow {
  font-family: var(--display);
  font-size: 15px; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold-text);
}
.dark .eyebrow { color: var(--gold); }
.gold-line { width: 56px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); margin: 0 auto; }
.ornament { color: var(--gold); font-size: 16px; letter-spacing: 10px; text-align: center; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.15; }
h2 { font-size: clamp(34px, 5vw, 52px); font-weight: 300; letter-spacing: 1px; }
h2 em { color: var(--gold-text); font-weight: 400; }
.dark h2 { color: var(--gold); }
.dark h2 em { color: var(--gold-light); }
h3 { font-size: 26px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 28px;
  font-family: var(--display); font-size: 16px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 1px solid transparent; border-radius: 0;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-gold:active { background: #a8873a; }
.btn-ghost { background: transparent; color: var(--gold-light); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--ink); }
.light .btn-ghost, .closing .btn-ghost { color: var(--gold-text); border-color: var(--gold-text); }
.light .btn-ghost:hover, .closing .btn-ghost:hover { background: var(--gold-text); color: #fff; }

/* ===== Nav ===== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: #000; color: var(--dark-text);
  border-bottom: 1px solid var(--dark-line);
}
.topbar .bar {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--nav-h); padding: 0 24px;
}
.topbar .brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  color: var(--gold-light); text-decoration: none; white-space: nowrap;
}
.topbar .brand .mark { width: 11px; height: 20px; flex-shrink: 0; }
.topbar .brand .sep { color: var(--dark-muted); margin: 0 6px; font-weight: 300; }
.topbar ul { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.topbar ul a {
  display: inline-block; padding: 8px 0;
  font-family: var(--display); font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dark-text); text-decoration: none; border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.topbar ul a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.menu-btn {
  display: none; align-items: center; gap: 10px;
  min-height: 44px; min-width: 44px; padding: 8px 14px;
  background: transparent; color: var(--gold-light); border: 1px solid var(--gold);
  font-family: var(--display); font-size: 15px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
}
.menu-btn:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 860px) {
  .menu-btn { display: inline-flex; }
  .topbar .bar { flex-wrap: wrap; padding: 10px 16px; }
  .topbar ul {
    flex-basis: 100%; flex-direction: column; gap: 0;
    border-top: 1px solid var(--dark-line); margin-top: 10px; padding: 8px 0 12px;
  }
  .topbar ul a { display: block; padding: 12px 4px; font-size: 17px; border-bottom: none; }
  .topbar .brand { font-size: 13px; letter-spacing: 2px; }
}
@media (max-width: 400px) {
  .topbar .brand .sep, .topbar .brand .long { display: none; }
  .js .topbar ul[hidden] { display: none; }
  .no-js .topbar ul { display: flex; }
}
@media (min-width: 861px) { .topbar ul[hidden] { display: flex; } }

/* ===== Layout ===== */
section, .hero { padding: var(--s6) 24px; }
@media (max-width: 720px) { section, .hero { padding: var(--s5) 16px; } }
.container { max-width: var(--container); margin: 0 auto; }
.narrow { max-width: var(--narrow); margin: 0 auto; }
.dark { background: var(--dark); color: var(--dark-text); }
.light { background: var(--bg); color: var(--ink); }
.section-head { text-align: center; margin-bottom: var(--s5); }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .gold-line { margin-bottom: 20px; }
.section-head .sub { font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto; font-style: italic; }
.dark .section-head .sub { color: var(--dark-muted); }
.prose { font-size: 19px; line-height: 1.75; }
.prose p { margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: inherit; }
.dark .prose { color: var(--dark-text); }

/* ===== Hero ===== */
.hero {
  background: var(--dark); color: var(--dark-text);
  min-height: calc(100vh - var(--nav-h)); min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.hero::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(184,150,62,0.55); pointer-events: none; }
.hero-inner { position: relative; max-width: 760px; min-width: 0; width: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .hero-inner { animation: fadeUp 0.9s ease both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}
.hero .mark { width: 26px; height: 46px; margin: 0 auto 20px; color: var(--gold); }
.hero .eyebrow { display: block; margin-bottom: 20px; color: var(--gold-light); letter-spacing: 6px; }
.hero h1 {
  font-size: clamp(28px, 7.2vw, 62px); font-weight: 300; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); line-height: 1; margin-bottom: 22px;
}
.hero .headline {
  font-family: var(--display); font-size: clamp(22px, 3vw, 30px); font-weight: 400; line-height: 1.3;
  color: #f2eee4; max-width: 640px; margin: 0 auto 20px;
}
.hero .gold-line { margin: 0 auto 24px; }
.hero .lead { font-size: 18px; line-height: 1.7; color: var(--dark-muted); max-width: 560px; margin: 0 auto 36px; }
.hero .status { display: block; margin-top: 10px; color: var(--gold-light); font-style: italic; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== How it works ===== */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: var(--s4); }
@media (max-width: 720px) { .triptych { grid-template-columns: 1fr; } }
.part { border: 1px solid var(--line); padding: 32px 22px 28px; text-align: center; background: var(--bg); }
.part .num { font-family: var(--display); font-size: 40px; font-style: italic; color: var(--gold-text); line-height: 1; margin-bottom: 12px; }
.part h3 { font-size: 16px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.part .line { width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); margin: 0 auto 14px; }
.part p { font-size: 17px; color: var(--muted); line-height: 1.6; }
.all-three { text-align: center; font-family: var(--display); font-size: 22px; color: var(--gold-text); margin-bottom: var(--s4); }
.pullquote {
  text-align: center; font-family: var(--display); font-size: clamp(28px, 4vw, 40px); font-weight: 300; line-height: 1.3;
  max-width: 520px; margin: var(--s4) auto; padding: 24px 0; position: relative;
}
.pullquote::before, .pullquote::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.pullquote::before { top: 0; } .pullquote::after { bottom: 0; }
.pullquote em { color: var(--gold-text); }

/* ===== Why 84 ===== */
.big-number { text-align: center; margin-bottom: var(--s4); }
.big-number .n { font-family: var(--display); font-size: clamp(120px, 20vw, 200px); font-weight: 300; color: var(--gold); line-height: 0.95; letter-spacing: -3px; }
.big-number .l { font-family: var(--display); font-size: 15px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-light); margin-top: 10px; }
.cadence { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: var(--s4) 0; font-family: var(--display); font-size: clamp(20px, 2.6vw, 26px); font-style: italic; color: var(--gold-light); }
.blessing { text-align: center; font-family: var(--display); font-size: clamp(22px, 3vw, 30px); font-weight: 300; color: #f2eee4; margin-top: var(--s4); }
.blessing em { color: var(--gold); }

/* ===== Weeks ===== */
.weeks { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.week { border: 1px solid var(--line); padding: 24px 22px 22px; background: var(--bg); }
.week .wk { font-family: var(--display); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-text); margin-bottom: 8px; font-weight: 500; }
.week h3 { font-size: 23px; line-height: 1.2; margin-bottom: 10px; }
.week .line { width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); margin-bottom: 10px; }
.week p { font-size: 16px; color: var(--muted); line-height: 1.5; }

/* ===== For you ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }
.two-col > div { border-top: 1px solid var(--gold); padding-top: 22px; }
.two-col h3 { font-size: 24px; margin-bottom: 12px; }
.two-col p { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.two-col p:last-child { margin-bottom: 0; }

/* ===== Book ===== */
.book { display: grid; grid-template-columns: minmax(240px, 380px) 1fr; gap: 56px; align-items: center; max-width: 960px; margin: 0 auto; }
@media (max-width: 760px) { .book { grid-template-columns: 1fr; gap: 36px; } .book-cover { max-width: 300px; margin: 0 auto; } }
.book-cover img { border: 1px solid var(--dark-line); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.9); }
.book-info h3 { font-size: 34px; margin-bottom: 8px; color: #f2eee4; }
.book-info .byline { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--gold-light); margin-bottom: 22px; }
.specs { margin-bottom: 28px; }
.specs li { padding: 8px 0 8px 22px; position: relative; color: var(--dark-text); font-size: 17px; border-bottom: 1px solid var(--dark-line); }
.specs li:first-child { border-top: 1px solid var(--dark-line); }
.specs li::before { content: ""; position: absolute; left: 0; top: 19px; width: 10px; height: 1px; background: var(--gold); }
.availability { border: 1px solid var(--gold); padding: 20px 22px; }
.availability .label { font-family: var(--display); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 6px; }
.availability p { color: var(--dark-muted); font-size: 17px; }
.availability .btn { margin-top: 16px; }
.availability a { color: var(--gold-light); }

/* ===== Story ===== */
.story .prose p:first-child::first-letter { font-family: var(--display); float: left; font-size: 74px; line-height: 0.85; padding: 8px 12px 0 0; color: var(--gold-text); }
.signoff { text-align: center; margin-top: 32px; font-family: var(--display); font-style: italic; font-size: 22px; color: var(--gold-text); }

/* ===== About ===== */
.person { max-width: 640px; margin: 0 auto; text-align: center; }
.person img { width: 200px; height: 200px; object-fit: cover; object-position: center 15%; margin: 0 auto 24px; border: 1px solid var(--gold); padding: 6px; background: var(--bg); border-radius: 50%; }
.person .role { font-family: var(--display); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-text); margin: 6px 0 22px; font-weight: 500; }
.person .prose { text-align: center; font-size: 18px; }
.story .prose { text-align: center; }

/* ===== Sources ===== */
.sources-intro { text-align: center; font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto var(--s5); font-style: italic; }
.subhead { text-align: center; margin: var(--s5) auto var(--s3); }
.subhead span { display: inline-block; font-family: var(--display); font-size: 15px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-text); padding: 12px 24px; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); font-weight: 600; }
.subhead:first-of-type { margin-top: 0; }
.foundations { max-width: 860px; margin: 0 auto; }
.foundation { display: grid; grid-template-columns: 96px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.foundation:first-child { border-top: 1px solid var(--line); }
.foundation .wk { font-family: var(--display); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-text); padding-top: 6px; font-weight: 500; }
.foundation h3 { font-size: 22px; margin-bottom: 2px; }
.foundation .who { font-family: var(--display); font-style: italic; font-size: 17px; color: var(--gold-text); margin-bottom: 4px; }
.foundation .works { font-size: 15px; color: var(--muted); }
@media (max-width: 600px) { .foundation { grid-template-columns: 1fr; gap: 4px; } }
.also { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 760px; margin: 0 auto; text-align: center; }
.also strong { color: var(--ink); font-weight: 500; }
.voices { text-align: center; font-family: var(--display); font-size: 18px; line-height: 2.1; max-width: 900px; margin: 0 auto; }
.voices li { display: inline; }
.voices li::after { content: "\2726"; color: var(--gold); margin: 0 10px; font-size: 11px; vertical-align: 2px; }
.voices li:last-child::after { content: none; }
.voices-close { text-align: center; font-family: var(--display); font-style: italic; color: var(--gold-text); font-size: 18px; max-width: 600px; margin: var(--s4) auto 0; }

/* ===== Quote ===== */
.quote { text-align: center; padding: var(--s6) 24px; }
.quote .mark { width: 24px; height: 43px; margin: 0 auto 22px; color: var(--gold); }
.quote blockquote { font-family: var(--display); font-size: clamp(24px, 4vw, 38px); font-weight: 300; font-style: italic; color: var(--gold-light); max-width: 760px; margin: 0 auto 18px; line-height: 1.35; }
.quote cite { font-family: var(--display); font-style: normal; font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ===== Closing ===== */
.closing { text-align: center; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.closing .mark { width: 24px; height: 43px; margin: 0 auto; color: var(--gold); }
.closing h2 { font-size: clamp(36px, 6vw, 60px); margin-bottom: 14px; }
.closing p { font-size: 19px; color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-style: italic; }

/* ===== Footer ===== */
footer { background: var(--dark); color: var(--dark-muted); padding: var(--s5) 24px 32px; text-align: center; font-size: 15px; }
footer .signature { font-family: var(--display); font-size: 17px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin: 16px 0 6px; }
footer .by { font-family: var(--display); font-style: italic; font-size: 17px; color: var(--dark-muted); margin-bottom: 28px; }
footer nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin-bottom: 24px; }
footer nav a { color: var(--dark-text); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--dark-line); }
footer nav a:hover { color: var(--gold-light); text-decoration-color: var(--gold); }
footer .legal { font-size: 14px; letter-spacing: 1px; color: var(--dark-muted); }

/* ===== Hover reactions on boxed elements (colour and line width only) ===== */
.part, .week, .two-col > div, .foundation, .availability, .book-cover img, .person img, .hero::before {
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.part .line, .week .line, .two-col > div, .foundation { transition-property: border-color, background-color, width, box-shadow; transition-duration: 0.3s; }
.part .line, .week .line { transition: width 0.3s ease, background-color 0.3s ease; }

.part:hover, .week:hover {
  border-color: var(--gold);
  background: #fffdf8;
  box-shadow: 0 0 0 1px var(--gold), 0 18px 40px -28px rgba(184,150,62,0.55);
}
.part:hover .line { width: 100%; }
.week:hover .line { width: 72px; }
.part:hover .num, .week:hover .wk { color: var(--gold); }
.part:hover h3, .week:hover h3 { color: var(--gold-text); }

.two-col > div:hover { border-top-color: var(--gold); border-top-width: 3px; padding-top: 20px; }
.two-col > div:hover h3 { color: var(--gold-text); }

.foundation:hover { background: #fffdf8; box-shadow: inset 4px 0 0 var(--gold); padding-left: 12px; }
.foundation { transition: background-color 0.25s ease, box-shadow 0.25s ease, padding-left 0.25s ease; }

.hero:hover::before { border-color: var(--gold-light); opacity: 1; box-shadow: inset 0 0 0 1px rgba(212,183,106,0.35); }
.hero::before { opacity: 0.85; }

.availability:hover { border-color: var(--gold-light); box-shadow: 0 0 0 1px var(--gold-light); }
.book-cover img:hover { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 24px 50px -24px rgba(0,0,0,0.9); }
.person img:hover { border-color: var(--gold-text); box-shadow: 0 0 0 2px var(--gold-text); }

@media (prefers-reduced-motion: reduce) {
  .part, .week, .two-col > div, .foundation, .availability, .book-cover img, .person img, .hero::before, .part .line, .week .line { transition: none; }
}
@media (hover: none) {
  .part:hover .line, .week:hover .line { width: 24px; }
}

/* ===== Legal pages ===== */
.page { max-width: 760px; margin: 0 auto; padding: var(--s5) 24px var(--s6); }
.page h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 300; margin: 12px 0 8px; }
.page .updated { color: var(--muted); font-style: italic; margin-bottom: var(--s4); }
.page h2 { font-size: 28px; font-weight: 400; margin: var(--s4) 0 12px; }
.page h3 { font-size: 21px; margin: 24px 0 8px; }
.page p, .page li { font-size: 18px; line-height: 1.65; margin-bottom: 14px; }
.page ul { list-style: disc; padding-left: 24px; }
.page a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.page a:hover { color: var(--ink); }
.page .note { border-left: 3px solid var(--gold); padding: 12px 18px; background: var(--bg-2); font-size: 17px; }
.page .back { display: inline-block; margin-bottom: 24px; font-family: var(--display); letter-spacing: 2px; text-transform: uppercase; font-size: 15px; }
