/* ---------------------------------------------------------------------------
 * downbeat.css
 *
 * Design system for the "Downbeat" cinematic redesign of the Tara Winds site.
 * Think program-book-on-the-web: ink-on-cream type, full-bleed stage photos,
 * sticky chapter sections that read like the slow lift of a curtain.
 *
 * Layered, in order of appearance:
 *   1. Fonts            — Bunny Fonts (privacy-respecting Google Fonts mirror)
 *   2. Custom properties — palette + type ramp tokens
 *   3. Reset             — minimal; box-sizing, defaults, scroll
 *   4. Type utilities    — hero, section, eyebrow, meta, body-lead, italic display
 *   5. Layout primitives — surfaces, page-pad, sticky curtain pattern
 *   6. Components        — buttons, links, skip link, focus ring, hairline
 *   7. Motion            — letter mask-up reveal, eyebrow fade-in
 *   8. Chrome            — site header (transparent → blurred on scroll), footer,
 *                          mobile nav overlay
 *
 * Contrast guarantees (WCAG 2.2 AA floor, often exceeded):
 *   - body text  (#10131A on #F4F0E6) → 16.8:1
 *   - brass body (#8A6420 on #F4F0E6) → ~7.1:1
 *   - brass-on-cream is reserved for large/decorative use; small accents use
 *     --brass-text so they clear AA at body sizes.
 * ------------------------------------------------------------------------- */

/* Fonts (Caveat, Fraunces, Inter Tight, JetBrains Mono) load from a <link>
 * in layouts/base.njk — not an @import here — so the font CSS fetches in
 * parallel with this file instead of serially after it. */

:root {
  /* Palette — the entire experience uses these six colors. NO pure white. */
  --bg:         #F4F0E6;  /* Program Cream — base surface */
  --fg:         #10131A;  /* Curtain Ink — primary type */
  --brass:      #B8862F;  /* Brass — large accents, buttons */
  --brass-text: #8A6420;  /* darkened Brass — meets AA at body sizes */
  --oxblood:    #7A0E1E;  /* Encore Oxblood — Support Us, Act V */
  --hairline:   #ECE6D6;  /* Dim Cream — quiet 1px rules */
  --meta:       #5A5D66;  /* Raked-light Grey — timestamps, eyebrows */
  --pewter:     #7C838C;  /* Pewter — the Silver tier; 3.4:1 on cream. Literal
                           * silver (#C0C0C0) all but vanishes on this ground. */

  /* Type stacks */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter Tight', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --hand:  'Caveat', 'Segoe Script', 'Bradley Hand', cursive;
}

/* --- Reset (minimal) --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
/* Smooth anchor scrolling is motion — never animate it for users who have
 * asked motion to stop. */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, picture { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
/* [hidden] must always win: several controls set display:inline-flex, which
 * outranks the UA's [hidden]{display:none} at author-sheet level — the
 * reduced-motion path in downbeat.js relies on the attribute to remove the
 * video/carousel pause chips, and they were rendering as dead controls. */
[hidden] { display: none !important; }

/* --- Type utilities ---------------------------------------------------- */
.t-hero {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.t-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.012em;
}
.t-display-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
}
.t-eyebrow {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--meta);
}
.t-meta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--meta);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
/* The raked-grey eyebrow reads at only ~2.8:1 on ink; on dark surfaces the
 * slates glow brass instead (5.7:1 at this size/weight). Pages that already
 * special-cased this (Clarinet Choir, the tours strip) now just inherit it. */
.surface-ink .t-eyebrow { color: var(--brass); }
/* --- Layout primitives ------------------------------------------------- */
.surface-cream   { background: var(--bg); color: var(--fg); }
.surface-ink     { background: var(--fg); color: var(--bg); }
.surface-oxblood { background: var(--oxblood); color: var(--bg); }

/* Sticky curtain — used to stack 100vh chapters that lift off one another.
 * On mobile we drop sticky entirely so the user isn't trapped scrubbing
 * through layered viewports on a small screen. */
.curtain {
  position: sticky;
  top: 0;
  /* dvh follows iOS Safari's collapsing chrome so full-screen chapters don't
   * jump; the vh line is the fallback for browsers without dvh. Same pattern
   * on every 100vh section below. */
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .curtain {
    position: static;
    min-height: auto;
    overflow: visible;
  }
}

/* --- Components -------------------------------------------------------- */
.btn-brass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brass);
  color: var(--fg);
  /* Symmetric padding: the old 13/15 optical trick compensated for caps-only
   * labels with no descenders; sentence-case labels have them. */
  padding: 14px 28px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn-brass:hover { transform: translateY(-1px); }

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--bg);
  border: 1px solid var(--bg);
  padding: 13px 28px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn-outline-cream:hover {
  background: var(--bg);
  color: var(--fg);
}

/* Pause/resume control for self-moving content (backing video, photo
 * marquees, the media carousel) — WCAG 2.2.2. A quiet 44px round chip; the
 * glyph flips pause⇄play via the .is-paused class downbeat.js toggles.
 * Hidden by JS under reduced motion, where nothing auto-plays to begin with. */
.media-toggle,
.carousel-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 160ms ease;
}
.media-toggle:hover,
.carousel-pause:hover { opacity: 1; }
.pause-glyph {
  display: block;
  width: 10px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.is-paused .pause-glyph {
  width: 0;
  height: 0;
  border: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 3px;
}

/* Inline body links — quiet brass underline that meets contrast on cream */
a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--brass-text);
  padding-bottom: 1px;
}
/* Buttons and nav links opt out of the brass underline */
/* Nav/brand/footer/skip links opt out of the inline-link's brass underline and
 * its 1px bottom padding. The buttons are intentionally NOT included here: they
 * set their own border and padding. Including them was deleting the outline
 * button's bottom border (border-bottom:0) and clipping the brass label
 * (padding-bottom:0). */
.nav-link, .wordmark, .footer-link, .skip-link {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Body scroll lock while the mobile nav overlay is open (set by downbeat.js,
 * which also marks the content behind the overlay inert). */
body.nav-locked { overflow: hidden; }

/* Visually-hidden helper for accessible-but-decoratively-absent headings. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link (visible only on keyboard focus). */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  background: var(--fg);
  color: var(--bg);
  z-index: 1000;
}

/* Focus ring — NEVER outline:none. Computed contrast decides the color per
 * surface: brass #B8862F is only 2.84:1 against cream (fails the 3:1 non-text
 * floor), so cream surfaces get the darker brass-text (4.7:1); ink and
 * oxblood keep true brass (5.7:1 / 3.4:1). */
:focus-visible {
  outline: 2px solid var(--brass-text);
  outline-offset: 2px;
  border-radius: 2px;
}
.surface-ink :focus-visible,
.surface-oxblood :focus-visible,
.has-dark-hero .site-header:not(.scrolled) :focus-visible,
.lightbox :focus-visible {
  outline-color: var(--brass);
}

/* --- Motion ------------------------------------------------------------ */
/* Mask-up letter reveal (used on the hero name). When JS has run it adds
 * .js-letters-pending to the parent, which hides each .letter-inner below the
 * mask edge; .letters-play then animates them in with a staggered delay set
 * inline as --letter-delay. Without JS, letters render statically — perfect.
 * Reduced-motion users skip the animation entirely. */
@media (prefers-reduced-motion: no-preference) {
  .letter {
    display: inline-block;
    overflow: hidden;
    /* Horizontal breathing room so a glyph's right side-bearing isn't shaved
     * by the mask. The padding widens the un-clipped area; the matching
     * negative margin keeps each letter in its original position. Vertical
     * padding stays 0 so the translateY mask still hides the letter. */
    padding-inline: 0.18em;
    margin-inline: -0.18em;
    line-height: 1;
    vertical-align: top;
  }
  .letter-inner {
    display: inline-block;
    transform: translateY(0);
    will-change: transform;
  }
  .js-letters-pending .letter-inner {
    transform: translateY(110%);
  }
  .js-letters-pending.letters-play .letter-inner {
    transition: transform 720ms cubic-bezier(0.2, 0.7, 0.1, 1);
    transition-delay: var(--letter-delay, 0ms);
    transform: translateY(0);
  }
}

/* Eyebrow / slate fade-in on intersection. The hidden state is gated on the
 * html.js class (set by an inline script in base.njk) so that when scripting
 * is off or fails, every .reveal element simply renders visible — nothing on
 * the page may be invisible without the script that would have shown it. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 200ms ease, transform 180ms cubic-bezier(0.2, 0.7, 0.1, 1);
}
.js .reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------------------------
 * Site header
 *
 * The header rides over the dark hero in cream type with no background, then
 * sinters into a blurred cream slab as soon as the user scrolls (16px). The
 * .scrolled class flip is owned by JS (see downbeat.js → headerScrollState).
 *
 * No-JS fallback: without the class flip the header stays transparent over the
 * hero forever, which is fine — type stays cream and the wordmark + nav are
 * legible against the hero image. The minute the page scrolls past the hero,
 * the header still floats over cream surfaces; text contrast remains okay
 * because cream-on-cream isn't an issue (the cream wordmark would vanish).
 * To guard against that no-JS edge case we use color-scheme-aware text:
 * mix-blend-mode: difference would be too clever; instead we just accept
 * that JS-off users see a transparent header — the in-page nav links still
 * work, and the body content always has its own contrast. The header is
 * progressive enhancement.
 * ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block: 20px;
  /* Default to ink type so the bar is legible over the common light/cream
   * heroes (Schedule, People, Scholarship…). Pages with a dark hero opt in via
   * .has-dark-hero (below) to flip the un-scrolled bar back to cream.
   *
   * The color flip is FASTER than the slab fade below (120ms vs 160ms) on
   * purpose: during the scrolled-state crossfade the text must never sit
   * half-tinted over a half-faded slab longer than a couple of frames — the
   * old matched 240ms/240ms pair produced a visible quarter-second of
   * cream-on-cream every time the threshold was crossed. */
  color: var(--fg);
  background: transparent;
  transition: color 120ms ease;
}
/* The scrolled frosted-cream slab lives on a ::before, NOT on the header
 * itself. backdrop-filter on the header would make it the containing block for
 * the position:fixed mobile nav, so its inset:0 would resolve to the header
 * (tiny) instead of the viewport — leaking nav links into the bar on scroll.
 * A sibling pseudo-element gives the same frosted look without that side effect. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* 0.95 cream, with the backdrop desaturated as well as blurred: the old
   * 0.85 slab let 15% of whatever scrolled beneath pattern through, so the
   * 12px nav sat on mottled gray whenever a 200px display glyph or a photo
   * grid passed under the bar. At 0.95 + saturate(0.6) nothing structured
   * survives — the frosted look stays, the interference doesn't. */
  background: rgba(244, 240, 230, 0.95);
  backdrop-filter: blur(14px) saturate(0.6);
  -webkit-backdrop-filter: blur(14px) saturate(0.6);
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled { color: var(--fg); }
/* Dark-hero pages (home's photo curtain, about's ink intro, future inverted/
 * photo heroes): cream type over the hero until the cream slab fades in. */
.has-dark-hero .site-header:not(.scrolled) { color: var(--bg); }
/* Scripting off: the .scrolled flip never happens, so pin the header to its
 * solid state — a permanently transparent bar would float cream text over
 * cream content the moment the page scrolls. */
html:not(.js) .site-header::before { opacity: 1; }
html:not(.js) .site-header { color: var(--fg); }
html:not(.js) .has-dark-hero .site-header { color: var(--fg); }

.wordmark {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(11px, 1.3vw, 20px);
}
.nav-link {
  font-family: var(--mono);
  font-weight: 500;
  /* 14px, not 12: nine miniature mono links were the hardest-working small
   * type on the site, for an audience that skews 60+. Fits one row down to
   * the 1200px collapse. */
  font-size: 14px;
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease;
}
.nav-link:hover {
  border-bottom-color: rgba(184, 134, 47, 0.45);
}
/* The active page must read differently from a hover: a full-strength
 * underline in the darker brass (the light brass fails the 3:1 non-text
 * floor on cream) plus a weight change — two cues, neither shared with
 * hover. Declared after :hover so hovering the active link keeps its state. */
.nav-link[aria-current="page"],
.nav-link.is-active {
  border-bottom-color: var(--brass-text);
  font-weight: 600;
}
/* On an unscrolled dark hero the darker brass would vanish; use true brass. */
.has-dark-hero .site-header:not(.scrolled) .nav-link[aria-current="page"],
.has-dark-hero .site-header:not(.scrolled) .nav-link.is-active {
  border-bottom-color: var(--brass);
}

/* Mobile disclosure button — hidden on desktop. The header's z-index governs
 * only how the bar stacks against the page; among the header's own children the
 * non-positioned button would paint *under* the positioned .nav-list overlay
 * (z-index 90). Give the toggle its own positioned stack above that overlay so
 * it stays a tappable "Close" control once the menu is open. */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 95;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  /* Tall enough for a comfortable ~40px touch target. */
  padding: 11px 16px;
  border-radius: 2px;
  cursor: pointer;
}

/* The home nav carries nine links; below ~1200px a single row would overflow
 * and float over the page, so we collapse to the "Menu" overlay early rather
 * than ever letting links spill. Every link stays reachable — just behind the
 * disclosure on smaller windows. */
@media (max-width: 1199px) {
  .nav-toggle { display: inline-block; }
  /* Lay the collapsed bar out as 1fr / auto / 1fr so the disclosure toggle
   * rides the centered middle track — landing on true viewport center, right
   * above the centered overlay column. The default flex + space-between parked
   * it off-center: once .nav-list goes position:fixed the empty <nav> claims
   * the right slot, so space-between shoved the toggle to center + half the
   * wordmark's width. That left the open "Close" button misaligned with the
   * page-centered menu links. The wordmark stays pinned to the left track. */
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .wordmark { justify-self: start; }
  .nav-list {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: var(--bg);
    color: var(--fg);
    padding: 64px 24px;
    transform: translateY(-100%);
    /* visibility flips AFTER the slide-out finishes (0s 280ms) so the closed
     * menu's nine links leave the tab order instead of being focusable while
     * parked off-screen — keyboard focus used to vanish for nine Tab stops. */
    visibility: hidden;
    transition: transform 280ms cubic-bezier(0.2, 0.7, 0.1, 1), visibility 0s 280ms;
    z-index: 90;
  }
  .site-header.nav-open .nav-list {
    transform: translateY(0);
    visibility: visible;
    transition: transform 280ms cubic-bezier(0.2, 0.7, 0.1, 1);
  }
  .site-header.nav-open .nav-toggle {
    color: var(--fg);
    border-color: var(--fg);
  }
  .nav-link {
    font-size: 18px;
    letter-spacing: 0.06em;
  }
}

/* ---------------------------------------------------------------------------
 * Site footer — quiet "Stripe Sessions" utility footer on cream.
 * Dense Inter Tight body + JetBrains Mono labels; no logos, names-only sponsor
 * list grouped by tier inside corporate-first / individual-second columns.
 * ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  color: var(--fg);
  padding: clamp(56px, 8vh, 96px) clamp(20px, 5vw, 56px) 48px;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  margin-bottom: 48px;
  max-width: 36ch;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 56px;
}
.footer-label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--meta);
  margin-bottom: 12px;
}
.footer-list li + li { margin-top: 6px; }
.footer-subhead {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--meta);
  margin-top: 16px;
  margin-bottom: 6px;
}
.footer-subhead:first-of-type { margin-top: 0; }
.footer-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}
.footer-link:hover { border-bottom-color: var(--brass-text); }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--meta);
}

/* ---------------------------------------------------------------------------
 * Home page — the five acts
 *
 * Each act is a full <section class="act act-…"> that owns its own surface
 * color and vertical rhythm. The shared .act class applies the standard
 * page-padding and a sensible minimum height so single short paragraphs don't
 * read as a thin band squeezed between two giant chapters. Individual acts
 * override min-height where the design needs something different (the curtain
 * locks to 100vh, the ask collapses to natural height because it's centered
 * and small).
 *
 * Reading order: curtain → highlight → season → portrait → sponsors → ask.
 * ------------------------------------------------------------------------- */
.act {
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block: clamp(80px, 14vh, 180px);
  min-height: 60vh;
  position: relative;
}

/* --- Act I — Curtain (hero) ------------------------------------------- */
/* Full-bleed photo behind cream type. The image is an actual <img> rather
 * than a background-image so it gets the browser's lazy/eager loading
 * machinery and an alt text path for assistive tech (we set alt="" since
 * the photo is decorative — the heading carries the ensemble name). */
.act-curtain {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--bg);
  overflow: hidden;
  padding-block: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  /* Shadow lift: the source is a moody, underexposed wide — the first paint
   * read as a black void with a distant band. */
  filter: brightness(1.18) saturate(1.05);
  z-index: 0;
}
/* On wide screens the 16:9 source fits the hero at FULL height (the box is
 * shorter than the image's aspect), so object-position can't crop away the
 * unlit ceiling that owns the top 40% of the frame. Zoom toward the lit
 * stage instead; the curtain act's overflow:hidden clips the spill. Phones
 * already height-crop hard, so they keep the unzoomed frame. */
@media (min-width: 900px) {
  .hero-photo {
    transform: scale(1.3);
    transform-origin: 50% 70%;
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    transparent 60%
  );
  z-index: 1;
}
.hero-lockup {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block-end: clamp(40px, 8vh, 100px);
  z-index: 2;
  max-width: 1100px;
}
.hero-lockup .t-eyebrow {
  /* Eyebrow over a dark photo needs to be cream, not raked-light grey. */
  color: var(--bg);
  opacity: 0.85;
  margin-bottom: 18px;
}
.hero-lockup .t-hero {
  color: var(--bg);
  margin-bottom: 20px;
}
.hero-lockup .t-display-italic {
  color: var(--bg);
  max-width: 36ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* --- Act II — Season highlight (rotates each season) ----------------- */
/* A muted, cream-tinted, silent autoplay clip sits behind a "World Premiere"
 * kicker, the piece title in serif italic, and a one-line caption. This
 * replaces the old fixed Carnegie billboard so the act can rotate to last
 * season's highlight every year — edit the eyebrow, <video>, title, and
 * caption in index.njk. */
.act-highlight {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh;
  overflow: hidden;
  color: var(--fg);
}
.highlight-backing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
  opacity: 0.9;
  /* Warm the footage toward the cream palette so it reads as a muted memory. */
  filter: sepia(0.28) saturate(0.82) brightness(1.05) contrast(0.95);
  pointer-events: none;
}
/* Cream wash over the clip — heavy at the bottom where the ink type sits,
 * light above so the footage is actually visible. The old near-opaque
 * full-frame wash (0.93/0.55/0.34 over a 0.78-opacity clip) ghosted the
 * premiere video into wobbling noise that contributed nothing. */
.highlight-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(244, 240, 230, 0.9) 0%,
    rgba(244, 240, 230, 0.46) 42%,
    rgba(244, 240, 230, 0.18) 100%
  );
  pointer-events: none;
}
/* Lift all type above the clip + wash (both absolute, behind). */
.act-highlight > *:not(.highlight-backing):not(.highlight-tint) {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
/* The single label line gets a frosted cream chip so it reads clearly over
 * the (now more visible) footage. */
.highlight-labels {
  align-self: flex-start;
  margin-bottom: 20px;
}
.highlight-eyebrow {
  width: fit-content;
  max-width: 100%;
  background: rgba(244, 240, 230, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 3px;
  box-shadow: 0 2px 14px rgba(16, 19, 26, 0.12);
  font-size: 14px;
}
.highlight-title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 20px;
}
.highlight-title em {
  font-style: italic;
  font-size: clamp(52px, 8.5vw, 140px);
}
.highlight-caption {
  max-width: 44ch;
}
/* The video's pause chip sits in the act's quiet upper-right corner, above
 * the tint and in ink, since the footage is cream-washed. Three classes so it
 * out-ranks the act's child rule above, whose position:relative would
 * otherwise drop the chip into the flex column. */
.act-highlight .media-toggle.highlight-pause {
  position: absolute;
  top: clamp(88px, 12vh, 120px);
  right: clamp(20px, 5vw, 56px);
  align-self: auto;
  color: var(--fg);
}
/* Slow, gentle pan/zoom — only for users who haven't asked motion to stop.
 * Also parks the pan while the visitor has paused the video itself, so the
 * "paused" backdrop genuinely holds still. */
@media (prefers-reduced-motion: no-preference) {
  .highlight-backing {
    animation: highlight-pan 38s ease-in-out infinite alternate;
  }
  .act-highlight:has(.highlight-pause.is-paused) .highlight-backing {
    animation-play-state: paused;
  }
}
@keyframes highlight-pan {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16) translate(-2.5%, -1.5%); }
}
@media (max-width: 767px) {
  .highlight-title em { font-size: clamp(44px, 13vw, 96px); }
}

/* --- Act III — The Season -------------------------------------------- */
/* Typographic table — not a card grid. Each row is one date, one title, one
 * venue, one CTA. Hairlines instead of borders; hover gently warms the row. */
.act-season .season-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
}
.act-season .season-eyebrow {
  font-size: 14px;
  margin-bottom: 8px;
}
.season-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: clamp(40px, 6vh, 80px);
}
.season-table tr {
  border-top: 1px solid var(--hairline);
  transition: background 0.2s ease;
}
.season-table tr:last-child {
  border-bottom: 1px solid var(--hairline);
}
.season-table tr:hover {
  background: rgba(184, 134, 47, 0.04);
}
.season-table td {
  padding: clamp(20px, 3vh, 36px) 12px;
  vertical-align: baseline;
}
.season-time,
.season-admission {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--meta);
}
.season-admission { letter-spacing: 0.03em; }
.season-table .season-title {
  /* Fraunces, per the spec's "mono date + Fraunces title" program-book rule:
   * the concert names are the page's content and were the one element set in
   * a sans, out-voiced by their own serif section labels. */
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.9vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  /* A real link now, but the brass inline-link underline stays off — the
   * row's hover treatment carries the affordance at this display size. */
  border-bottom: 0;
  padding-bottom: 0;
}
.season-table tr:hover .season-title,
.season-table .season-title:hover {
  text-decoration: underline;
  text-decoration-color: var(--brass-text);
  text-underline-offset: 6px;
}
/* Two calendar options stack in the action cell. */
.season-cta { white-space: nowrap; }
.season-cta .row-cta { display: inline-block; }
.season-cta .row-cta + .row-cta { margin-top: 10px; display: block; width: fit-content; }
/* The primary calendar action renders as the brass button at REST — it used
 * to morph into one only on row hover, which touch users never see, and its
 * resting form was an 11px link with a ~16px hit target. The .ics alternative
 * stays a quiet underline so each row carries exactly one brass moment. */
.row-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fg);
  background: var(--brass);
  padding: 8px 14px;
  border-bottom: 0;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.row-cta:hover { transform: translateY(-1px); }
.row-cta.row-cta-ics {
  background: transparent;
  color: var(--brass-text);
  padding: 4px 0;
  border-bottom: 1px solid var(--brass-text);
  border-radius: 0;
}
.row-cta.row-cta-ics:hover { transform: none; color: var(--fg); }

/* Mobile: collapse table into stacked card-shaped rows. Same elements, just
 * relayed via display:block so the dense desktop table doesn't crush on
 * narrow viewports. */
@media (max-width: 639px) {
  .season-table,
  .season-table tbody,
  .season-table tr,
  .season-table td {
    display: block;
    width: 100%;
  }
  .season-table tr {
    padding: 24px 0;
  }
  .season-table td {
    padding: 4px 0;
  }
  .season-table td.season-date {
    margin-bottom: 8px;
  }
  .season-table td.season-venue {
    margin-top: 8px;
  }
  .season-table td.season-cta {
    margin-top: 16px;
  }
  .row-cta {
    display: inline-block;
  }
}

/* --- Act IV — Portrait + quote (placeholder) -------------------------- */
.act-portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.portrait-figure {
  margin: 0;
}
.portrait-photo {
  display: block;
  width: 100%;
  height: auto;
}
.portrait-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 36ch;
}
.portrait-attribution {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--meta);
}
@media (max-width: 767px) {
  .act-portrait {
    grid-template-columns: 1fr;
  }
}

/* --- Act V — Season sponsors ------------------------------------------ */
/* Recognition as typography: corporate backers large and linked, individual
 * backers denser below, repeat sponsors marked with a brass star badge. */
.act-sponsors .t-section { margin: 8px 0 clamp(40px, 6vh, 72px); }
.sponsor-corp {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(32px, 5vh, 52px) clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 8vh, 88px);
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid var(--hairline);
}
.sponsor-site {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.3vw, 33px);
  line-height: 1.15;
  border-bottom: 2px solid var(--brass);
  padding-bottom: 3px;
  transition: color 160ms ease;
}
.sponsor-site:hover { color: var(--brass-text); }
.sponsor-people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(20px, 3vh, 32px) clamp(24px, 3vw, 48px);
}
.sponsor-person {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
}
.sponsor-meta {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--meta);
}
.sponsor-people .sponsor-meta { margin-top: 4px; font-size: 11px; }
.sponsor-badge { color: var(--brass-text); margin-left: 8px; white-space: nowrap; }
.sponsor-star { color: var(--brass); }

/* --- Tier accents ------------------------------------------------------
 * One mapping, consumed by both sponsor components (the home act's entries
 * and the Support Us wall's columns). Tiers without a color fall back to the
 * hairline, so Bronze reads as the base level and a future Platinum/Diamond
 * renders sanely until someone picks its color.
 *
 * Colour is reinforcement here, never the only channel: every name still
 * carries its tier in words ("Gold sponsor") or sits under a tier heading,
 * so nothing is lost to a colour-blind or monochrome reader. */
.sponsor-tier-gold   { --tier-accent: var(--brass); }
.sponsor-tier-silver { --tier-accent: var(--pewter); }

.sponsor-corp .sponsor-entry,
.sponsor-people .sponsor-entry {
  padding-left: 14px;
  border-left: 3px solid var(--tier-accent, var(--hairline));
}

/* --- Act VI — The Ask (Oxblood modulation) ---------------------------- */
.act-ask {
  text-align: center;
  min-height: auto;
  padding-block: clamp(80px, 14vh, 180px);
}
.act-ask .t-eyebrow {
  /* Eyebrow on oxblood — cream type, slightly translucent to match the
   * other eyebrow treatments while still clearing AA. */
  color: var(--bg);
  opacity: 0.85;
  margin-bottom: 24px;
}
.act-ask .t-section {
  font-style: italic;
  max-width: 22ch;
  margin-inline: auto;
  color: var(--bg);
}
.act-ask .ask-fine {
  margin-top: clamp(24px, 4vh, 40px);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bg);
  opacity: 0.85;
}
.ask-actions {
  margin-top: clamp(28px, 5vh, 60px);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* One-off utility — used on the ask heading. */
.font-italic { font-style: italic; }

/* ---------------------------------------------------------------------------
 * Schedule page — upcoming concert cards + Past Performances by decade.
 * ------------------------------------------------------------------------- */
.schedule-section { padding-block: clamp(64px, 10vh, 130px); }
.schedule-heading { margin-bottom: clamp(28px, 4vh, 44px); }
.schedule-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 52ch;
  margin-bottom: clamp(36px, 6vh, 64px);
  color: var(--fg);
}
.schedule-none {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--meta);
}
.season-none { margin-top: clamp(28px, 5vh, 48px); max-width: 44ch; }
/* Between-seasons hero: an ink band stands in for the featured photo so the
 * has-dark-hero cream header keeps its backdrop. */
.featured-none { background: var(--fg); min-height: 62vh; }
.featured-none .schedule-none {
  color: var(--bg);
  opacity: 0.85;
  max-width: 44ch;
  margin-bottom: 30px;
}

/* Concert cards — a date badge beside detail-rich info, divided by hairlines. */
.concert-cards { border-top: 1px solid var(--hairline); }
.concert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s ease;
}
.concert-card:hover { background: rgba(184, 134, 47, 0.04); }
.cc-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 84px;
}
.cc-month {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--brass-text);
}
.cc-day {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  color: var(--fg);
}
.cc-title {
  /* Fraunces to match the season table (see .season-title). */
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 10px;
}
.cc-when,
.cc-where {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--meta);
  letter-spacing: 0.03em;
}
.cc-when { margin-bottom: 4px; }
.cc-where { display: flex; align-items: center; gap: 7px; }
.cc-pin { width: 15px; height: 15px; color: var(--brass-text); flex: none; }
/* Venue names open Google Maps — they keep the site's standard brass link
 * underline so they LOOK like the links they are (the old opt-out left
 * directions indistinguishable from the plain date line above). */
.cc-where a { color: inherit; }
.cc-where a:hover { color: var(--fg); }
.cc-notes {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
}
.cc-notes li { position: relative; padding-left: 16px; margin-top: 4px; }
.cc-notes li::before { content: "\2014"; position: absolute; left: 0; color: var(--brass-text); }
.cc-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cc-admission {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--meta);
}
.cc-cal {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brass-text);
  border-bottom: 1px solid var(--brass-text);
  /* Vertical padding buys a ~30px touch target without visual weight. */
  padding: 6px 0 4px;
}
.cc-cal:hover { color: var(--fg); }

/* Past Performances — decade columns of year + event. */
.decade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.decade-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--brass-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.decade-list { display: flex; flex-direction: column; gap: 12px; }
.decade-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: baseline;
}
.decade-year {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--meta);
  font-variant-numeric: tabular-nums;
}
.decade-event {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.35;
  color: var(--fg);
}

@media (max-width: 599px) {
  .concert-card { grid-template-columns: 1fr; gap: 14px; }
  .cc-date { flex-direction: row; align-items: baseline; gap: 10px; min-width: 0; }
  .cc-day { font-size: 40px; }
}

/* Featured concert — the next date breaks the grid as a full-bleed hero, and
 * gives the fixed transparent header a dark backdrop on this non-hero page. */
.featured-concert {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--bg);
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block-end: clamp(44px, 8vh, 96px);
}
.featured-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.featured-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.featured-concert > *:not(.featured-photo):not(.featured-scrim) {
  position: relative;
  z-index: 2;
}
.featured-body { max-width: 1000px; }
.featured-eyebrow { color: var(--bg); opacity: 0.85; margin-bottom: 18px; }
.featured-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 22px;
}
.featured-meta {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--bg);
  opacity: 0.92;
  margin-bottom: 8px;
}
.featured-where {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--bg);
  opacity: 0.92;
  margin-bottom: 30px;
}
/* Underlined at rest, like every other real link (brass carries the accent
 * against the dark photo). */
.featured-where a { color: inherit; border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.featured-where a:hover { border-bottom-width: 2px; }
.featured-where .cc-pin { color: var(--brass); }
.featured-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
/* The .ics alternative beside the brass Google button: quiet cream mono with
 * the brass underline carrying the accent. */
.featured-ics {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
.featured-admission {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--bg);
  opacity: 0.85;
}

/* Archival interlude — a complete photo presented as an editorial plate on a
 * dark band, rather than a full-bleed crop. Showing the whole image avoids the
 * odd wide/short crop, and capping its width stops the ~900px source from
 * upscaling into pixelation on large windows (it centers on the band instead). */
.interlude {
  margin: 0;
  background: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 5vh, 60px) clamp(20px, 5vw, 56px);
}
.interlude-photo {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}
.interlude-caption {
  width: 100%;
  max-width: 1200px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(244, 240, 230, 0.8);
  text-align: right;
}

/* ---------------------------------------------------------------------------
 * About page — an ink intro, 100vh metric chapters (alternating grounds), the
 * history as long-form prose, a horizontal tours strip, and a serif "reach"
 * list in place of the old Google MyMap iframe.
 * ------------------------------------------------------------------------- */
.about-intro {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(80px, 14vh, 160px) clamp(48px, 9vh, 100px);
}
.about-eyebrow { color: var(--brass); margin-bottom: clamp(20px, 4vh, 36px); }
.about-lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 17ch;
  margin-bottom: 28px;
}
.about-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.3vw, 29px);
  line-height: 1.4;
  max-width: 46ch;
  margin-bottom: 26px;
}
.about-motto {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--brass);
}

/* By the numbers — one 100vh chapter per metric. */
.metric-chapter {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block: clamp(60px, 10vh, 120px);
}
.metric-number {
  font-family: var(--serif);
  font-weight: 500;
  /* Billboard scale: the spec pitches these numerals at ~320px; the old
   * 14vw/210px cap left them owning half the room they were given. */
  font-size: clamp(76px, 17vw, 300px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: inherit;
}
.metric-context {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 33px);
  line-height: 1.38;
  max-width: 26ch;
  margin-top: clamp(22px, 4vh, 44px);
  opacity: 0.85;
}
/* Photo album as a seamless, slow left-drifting marquee of scattered, tilted
 * "polaroid" prints — a scrapbook spread. The print set is rendered twice and
 * the track animates to -50%, so it loops with no seam. Pure CSS; hovering
 * pauses it, and reduced-motion stops the drift (laying the prints out static). */
.metric-text { width: 100%; }
.photo-marquee {
  align-self: stretch;
  margin-inline: calc(-1 * clamp(20px, 5vw, 56px));
  margin-top: clamp(36px, 6vh, 64px);
  height: clamp(340px, 47vh, 490px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  height: 100%;
  /* Duration is set per-track (≈6.4s per print) so every card drifts at the
     same pixel speed regardless of how many photos it holds. */
  animation: marquee-drift var(--marquee-dur, 90s) linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
/* The explicit pause control (keyboard/touch equivalent of hover-pause). */
.photo-marquee.is-paused .marquee-track { animation-play-state: paused; }
.marquee-toggle { margin-top: 14px; }
@keyframes marquee-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.polaroid {
  flex: 0 0 auto;
  width: clamp(166px, 17vw, 222px);
  /* Right margin carries the gap so the track's two copies are pixel-identical
   * and the -50% loop has no seam. */
  margin: 0 clamp(22px, 3vw, 48px) 0 0;
  display: flex;
  flex-direction: column;
  background: #fbf7ec;
  padding: 10px 10px 0;
  border-radius: 2px;
  box-shadow: 0 16px 32px rgba(16, 19, 26, 0.34), 0 3px 8px rgba(16, 19, 26, 0.2);
  transform: rotate(var(--tilt, -2deg));
}
.polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.polaroid figcaption {
  font-family: var(--hand);
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.1;
  color: #34302a;
  text-align: center;
  padding: 7px 4px 12px;
}
@media (prefers-reduced-motion: reduce) {
  .photo-marquee { height: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; height: auto; padding-block: 8px; }
  .marquee-track .polaroid[aria-hidden="true"] { display: none; }
  .marquee-toggle { display: none; }
}

/* Photo-less chapters compose their space typographically (see about.njk's
 * metricStanzas): the commissions chapter as a serif name stanza, the
 * Carnegie chapter as a pair of year-plates. */
.metric-stanza { margin-top: clamp(36px, 6vh, 60px); }
.metric-stanza li {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 50px);
  line-height: 1.4;
}
.metric-years {
  margin-top: clamp(40px, 7vh, 72px);
  display: flex;
  gap: clamp(44px, 9vw, 140px);
  flex-wrap: wrap;
}
.metric-year {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 1;
}
.metric-year-label {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass);
}

/* History — long-form prose + a marquee of guest artists. */
.about-history-heading { margin-bottom: clamp(32px, 5vh, 56px); max-width: 18ch; }
.history-prose {
  max-width: 64ch;
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}
.history-prose p + p { margin-top: 1.2em; }
.history-prose em { font-style: italic; }
.guest-artists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 7vh, 84px);
  padding-top: clamp(32px, 5vh, 48px);
  border-top: 1px solid var(--hairline);
}
.guest-label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--meta);
  margin-bottom: 12px;
}
.guest-names {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--fg);
}
.guest-more { color: var(--meta); font-style: italic; }

/* International tours — a horizontal, scroll-snapped strip on ink. */
.tours-section {
  padding-block: clamp(64px, 10vh, 120px);
  overflow: hidden;
}
.tours-head {
  padding-inline: clamp(20px, 5vw, 56px);
  margin-bottom: clamp(34px, 5vh, 54px);
}
.tours-heading { color: var(--bg); }
.tours-strip {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  overflow-x: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-bottom: 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.tour-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(258px, 38vw, 400px);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vh, 36px);
  border: 1px solid rgba(244, 240, 230, 0.18);
  border-radius: 3px;
}
.tour-year {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--brass);
  margin-bottom: 14px;
}
.tour-place {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  color: var(--bg);
  margin-bottom: 16px;
}
.tour-note {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244, 240, 230, 0.8);
}
.tours-hint {
  margin-top: 18px;
  padding-inline: clamp(20px, 5vw, 56px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 230, 0.5);
}

/* Reach — a serif-set list of venues/locations replacing the MyMap iframe. */
.reach-heading { margin-bottom: clamp(36px, 5vh, 60px); max-width: 20ch; }
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.reach-region {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass-text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.reach-list { display: flex; flex-direction: column; gap: 12px; }
.reach-list li {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.3;
  color: var(--fg);
}

/* ===========================================================================
 * PEOPLE
 *
 * A printed-program credits page. Portraits exist only for the conductors,
 * founders, and guests, so those get framed photos; the rank-and-file roster
 * is pure typography (section slates + names + a Brass principal dagger).
 * Founders / guests / in-memoriam portraits are grayscaled — it reads as
 * archival and, just as usefully, unifies a set of wildly varying source
 * resolutions (some are 3KB legacy thumbnails). Current leadership stays in
 * colour.
 * ------------------------------------------------------------------------- */

/* --- Hero ------------------------------------------------------------- */
.people-hero { padding-block: clamp(120px, 20vh, 220px) clamp(48px, 8vh, 90px); }
.people-hero .t-eyebrow { margin-bottom: 28px; }
/* The measure lives on the QUOTE TEXT in its own ch — the old 38ch sat on
 * the blockquote, whose inherited 17px font resolved it to ~320px and
 * squeezed the 42px serif to five words a line beside an empty viewport
 * (the same inherited-ch trap the carousel caption had). */
.people-quote { margin-top: 4px; }
.people-quote-text { max-width: 30ch; }
.people-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 120px);
  line-height: 0.55;
  color: var(--brass);
  margin-bottom: 10px;
}
.people-quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.people-quote-cite {
  display: block;
  margin-top: 22px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass-text);
}
.people-hero-sub {
  margin-top: clamp(24px, 4vh, 40px);
  max-width: 56ch;
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--meta);
}

/* Shared person typography ------------------------------------------------ */
.person-name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.person-role {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--brass-text);
  margin-top: 8px;
}

/* --- Conductors: three equal cards ------------------------------------ */
/* All three conductors get one treatment (no lead/secondary split). Photos are
 * a uniform SQUARE crop — the gentlest common crop for a mixed set (Andrea is a
 * portrait, the associates are landscape action shots) — and the height is
 * hard-capped two ways: aspect-ratio sets it from the column width, and
 * max-height keeps it well under the viewport on short/wide windows. Cards are
 * top-aligned (align-items: start) so a longer bio never stretches its
 * neighbours; uneven bottoms read as ordinary whitespace on cream. */
.people-conductors .t-section { margin: 8px 0 clamp(40px, 6vh, 72px); }
.conductors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 52px);
  align-items: start;
  max-width: 1180px;
}
.conductor-card { display: flex; flex-direction: column; }
.conductor-photo {
  margin: 0 0 20px;
  aspect-ratio: 1 / 1;
  max-height: 44vh;
  overflow: hidden;
  background: var(--hairline);
}
.conductor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.conductor-card .person-name { font-size: clamp(20px, 1.7vw, 26px); }
.conductor-card .person-role { margin-bottom: 18px; }
.conductor-bio p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
}
.conductor-bio p + p { margin-top: 1em; }

/* --- Founders (on ink) ------------------------------------------------ */
.founders-intro {
  max-width: 52ch;
  margin: 8px 0 clamp(40px, 6vh, 72px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--bg);
  opacity: 0.92;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.founder figure { margin: 0 0 18px; }
.founder figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.04);
}
.founder .person-role { margin-bottom: 14px; }
.founder p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--bg);
  opacity: 0.9;
}
/* On ink, person-role brass needs to be the lighter brass for contrast. */
.people-founders .person-role { color: var(--brass); }

/* --- The roster (pure typography) ------------------------------------- */
.people-roster .t-section { margin: 8px 0 clamp(40px, 6vh, 72px); }
.roster-grid {
  column-width: 230px;
  column-gap: clamp(28px, 4vw, 64px);
}
.roster-section {
  break-inside: avoid;
  margin-bottom: clamp(28px, 4vh, 40px);
}
.roster-slate {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass-text);
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.roster-names li {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
}
.principal-dagger { color: var(--brass-text); font-style: normal; }
.roster-key {
  margin-top: clamp(32px, 5vh, 56px);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--meta);
}

/* --- Guest artists (on ink) ------------------------------------------- */
.people-guests .t-section { margin: 8px 0 clamp(40px, 6vh, 72px); }
.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.guest-card { margin: 0; }
.guest-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.04);
}
.guest-card figcaption { margin-top: 14px; }
.guest-card .person-name { font-size: clamp(19px, 1.7vw, 23px); }
.guest-credential {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--bg);
  opacity: 0.72;
}

/* --- Board & committees ledger ---------------------------------------- */
.people-board .t-section { margin: 8px 0 clamp(40px, 6vh, 72px); }
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
}
.board-col .roster-slate { margin-bottom: 18px; }
.board-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
}
.board-row dt {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--meta);
}
.board-row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  text-align: right;
}

/* --- In memoriam ------------------------------------------------------ */
.people-memoriam { text-align: center; }
.people-memoriam .t-eyebrow { margin-bottom: clamp(28px, 5vh, 48px); }
.memoriam-figure { margin: 0; display: inline-block; max-width: 360px; }
.memoriam-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.04);
}
.memoriam-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 46px);
  margin-top: 24px;
}
.memoriam-years {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--meta);
  margin-top: 12px;
}
.memoriam-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--meta);
  margin-top: 18px;
}

/* --- People responsive ------------------------------------------------ */
@media (max-width: 860px) {
  .founders-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Conductor cards: 3-up → 2-up → 1-up as the columns get tight. */
@media (max-width: 1000px) {
  .conductors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; }
}
@media (max-width: 640px) {
  .conductors-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 767px) {
  .founders-grid,
  .board-grid { grid-template-columns: 1fr; }
  .board-row dd { text-align: left; }
}

/* ===========================================================================
 * SUPPORT US
 *
 * The "lights dim before the ask": the upper page is full Encore Oxblood with
 * cream type, then it warms to a cream gratitude act (sponsor wall + thank-you).
 * Brass is the one accent on the oxblood — dollar figures and quiet CTAs.
 * ------------------------------------------------------------------------- */

/* Eyebrow slates default to grey (--meta); on oxblood they need cream. */
.surface-oxblood .t-eyebrow { color: var(--bg); opacity: 0.8; }

/* --- Hero ------------------------------------------------------------- */
.support-hero { text-align: center; padding-block: clamp(120px, 18vh, 200px); }
.support-hero .t-eyebrow { margin-bottom: 26px; }
.support-hero-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 116px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 0 auto;
}
.support-hero-sub {
  margin: clamp(24px, 4vh, 38px) auto 0;
  max-width: 46ch;
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  opacity: 0.85;
}
.support-hero-cta {
  margin-top: clamp(32px, 5vh, 52px);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Three ways to give ----------------------------------------------- */
.support-ways .t-eyebrow { margin-bottom: clamp(32px, 5vh, 56px); }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}
.way-card {
  border-top: 1px solid rgba(244, 240, 230, 0.28);
  padding-top: 22px;
}
.way-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}
.way-text {
  margin: 14px 0 24px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 34ch;
}
/* Cream type with a brass underline: brass-colored 13px text on oxblood is
 * only 3.4:1, under the 4.5:1 body-size floor. The brass stays as the accent
 * in the underline, where contrast rules don't apply. */
.way-cta {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bg);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brass);
  padding: 0 0 2px;
  cursor: pointer;
}
.way-cta:hover { border-bottom-width: 2px; }
.way-form { margin: 0; }

/* --- Benefit tiers ---------------------------------------------------- */
.support-tiers .t-section { margin: 8px 0 12px; }
.tiers-note { font-family: var(--sans); font-size: 15px; opacity: 0.7; margin-bottom: clamp(28px, 4vh, 48px); }
.tier-row {
  display: grid;
  /* Fixed amount column wide enough for the widest figure ($10,000) — scaled in
   * step with the amount font (22vw column vs 5vw type) so it always fits. Fixed
   * (not max-content, which sizes per-row) keeps names + perks aligned down the
   * whole ladder. */
  grid-template-columns: clamp(150px, 22vw, 300px) clamp(96px, 11vw, 150px) 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(20px, 3vh, 32px) 0;
  border-top: 1px solid rgba(244, 240, 230, 0.28);
}
.tier-amount { font-family: var(--serif); font-size: clamp(32px, 5vw, 68px); line-height: 1; color: var(--brass); }
.tier-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.tier-perk { font-family: var(--sans); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.5; opacity: 0.9; }

/* --- Where your money goes -------------------------------------------- */
.support-money .t-section { margin: 8px 0 clamp(32px, 5vh, 56px); }
.money-list { display: flex; flex-direction: column; gap: clamp(16px, 2.5vh, 30px); }
.money-row { display: flex; align-items: baseline; gap: clamp(18px, 3vw, 44px); }
.money-amount { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; color: var(--brass); }
.money-label { font-family: var(--sans); font-size: clamp(16px, 1.5vw, 21px); opacity: 0.9; }
.money-note {
  margin-top: clamp(28px, 4vh, 40px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  /* 0.75 keeps the note quiet but above the 4.5:1 floor on oxblood; the old
   * 0.55 dropped it to ~3.8:1. */
  opacity: 0.75;
}
/* The dues line turns the figures into the ask: members fund half, sponsors
 * make the other half possible. */
.money-dues {
  margin-top: 16px;
  max-width: 40ch;
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
}

/* --- Allocations: money breakdown + scholarship promise, paired -------- */
/* One column by default; side by side once there's room for both. */
.allocations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(52px, 8vh, 92px);
}
@media (min-width: 1000px) {
  .allocations-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(56px, 6vw, 112px);
    align-items: start;
  }
  /* In a half-width column the giant figure would crowd its copy, so ease it
     down and narrow the copy a touch to keep them on the same line. */
  .support-schol .schol-figure { font-size: clamp(72px, 8vw, 132px); }
  .support-schol .schol-copy { max-width: 18ch; }
}

/* --- The Scholarship Fund's 100% promise (parallel to the breakdown) --- */
.support-schol .t-section { margin: 8px 0 clamp(28px, 4vh, 48px); }
.schol-statement {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 52px);
  flex-wrap: wrap;
}
.schol-figure {
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.9;
  color: var(--brass);
}
.schol-copy {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 36px);
  line-height: 1.25;
  max-width: 22ch;
}
.schol-cta { display: inline-block; margin-top: clamp(28px, 4vh, 48px); }

/* --- Sponsor wall (cream) --------------------------------------------- */
.support-sponsors .t-section { margin: 8px 0 clamp(36px, 5vh, 60px); }
/* Column count follows however many tiers sponsorTiers actually yields, the
 * same way the template does — a hardcoded 2 stranded the third tier on its
 * own row with a half-empty wall beside it the first season anyone gave at
 * Bronze. auto-fit collapses the empty tracks when a season sells fewer. */
.sponsor-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  max-width: 880px;
  /* Each column ends with its own last name. Stretched (the grid default) the
   * tier bars all ran to the height of the longest column, trailing empty rail
   * under the short ones. */
  align-items: start;
}
.sponsor-tier .roster-slate { margin-bottom: 16px; }
/* Same sidebar the home act uses, so the two sponsor components read as one
 * system. The slate keeps its own hairline underline — doubling the accent on
 * both the bar and the rule made the column look boxed in. */
.sponsor-wall .sponsor-tier {
  padding-left: 18px;
  border-left: 3px solid var(--tier-accent, var(--hairline));
}
.sponsor-names li {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

/* --- Support responsive ----------------------------------------------- */
@media (max-width: 860px) {
  .ways-grid { grid-template-columns: 1fr; gap: 28px; }
  .tier-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .tier-amount { font-size: clamp(34px, 9vw, 52px); }
  .sponsor-wall { grid-template-columns: 1fr; gap: 36px; }
}

/* ===========================================================================
 * SCHOLARSHIP
 *
 * A wall of consequences: the $143,000 figure as the hero, then the story told
 * through the students who got it. Cream-dominant and editorial; two ink
 * recognition bands (recipients, donors) for the people.
 * ------------------------------------------------------------------------- */

/* --- Hero ------------------------------------------------------------- */
.schol-hero { text-align: center; padding-block: clamp(120px, 18vh, 200px); }
.schol-hero .t-eyebrow { margin-bottom: clamp(28px, 5vh, 44px); }
.schol-number {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.schol-hero-sub {
  margin: clamp(28px, 4vh, 44px) auto 0;
  max-width: 40ch;
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--meta);
}

/* --- The story -------------------------------------------------------- */
.schol-story .t-eyebrow { margin-bottom: clamp(28px, 4vh, 44px); }
.schol-prose { max-width: 65ch; }
.schol-prose p {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}
.schol-prose p + p { margin-top: 1.1em; }
.schol-destinations {
  margin-top: clamp(48px, 7vh, 90px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
  max-width: 1000px;
}
.dest-label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass-text);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.dest-list {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

/* --- 2025 recipients (ink) -------------------------------------------- */
.recipients-feature {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1080px;
}
.recipients-photo { margin: 0; }
.recipients-photo img { display: block; width: 100%; height: auto; }
.recipients-roll .t-section { margin: 8px 0 clamp(28px, 4vh, 44px); }
.recipient {
  padding: 16px 0;
  border-top: 1px solid rgba(244, 240, 230, 0.18);
}
.recipient-level {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--brass);
  margin-bottom: 5px;
}
.recipient-name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
}
.recipient-meta {
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 0.7;
}

/* --- Apply ------------------------------------------------------------ */
.schol-apply .t-section { margin: 8px 0 clamp(24px, 4vh, 40px); }
.apply-body { max-width: 62ch; }
.apply-body p { font-family: var(--sans); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }
.apply-status {
  margin-top: 1.2em;
  padding-top: 1.2em;
  border-top: 1px solid var(--hairline);
  color: var(--meta);
}

/* --- Give ------------------------------------------------------------- */
.schol-give .t-section { margin: 8px 0 16px; }
.give-lead { max-width: 50ch; font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2vw, 27px); line-height: 1.4; }
.give-impact { margin: clamp(36px, 5vh, 60px) 0; max-width: 56ch; }
.give-impact p { font-family: var(--sans); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }
.give-impact p + p { margin-top: 0.7em; }
.give-amount { font-family: var(--serif); font-weight: 500; color: var(--brass-text); }
.give-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(20px, 3vw, 44px);
  max-width: 760px;
  margin-bottom: clamp(36px, 5vh, 56px);
}
.give-tiers li { display: flex; flex-direction: column; gap: 2px; }
.give-tier-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--meta); }
.give-tier-amount { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); }
.give-actions { display: flex; align-items: center; gap: clamp(18px, 3vw, 32px); flex-wrap: wrap; }
.give-actions form { margin: 0; }
.give-check { font-family: var(--sans); font-size: 14px; color: var(--meta); }

/* --- 2025 donors (ink) ------------------------------------------------ */
.schol-donors .t-section { margin: 8px 0 6px; }
.donors-lead { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.8vw, 24px); opacity: 0.85; margin-bottom: clamp(36px, 5vh, 60px); }
.donors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
/* roster-slate's darker brass is for cream; on ink use the lighter brass. */
.schol-donors .roster-slate { color: var(--brass); border-bottom-color: rgba(244, 240, 230, 0.2); margin-bottom: 14px; }
.donor-names li { font-family: var(--serif); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6; }

/* --- Scholarship responsive ------------------------------------------- */
@media (max-width: 860px) {
  .schol-destinations { grid-template-columns: 1fr; gap: 32px; }
  .recipients-feature { grid-template-columns: 1fr; gap: 32px; }
  .recipients-photo { max-width: 340px; }
}

/* ===========================================================================
 * MEDIA
 *
 * A highlights carousel (replacing the spec's hero + Carnegie chapter), then
 * Listen / Watch / the Galleries index.
 * ------------------------------------------------------------------------- */

/* --- Hero carousel ---------------------------------------------------- */
.media-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--fg);
  color: var(--bg);
  overflow: hidden;
}
.carousel, .carousel-stage { position: absolute; inset: 0; }
.cslide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}
.cslide.is-active { opacity: 1; }
.cslide img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.carousel-scrim {
  position: absolute;
  inset: 0;
  /* The top band must carry the cream header and THE ARCHIVE eyebrow over
   * WHATEVER slide is showing — the old 0.45→0-at-28% band left them
   * unreadable whenever a bright slide (the gilded Carnegie walls, stage
   * lights) rotated in. Deeper and darker, like the schedule hero's scrim. */
  background:
    linear-gradient(to top, rgba(16, 19, 26, 0.82) 0%, rgba(16, 19, 26, 0) 42%),
    linear-gradient(to bottom, rgba(16, 19, 26, 0.62) 0%, rgba(16, 19, 26, 0.3) 16%, rgba(16, 19, 26, 0) 40%);
}
.carousel-eyebrow {
  position: absolute;
  top: clamp(92px, 13vh, 130px);
  left: clamp(20px, 5vw, 56px);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.carousel-caption {
  position: absolute;
  left: clamp(20px, 5vw, 56px);
  bottom: clamp(40px, 8vh, 72px);
  /* Pixel width, not ch: this <p> inherits 17px body type, so the old 24ch
   * resolved to ~200px and stacked the 68px serif inside it one word per
   * line, towering out of the scrim. ~700px keeps long captions to two
   * lines inside the scrim's reach. */
  max-width: min(74vw, 700px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.cap-year {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--brass);
}
.carousel-controls {
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: clamp(36px, 7vh, 64px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dots { display: flex; }
/* Dots draw as 9px marks but each button is a 44px target (the design doc's
 * touch-target floor; WCAG 2.5.8 needs 24px minimum). */
.carousel-dot {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.carousel-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 230, 0.6);
  transition: background-color 160ms ease, border-color 160ms ease;
}
.carousel-dot.is-active::before { background: var(--brass); border-color: var(--brass); }
@media (prefers-reduced-motion: reduce) {
  .cslide { transition: none; }
}

/* --- Listen ----------------------------------------------------------- */
.media-listen .t-section { margin: 8px 0 14px; }
.listen-note { max-width: 52ch; font-family: var(--sans); font-size: 16px; color: var(--meta); margin-bottom: clamp(32px, 5vh, 52px); }
.recordings { max-width: 760px; }
.recording { border-top: 1px solid var(--hairline); }
.recording:last-child { border-bottom: 1px solid var(--hairline); }
.recording-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
}
.recording-summary::-webkit-details-marker { display: none; }
/* The native disclosure triangle is hidden, so give the summary its own
 * open/closed affordance: a quiet brass +/− after the track count. */
.recording-count::after {
  content: "+";
  display: inline-block;
  margin-left: 10px;
  font-weight: 600;
  color: var(--brass-text);
}
.recording[open] .recording-count::after { content: "\2212"; }
.recording-title { font-family: var(--serif); font-size: clamp(19px, 1.8vw, 25px); }
.recording-count { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--meta); white-space: nowrap; }
.recording-tracks { padding: 0 0 18px; display: flex; flex-direction: column; gap: 14px; }
.track { display: flex; flex-direction: column; gap: 6px; }
.track-name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--meta); }
.track-audio { width: 100%; max-width: 480px; height: 36px; }

/* --- Watch ------------------------------------------------------------ */
.media-watch .t-section { margin: 8px 0 clamp(32px, 5vh, 56px); }
.videos-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); }
.video-card { margin: 0; }
.video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transition: opacity 160ms ease; }
.video-frame:hover img { opacity: 1; }
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184, 134, 47, 0.92);
}
.video-play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--fg);
  transform: translateX(2px);
}
.video-embed { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.video-cap { margin-top: 14px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.video-title { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 23px); }
.video-year { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--brass); }

/* --- Galleries -------------------------------------------------------- */
.media-galleries .t-section { margin: 8px 0 14px; }
.galleries-note { font-family: var(--sans); font-size: 16px; color: var(--meta); margin-bottom: clamp(24px, 3vh, 36px); }
/* Decade jump links + per-decade sections (reuses the schedule page's
 * .decade-label serif treatment for the group headings). */
.album-jump {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: clamp(36px, 5vh, 60px);
}
.album-jump a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--brass-text);
  border-bottom: 1px solid var(--brass-text);
  padding: 6px 0 4px;
}
.album-jump a:hover { color: var(--fg); }
.album-decade + .album-decade { margin-top: clamp(48px, 7vh, 84px); }
.album-decade .decade-label { margin-bottom: clamp(20px, 3vh, 32px); }
/* Anchor jumps land clear of the fixed header. */
.album-decade { scroll-margin-top: 90px; }
.album-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.album-tile { position: relative; text-decoration: none; color: inherit; display: block; }
.album-num {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--bg);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.album-thumb { display: block; overflow: hidden; }
.album-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 320ms ease;
}
.album-tile:hover .album-thumb img { transform: scale(1.03); }
.album-meta { display: block; margin-top: 12px; }
/* Named -card- to stay clear of the album PAGE's .album-title h1: both rules
 * used to share the bare class, and this one (later in source, equal
 * specificity) shrank every album page's h1 to card size. */
.album-card-title { display: block; font-family: var(--serif); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.2; }
.album-sub { display: block; margin-top: 5px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--meta); }

/* --- Media responsive ------------------------------------------------- */
@media (max-width: 700px) {
  .videos-grid { grid-template-columns: 1fr; }
  /* The dots STAY on phones — hiding them left touch users with an autoplay
   * they could pause but never steer. The whole control row centers under
   * the caption; dots shrink to 36px targets (still above the 24px floor). */
  .carousel-controls {
    left: 0;
    right: 0;
    bottom: 10px;
    justify-content: center;
  }
  .carousel-dot { width: 36px; height: 36px; }
  .carousel-caption { max-width: 88vw; bottom: 70px; }
}

/* --- Per-album gallery + lightbox ------------------------------------- */
.album-head { padding-block: clamp(100px, 14vh, 150px) clamp(28px, 4vh, 44px); }
.album-back { margin-bottom: 20px; }
.album-back a, .album-foot a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--brass-text);
  text-decoration: none;
}
.album-back a:hover, .album-foot a:hover { text-decoration: underline; }
.album-title { margin-bottom: 12px; }
.album-facts { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; color: var(--meta); }

.album-gallery { padding-inline: clamp(20px, 5vw, 56px); padding-bottom: clamp(64px, 10vh, 120px); }
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.gphoto {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--hairline);
}
.gphoto img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 360ms ease;
}
.gphoto:hover img { transform: scale(1.04); }
.gphoto-num {
  position: absolute;
  top: 8px;
  left: 9px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bg);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}
.album-foot { margin-top: clamp(40px, 6vh, 64px); }
@media (max-width: 980px) { .album-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .album-grid { grid-template-columns: 1fr; } }

/* The lightbox is a native <dialog> opened with showModal() (downbeat.js):
 * focus trap, Escape, inert background, and focus restore come for free. The
 * dialog itself paints the full-viewport dark surface, so the UA backdrop is
 * disabled rather than doubled up. */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(16, 19, 26, 0.94);
  color: var(--bg);
}
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox::backdrop { background: transparent; }
.lightbox-img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox-btn {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--bg);
  cursor: pointer;
  font-family: var(--mono);
  opacity: 0.8;
  transition: opacity 160ms ease;
}
.lightbox-btn:hover { opacity: 1; }
.lightbox-close { top: 16px; right: 22px; font-size: 30px; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 42px; padding: 12px; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-count {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--bg);
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) {
  .gphoto img, .album-thumb img { transition: none; }
  .gphoto:hover img, .album-tile:hover .album-thumb img { transform: none; }
  .nav-list { transition: none; }
}

/* ===========================================================================
 * CLARINET CHOIR — the inverted "B-side"
 *
 * Curtain Ink ground, Cream type, glowing Brass. The artist's keywork SVG runs
 * vertically in the hero; a dotted meandering "journey" line flows from the bell
 * through the choir's history, each event a station on the line.
 * ------------------------------------------------------------------------- */
/* Eyebrow slates here glow brass via the global .surface-ink .t-eyebrow rule. */

/* --- Hero ------------------------------------------------------------- */
.clarinet-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding-block: clamp(110px, 16vh, 180px);
}
.clarinet-keys { margin: 0; }
.clarinet-keys img { display: block; height: clamp(360px, 58vh, 600px); width: auto; }
.clarinet-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.clarinet-lead {
  margin-top: clamp(24px, 4vh, 36px);
  max-width: 46ch;
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  opacity: 0.85;
}

/* --- The journey ------------------------------------------------------ */
.clarinet-journey .t-section { margin: 8px 0 clamp(40px, 7vh, 80px); max-width: 18ch; }
.journey-track { position: relative; height: 1340px; }
.journey-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--brass);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 13;
  opacity: 0.85;
}
.station { position: absolute; left: 0; right: 0; top: var(--top); }
.station-dot {
  position: absolute;
  left: var(--dotx);
  top: 0;
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 6px rgba(184, 134, 47, 0.16);
}
.station-card { position: absolute; top: 0; transform: translateY(-50%); max-width: 320px; }
.station[data-side="right"] .station-card { left: calc(var(--dotx) + 46px); }
.station[data-side="left"] .station-card { right: calc(100% - var(--dotx) + 46px); text-align: right; }
.station-year { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--brass); }
.station-place { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; margin-top: 6px; }
.station-note { margin-top: 10px; font-family: var(--sans); font-size: 15px; line-height: 1.55; opacity: 0.82; }
.station[data-side="left"] .station-note { margin-left: auto; max-width: 100%; }
.station-photo { margin-top: 16px; width: 100%; max-width: 300px; aspect-ratio: 3 / 2; object-fit: cover; }
.station[data-side="left"] .station-photo { margin-left: auto; }

/* --- Foot ------------------------------------------------------------- */
.clarinet-foot { text-align: center; padding-block: clamp(64px, 10vh, 120px); }
.clarinet-back a { font-family: var(--mono); font-size: 13px; letter-spacing: 0.03em; color: var(--brass); text-decoration: none; }
.clarinet-back a:hover { text-decoration: underline; }

/* --- Responsive: stack the hero, straighten the journey into a left rail -- */
@media (max-width: 860px) {
  .clarinet-hero { grid-template-columns: 1fr; gap: 28px; justify-items: start; }
  .clarinet-keys img { height: 300px; }
  .journey-line { display: none; }
  .journey-track { height: auto; }
  .station {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding-left: 28px;
    margin-bottom: 44px;
    border-left: 2px dotted rgba(184, 134, 47, 0.55);
  }
  .station:last-child { margin-bottom: 0; }
  .station-dot { left: -8.5px; top: 5px; margin: 0; }
  .station[data-side="right"] .station-card,
  .station[data-side="left"] .station-card {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    max-width: 520px;
    text-align: left;
  }
  .station[data-side="left"] .station-note,
  .station[data-side="left"] .station-photo { margin-left: 0; }
}

/* ============================================================ CONTACT
   The back of a printed business card: one centered editorial card with the
   contacts set as labelled stanzas, a one-line mailing invite with a Brass
   CTA, monospace social names, and a personal closing line. Lives on cream
   (no dark hero), so the default-ink header reads as-is. */
.contact-page {
  display: flex;
  align-items: center;
  min-height: 88vh;
}
.contact-inner {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .t-eyebrow { margin-bottom: 22px; }
.contact-headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--fg);
}

.contact-grid {
  margin-top: clamp(52px, 8vh, 84px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
  text-align: left;
}
.contact-item { display: flex; flex-direction: column; }
.contact-label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--brass-text);
  padding-bottom: 10px;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--hairline);
}
.contact-name {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.18;
  color: var(--fg);
}
.contact-role {
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.35;
  color: var(--meta);
}
.contact-email {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--brass-text);
  text-decoration: none;
  word-break: break-word;
}
.contact-email:hover { text-decoration: underline; }

.contact-mailing {
  margin-top: clamp(52px, 8vh, 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-mailing .contact-label {
  border: 0;
  padding: 0;
  margin: 0;
}
.contact-mail-cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 2px solid var(--brass);
  padding-bottom: 2px;
  transition: color 160ms ease;
}
.contact-mail-cta:hover { color: var(--brass-text); }
.contact-mail-fine {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--meta);
}

.contact-socials {
  margin: clamp(40px, 6vh, 60px) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
  flex-wrap: wrap;
}
.contact-socials a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color 160ms ease;
}
.contact-socials a:hover { border-bottom-color: var(--brass); }

.contact-closing {
  margin-top: clamp(56px, 9vh, 96px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(27px, 3.3vw, 46px);
  line-height: 1.1;
  color: var(--fg);
}

@media (max-width: 680px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 340px;
    margin-inline: auto;
  }
}

