:root {
  --ink: #050507;
  --ink-soft: #101411;
  --green: #00764c;
  --green-dark: #004d32;
  --green-light: #00d77c;
  --paper: #050507;
  --paper-deep: #0a0d0b;
  --white: #e6eef0;
  --muted: #9aa3a0;
  --line: rgba(255, 255, 255, 0.12);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.75rem; }
body {
  margin: 0;
  color: var(--white);
  background: var(--paper);
  font: 16px/1.55 var(--display);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--green-light); outline-offset: 4px; }
.page-shell { width: 100%; padding-inline: var(--gutter); }
.skip-link {
  position: fixed; top: .75rem; left: .75rem; z-index: 200;
  padding: .75rem 1rem; color: var(--white); background: var(--green-dark);
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

/* Homepage-family hero */
.story-hero {
  position: relative; min-height: 47rem; padding-top: 5.75rem;
  background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden;
}
.hero-landscape {
  position: absolute; inset: 5.75rem 0 0 auto; width: 52%; overflow: hidden;
  background: var(--green-dark);
}
.hero-landscape::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,7,.6), transparent 38%), linear-gradient(0deg, rgba(5,5,7,.72), transparent 48%);
}
.hero-landscape img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.04) brightness(.72); }
.hero-shell {
  position: relative; z-index: 1; min-height: calc(47rem - 5.75rem);
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(26rem, 1.05fr); grid-template-rows: auto 1fr auto;
}
.hero-utility {
  grid-column: 1; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 5rem; padding-inline: var(--gutter); border-bottom: 1px solid var(--line);
}
.record-label { display: flex; align-items: center; gap: .85rem; margin: 0; font: 800 .61rem/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.record-label span { color: var(--muted); }
.record-label strong { color: var(--green-light); }
.language-switch { display: inline-flex; align-items: center; gap: .2rem; padding: .28rem; color: var(--muted); background: rgba(255,255,255,.035); border: 1px solid var(--line); font: 800 .58rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.language-switch > span { padding-inline: .45rem .65rem; }
.language-switch button { min-width: 2.3rem; min-height: 2.05rem; padding: .35rem; color: var(--muted); background: transparent; border: 0; font: inherit; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: #001c12; background: var(--green-light); }
.hero-content {
  grid-column: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
  background: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.026) 50%, transparent 50.2%) 0 0 / 5rem 5rem, radial-gradient(circle at 10% 40%, rgba(0,118,76,.2), transparent 34%);
}
.eyebrow, .chapter-kicker, .history-date, .line-number, .line-tag, .classroom-copy > p {
  font-family: var(--mono); font-weight: 850; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .8rem; margin: 0 0 2rem; color: var(--green-light); font-size: .67rem; }
.eyebrow::before { content: ""; width: 2.7rem; height: 2px; background: var(--green); }
.story-hero h1 { max-width: 10.5ch; margin: 0; font-size: clamp(3.3rem, 5.4vw, 6.4rem); font-weight: 900; letter-spacing: -.075em; line-height: .84; text-transform: uppercase; }
.story-hero h1 span { display: block; }
.story-hero h1 .accent { color: var(--green-light); }
.hero-bottom { max-width: 38rem; margin-top: 1.8rem; padding-left: clamp(0rem, 3vw, 2.75rem); }
.hero-intro { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.16rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: space-between; gap: 2.3rem; padding: .85rem 1.15rem; border: 1px solid rgba(255,255,255,.46); font-size: .68rem; font-weight: 850; letter-spacing: .1em; line-height: 1; text-decoration: none; text-transform: uppercase; transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #001c12; background: var(--green-light); border-color: var(--green-light); clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); }
.button-primary:hover { background: #00eb88; border-color: #00eb88; }
.button-quiet { background: rgba(5,5,7,.35); }
.button-quiet:hover { color: #001c12; background: var(--white); }
.hero-ledger {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0;
  color: var(--white); background: rgba(0,77,50,.94); border-top: 1px solid rgba(255,255,255,.16);
}
.hero-ledger div { min-height: 6.6rem; display: flex; flex-direction: column; justify-content: center; padding: 1.3rem clamp(1rem,2.5vw,2.4rem); border-right: 1px solid rgba(255,255,255,.16); }
.hero-ledger div:last-child { border-right: 0; }
.hero-ledger dt { color: rgba(255,255,255,.54); font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-ledger dd { margin: .3rem 0 0; font-size: clamp(.95rem,1.5vw,1.3rem); font-weight: 720; letter-spacing: -.025em; }

.chapter-nav { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper-deep); border-bottom: 1px solid var(--line); }
.chapter-nav a { min-height: 5.3rem; display: flex; align-items: center; gap: .85rem; padding: 1rem clamp(1rem,2.4vw,2.4rem); border-right: 1px solid var(--line); text-decoration: none; }
.chapter-nav a:last-child { border-right: 0; }
.chapter-nav span { color: var(--green-light); font: 800 .6rem/1 var(--mono); }
.chapter-nav strong { color: rgba(255,255,255,.72); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; transition: color 180ms ease; }
.chapter-nav a:hover strong { color: var(--white); }

.chapter { padding-block: clamp(5rem, 10vw, 10rem); }
.chapter-kicker { display: flex; align-items: center; gap: .75rem; margin: 0 0 2.25rem; color: var(--green-light); font-size: .64rem; }
.chapter-kicker::after { content: ""; width: 3.6rem; height: 1px; background: currentColor; opacity: .55; }
.chapter-heading h2, .course-heading h2, .notes-heading h2, .closing-call h2 { margin: 0; font-size: clamp(2.8rem, 5.8vw, 6.2rem); font-weight: 830; letter-spacing: -.07em; line-height: .94; }

/* Program mission: editorial rows, not homepage cards */
.standard-chapter { background: radial-gradient(circle at 84% 15%, rgba(0,118,76,.12), transparent 30rem), var(--paper); }
.standard-layout { display: grid; grid-template-columns: minmax(14rem,.55fr) minmax(0,1.45fr); gap: clamp(3rem,8vw,9rem); align-items: start; }
.standard-layout > .chapter-heading { position: static; }
.standard-layout > .chapter-heading h2 { max-width: 9ch; text-transform: uppercase; }
.standard-statement { padding-top: .25rem; }
.standard-statement > p:first-child { max-width: 48rem; margin: 0; color: var(--white); font-size: clamp(1.35rem,2.3vw,2.2rem); font-weight: 620; letter-spacing: -.035em; line-height: 1.34; }
.pull-quote { max-width: 35rem; margin: 2.4rem 0 0; padding-left: 1.5rem; color: var(--muted); border-left: 3px solid var(--green); font-size: .95rem; line-height: 1.7; }
.standard-lines { grid-column: 1 / -1; margin: clamp(3rem,7vw,7rem) 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.standard-lines li { display: grid; grid-template-columns: 4rem .72fr 1fr 10rem; gap: 1.4rem; align-items: start; padding-block: 1.7rem; border-bottom: 1px solid var(--line); }
.line-number, .line-tag { color: var(--green-light); font-size: .61rem; }
.line-tag { color: var(--muted); text-align: right; }
.standard-lines h3 { margin: 0; font-size: clamp(1.2rem,1.8vw,1.65rem); font-weight: 740; letter-spacing: -.035em; line-height: 1.1; }
.standard-lines p { max-width: 35rem; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* Heritage: cinematic image plus a dark archival track */
.heritage-chapter { padding-top: 0; color: var(--white); background: var(--ink-soft); border-block: 1px solid var(--line); }
.heritage-banner { width: 100%; }
.heritage-banner figure { position: relative; height: clamp(25rem,48vw,40rem); margin: 0; overflow: hidden; }
.heritage-banner figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,7,.9), transparent 58%), linear-gradient(90deg, rgba(5,5,7,.55), transparent 40%); }
.heritage-banner img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05) brightness(.74); }
.heritage-banner figcaption { position: absolute; right: var(--gutter); bottom: 2rem; left: var(--gutter); z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.heritage-banner figcaption span { color: var(--green-light); font: 800 .62rem/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.heritage-banner figcaption strong { max-width: 30rem; font-size: clamp(1rem,1.8vw,1.45rem); letter-spacing: -.025em; line-height: 1.3; text-align: right; }
.heritage-record { padding-top: clamp(5rem,9vw,9rem); }
.heritage-heading { display: grid; grid-template-columns: .35fr 1.05fr .6fr; gap: clamp(2rem,5vw,6rem); align-items: start; }
.heritage-heading h2 { max-width: 13ch; text-transform: uppercase; }
.heritage-heading > p:last-child { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.history-track { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: clamp(4rem,8vw,8rem); background: var(--line); border: 1px solid var(--line); }
.history-entry { min-height: 20rem; padding: clamp(1.5rem,3vw,3rem); background: #080b09; }
.history-entry-now { background: linear-gradient(145deg, var(--green-dark), #063323); }
.history-date { margin: 0; color: var(--green-light); font-size: .61rem; }
.history-entry h3 { max-width: 16ch; margin: 4.5rem 0 0; font-size: clamp(1.35rem,2.2vw,2.15rem); font-weight: 780; letter-spacing: -.045em; line-height: 1.06; }
.history-entry div p { margin: 1rem 0 0; color: var(--muted); font-size: .88rem; line-height: 1.72; }
.history-entry-now div p { color: rgba(255,255,255,.68); }
.source-drawer { display: grid; grid-template-columns: minmax(16rem,.58fr) minmax(0,1.42fr); gap: clamp(2rem,6vw,7rem); margin-top: 1px; padding: clamp(2rem,5vw,5rem); background: #050706; border: 1px solid var(--line); }
.source-intro h3 { margin: 0; font-size: clamp(2.2rem,4vw,4.2rem); font-weight: 820; letter-spacing: -.06em; line-height: .95; text-transform: uppercase; }
.source-intro > p:last-child { max-width: 32rem; margin: 1.2rem 0 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.source-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.source-list li { border-bottom: 1px solid var(--line); }
.source-list a { display: grid; grid-template-columns: 1fr auto 1.3rem; gap: 1rem; align-items: center; min-height: 4.6rem; padding: .8rem 0; text-decoration: none; }
.source-list span { color: rgba(255,255,255,.42); font: 700 .55rem/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.source-list strong { font-size: .82rem; text-align: right; }
.source-list i { color: var(--green-light); font-style: normal; }
.source-list a:hover strong { color: var(--green-light); }

/* Staff: recognizably related to homepage/player cards, images remain clean */
.staff-chapter { background: var(--paper-deep); }
.staff-heading { display: grid; grid-template-columns: .34fr 1fr .6fr; gap: clamp(2rem,5vw,5rem); align-items: end; margin-bottom: clamp(4rem,8vw,7rem); }
.staff-heading h2 { text-transform: uppercase; }
.staff-heading > p:last-child { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.72; }
.coach-roster { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(1.2rem,2.5vw,2.5rem); }
.coach-card { padding: .9rem; background: #070907; border: 1px solid var(--line); transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease; }
.coach-card:hover { border-color: rgba(0,215,124,.58); box-shadow: 0 1.5rem 4rem rgba(0,0,0,.36), 0 0 1.7rem rgba(0,118,76,.13); transform: translateY(-6px); }
.coach-image-frame { aspect-ratio: 1 / 1; overflow: hidden; background: var(--ink); border-bottom: 4px solid var(--green); }
.coach-image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.72); transition: filter 350ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); }
.coach-card:hover .coach-image-frame img { filter: saturate(.95) brightness(.84); transform: scale(1.04); }
.coach-info { padding: 1.4rem .45rem .5rem; }
.coach-name-row { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.coach-name-row h3 { margin: 0; font-size: clamp(1.45rem,2.3vw,2.15rem); font-weight: 810; letter-spacing: -.05em; line-height: 1; }
.coach-name-row span { display: block; margin-top: .55rem; color: var(--green-light); font: 800 .59rem/1.4 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.coach-info > p { margin: 1rem 0 0; color: var(--muted); font-size: .87rem; line-height: 1.7; }
.coach-focus { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin: 1.15rem 0 0; padding: 0; list-style: none; }
.coach-focus li { position: relative; color: rgba(255,255,255,.68); font: 700 .54rem/1.3 var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.coach-focus li:not(:last-child)::after { content: "/"; position: absolute; right: -.7rem; color: var(--green); }

/* Classroom: a single focused showcase, no administrative metadata */
.course-chapter { background: radial-gradient(circle at 12% 18%, rgba(0,118,76,.2), transparent 30rem), var(--green-dark); border-block: 1px solid rgba(255,255,255,.14); }
.course-heading { display: grid; grid-template-columns: .34fr 1.05fr .61fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.course-heading h2 { text-transform: uppercase; }
.course-heading > p:last-child { margin: 0; color: rgba(255,255,255,.68); font-size: .94rem; line-height: 1.72; }
.classroom-showcase { display: grid; grid-template-columns: minmax(18rem,.72fr) minmax(0,1.28fr); gap: clamp(2rem,6vw,7rem); margin-top: clamp(4rem,8vw,7rem); padding: clamp(2rem,5vw,5rem); background: rgba(5,5,7,.82); border: 1px solid rgba(255,255,255,.18); }
.classroom-copy > p { margin: 0; color: var(--green-light); font-size: .6rem; }
.classroom-copy h3 { max-width: 22ch; margin: 1.2rem 0 0; font-size: clamp(1.5rem,2.8vw,2.8rem); font-weight: 750; letter-spacing: -.045em; line-height: 1.08; }
.classroom-skills { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.classroom-skills li { min-height: 4.8rem; display: flex; align-items: center; padding: 1rem; border-bottom: 1px solid var(--line); color: rgba(255,255,255,.84); font-size: .87rem; font-weight: 720; }
.classroom-skills li:nth-child(odd) { border-right: 1px solid var(--line); }
.classroom-skills li::before { content: ""; width: .42rem; height: .42rem; flex: 0 0 .42rem; margin-right: .8rem; background: var(--green-light); border-radius: 50%; }
.instructor-line { display: grid; grid-template-columns: minmax(8rem,.32fr) minmax(0,1.68fr); align-items: end; gap: 1.5rem; margin-top: 1px; padding: 1.4rem 2rem; background: rgba(5,5,7,.36); border: 1px solid rgba(255,255,255,.16); }
.instructor-line span { color: var(--green-light); font: 800 .58rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.instructor-line strong { padding-bottom: .4rem; color: rgba(255,255,255,.45); border-bottom: 1px dashed rgba(255,255,255,.42); font-size: .9rem; font-weight: 600; }

.field-notes { background: var(--paper); }
.notes-layout { display: grid; grid-template-columns: minmax(16rem,.58fr) minmax(0,1.42fr); gap: clamp(3rem,8vw,9rem); }
.notes-heading { position: static; align-self: start; }
.notes-heading h2 { font-size: clamp(2.7rem,4.8vw,5.2rem); text-transform: uppercase; }
.notes-heading > p:last-child { max-width: 28rem; margin: 1.2rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.notes-list { border-top: 1px solid var(--line); }
.notes-list details { border-bottom: 1px solid var(--line); }
.notes-list summary { min-height: 6.5rem; display: grid; grid-template-columns: 3rem minmax(0,1fr) 1rem; gap: 1rem; align-items: center; padding: 1.3rem 0; cursor: pointer; list-style: none; }
.notes-list summary::-webkit-details-marker { display: none; }
.notes-list summary span { color: var(--green-light); font: 800 .59rem/1 var(--mono); }
.notes-list summary strong { font-size: clamp(1rem,1.6vw,1.25rem); }
.notes-list summary i { position: relative; width: 1rem; height: 1rem; }
.notes-list summary i::before, .notes-list summary i::after { content: ""; position: absolute; background: var(--green-light); }
.notes-list summary i::before { top: .48rem; left: 0; width: 1rem; height: 1px; }
.notes-list summary i::after { top: 0; left: .48rem; width: 1px; height: 1rem; transition: opacity 180ms ease; }
.notes-list details[open] summary i::after { opacity: 0; }
.notes-list details > p { max-width: 46rem; margin: -1rem 0 0; padding: 0 2rem 2.2rem 4rem; color: var(--muted); font-size: .9rem; line-height: 1.72; }

.closing-call { position: relative; min-height: 40rem; display: grid; place-items: center; padding-block: clamp(6rem,10vw,10rem); background: var(--paper-deep); border-top: 1px solid var(--line); overflow: hidden; }
.closing-call::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 50%, rgba(0,118,76,.19), transparent 29rem), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px) 0 0/5rem 100%; }
.closing-mark { position: absolute; top: 50%; right: clamp(-6rem,1vw,1rem); width: min(40vw,34rem); opacity: .08; transform: translateY(-50%); filter: grayscale(1); }
.closing-inner { position: relative; z-index: 1; }
.closing-call h2 { max-width: 11ch; text-transform: uppercase; }
.closing-call h2 span { display: block; }
.closing-call h2 span:nth-child(2) { color: var(--green-light); }
.closing-inner > p:not(.chapter-kicker) { max-width: 37rem; margin: 1.6rem 0 0; color: var(--muted); }
.closing-actions { margin-top: 1.8rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
footer { background: #030403; }

@media (max-width: 1100px) {
  .hero-shell { grid-template-columns: 1fr 1fr; }
  .heritage-heading, .staff-heading, .course-heading { grid-template-columns: .3fr 1fr; }
  .heritage-heading > p:last-child, .staff-heading > p:last-child, .course-heading > p:last-child { grid-column: 2; }
  .standard-lines li { grid-template-columns: 3rem .75fr 1fr; }
  .line-tag { grid-column: 2; text-align: left; }
  .coach-roster { gap: 1.1rem; }
}

@media (max-width: 820px) {
  .story-hero { min-height: 0; }
  .hero-landscape { position: relative; inset: auto; width: 100%; min-height: 25rem; }
  .hero-shell { min-height: 0; grid-template-columns: 1fr; }
  .hero-utility, .hero-content { grid-column: 1; }
  .hero-utility { grid-row: 1; }
  .hero-content { grid-row: 2; min-height: 35rem; }
  .hero-landscape { display: none; }
  .hero-ledger { grid-row: 3; grid-template-columns: repeat(2,1fr); }
  .hero-ledger div:nth-child(2) { border-right: 0; }
  .hero-ledger div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .chapter-nav { grid-template-columns: repeat(2,1fr); }
  .chapter-nav a:nth-child(2) { border-right: 0; }
  .chapter-nav a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .standard-layout { grid-template-columns: 1fr; }
  .standard-layout > .chapter-heading, .notes-heading { position: static; }
  .standard-layout > .chapter-heading h2 { max-width: 12ch; }
  .standard-lines { margin-top: 1rem; }
  .history-track { grid-template-columns: 1fr; }
  .history-entry { min-height: 0; }
  .source-drawer { grid-template-columns: 1fr; }
  .coach-roster { grid-template-columns: repeat(2,1fr); }
  .coach-card:last-child { grid-column: 1 / -1; width: calc(50% - .55rem); justify-self: center; }
  .classroom-showcase { grid-template-columns: 1fr; }
  .notes-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .chapter { padding-block: 4.5rem; }
  .hero-shell { grid-template-columns: minmax(0, 1fr); }
  .hero-utility, .hero-content, .hero-ledger { min-width: 0; }
  .hero-utility { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 7rem; }
  .hero-content { min-height: 36rem; padding-block: 3rem; }
  .story-hero h1 { max-width: 100%; font-size: clamp(3rem,15vw,4.5rem); letter-spacing: -.06em; line-height: .88; }
  .hero-bottom { padding-left: 0; }
  .button { width: 100%; }
  .chapter-nav a { min-height: 4.6rem; padding: .85rem 1rem; }
  .chapter-heading h2, .course-heading h2, .notes-heading h2, .closing-call h2 { font-size: clamp(2.25rem,11.5vw,3.6rem); letter-spacing: -.055em; line-height: .98; }
  .standard-lines li { grid-template-columns: 2rem 1fr; }
  .standard-lines h3, .standard-lines p, .line-tag { grid-column: 2; }
  .heritage-banner figure { height: 28rem; }
  .heritage-banner figcaption { align-items: flex-start; flex-direction: column; }
  .heritage-banner figcaption strong { text-align: left; }
  .heritage-heading, .staff-heading, .course-heading { grid-template-columns: 1fr; }
  .heritage-heading > p:last-child, .staff-heading > p:last-child, .course-heading > p:last-child { grid-column: auto; }
  .history-entry { padding: 1.35rem; }
  .history-entry h3 { margin-top: 3rem; }
  .source-drawer { padding: 1.35rem; }
  .source-list a { grid-template-columns: 1fr 1.2rem; }
  .source-list strong { grid-column: 1; text-align: left; }
  .source-list i { grid-column: 2; grid-row: 1 / span 2; }
  .coach-roster { grid-template-columns: 1fr; gap: 1.5rem; }
  .coach-card:last-child { grid-column: auto; width: 100%; }
  .coach-image-frame { aspect-ratio: 4 / 3; }
  .classroom-showcase { padding: 1.35rem; }
  .classroom-skills { grid-template-columns: 1fr; }
  .classroom-skills li:nth-child(odd) { border-right: 0; }
  .instructor-line { grid-template-columns: 1fr; padding: 1.4rem; }
  .notes-list summary { grid-template-columns: 2rem minmax(0,1fr) 1rem; }
  .notes-list details > p { padding-left: 3rem; }
  .closing-mark { width: 78vw; right: -8rem; }
  footer > div > div:last-child { flex-wrap: wrap; justify-content: center; row-gap: .75rem; padding-inline: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
