/* =========================================================================
   Max Crofton — Tubist · The United States Air Force Band
   Aesthetic: dark, cinematic, technical-editorial (defense-tech genre).
   Bold grotesque headlines · monospace labels · full-bleed media · HUD framing
   ========================================================================= */

:root {
  --bg:        #0A0B0C;
  --bg-2:      #0F1113;
  --surface:   #14171A;
  --surface-2: #1B1F23;
  --text:      #ECECEA;
  --muted:     #8A9095;
  --faint:     #5A6066;
  --accent:    #C2A878;           /* muted brass — used sparingly */
  --accent-dim:#9C8456;
  --line:      rgba(236, 236, 234, 0.12);
  --line-2:    rgba(236, 236, 234, 0.07);

  --space-2xs: 0.25rem; --space-xs: 0.5rem; --space-sm: 0.75rem;
  --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem;
  --space-2xl: 3rem; --space-3xl: 4.5rem; --space-4xl: 7rem;
  --section-y: clamp(2.75rem, 6vw, 5.5rem);

  --display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --sans: "Archivo", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --music: "Apple Symbols", "Segoe UI Symbol", "Noto Music", "Noto Sans Symbols 2", var(--sans);

  --maxw: 1320px;
  --measure: 64ch;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.65;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.band { background: var(--bg); border-top: 1px solid var(--line); }
.band--alt { background: var(--bg-2); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--accent); color: var(--bg); padding: var(--space-sm) var(--space-md); font-family: var(--mono); font-size: 0.8rem; }
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 0.96; letter-spacing: -0.01em; text-transform: uppercase; }
.mono { font-family: var(--mono); font-weight: 400; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.eyebrow {
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before { content: "\266A"; font-family: var(--music); font-size: 1.15em; color: var(--accent); }
.section-title { font-size: clamp(2.1rem, 6vw, 4.6rem); margin-top: var(--space-lg); }
.page-title { font-size: clamp(2.4rem, 7vw, 4.6rem); }
.lede { font-family: var(--sans); font-weight: 400; font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.5; color: var(--text); max-width: var(--measure); }
.prose p { max-width: var(--measure); color: #C7C9C7; }
.prose p + p { margin-top: var(--space-lg); }

/* section header pattern: mono index + big title */
.shead { display: grid; gap: var(--space-md); }

/* ---------- Hairline divider (subtle music tick) ---------- */
.staff { display: flex; align-items: center; gap: var(--space-md); color: var(--accent); }
.staff__lines { flex: 1; height: 1px; background: var(--line); }
.staff__clef, .staff__note { font-family: var(--music); color: var(--faint); font-size: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--mono); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05em 1.7em; border: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--text);
  cursor: pointer; text-decoration: none; transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn::after { content: "\2192"; transition: transform .35s var(--ease); }
.btn:hover::after { transform: translateX(4px); }
.btn--primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--primary:hover { background: transparent; color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; text-decoration: none; color: var(--accent); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; }
.link-arrow span { transition: transform .35s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-quiet { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line); }
.link-quiet:hover { border-color: var(--accent); }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background-color .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; }
.site-header[data-scrolled="true"] { background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); padding-block: var(--space-md); }
.brand { font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em; text-decoration: none; color: var(--text); display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.brand__mark { color: var(--accent); font-size: 1.2em; font-family: var(--music); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); list-style: none; }
.nav__links a { text-decoration: none; color: var(--muted); font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; position: relative; padding-block: 0.4em; transition: color .3s var(--ease); }
.nav__links a:hover, .nav__links a[data-active] { color: var(--text); }
.nav__links a[data-active]::before { content: ""; position: absolute; left: -0.9em; top: 50%; width: 5px; height: 5px; background: var(--accent); transform: translateY(-50%); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; padding: 10px; color: var(--text); }
.nav__toggle svg { width: 100%; height: 100%; }
@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: var(--space-xl); padding: var(--space-4xl) var(--space-xl); background: var(--bg-2); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); }
  .nav__links[data-open="true"] { transform: translateX(0); }
  .nav__links a { font-size: 0.95rem; }
}

/* =========================================================================
   Hero — full-bleed video with HUD framing
   ========================================================================= */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(to top, rgba(10,11,12,0.92) 0%, rgba(10,11,12,0.25) 42%, rgba(10,11,12,0.55) 100%),
  radial-gradient(120% 80% at 50% 120%, rgba(10,11,12,0.6), transparent 60%); }

/* HUD inset frame + corner ticks */
.hero__frame { position: absolute; inset: clamp(14px, 2vw, 28px); z-index: 1; border: 1px solid var(--line-2); pointer-events: none; }
.hero__frame::before, .hero__frame::after { content: ""; position: absolute; width: 18px; height: 18px; border: 1px solid var(--accent); }
.hero__frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero__frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.hero__top { position: absolute; top: clamp(70px, 12vh, 120px); left: 0; right: 0; z-index: 2; display: flex; justify-content: space-between; gap: var(--space-md); color: var(--muted); }
.hero__top .mono { font-size: 0.68rem; }
@media (max-width: 620px) { .hero__top .mono:last-child { display: none; } }

.hero__content { position: absolute; left: 0; right: 0; bottom: clamp(4rem, 12vh, 8rem); z-index: 2; }
.hero__kicker { color: var(--accent); margin-bottom: var(--space-lg); display: inline-flex; align-items: center; gap: 0.7em; }
.hero__kicker::before { content: "\266A"; font-family: var(--music); }
.hero__title { font-family: var(--display); font-size: clamp(3.5rem, 15vw, 13rem); line-height: 0.86; letter-spacing: -0.02em; text-transform: uppercase; color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-xl); }
.hero__cta .btn--primary { background: var(--text); color: var(--bg); }

.hero__cue { position: absolute; right: clamp(24px, 4vw, 56px); bottom: clamp(2rem, 6vh, 3.5rem); z-index: 2; display: inline-flex; align-items: center; gap: 0.6em; text-decoration: none; color: var(--muted); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; transition: color .3s var(--ease); }
.hero__cue:hover { color: var(--text); }
.hero__cue svg { width: 16px; height: 16px; animation: cueBob 1.8s var(--ease) infinite; }
@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (max-width: 620px) { .hero__cue { display: none; } }

/* =========================================================================
   Section header (mono index + title), reused
   ========================================================================= */
.kicker { display: inline-flex; align-items: baseline; gap: 0.8em; }
.kicker .idx { color: var(--faint); }

/* =========================================================================
   Biography
   ========================================================================= */
.bio-grid { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: start; grid-template-columns: 1fr; }
@media (min-width: 920px) { .bio-grid { grid-template-columns: 0.8fr 1.2fr; } }
.bio-portrait { position: relative; isolation: isolate; }
.bio-portrait img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 16%; filter: grayscale(0.62) contrast(1.06) brightness(0.9); border: 1px solid var(--line); }

/* ---- Biography as a living musical score ---- */
.score-band { position: relative; border-top: 1px solid var(--line); padding-block: clamp(4rem, 9vw, 7rem) clamp(2.5rem, 5vw, 4rem); overflow: hidden; background: radial-gradient(120% 100% at 50% 0%, #101316 0%, var(--bg) 70%); }
.score-band__sub { margin-top: var(--space-md); }
.score { position: relative; margin-top: clamp(1.75rem, 4vw, 3rem); height: clamp(120px, 17vw, 190px); }
.score__svg { width: 100%; height: 100%; overflow: visible; }
.score__staff line { stroke: var(--line); stroke-width: 1; }
.score__bars line { stroke: rgba(236, 236, 234, 0.16); stroke-width: 1; }
.score__clef { font-family: var(--music); font-size: 150px; fill: var(--accent); }
.score__time { font-family: var(--display); font-size: 40px; fill: var(--text); text-anchor: middle; }
.score__notes .nh { fill: var(--accent); }
.score__notes .st { stroke: var(--accent); stroke-width: 2.4; }
.score .note { opacity: 0; }
.score.is-in .note { animation: noteIn 0.5s var(--ease) forwards, noteBob 3.2s ease-in-out infinite; animation-delay: calc(var(--i) * 0.09s), calc(var(--i) * 0.09s + 0.5s); }
@keyframes noteIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes noteBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.score__playhead { position: absolute; top: 6%; bottom: 12%; left: 12%; width: 2px; background: linear-gradient(var(--accent), color-mix(in srgb, var(--accent) 10%, transparent)); box-shadow: 0 0 18px 2px rgba(194, 168, 120, 0.5); opacity: 0; z-index: 2; }
.score.is-in .score__playhead { animation: sweep 5.5s linear infinite 0.5s; }
@keyframes sweep { 0% { left: 12%; opacity: 0; } 9% { opacity: 0.9; } 90% { opacity: 0.9; } 100% { left: 97%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .score .note { opacity: 1; }
  .score.is-in .note, .score.is-in .score__playhead { animation: none; }
  .score__playhead { display: none; }
}

/* faint sheet-music paper behind the bio text */
.bio-paper .prose { position: relative; }
.bio-paper .prose::before { content: ""; position: absolute; inset: -0.75rem -1.25rem; z-index: -1; pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 35px, rgba(236, 236, 234, 0.045) 35px, rgba(236, 236, 234, 0.045) 36px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent); }
/* cinematic tint to seat the portrait in the dark palette */
.bio-portrait::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(10,11,12,0.15), rgba(10,11,12,0.45)); mix-blend-mode: multiply; }
/* corner ticks */
.bio-portrait::after { content: ""; position: absolute; bottom: -1px; right: -1px; width: 16px; height: 16px; border: 1px solid var(--accent); border-left: 0; border-top: 0; z-index: 2; }
.bio-portrait::before, .bio-portrait::after { content: ""; position: absolute; width: 16px; height: 16px; border: 1px solid var(--accent); z-index: 1; }
.bio-portrait::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.bio-portrait::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* =========================================================================
   Full-bleed photo band
   ========================================================================= */
.photo-band { position: relative; height: clamp(320px, 52vh, 620px); background: var(--img) center / cover no-repeat; filter: grayscale(0.2); }
.photo-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg), transparent 25%, transparent 70%, var(--bg-2)); }
@media (prefers-reduced-motion: no-preference) and (min-width: 861px) { .photo-band { background-attachment: fixed; } }

/* =========================================================================
   Listen — platform tiles
   ========================================================================= */
.platforms { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.platform { display: flex; flex-direction: column; gap: var(--space-md); padding: clamp(1.75rem, 4vw, 2.75rem); background: var(--bg); text-decoration: none; color: var(--text); transition: background-color .35s var(--ease); }
.platform:hover { background: var(--surface); }
.platform__icon { width: 34px; height: 34px; color: var(--accent); }
.platform h3 { font-size: 1.7rem; }
.platform__meta { color: var(--muted); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; }
.platform .link-arrow { margin-top: auto; }

/* =========================================================================
   Live — video grid
   ========================================================================= */
.videos { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .videos { grid-template-columns: 1fr 1fr; } }
.video { display: grid; gap: var(--space-md); }
.video__frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__meta { display: flex; align-items: baseline; gap: var(--space-md); }
.video__no { font-family: var(--mono); color: var(--accent); font-size: 0.8rem; letter-spacing: 0.1em; }
.video h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.video__frame button.video__play { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer; background: center / cover no-repeat var(--thumb, var(--bg-2)); display: grid; place-items: center; filter: grayscale(0.3); transition: filter .35s var(--ease); }
.video__frame button.video__play:hover { filter: grayscale(0); }
.video__frame button.video__play::before { content: ""; position: absolute; inset: 0; background: rgba(10,11,12,0.45); transition: background .35s var(--ease); }
.video__frame button.video__play:hover::before { background: rgba(10,11,12,0.2); }
.video__play .play-badge { position: relative; width: 64px; height: 64px; border: 1px solid var(--text); background: rgba(10,11,12,0.4); color: var(--text); display: grid; place-items: center; transition: background-color .35s var(--ease), color .35s var(--ease); }
.video__play:hover .play-badge { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.video__play .play-badge svg { width: 22px; height: 22px; margin-left: 3px; }

/* =========================================================================
   George Mason
   ========================================================================= */
.gmu-block { display: grid; gap: var(--space-lg); }
.gmu-block + .gmu-block { margin-top: var(--space-2xl); }
.gmu-block__head { display: grid; gap: var(--space-sm); }
.gmu-block h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.gmu-links { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.docs { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--space-md); }
.doc { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--space-lg); padding: var(--space-lg) clamp(1rem,3vw,1.75rem); background: var(--bg); text-decoration: none; color: var(--text); transition: background-color .3s var(--ease); }
.doc:hover { background: var(--surface); }
.doc__icon { width: 22px; height: 28px; color: var(--accent); flex: none; }
.doc__title { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; }
.doc__sub { font-family: var(--mono); font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }
.doc__dl { font-family: var(--mono); color: var(--accent); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.doc[aria-disabled="true"] { pointer-events: none; opacity: 0.45; }
.doc[aria-disabled="true"] .doc__dl, .doc[aria-disabled="true"] .doc__icon { color: var(--muted); }

/* =========================================================================
   Contact
   ========================================================================= */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-aside a.mail { font-family: var(--mono); font-size: 1rem; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line); letter-spacing: 0.02em; }
.contact-aside a.mail:hover { border-color: var(--accent); }
.form { display: grid; gap: var(--space-lg); }
.field { display: grid; gap: var(--space-xs); }
.field label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea { font-family: var(--sans); font-size: 1rem; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 0; padding: 0.9em 1em; width: 100%; transition: border-color .3s var(--ease), background-color .3s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }
.field textarea { resize: vertical; min-height: 150px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__status { font-family: var(--mono); font-size: 0.78rem; min-height: 1.4em; letter-spacing: 0.04em; }
.form__status[data-state="ok"] { color: var(--accent); }
.form__status[data-state="err"] { color: #D98A6A; }
.form button[type="submit"][disabled] { opacity: 0.6; cursor: progress; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); }
.site-footer .wrap { padding-block: clamp(3rem, 6vw, 5rem); }
.footer-top { display: flex; flex-wrap: wrap; gap: var(--space-lg); align-items: center; justify-content: space-between; }
.footer-name { font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; color: var(--text); letter-spacing: 0.01em; }
.footer-name span { color: var(--accent); }
.socials { display: flex; gap: var(--space-sm); }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text); transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease); }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.socials svg { width: 18px; height: 18px; }
.footer-rule { margin-block: var(--space-xl); border: 0; border-top: 1px solid var(--line); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); justify-content: space-between; align-items: baseline; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--muted); }
.footer-bottom p { max-width: 64ch; }
.footer-bottom .clef { color: var(--accent); font-family: var(--music); }

/* =========================================================================
   Biography — sheet of music (cream manuscript)
   ========================================================================= */
.manuscript { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(2.5rem, 7vw, 6rem) 0; }
.sheet { position: relative; width: min(100% - 2.5rem, 1080px); margin-inline: auto; background: #F4EFE2; color: #221F18; border-radius: 3px; padding: clamp(1.75rem, 5vw, 4.25rem); box-shadow: 0 50px 130px rgba(0,0,0,0.6), inset 0 0 90px rgba(120,96,52,0.06); overflow: hidden; isolation: isolate; }
.sheet > * { position: relative; z-index: 1; }
.sheet__clefwm { position: absolute; right: -1.5rem; top: -4rem; z-index: 0; font-family: var(--music); font-size: clamp(16rem, 36vw, 30rem); line-height: 0.8; color: rgba(138, 106, 48, 0.06); pointer-events: none; }
.sheet__head { display: flex; align-items: center; gap: clamp(0.85rem, 2vw, 1.5rem); }
.sheet__clef { font-family: var(--music); font-size: clamp(3rem, 8vw, 5.5rem); line-height: 0.7; color: #8A6A30; }
.sheet__eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8A6A30; }
.sheet__title { font-family: "Spectral", Georgia, serif; font-weight: 600; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1; letter-spacing: -0.01em; color: #221F18; text-transform: none; margin-top: 0.1em; }
.sheet .score { margin-top: clamp(1.25rem, 3.5vw, 2.25rem); }
.sheet .score__staff line { stroke: rgba(34, 31, 24, 0.5); }
.sheet .score__bars line { stroke: rgba(34, 31, 24, 0.4); }
.sheet .score__clef { fill: #8A6A30; }
.sheet .score__time { fill: #221F18; }
.sheet .score__notes .nh { fill: #221F18; }
.sheet .score__notes .st { stroke: #221F18; }
.sheet .score__playhead { background: linear-gradient(#B8893F, rgba(184, 137, 63, 0)); box-shadow: 0 0 18px 2px rgba(184, 137, 63, 0.45); }
.sheet__body { display: grid; gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .sheet__body { grid-template-columns: 300px 1fr; } }
.sheet__photo { margin: 0; transform: rotate(-1.5deg); }
.sheet__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 16%; border: 7px solid #fff; box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35); filter: grayscale(0.12) contrast(1.02); }
.sheet__cap { font-family: "Spectral", serif; font-style: italic; font-size: 0.9rem; color: #6A6354; text-align: center; margin-top: 0.8rem; }
.sheet__prose { font-family: "Spectral", Georgia, serif; font-size: 1.06rem; line-height: 1.85em; color: #2C281F;
  background-image: linear-gradient(to bottom, transparent calc(1.85em - 1px), rgba(34, 31, 24, 0.13) calc(1.85em - 1px), rgba(34, 31, 24, 0.13) 1.85em);
  background-size: 100% 1.85em; background-position: 0 0.55em; }
.sheet__prose p { margin: 0 0 1.85em; max-width: none; color: inherit; }
.sheet__prose p:last-child { margin-bottom: 0; }
.sheet__prose .k { color: #8A6A30; font-variant-caps: all-small-caps; letter-spacing: 0.03em; font-weight: 600; }
.sheet__prose .dyn { color: #7A2F2F; font-style: italic; }
.sheet__prose > p:first-of-type::first-letter { font-weight: 700; font-size: 3.3em; line-height: 0.82; float: left; margin: 0.04em 0.1em 0 0; color: #8A6A30; }
@media (max-width: 600px) { .sheet__prose { background: none; } }

/* movement / phase titles inside the manuscript */
.sheet__prose .mvt { display: flex; align-items: baseline; gap: 0.55em; margin: 1.7em 0 0.5em; font-family: "Spectral", serif; font-weight: 600; font-size: 1.3rem; color: #221F18; }
.sheet__prose > .mvt:first-child { margin-top: 0; }
.sheet__prose .mvt__no { font-style: italic; font-weight: 500; color: #8A6A30; min-width: 1.5em; }
.sheet__prose .mvt__t { font-variant-caps: all-small-caps; letter-spacing: 0.04em; }
.sheet__prose > p:first-of-type::first-letter { font-size: 1em; float: none; margin: 0; color: inherit; font-weight: inherit; } /* drop movement now leads instead of drop-cap */

/* =========================================================================
   George Mason — indexed rows + PDF preview
   ========================================================================= */
.gmu-list { border-top: 1px solid var(--line); }
.gmu-item { display: grid; grid-template-columns: 11rem 1fr auto; gap: clamp(1rem, 3vw, 2.5rem); align-items: center; padding-block: clamp(1.5rem, 3.5vw, 2.25rem); border-bottom: 1px solid var(--line); }
.gmu-item__no { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.gmu-item__body h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.gmu-item__body p { color: var(--muted); margin-top: 0.5rem; max-width: 48ch; font-size: 0.96rem; line-height: 1.5; }
.gmu-item__cta { display: flex; gap: var(--space-sm); flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) { .gmu-item { grid-template-columns: 1fr; gap: var(--space-md); } .gmu-item__cta { justify-content: flex-start; } }

.gmu-res__title { font-size: clamp(1.6rem, 3.2vw, 2.6rem); margin-top: var(--space-md); }
.gmu-resources .docs { display: block; background: none; border: 0; margin-top: var(--space-lg); }
.doc-row { border: 1px solid var(--line); }
.doc-row + .doc-row { border-top: 0; }
.doc-row > summary.doc { list-style: none; cursor: pointer; border: 0; background: var(--bg); }
.doc-row[open] > summary.doc { background: var(--surface); }
summary.doc::-webkit-details-marker { display: none; }
.doc-row .doc__dl::after { content: " \25BE"; }
.doc-row[open] .doc__dl::after { content: " \25B4"; }
.doc-view { padding: clamp(0.75rem, 2vw, 1.25rem); background: var(--bg-2); border-top: 1px solid var(--line); display: grid; gap: var(--space-sm); }
.doc-frame { width: 100%; height: min(78vh, 900px); border: 1px solid var(--line); background: #2a2d30; }
.doc-open { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); text-decoration: none; justify-self: start; }
.doc-open:hover { text-decoration: underline; }

/* ---------- Reveal + kinetic text ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* kinetic headline: wipes up from a mask + slides */
.kinetic { clip-path: inset(-0.1em 0 105% 0); transform: translateY(0.35em); opacity: 0; transition: clip-path .95s var(--ease), transform .95s var(--ease), opacity .6s ease; transition-delay: var(--d, 0s); will-change: clip-path, transform; }
.kinetic.is-in { clip-path: inset(-0.1em 0 -0.15em 0); transform: none; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .kinetic { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* =========================================================================
   Marquee (animated credential band)
   ========================================================================= */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg); padding-block: clamp(0.9rem, 2vw, 1.4rem); }
.marquee__track { display: flex; width: max-content; gap: 0; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track > span { display: inline-flex; align-items: center; white-space: nowrap; font-family: var(--display); text-transform: uppercase; font-size: clamp(1rem, 2vw, 1.7rem); letter-spacing: 0.01em; color: var(--muted); padding: 0 clamp(1.5rem, 4vw, 3rem); }
.marquee__track > span::after { content: "\25C6"; color: var(--accent); font-size: 0.4em; margin-left: clamp(1.5rem, 4vw, 3rem); transform: translateY(-0.2em); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================================
   Media-first section title band
   ========================================================================= */
.section-band { position: relative; min-height: clamp(260px, 42vh, 460px); display: grid; align-items: end; overflow: hidden; isolation: isolate; border-top: 1px solid var(--line); }
.section-band__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: -2; filter: grayscale(0.6) contrast(1.06) brightness(0.82); }
.section-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, var(--bg) 2%, rgba(10,11,12,0.5) 45%, rgba(10,11,12,0.62) 100%); }
.section-band__inner { padding-bottom: clamp(2.25rem, 5vw, 4.25rem); padding-top: clamp(4rem, 8vw, 6rem); }
.section-band .section-title { margin-top: var(--space-md); }
.section-band__hud { position: absolute; inset: clamp(12px, 1.6vw, 22px); border: 1px solid var(--line-2); pointer-events: none; z-index: -1; }
.section-band__hud::before, .section-band__hud::after { content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--accent); }
.section-band__hud::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.section-band__hud::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
