:root {
  --ink: #0b2545;
  --paper: #eef5fb;
  --paper-bright: #ffffff;
  --red: #1769aa;
  --red-dark: #0b4a83;
  --patina: #0b7685;
  --copper: #c24b3e;
  --muted: #536579;
  --line: rgba(11, 37, 69, 0.16);
  --max: 1240px;
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.is-menu-open,
body:has(.map-dialog[open]) {
  overflow: hidden;
}

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button,
a[href] {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper-bright);
  background: rgba(8, 34, 63, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  color: #80c4f2;
  font-size: 0.72rem;
  font-weight: 800;
}

.wordmark strong {
  font-size: 0.79rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: #80c4f2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: white;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-buy {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--ink);
  background: white;
  border: 1px solid white;
  border-radius: 2px;
}

.site-nav .nav-buy::after {
  display: none;
}

.site-nav .nav-buy:hover,
.site-nav .nav-buy:focus-visible {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(100svh - 108px), 820px);
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  content: "";
  background: var(--red);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  border-right: 1px solid rgba(255,255,255,0.22);
  border-left: 1px solid rgba(255,255,255,0.22);
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  content: "";
  background: rgba(255,255,255,0.17);
}

.hero-grid::before {
  top: 34%;
  right: 0;
  left: 0;
  height: 1px;
}

.hero-grid::after {
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(68%, 850px);
  padding: clamp(80px, 11vh, 126px) 40px 90px max(36px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero .eyebrow {
  color: #9ed4ff;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: 4.75rem;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  color: white;
}

.hero-title-sub {
  margin-top: 10px;
  color: #b8ddf7;
  font-size: 0.58em;
  line-height: 1.2;
}

.hero-deck {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-quiet {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.byline {
  margin: 28px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.byline strong {
  color: white;
}

.book-stage {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: max(38px, calc((100vw - var(--max)) / 2));
  width: min(25vw, 330px);
  transform: translateY(-50%) rotate(1.4deg);
}

.book-stage::before {
  position: absolute;
  z-index: -1;
  inset: 14px -24px -24px 18px;
  content: "";
  border: 1px solid rgba(167, 215, 247, 0.5);
}

.book-stage img {
  width: 100%;
  aspect-ratio: 827 / 1246;
  box-shadow: 28px 36px 48px rgba(0, 0, 0, 0.48);
  image-rendering: auto;
}

.edition-mark {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -34px;
  width: 104px;
  height: 68px;
  display: grid;
  align-content: center;
  color: var(--ink);
  background: #dceffd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.edition-mark span {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--red);
  font-size: 0.5rem;
  font-weight: 800;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 22px;
  left: max(36px, calc((100vw - var(--max)) / 2));
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 190px)) 1fr;
  gap: 0;
  color: var(--paper-bright);
  background: var(--red);
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

.signal-strip > div {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.signal-strip > div + div {
  padding-left: 20px;
}

.signal-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.signal-strip span,
.signal-strip > p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
}

.signal-strip > p {
  align-self: center;
  justify-self: end;
  max-width: 270px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  text-align: right;
}

.signal-strip > p a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.publisher-band {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(280px, 1.25fr) auto auto;
  gap: 30px;
  align-items: center;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.publisher-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.publisher-brand span,
.lecture-reading span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.publisher-brand strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.publisher-band > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
}

.publisher-formats {
  display: flex;
  gap: 6px;
}

.publisher-formats span {
  padding: 7px 9px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 0.64rem;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: clamp(78px, 10vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
}

.section-heading h2,
.film-copy h2,
.closing h2 {
  margin-bottom: 24px;
  font-size: 3.75rem;
}

.section-heading > p,
.section-heading-row > p,
.film-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.section-heading-row > div {
  max-width: 760px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  max-width: 390px;
}

.author {
  background: #e8f0f5;
  border-bottom: 1px solid var(--line);
}

.author-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.author-portrait {
  margin: 0;
}

.author-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(11, 37, 69, 0.28);
}

.author-portrait-frame::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255,255,255,0.32);
  pointer-events: none;
}

.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.author-portrait figcaption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: rgba(255,255,255,0.68);
  background: var(--ink);
  border-top: 4px solid var(--red);
}

.author-portrait figcaption span {
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,0.16);
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.author-portrait figcaption span:last-child {
  border-right: 0;
}

.author-copy h2 {
  margin-bottom: 10px;
  font-size: 4.25rem;
}

.author-title {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.4;
}

.author-lede {
  max-width: 720px;
  margin: 0 0 36px;
  color: #34475c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.68;
}

.author-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 34px;
  border-top: 4px solid var(--ink);
}

.author-credentials article {
  min-height: 150px;
  padding: 20px 22px 20px 0;
  border-bottom: 1px solid var(--line);
}

.author-credentials article:nth-child(even) {
  padding-right: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.author-credentials span {
  display: block;
  margin-bottom: 10px;
  color: var(--patina);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.author-credentials p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.author-actions,
.author-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thesis {
  background: var(--paper-bright);
}

.thesis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.thesis-switcher {
  border-top: 4px solid var(--ink);
}

.switcher-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.switcher-tabs button {
  min-height: 56px;
  padding: 12px 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.switcher-tabs button:last-child {
  border-right: 0;
}

.switcher-tabs button[aria-selected="true"] {
  color: white;
  background: var(--patina);
}

.switcher-panel {
  min-height: 338px;
  padding: 34px 0 0;
}

.panel-number {
  margin: 0 0 24px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.switcher-panel h3 {
  margin-bottom: 16px;
  font-size: 2.4rem;
}

.switcher-panel > p:not(.panel-number) {
  max-width: 540px;
  color: var(--muted);
}

.tripod {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.tripod span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: white;
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.tripod span:nth-child(1) { border-bottom: 5px solid var(--red); }
.tripod span:nth-child(2) { border-bottom: 5px solid var(--patina); }
.tripod span:nth-child(3) { border-bottom: 5px solid var(--copper); }

.framework {
  background: #e5f0f8;
}

.movement-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 70px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.movement-track article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border-right: 1px solid var(--ink);
}

.movement-track article:first-child {
  padding-left: 0;
}

.movement-track article:last-child {
  padding-right: 0;
  border-right: 0;
}

.movement-track article > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.movement-track h3 {
  margin: 40px 0 16px;
  font-size: 1.7rem;
}

.movement-track p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.movement-track small {
  margin-top: auto;
  color: var(--patina);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.argument-map {
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.map-toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 18px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.map-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

.map-toolbar figcaption {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.icon-button,
.dialog-close {
  width: 42px;
  height: 42px;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.3rem;
}

.icon-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.map-zoom-readout {
  width: 50px;
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.icon-button:hover,
.icon-button:focus-visible,
.dialog-close:hover,
.dialog-close:focus-visible {
  background: rgba(255,255,255,0.12);
}

.map-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  background: white;
  scrollbar-color: var(--red) #302f2c;
}

.map-viewport img {
  width: 100%;
  max-width: 100%;
}

.map-dialog {
  width: 96vw;
  max-width: none;
  height: 92vh;
  max-height: none;
  padding: 58px 14px 14px;
  overflow: auto;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.25);
}

.map-dialog::backdrop {
  background: rgba(0,0,0,0.85);
}

.map-dialog img {
  width: 3400px;
  max-width: none;
}

.dialog-close {
  position: fixed;
  z-index: 2;
  top: calc(4vh + 8px);
  right: calc(2vw + 16px);
  background: var(--red);
  font-size: 1.8rem;
}

.chapters {
  background: var(--paper-bright);
}

.chapter-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.chapter-filters button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.chapter-filters button:hover,
.chapter-filters button:focus-visible,
.chapter-filters button.is-active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.chapter-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--ink);
  border-radius: 2px;
  background: var(--paper-bright);
  transition: border-color 180ms ease, transform 180ms ease;
}

.chapter-card:hover {
  border-color: rgba(11, 37, 69, 0.52);
  transform: translateY(-3px);
}

.chapter-card[data-category="fundamentals"] { border-top-color: var(--red); }
.chapter-card[data-category="tactics"] { border-top-color: var(--copper); }
.chapter-card[data-category="systems"] { border-top-color: var(--patina); }
.chapter-card[data-category="future"] { border-top-color: var(--ink); }

.chapter-card[hidden] {
  display: none;
}

.chapter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chapter-number {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.chapter-card h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.chapter-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.chapter-extra {
  margin-top: 14px;
  padding-top: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.chapter-toggle {
  width: fit-content;
  margin-top: auto;
  padding: 18px 0 0;
  color: var(--patina);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.chapter-toggle:hover,
.chapter-toggle:focus-visible {
  color: var(--red);
}

.eras {
  color: white;
  background: var(--patina);
}

.eras .section-kicker {
  color: #bfe6ff;
}

.eras-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(54px, 10vw, 150px);
}

.eras .section-heading > p {
  color: rgba(255,255,255,0.7);
}

.era-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.4);
}

.era-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.era-list > li > span {
  color: #bfe6ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.era-list strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.era-list p {
  margin: 0;
  color: rgba(255,255,255,0.67);
  font-size: 0.8rem;
}

.lectures {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(56px, 9vw, 130px);
  background: var(--paper-bright);
}

.lecture-intro h2 {
  margin-bottom: 24px;
  font-size: 3.5rem;
}

.lecture-intro > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}

.lecture-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lecture-status span {
  width: 9px;
  height: 9px;
  background: var(--copper);
  border-radius: 50%;
}

.programme {
  border-top: 4px solid var(--ink);
}

.programme article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.programme-number {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.programme-type {
  margin: 0 0 8px;
  color: var(--patina);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.programme h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1.12;
}

.programme article > div > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.lecture-reading {
  grid-column: 1 / -1;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 30px;
  color: white;
  background: var(--ink);
}

.lecture-reading > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lecture-reading span {
  color: #9ed4ff;
}

.lecture-reading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.lecture-reading .button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: white;
}

.lecture-reading .button-primary:hover,
.lecture-reading .button-primary:focus-visible {
  color: white;
  background: var(--red);
}

.economist-dialogues {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 9vw, 130px);
  background: #edf3f0;
}

.dialogue-intro h2 {
  margin-bottom: 24px;
  font-size: 3.5rem;
}

.dialogue-intro > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}

.dialogue-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dialogue-status span {
  width: 9px;
  height: 9px;
  background: var(--copper);
  border-radius: 50%;
}

.dialogue-themes {
  border-top: 4px solid var(--ink);
}

.dialogue-themes article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(11, 37, 69, 0.24);
}

.dialogue-themes article > span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.dialogue-themes h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1.12;
}

.dialogue-themes article > div > p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.reviews {
  background: var(--paper-bright);
}

.review-listing {
  border-top: 4px solid var(--ink);
}

.review-entry {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 180ms ease, padding 180ms ease;
}

.review-entry:hover,
.review-entry:focus-visible {
  padding-right: 18px;
  padding-left: 18px;
  background: #f1f6fa;
}

.review-label {
  margin: 0 0 34px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-entry-meta > p:not(.review-label),
.review-entry-meta time,
.review-page-identity > p:not(.section-kicker),
.review-page-identity time {
  display: block;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.65;
}

.review-entry-meta strong,
.review-page-identity strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.review-entry-copy h3 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 2.25rem;
}

.review-entry-copy > p {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.review-entry-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--patina);
  font-size: 0.74rem;
  font-weight: 800;
}

.review-entry:hover .review-entry-action,
.review-entry:focus-visible .review-entry-action {
  color: var(--red);
}

.review-page-body {
  background: var(--paper-bright);
}

.review-page-header {
  position: sticky;
}

.review-page-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-page-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.review-page-nav a:hover,
.review-page-nav a:focus-visible {
  color: white;
}

.review-page-nav .nav-buy {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--ink);
  background: white;
  border: 1px solid white;
  border-radius: 2px;
}

.review-page-nav .nav-buy:hover,
.review-page-nav .nav-buy:focus-visible {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.review-page-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(78px, 10vw, 138px) max(24px, calc((100vw - var(--max)) / 2)) 78px;
  background: #e8f0f5;
  border-bottom: 1px solid var(--line);
}

.review-page-identity {
  padding-top: 8px;
}

.review-page-overline {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-page-hero h1 {
  max-width: 910px;
  margin: 0;
  font-size: 4rem;
}

.review-page-article {
  padding: 82px max(24px, calc((100vw - 760px) / 2)) 100px;
}

.review-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.review-article h4 {
  margin: 58px 0 20px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.review-article p,
.review-references {
  max-width: 740px;
  color: #34475c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.72;
}

.review-article p {
  margin: 0 0 22px;
}

.review-article > p:first-child {
  margin-bottom: 38px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.62;
}

.review-references {
  margin: 0;
  padding-left: 1.35rem;
}

.review-references li {
  margin-bottom: 13px;
  padding-left: 6px;
}

.review-references a {
  color: var(--red);
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.review-page-bottom-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  background: #e8f0f5;
  border-top: 1px solid var(--line);
}

.review-page-bottom-nav a {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.review-page-bottom-nav a:hover,
.review-page-bottom-nav a:focus-visible {
  color: var(--red);
}

.author-page-body {
  background: var(--paper-bright);
}

.author-page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  background: #dceaf7;
  border-bottom: 1px solid var(--line);
}

.author-page-photo {
  position: relative;
  max-width: 480px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(11, 37, 69, 0.28);
  box-shadow: 20px 20px 0 rgba(23, 105, 170, 0.16);
}

.author-page-photo::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255,255,255,0.28);
  pointer-events: none;
}

.author-page-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.author-page-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 7vw, 6.5rem);
}

.author-page-role {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.4;
}

.author-page-summary {
  max-width: 700px;
  margin: 0 0 34px;
  color: #34475c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

.profile-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--red);
}

.profile-strip > div {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.23);
}

.profile-strip > div:first-child {
  border-left: 1px solid rgba(255,255,255,0.23);
}

.profile-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 400;
}

.profile-strip span {
  color: rgba(255,255,255,0.72);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cv-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 120px);
  padding: clamp(76px, 9vw, 126px) max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
}

.cv-section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.2vw, 4rem);
}

.cv-section-heading > p:last-child:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.65;
}

.cv-prose p {
  max-width: 770px;
  margin: 0 0 24px;
  color: #34475c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.75;
}

.cv-section-tinted {
  background: #e8f0f5;
}

.cv-timeline {
  border-top: 4px solid var(--ink);
}

.cv-timeline article {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cv-timeline time,
.cv-list-block dt {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.cv-timeline h3,
.cv-list-block h3,
.cv-books h3 {
  margin: 0 0 7px;
  font-size: 1.35rem;
}

.cv-timeline p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.cv-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.cv-list-block {
  border-top: 4px solid var(--ink);
}

.cv-list-block > h3 {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cv-list-block dl {
  margin: 0;
}

.cv-list-block dl > div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cv-list-block dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cv-list-block dd strong {
  color: var(--ink);
}

.cv-section-dark {
  color: white;
  background: var(--ink);
  border-color: rgba(255,255,255,0.14);
}

.cv-section-dark .section-kicker {
  color: #9ed4ff;
}

.cv-section-dark .cv-section-heading > p:last-child:not(.section-kicker) {
  color: rgba(255,255,255,0.64);
}

.cv-books {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 4px solid #9ed4ff;
}

.cv-books li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.cv-books li > span {
  color: #9ed4ff;
  font-size: 0.72rem;
  font-weight: 800;
}

.cv-books h3 {
  max-width: 730px;
  color: white;
}

.cv-books p,
.cv-books a {
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 0.78rem;
}

.cv-books a {
  display: inline-block;
  margin-top: 8px;
  color: #9ed4ff;
  text-underline-offset: 3px;
}

.publication-list {
  border-top: 4px solid var(--ink);
}

.publication-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.publication-list article > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
}

.publication-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.publication-list strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
}

.film {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  color: white;
  background: var(--ink);
}

.film .section-kicker {
  color: #9ed4ff;
}

.film-copy > p {
  color: rgba(255,255,255,0.66);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.28);
  background: #050505;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.closing {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink);
  background: #dceaf7;
  border-left: 9px solid var(--red);
}

.closing h2 {
  width: 100%;
  max-width: 980px;
  font-size: 5rem;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(11, 37, 69, 0.4);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  padding: 32px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,0.55);
  background: var(--ink);
  font-size: 0.7rem;
}

footer p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid #80c4f2;
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  h1 {
    font-size: 4.2rem;
  }

  .section-heading h2,
  .film-copy h2 {
    font-size: 3.4rem;
  }

  .author-copy h2 {
    font-size: 3.55rem;
  }

  .author-layout {
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    gap: 52px;
  }

  .lecture-intro h2 {
    font-size: 3.2rem;
  }

  .closing h2 {
    font-size: 4.25rem;
  }

  .hero-copy {
    width: 70%;
  }

  .book-stage {
    right: 34px;
    width: 27vw;
  }

  .signal-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-strip > p {
    display: none;
  }

  .publisher-band {
    grid-template-columns: 1fr 1.4fr auto;
  }

  .publisher-formats {
    display: none;
  }

  .thesis-layout,
  .eras-layout {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .movement-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .movement-track article:nth-child(2) {
    border-right: 0;
  }

  .movement-track article:nth-child(-n+2) {
    border-bottom: 1px solid var(--ink);
  }

  .movement-track article:nth-child(3) {
    padding-left: 0;
  }

  .chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .wordmark span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 24px;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: clamp(540px, calc(100svh - 88px), 690px);
  }

  .hero-grid {
    opacity: 0.09;
  }

  .hero-copy {
    width: auto;
    padding: 54px 24px 122px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 3.35rem;
  }

  .hero-title-sub {
    margin-top: 7px;
    font-size: 0.58em;
  }

  .hero-deck {
    max-width: 78%;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .byline {
    margin-top: 18px;
  }

  .book-stage {
    top: auto;
    right: 18px;
    bottom: 18px;
    width: 126px;
    transform: rotate(2deg);
  }

  .book-stage::before {
    inset: 8px -9px -10px 8px;
  }

  .edition-mark {
    top: -23px;
    right: -10px;
    width: 52px;
    height: 52px;
    font-size: 0.55rem;
  }

  .edition-mark span {
    font-size: 0.35rem;
  }

  .hero-index {
    right: 165px;
    bottom: 18px;
    left: 24px;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 0.48rem;
  }

  .signal-strip {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 14px;
  }

  .signal-strip > div,
  .signal-strip > div + div {
    min-height: 78px;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    padding: 8px;
    text-align: center;
  }

  .signal-strip > div:last-of-type {
    border-right: 0;
  }

  .signal-strip strong {
    font-size: 1.45rem;
  }

  .signal-strip span {
    font-size: 0.58rem;
  }

  .publisher-band {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 20px;
  }

  .publisher-band .button {
    width: 100%;
  }

  .section {
    padding: 72px 20px;
  }

  .section-heading h2,
  .film-copy h2 {
    font-size: 2.85rem;
  }

  .author-copy h2 {
    font-size: 3.1rem;
  }

  .section-heading-row {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading-row h2 {
    margin-bottom: 18px;
  }

  .section-heading-row > p {
    max-width: 100%;
  }

  .author-layout,
  .author-page-hero,
  .cv-section,
  .thesis-layout,
  .eras-layout,
  .film,
  .lectures,
  .economist-dialogues {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .author-portrait {
    width: min(100%, 420px);
  }

  .author-page-hero {
    padding: 62px 20px 72px;
  }

  .author-page-photo {
    width: min(100%, 420px);
  }

  .profile-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 20px;
  }

  .profile-strip > div:nth-child(2) {
    border-right: 0;
  }

  .profile-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.23);
  }

  .cv-section {
    padding: 72px 20px;
  }

  .cv-columns {
    grid-template-columns: 1fr;
  }

  .dialogue-intro h2 {
    font-size: 2.85rem;
  }

  .review-entry,
  .review-page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .review-entry:hover,
  .review-entry:focus-visible {
    padding-right: 12px;
    padding-left: 12px;
  }

  .review-page-hero h1 {
    font-size: 3.25rem;
  }

  .review-page-nav .nav-buy {
    display: none;
  }

  .switcher-panel {
    min-height: 300px;
  }

  .switcher-panel h3 {
    font-size: 2rem;
  }

  .tripod span {
    min-height: 66px;
    font-size: 0.65rem;
  }

  .movement-track {
    grid-template-columns: 1fr;
  }

  .movement-track article,
  .movement-track article:first-child,
  .movement-track article:nth-child(3),
  .movement-track article:last-child {
    min-height: 230px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .movement-track article:last-child {
    border-bottom: 0;
  }

  .movement-track h3 {
    margin-top: 24px;
  }

  .chapter-filters {
    flex-wrap: nowrap;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
  }

  .chapter-filters button {
    flex: 0 0 auto;
  }

  .chapter-grid {
    grid-template-columns: 1fr;
  }

  .chapter-card {
    min-height: 300px;
  }

  .eras-layout {
    gap: 36px;
  }

  .video-frame {
    margin-inline: -20px;
    border-right: 0;
    border-left: 0;
  }

  .lecture-reading {
    display: grid;
    gap: 20px;
    padding: 24px 20px;
  }

  .lecture-reading .button {
    width: 100%;
  }

  .closing {
    min-height: 540px;
    padding-left: 28px;
  }

  .closing h2 {
    font-size: 3.35rem;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.75rem;
  }

  .section-heading h2,
  .film-copy h2,
  .lecture-intro h2,
  .dialogue-intro h2 {
    font-size: 2.5rem;
  }

  .author-copy h2 {
    font-size: 2.85rem;
  }

  .author-title {
    font-size: 1.12rem;
  }

  .author-credentials {
    grid-template-columns: 1fr;
  }

  .author-credentials article,
  .author-credentials article:nth-child(even) {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
  }

  .author-actions,
  .author-page-actions {
    display: grid;
  }

  .author-actions .button,
  .author-page-actions .button {
    width: 100%;
  }

  .author-page-intro h1 {
    font-size: 3.35rem;
  }

  .author-page-photo {
    box-shadow: 12px 12px 0 rgba(23, 105, 170, 0.16);
  }

  .profile-strip {
    padding-inline: 0;
  }

  .profile-strip > div {
    min-height: 96px;
    padding: 16px;
  }

  .profile-strip strong {
    font-size: 1.55rem;
  }

  .profile-strip span {
    font-size: 0.58rem;
  }

  .cv-section-heading h2 {
    font-size: 2.55rem;
  }

  .cv-timeline article,
  .cv-list-block dl > div,
  .cv-books li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .publication-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .review-entry-copy h3 {
    font-size: 1.8rem;
  }

  .review-entry-copy > p {
    font-size: 1rem;
  }

  .review-article p,
  .review-references {
    font-size: 0.94rem;
  }

  .review-article > p:first-child {
    font-size: 1.08rem;
  }

  .review-page-hero h1 {
    font-size: 2.65rem;
  }

  .review-page-bottom-nav {
    flex-direction: column;
  }

  .closing h2 {
    font-size: 2.85rem;
  }

  .map-toolbar {
    padding-left: 12px;
  }

  .map-toolbar figcaption {
    max-width: 108px;
    line-height: 1.25;
  }

  .map-zoom-readout {
    display: none;
  }

  .icon-button {
    width: 38px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-deck {
    max-width: 100%;
  }

  .hero-actions {
    max-width: 184px;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  .book-stage {
    right: 10px;
    bottom: 12px;
    width: 84px;
  }

  .edition-mark {
    display: none;
  }

  .byline {
    max-width: 184px;
  }

  .closing h2 {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
