:root {
  --paper: #f2ede3;
  --paper-soft: #f8f4ec;
  --paper-bright: #fffdf8;
  --ink: #171916;
  --ink-soft: #33352f;
  --muted: #6b665c;
  --line: rgba(23, 25, 22, .16);
  --line-strong: rgba(23, 25, 22, .38);
  --accent: #aa4632;
  --accent-dark: #7c2f23;
  --sea: #153d49;
  --sea-deep: #102f38;
  --sea-soft: #dce7e5;
  --olive: #586248;
  --white: #fffdf8;
  --shadow: 0 26px 70px rgba(42, 30, 20, .10);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --reading: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-underline-offset: .2em; }
button, input { font: inherit; }
img, svg { max-width: 100%; }
::selection { color: var(--white); background: var(--accent); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  width: max-content;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .16em;
}
.brand i { color: var(--accent); font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.brand strong { color: var(--accent); }
.top-nav { display: flex; gap: clamp(1rem, 2.4vw, 2.3rem); }
.top-nav a, .language-switch {
  text-decoration: none;
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .035em;
}
.top-nav a { color: var(--muted); }
.top-nav a:hover, .top-nav a:focus-visible { color: var(--ink); }
.language-switch { justify-self: end; padding: .36rem .55rem; border: 1px solid var(--line-strong); }

.section, .hero {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}
.section { padding-block: clamp(5.5rem, 9vw, 9.5rem); }
.eyebrow {
  margin: 0 0 .82rem;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .145em;
  text-transform: uppercase;
}
.section-heading { max-width: 930px; margin-bottom: clamp(3rem, 6vw, 5.2rem); }
.section-heading h2,
.cut-intro h2,
.reading-lead h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.037em;
}
.section-heading > p:last-child,
.cut-intro > p:last-child {
  max-width: 66ch;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.52;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding-block: clamp(5rem, 10vw, 9rem);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 13%;
  bottom: 6%;
  width: 36%;
  height: 30%;
  border: 1px solid rgba(170, 70, 50, .14);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.hero-copy { max-width: 760px; }
.hero-copy h1 {
  max-width: 8.5ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.055em;
}
.hero-dek {
  max-width: 56ch;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.38;
}
.hero-thesis {
  max-width: 64ch;
  margin: 1.55rem 0 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .72rem 1rem;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button-light { color: var(--ink); background: transparent; }
.button-light:hover { color: var(--white); background: var(--ink); }
.text-link { font-size: .78rem; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--accent); }
.spoiler-note { margin: 1.6rem 0 0; color: var(--muted); font-size: .72rem; }

.word-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  background: var(--sea);
  box-shadow: var(--shadow);
}
.word-card::after {
  content: "πολύτροπον";
  position: absolute;
  right: -1.2rem;
  bottom: -2.5rem;
  color: rgba(255, 255, 255, .045);
  font-family: var(--serif);
  font-size: clamp(6rem, 9vw, 10rem);
  white-space: nowrap;
  transform: rotate(-90deg) translateX(48%);
  transform-origin: right bottom;
  pointer-events: none;
}
.word-kicker {
  margin: 0;
  color: #f0aa95;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.greek-word {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-top: 3.5rem;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 5.4vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.075em;
  white-space: nowrap;
}
.transliteration { margin: .65rem 0 1.7rem; color: rgba(255,255,255,.52); font-family: var(--serif); font-style: italic; }
.glosses { display: flex; flex-wrap: wrap; gap: .42rem; }
.glosses span { padding: .28rem .5rem; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.78); font-size: .68rem; }
.word-card h2 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 3.2rem 0 .9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.word-card > p:not(.word-kicker):not(.transliteration) { position: relative; z-index: 1; max-width: 43ch; color: rgba(255,255,255,.72); font-size: .88rem; }
.word-card > a { position: relative; z-index: 1; display: inline-block; max-width: 37ch; margin-top: 1.2rem; color: #f5b7a4; font-size: .74rem; font-weight: 800; }

.dispute { padding-top: clamp(6rem, 10vw, 10rem); }
.narrative-heading { max-width: 1000px; }
.narrative-dek {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.1rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.58;
}
.narrative-dek p { margin: 0; }
.debate-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line-strong); }
.debate-person { min-height: 390px; padding: 1.8rem clamp(1.2rem, 2.5vw, 2rem) 1.7rem 0; }
.debate-person + .debate-person { padding-left: clamp(1.2rem, 2.5vw, 2rem); border-left: 1px solid var(--line); }
.person-role { margin: 0; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.debate-person h3 { margin: 1.3rem 0 2.5rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.person-claim { margin: 0; font-family: var(--serif); font-size: 1.4rem; line-height: 1.26; }
.person-explanation { margin: 1.2rem 0 1.5rem; color: var(--muted); font-size: .82rem; }
.debate-person a { font-size: .73rem; font-weight: 800; }

.missing-question {
  display: grid;
  grid-template-columns: .45fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin: clamp(4.5rem, 8vw, 8rem) 0;
  padding: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  background: var(--accent-dark);
}
.missing-question .eyebrow { color: #ffc0ae; }
.missing-question h3 { grid-column: 2; margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 500; line-height: 1.03; letter-spacing: -.035em; }
.missing-question > p:last-child { grid-column: 2; max-width: 62ch; margin: 1rem 0 0; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.1rem; }

.reading-key {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(1rem, 2vw, 2rem) clamp(4rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line-strong);
}
.reading-key-intro h3 { max-width: 12ch; margin: 0; font-family: var(--serif); font-size: clamp(2.25rem, 4vw, 3.8rem); font-weight: 500; line-height: 1.02; letter-spacing: -.03em; }
.reading-key-intro > p:last-child { max-width: 46ch; color: var(--muted); font-size: .88rem; }
.reading-key ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; margin: 0; padding: 0; list-style: none; }
.reading-key li { display: grid; grid-template-columns: 34px 1fr; gap: .9rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.reading-key li > span { color: var(--accent); font-family: var(--serif); font-size: .95rem; }
.reading-key strong { display: block; font-family: var(--serif); font-size: 1.14rem; font-weight: 500; }
.reading-key li p { margin: .35rem 0 0; color: var(--muted); font-size: .76rem; }

.worked-example {
  display: grid;
  grid-template-columns: .7fr 1.5fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  background: var(--sea-deep);
}
.worked-heading h3 { max-width: 9ch; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.1rem); font-weight: 500; line-height: 1; }
.worked-heading .eyebrow { color: #f0aa95; }
.worked-steps { border-top: 1px solid rgba(255,255,255,.26); }
.worked-steps > div { display: grid; grid-template-columns: 170px 1fr; gap: 1.4rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.worked-steps span { color: #f0aa95; font-size: .66rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.worked-steps p { margin: 0; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.02rem; }
.worked-verdict { grid-column: 2; max-width: 56ch; margin: 0; color: var(--white); font-family: var(--serif); font-size: 1.22rem; }

.short-route { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; margin-top: clamp(5rem, 9vw, 9rem); }
.short-route > div h3 { max-width: 11ch; margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 500; line-height: 1.02; letter-spacing: -.03em; }
.short-route > div > p:last-child { max-width: 42ch; color: var(--muted); }
.short-route ol { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.short-route li { border-bottom: 1px solid var(--line-strong); }
.short-route a { display: grid; grid-template-columns: 40px 1fr 30px; gap: 1rem; align-items: center; padding: 1.25rem .2rem; text-decoration: none; }
.short-route a:hover strong { color: var(--accent); }
.short-route a > span { color: var(--accent); font-family: var(--serif); }
.short-route strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.short-route p { margin: .25rem 0 0; color: var(--muted); font-size: .78rem; }
.short-route b { color: var(--accent); font-weight: 400; }

.cases {
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background: var(--paper-bright);
}
.case-heading { max-width: 1060px; }
.spoiler-divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--accent); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.spoiler-divider::before, .spoiler-divider::after { content: ""; height: 1px; background: var(--line-strong); }
.spoiler-divider::before { width: 36px; }
.spoiler-divider::after { flex: 1; }
.case-group { padding-top: clamp(5rem, 8vw, 8rem); }
.case-group + .case-group { margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid var(--line-strong); }
.group-header { display: grid; grid-template-columns: 90px minmax(0, 720px); gap: clamp(1.5rem, 4vw, 4rem); margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.group-header > span { color: var(--accent); font-family: var(--serif); font-size: 4.2rem; line-height: .9; }
.group-header h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4.5vw, 4.6rem); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.group-header p { max-width: 60ch; margin: .85rem 0 0; color: var(--muted); font-family: var(--serif); font-size: 1.08rem; }
.case-list { display: grid; gap: clamp(3rem, 5vw, 5rem); }
.case-card { scroll-margin-top: 88px; border-top: 3px solid var(--ink); }
.case-header { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: clamp(1rem, 3vw, 2.2rem); padding: 1.5rem 0 1.2rem; }
.case-number { color: var(--accent); font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.case-topic { margin: 0 0 .55rem; color: var(--muted); font-size: .65rem; font-weight: 850; letter-spacing: .105em; text-transform: uppercase; }
.case-title h3 { max-width: 21ch; margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.case-question { max-width: 72ch; margin: .8rem 0 0; color: var(--muted); font-family: var(--serif); font-size: 1.05rem; }
.case-answer { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: clamp(1rem, 3vw, 2.2rem); padding: 1.15rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-answer span { color: var(--accent); font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.case-answer strong { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 500; }
.case-summary { max-width: 850px; margin: 1.45rem 0 1.7rem 104px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.58; }
.case-details { margin-left: 104px; border-top: 1px solid var(--line-strong); }
.case-details > summary { display: flex; align-items: center; justify-content: space-between; min-height: 58px; cursor: pointer; list-style: none; font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.case-details > summary::-webkit-details-marker { display: none; }
.case-details > summary b { color: var(--accent); font-size: 1.25rem; font-weight: 400; transition: transform .2s ease; }
.case-details[open] > summary b { transform: rotate(45deg); }
.summary-close { display: none; }
.case-details[open] .summary-open { display: none; }
.case-details[open] .summary-close { display: inline; }
.case-body { padding: .6rem 0 1rem; }
.change-ledger { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 1rem 0 3.5rem; background: var(--line); border: 1px solid var(--line); }
.change-ledger > div { min-height: 185px; padding: 1.35rem; background: var(--paper-soft); }
.change-ledger span { color: var(--accent); font-size: .63rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.change-ledger strong { display: block; margin: 2.3rem 0 .55rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; line-height: 1.1; }
.change-ledger p { margin: 0; color: var(--muted); font-size: .76rem; }
.case-prose { max-width: 960px; }
.case-prose section { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); padding: 1.8rem 0; border-top: 1px solid var(--line); }
.case-prose h4 { margin: 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; line-height: 1.2; }
.case-prose section > div { color: var(--ink-soft); font-family: var(--serif); font-size: 1.08rem; line-height: 1.64; }
.case-prose p { margin: 0 0 1em; }
.companion-link { display: flex; align-items: center; justify-content: space-between; max-width: 960px; margin: 2rem 0; padding: 1.4rem 1.55rem; color: var(--white); background: var(--sea); text-decoration: none; }
.companion-link span { display: block; color: #f0aa95; font-size: .63rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.companion-link strong { display: block; margin-top: .35rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.companion-link p { margin: .25rem 0 0; color: rgba(255,255,255,.7); font-size: .78rem; }
.companion-link b { font-size: 1.4rem; font-weight: 400; }
.change-mind { max-width: 960px; margin: 2rem 0 0; padding: 1.25rem 1.4rem; border: 1px solid var(--line-strong); }
.change-mind span { color: var(--accent); font-size: .63rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.change-mind p { margin: .45rem 0 0; font-size: .88rem; }
.source-links { display: flex; flex-wrap: wrap; gap: .45rem; max-width: 960px; margin: 1rem 0 0; }
.source-links a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line-strong); text-decoration: none; font-size: .65rem; font-weight: 850; }
.source-links a:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }

.reading {
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--sea);
}
.reading .eyebrow { color: #f0aa95; }
.reading-lead { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.reading-lead h2 { max-width: 10ch; }
.reading-thesis { color: rgba(255,255,255,.78); font-family: var(--serif); font-size: clamp(1.18rem, 2vw, 1.5rem); line-height: 1.54; }
.reading-thesis p { margin: 0; }
.reading-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(4rem, 7vw, 7rem); background: rgba(255,255,255,.18); }
.reading-grid article { min-height: 310px; padding: 2rem; background: var(--sea); }
.reading-grid span { color: #f0aa95; font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.reading-grid h3 { margin: 3.2rem 0 .85rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; line-height: 1.1; }
.reading-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: .88rem; }
.final-reading { max-width: 1080px; margin: clamp(4rem, 8vw, 8rem) 0 0 auto; padding: 0 0 0 2rem; border-left: 4px solid #f0aa95; font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3.5rem); line-height: 1.13; letter-spacing: -.025em; }
.final-reading p { margin: 0; }

.cut-room { display: grid; grid-template-columns: .7fr 1.4fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.cut-intro { position: sticky; top: 105px; }
.cut-intro h2 { max-width: 11ch; }
.budget-form { padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--paper-soft); border-top: 3px solid var(--ink); }
.budget-topline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.budget-topline p { margin: 0; color: var(--muted); font-size: .84rem; }
.remaining { display: flex; align-items: baseline; gap: .55rem; }
.remaining span { color: var(--muted); font-size: .63rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.remaining strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.budget-rows { display: grid; }
.budget-row { display: grid; grid-template-columns: minmax(180px, 1fr) minmax(160px, 1.2fr) 42px; gap: 1.2rem; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); }
.budget-row strong { display: block; font-family: var(--serif); font-size: 1.08rem; font-weight: 500; }
.budget-row small { display: block; color: var(--muted); font-size: .72rem; }
.budget-row input { width: 100%; accent-color: var(--accent); }
.budget-row output { font-family: var(--serif); font-size: 1.3rem; text-align: right; }
.budget-actions { display: flex; gap: .7rem; margin-top: 1.5rem; }
.profile-panel { grid-column: 2; margin-top: -3rem; padding: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.profile-panel .eyebrow { color: #e58b70; }
.profile-panel h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; line-height: 1; }
.profile-panel > p { max-width: 62ch; color: rgba(255,255,255,.67); }
.profile-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 1.6rem 0; background: rgba(255,255,255,.18); }
.profile-values > div { min-height: 90px; padding: 1rem; background: var(--ink); }
.profile-values span { display: block; color: #e58b70; font-size: .63rem; font-weight: 850; text-transform: uppercase; }
.profile-values strong { display: block; margin-top: .5rem; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.profile-panel .button-light { color: var(--white); border-color: rgba(255,255,255,.55); }
.cut-insight { grid-column: 2; max-width: 60ch; margin: 1rem 0 0; color: var(--muted); font-family: var(--serif); font-size: 1.06rem; }

.sources { border-top: 1px solid var(--line-strong); }
.sources-heading { max-width: 900px; }
.method-note { max-width: 920px; margin-bottom: 3rem; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.method-note summary { display: flex; justify-content: space-between; align-items: center; min-height: 60px; cursor: pointer; list-style: none; font-weight: 850; }
.method-note summary::-webkit-details-marker { display: none; }
.method-note summary b { color: var(--accent); font-size: 1.2rem; font-weight: 400; transition: transform .2s ease; }
.method-note[open] summary b { transform: rotate(45deg); }
.method-note > div { max-width: var(--reading); padding-bottom: 1.5rem; color: var(--muted); font-family: var(--serif); font-size: 1.05rem; }
.source-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
.source-list article { display: grid; grid-template-columns: 42px 1fr 30px; gap: 1rem; align-items: start; min-height: 145px; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.source-list article > span { color: var(--accent); font-size: .66rem; font-weight: 850; }
.source-list h3 { margin: 0; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.2; }
.source-list p { margin: .25rem 0; color: var(--muted); font-size: .78rem; }
.source-list small { display: block; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.source-list article > a { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line-strong); text-decoration: none; }
.source-list article > a:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(22px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,.7);
  background: var(--ink);
  font-size: .72rem;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); }

/* The chapter index borrows the scene numbers and splice marks of a film strip. */
.chapter-rail {
  position: fixed;
  z-index: 90;
  top: 64px;
  bottom: 0;
  left: 0;
  width: 68px;
  padding: 14px 10px calc(14px + env(safe-area-inset-bottom));
  color: rgba(255,255,255,.72);
  background: var(--sea-deep);
  border-right: 1px solid rgba(255,255,255,.14);
}
.chapter-rail::before,
.chapter-rail::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 6px;
  height: calc(100% - 16px);
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.42) 0 8px, transparent 8px 17px);
  opacity: .4;
}
.chapter-rail::after { right: 7px; left: auto; }
.chapter-rail > p {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #f0aa95;
  font-size: .52rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}
.chapter-rail > p span { display: block; font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0; }
.chapter-rail ol { position: relative; z-index: 1; display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.chapter-rail a {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 35px;
  padding: 0 7px;
  color: rgba(255,255,255,.62);
  text-decoration: none;
}
.chapter-rail a span { font-family: var(--serif); font-size: .68rem; font-variant-numeric: tabular-nums; }
.chapter-rail a i { display: block; height: 1px; background: rgba(255,255,255,.28); transform-origin: left; transition: transform .18s ease, background .18s ease; }
.chapter-rail a::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 57px;
  width: max-content;
  max-width: 230px;
  padding: .45rem .62rem;
  color: var(--white);
  background: var(--ink);
  border-left: 2px solid var(--accent);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  font-size: .68rem;
  font-style: normal;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translate(5px,-50%);
  transition: opacity .15s ease, transform .15s ease;
}
.chapter-rail a:hover::after,
.chapter-rail a:focus-visible::after { opacity: 1; transform: translate(0,-50%); }
.chapter-rail a:hover,
.chapter-rail a:focus-visible,
.chapter-rail a[aria-current="location"] { color: var(--white); }
.chapter-rail a[aria-current="location"] i { background: #f0aa95; transform: scaleX(1.45); }

.resume-card {
  position: fixed;
  z-index: 150;
  left: 84px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: min(460px, calc(100vw - 112px));
  padding: .9rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--accent);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.resume-card[hidden] { display: none; }
.resume-card p { margin: 0; }
.resume-card p span { display: block; color: #f0aa95; font-size: .56rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.resume-card p strong { display: block; margin-top: .16rem; font-family: var(--serif); font-size: .98rem; font-weight: 500; line-height: 1.25; }
.resume-card div { display: flex; gap: .35rem; margin-left: auto; }
.resume-card button { min-height: 40px; padding: .45rem .72rem; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.38); cursor: pointer; font-size: .66rem; font-weight: 800; }
.resume-card button:first-child { color: var(--ink); background: var(--white); }

.back-to-top { min-width: 44px; min-height: 44px; }
.js-ready .back-to-top {
  position: fixed;
  z-index: 140;
  right: calc(14px + env(safe-area-inset-right));
  bottom: calc(14px + env(safe-area-inset-bottom) + var(--footer-offset, 0px));
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: var(--white);
  background: var(--accent-dark);
  border: 1px solid rgba(255,255,255,.4);
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease;
}
.js-ready .back-to-top::before { content: "↑"; font-size: 1.15rem; }
.js-ready .back-to-top.is-visible { opacity: 1; pointer-events: auto; }

@media (min-width: 1051px) {
  .section, .hero {
    width: min(var(--max), calc(100% - 132px));
    margin-right: auto;
    margin-left: max(94px, calc((100vw - var(--max)) / 2));
  }
}

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

@media (max-width: 1050px) {
  html { scroll-padding-top: 124px; }
  .chapter-rail {
    position: sticky;
    top: 64px;
    bottom: auto;
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    padding: 0 12px;
    overflow: hidden;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .chapter-rail::before, .chapter-rail::after { display: none; }
  .chapter-rail > p { flex: 0 0 auto; width: 46px; margin: 0 8px 0 0; }
  .chapter-rail > p span { display: inline; margin-right: 2px; font-size: .76rem; }
  .chapter-rail ol { display: flex; flex: 1 1 auto; gap: 0; overflow-x: auto; scrollbar-width: none; }
  .chapter-rail ol::-webkit-scrollbar { display: none; }
  .chapter-rail li { flex: 0 0 auto; }
  .chapter-rail a { grid-template-columns: 23px 18px; min-width: 44px; min-height: 44px; padding: 0 3px; }
  .chapter-rail a::after { display: none; }
  .resume-card { left: 14px; max-width: calc(100vw - 28px); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .word-card { min-height: 500px; }
  .debate-grid { grid-template-columns: 1fr; }
  .debate-person { min-height: auto; padding: 1.7rem 0; }
  .debate-person + .debate-person { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .debate-person h3 { margin-bottom: 1.1rem; }
  .reading-key { grid-template-columns: 1fr; }
  .short-route { grid-template-columns: 1fr; }
  .reading-lead { grid-template-columns: 1fr; }
  .cut-room { grid-template-columns: 1fr; }
  .cut-intro { position: static; }
  .profile-panel, .cut-insight { grid-column: 1; margin-top: 0; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 116px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 58px; }
  .chapter-rail { top: 58px; }
  .top-nav { display: none; }
  .brand { font-size: .62rem; }
  .section, .hero { width: min(100% - 28px, var(--max)); }
  .section { padding-block: 4.8rem; }
  .hero { gap: 3rem; padding-block: 4.2rem 4.8rem; }
  .hero::after { display: none; }
  .hero-copy h1 { font-size: clamp(3.8rem, 18vw, 5.7rem); }
  .hero-dek { font-size: 1.28rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .word-card { min-height: 470px; padding: 1.6rem; }
  .greek-word { margin-top: 2.5rem; font-size: clamp(3.3rem, 15vw, 4.7rem); }
  .word-card h2 { margin-top: 2.5rem; }
  .narrative-dek { grid-template-columns: 1fr; gap: 1.2rem; }
  .missing-question { grid-template-columns: 1fr; gap: .5rem; padding: 1.6rem; }
  .missing-question h3, .missing-question > p:last-child { grid-column: 1; }
  .reading-key ol { grid-template-columns: 1fr; }
  .worked-example { grid-template-columns: 1fr; padding: 1.5rem; }
  .worked-steps > div { grid-template-columns: 1fr; gap: .35rem; }
  .worked-verdict { grid-column: 1; }
  .short-route a { grid-template-columns: 34px 1fr 20px; }
  .cases, .reading { padding-inline: 14px; }
  .group-header { grid-template-columns: 48px 1fr; gap: 1rem; }
  .group-header > span { font-size: 2.7rem; }
  .case-header, .case-answer { grid-template-columns: 42px 1fr; gap: .8rem; }
  .case-number { font-size: 1.55rem; }
  .case-answer span { grid-column: 2; }
  .case-answer strong { grid-column: 2; }
  .case-summary, .case-details { margin-left: 0; }
  .change-ledger { grid-template-columns: 1fr; }
  .change-ledger > div { min-height: auto; }
  .change-ledger strong { margin-top: 1rem; }
  .case-prose section { grid-template-columns: 1fr; gap: .65rem; }
  .companion-link { align-items: flex-start; gap: 1rem; }
  .reading-grid { grid-template-columns: 1fr; }
  .reading-grid article { min-height: 240px; }
  .final-reading { padding-left: 1.2rem; }
  .budget-row { grid-template-columns: 1fr 44px; gap: .65rem; }
  .budget-row input { grid-column: 1 / -1; grid-row: 2; }
  .budget-row output { grid-column: 2; grid-row: 1; }
  .budget-actions { flex-direction: column; }
  .profile-values { grid-template-columns: 1fr; }
  .source-list { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: .5rem; }
  .resume-card { align-items: flex-start; gap: .6rem; }
  .resume-card p strong { font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

@media print {
  .site-header, .hero-actions, .budget-form, .profile-panel, .language-switch, .source-links { display: none !important; }
  body { background: white; }
  .section, .hero, .cases, .reading { width: 100%; max-width: none; padding: 2rem 0; color: black; background: white; }
  .case-details { display: block; }
  .case-details > summary { display: none; }
  .case-details:not([open]) > .case-body { display: block; }
  .case-card, .word-card { break-inside: avoid; box-shadow: none; }
  .word-card { color: black; background: white; border: 1px solid black; }
  a { text-decoration: none; }
}

/* Final hierarchy correction: title and thesis read as one argument, not two competing panels. */
.reading-lead {
  grid-template-areas:
    "eyebrow thesis"
    "title thesis";
  align-items: end;
}
.reading-lead > .eyebrow { grid-area: eyebrow; align-self: end; }
.reading-lead > h2 { grid-area: title; }
.reading-thesis { grid-area: thesis; }

@media (max-width: 1050px) {
  .reading-lead {
    grid-template-areas:
      "eyebrow"
      "title"
      "thesis";
  }
}
