/* ─────────────────────────────────────────────────────────────
   Tawnie Olson v2 — design system
   Type:      Spectral (300/400/500/600 + italics) for everything
              Spectral SC for label small-caps
              JetBrains Mono for technical metadata only
   Color:     deep teal nav, warm cream paper, ochre highlight,
              ink near-black. Subtly toned, not saturated.
   ───────────────────────────────────────────────────────────── */

:root {
  --ink:        #16181c;
  --ink-2:      #34373d;
  --ink-soft:   #6c6f76;
  --ink-mute:   #9a9da4;
  --paper:      #fbf8f1;
  --paper-2:    #f3ecdc;
  --paper-3:    #e8e0cb;
  --line:       #ddd5bd;
  --line-soft:  #ece4cc;
  --accent:     #1d4147;
  --accent-d:   #11272b;
  --accent-l:   #28575e;
  --ochre:      #b88234;
  --ochre-d:    #8a5e23;
  --ochre-l:    #d6a458;

  --serif:      'Spectral', 'Iowan Old Style', Georgia, serif;
  --sc:         'Spectral SC', 'Spectral', serif;
  --mono:       'JetBrains Mono', ui-monospace, monospace;

  --maxw:       1280px;
  --gutter:     48px;
  --hdr:        76px;
  --hdr-min:    52px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent);
  color: var(--paper);
  height: var(--hdr);
  display: flex;
  align-items: center;
  transition: height 280ms ease, background-color 280ms ease;
}
.site-hdr.shrunk { height: var(--hdr-min); }
.site-hdr .hdr-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
/* On the homepage, hide the mark — the big nameplate in the hero
   serves the same identity role. */
.site-hdr.on-home .hdr-mark { display: none; }
.hdr-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: font-size 240ms ease;
}
.site-hdr.shrunk .hdr-mark { font-size: 15px; }
.hdr-mark .ital { font-style: italic; font-weight: 400; color: rgba(251,248,241,0.7); margin-left: 6px; }
.hdr-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.hdr-nav a {
  position: relative;
  color: rgba(251,248,241,0.86);
  transition: color 180ms ease;
  padding: 6px 0;
}
.hdr-nav a:hover { color: var(--paper); }
.hdr-nav a.active { color: var(--paper); }
.hdr-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--ochre-l);
}

/* ── LAYOUT HELPERS ────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.kicker {
  font-family: var(--sc);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--ochre-d);
  text-transform: uppercase;
}
.kicker.muted { color: var(--ink-soft); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 56px 0 28px;
}
.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ochre-d);
}
.section-head .ttl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.section-head .ttl em { font-weight: 400; color: var(--ink-soft); }
.section-head .more {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  align-self: center;
}
.section-head .more::after { content: ' →'; }
.section-head + .rule { margin-bottom: 32px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 380px 1fr;
  height: 560px;
  border-bottom: 1px solid var(--line);
}
.hero .plate {
  background: var(--paper-2);
  padding: 56px 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.hero .plate .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.hero .plate .name span { display: block; }
.hero .plate .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  margin-top: 10px;
}
.hero .plate .footnote {
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.hero .plate .footnote .dot { color: var(--ochre-d); margin: 0 6px; }
.hero .portrait {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero .portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── BIO INTRO ─────────────────────────────────────────────── */
.intro {
  display: block;
  max-width: 760px;
  padding: 8px 0 8px;
}
.intro p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: var(--ink);
}
.intro p:first-of-type::first-line {
  font-variant: small-caps;
  letter-spacing: 0.06em;
}
.intro p em { color: var(--accent); font-style: italic; }
.intro .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.intro .meta .line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.intro .meta .line span:last-child { color: var(--ink); font-style: normal; font-variant: small-caps; font-size: 13px; letter-spacing: 0.08em; }
.intro .read-bio {
  font-style: italic;
  color: var(--accent);
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 2px;
}

/* ── NOW · 3-UP CARDS ──────────────────────────────────────── */
.now-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 64px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .imgwrap {
  aspect-ratio: 1 / 1;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.card .imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ochre-d);
}
.card .label-row .date { color: var(--ink-soft); }
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  margin: 2px 0 0;
  letter-spacing: -0.005em;
}
.card h3 em { font-style: italic; font-weight: 400; }
.card .perf {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.4;
}
.card .links {
  display: flex;
  gap: 18px;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 15px;
}
.card .links a {
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.card .links a:hover { color: var(--accent); }

/* Calendar-style date for performance card */
.cal {
  aspect-ratio: 1 / 1;
  background: var(--accent);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cal .month {
  font-family: var(--sc);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ochre-l);
}
.cal .day {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cal .year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(251,248,241,0.7);
}
.cal::before {
  content: '';
  position: absolute;
  top: 18%; left: 8%; right: 8%;
  border-top: 1px solid rgba(214,164,88,0.35);
}
.cal::after {
  content: '';
  position: absolute;
  bottom: 18%; left: 8%; right: 8%;
  border-top: 1px solid rgba(214,164,88,0.35);
}

/* ── PULL QUOTE BAND ───────────────────────────────────────── */
.quote-band {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 88px 0;
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 880px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote-band blockquote::before {
  content: '"';
  font-size: 60px;
  color: var(--ochre);
  display: block;
  line-height: 0.4;
  margin-bottom: 22px;
}
.quote-band cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sc);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.quote-band cite .src { color: var(--ink); margin-left: 8px; }

/* ── EXPLORE TILES ─────────────────────────────────────────── */
.explore {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.explore .tile {
  background: var(--paper);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  transition: background 200ms ease;
  cursor: pointer;
}
.explore .tile:hover { background: var(--paper-2); }
.explore .tile .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ochre-d);
}
.explore .tile h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 8px 0 0;
  letter-spacing: -0.005em;
}
.explore .tile .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.explore .tile .arrow {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 15px;
  border-bottom: 1px solid var(--ochre);
  align-self: flex-start;
  padding-bottom: 1px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.foot {
  background: var(--accent-d);
  color: rgba(251,248,241,0.75);
  padding: 64px 0 40px;
  font-family: var(--serif);
  font-size: 14px;
}
.foot .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot .col h5 {
  font-family: var(--sc);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--ochre-l);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.foot .col a { display: block; padding: 3px 0; color: rgba(251,248,241,0.78); }
.foot .col a:hover { color: var(--paper); }
.foot .brand .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.foot .brand p { color: rgba(251,248,241,0.6); font-style: italic; font-size: 14px; max-width: 320px; margin: 0; }
.foot .baseline {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(251,248,241,0.12);
  color: rgba(251,248,241,0.5);
  font-size: 12px;
  font-family: var(--sc);
  letter-spacing: 0.12em;
}

/* ═══════════════════════════════════════════════════════════
   AUDIO LIST PAGE
   ═══════════════════════════════════════════════════════════ */

.page-head {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.page-head .kicker { margin-bottom: 18px; display: block; }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 92px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
}
.page-head h1 em { font-style: italic; font-weight: 300; color: var(--ochre-d); font-size: 0.55em; display: block; margin-top: 14px; letter-spacing: -0.005em; }
.page-head .lede {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.page-head .lede a { color: var(--accent); border-bottom: 1px solid var(--ochre); }

.audio-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 64px;
  padding: 0 0 80px;
}
.results { min-width: 0; }

/* Sidebar */
.side {
  position: sticky;
  top: calc(var(--hdr-min) + 24px);
  align-self: start;
  padding-top: 32px;
}
.side .group { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line-soft); }
.side .group:last-child { border: 0; }
.side h6 {
  font-family: var(--sc);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.side ul { list-style: none; padding: 0; margin: 0; }
.side ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 160ms ease;
}
.side ul li:hover { color: var(--accent); }
.side ul li.on {
  color: var(--ink);
  font-style: italic;
}
.side ul li.on::before {
  content: '·';
  position: absolute;
  margin-left: -14px;
  color: var(--ochre);
  font-size: 22px;
  line-height: 0.8;
}
.side ul li { position: relative; }
.side ul li .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.side .year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.side .year-grid button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 0;
  cursor: pointer;
  transition: all 160ms ease;
}
.side .year-grid button:hover { border-color: var(--ink); color: var(--ink); }
.side .year-grid button.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.side .checks { display: flex; flex-direction: column; gap: 8px; }
.side .checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-2);
  cursor: pointer;
}
.side .checks label input { appearance: none; width: 14px; height: 14px; border: 1.5px solid var(--ink-soft); background: transparent; cursor: pointer; position: relative; flex-shrink: 0; }
.side .checks label input:checked { background: var(--ink); border-color: var(--ink); }
.side .checks label input:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 4px; height: 8px;
  border-right: 1.5px solid var(--paper);
  border-bottom: 1.5px solid var(--paper);
  transform: rotate(45deg);
}
.side .clear {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ochre);
  display: inline-block;
  padding-bottom: 1px;
  cursor: pointer;
}

/* Result column */
.results .toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 32px 0 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sc);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.results .toolbar .sort { display: inline-flex; gap: 10px; align-items: baseline; }
.results .toolbar .sort .opt { color: var(--ink); border-bottom: 1px solid var(--ochre); padding-bottom: 1px; cursor: pointer; font-style: normal; }

.results .row {
  display: grid;
  grid-template-columns: 44px 150px minmax(0, 1fr) 150px;
  gap: 24px;
  padding: 28px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-soft);
  transition: background 160ms ease;
}
.results .row .info { min-width: 0; }
.results .row:hover { background: var(--paper-2); margin: 0 -16px; padding: 28px 16px; }
.results .row .idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ochre-d);
  padding-top: 4px;
}
.results .row .ph {
  aspect-ratio: 1 / 1;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.results .row .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.results .row .info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.results .row .info h3 em { font-style: italic; font-weight: 400; }
.results .row .info .perf {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
}
.results .row .info .note {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  line-height: 1.5;
  max-width: 540px;
}
.results .row .info .note a { color: var(--accent); border-bottom: 1px solid var(--ochre); }
.results .row .info .tags {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.results .row .info .tags .tag {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  padding: 3px 8px;
  border: 1px solid var(--line);
  text-transform: uppercase;
}
.results .row .meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.results .row .meta .yr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.results .row .meta .dur { color: var(--ink-mute); }
.results .row .meta .actions { display: flex; gap: 6px; margin-top: 8px; }
.results .row .meta .actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink-soft);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 13px;
  transition: all 180ms ease;
}
.results .row .meta .actions a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.results .row .meta .actions a.primary { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.results .row .meta .actions a.primary:hover { background: var(--ochre); border-color: var(--ochre); color: var(--ink); }

/* ── New audio row layout (image-left, title + rich body right) ── */
.audio-row {
  display: grid;
  grid-template-columns: 44px 180px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.audio-row:last-child { border-bottom: 0; }
.audio-row:hover { background: var(--paper-2); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }

.audio-row .idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ochre-d);
  padding-top: 6px;
}

.audio-row .ph {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
.audio-row .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

.audio-row .info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audio-row .info .title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}
.audio-row .info .title a {
  color: var(--ink);
  font-style: italic;
  transition: color 160ms ease;
}
.audio-row .info .title a:hover { color: var(--accent); }
.audio-row .info .title a .sub {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.7em;
  font-weight: 400;
  margin-left: 6px;
}
.audio-row .info .title a i { font-style: italic; }

.audio-row .info .meta-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}
.audio-row .info .meta-tag .tag {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  padding: 3px 8px;
  border: 1px solid var(--line);
  text-transform: uppercase;
}
.audio-row .info .meta-tag .listen {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.audio-row .info .meta-tag .listen:hover { color: var(--ochre-d); }

.audio-row .info .body {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 620px;
}
.audio-row .info .body p { margin: 0 0 8px; }
.audio-row .info .body p:last-child { margin-bottom: 0; }
.audio-row .info .body p.credit {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 10px;
}
.audio-row .info .body i { font-style: italic; color: var(--ink); }
.audio-row .info .body a {
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.audio-row .info .body a:hover { color: var(--ochre-d); }

.audio-empty {
  padding: 80px 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
}
.audio-empty .clear-inline {
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  cursor: pointer;
}

@media (max-width: 760px) {
  .audio-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .audio-row .idx { display: none; }
  .audio-row .ph { max-width: 320px; }
  .audio-row .info .title { font-size: 24px; }
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 40px 0 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
}
.pager .num {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
}
.pager .num.on { background: var(--ink); color: var(--paper); }

/* ── Image fallback styling ──────────────────────────────── */
/* When an images/<file>.jpg is missing, hide the broken-image icon and show
   a neutral card instead. */
.hero .portrait img[data-missing],
.card .imgwrap img[data-missing],
.audio-row .ph img[data-missing],
.disc-row .cover img[data-missing],
.bio-portrait img[data-missing] {
  background: var(--paper-3);
  border: 1px solid var(--line);
  color: transparent;
  font-size: 0;
}

/* ═══════════════════════════════════════════════════════════
   BIO PAGE — full biography
   ═══════════════════════════════════════════════════════════ */

.bio-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
  padding: 48px 0 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-portrait {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
  position: sticky;
  top: calc(var(--hdr-min) + 32px);
}
.bio-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
}
.bio-portrait .bio-quick {
  font-family: var(--serif);
  font-size: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.bio-portrait .bio-quick .line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bio-portrait .bio-quick .line span:first-child {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.bio-portrait .bio-quick .line span:last-child {
  font-style: italic;
  color: var(--ink);
}
.bio-portrait .dl {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 160ms ease;
}
.bio-portrait .dl:hover { color: var(--ochre-d); }

.bio-body {
  min-width: 0;
  max-width: 680px;
}
.bio-body p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 24px;
}
.bio-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4em;
  font-weight: 300;
  font-style: normal;
  float: left;
  line-height: 0.92;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.bio-body p em { font-style: italic; color: var(--accent); }
.bio-body p strong {
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
}

.bio-body .bio-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.bio-body .bio-foot a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 2px;
  transition: color 160ms ease;
}
.bio-body .bio-foot a:hover { color: var(--ochre-d); }

@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .bio-portrait { position: static; max-width: 360px; }
  .bio-body p:first-of-type::first-letter { font-size: 3em; }
}

.projects {
  max-width: 980px;
  margin: 32px auto 0;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.projects .empty {
  padding: 120px 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
}

.project {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  padding: 36px 36px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}
.project::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ochre);
}

.project .left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.project .kicker-yr {
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.project .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sc);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.project .status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ochre);
  box-shadow: 0 0 0 4px rgba(184, 130, 52, 0.18);
  animation: project-pulse 2.4s ease-in-out infinite;
}
@keyframes project-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 130, 52, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(184, 130, 52, 0.06); }
}

.project .middle { min-width: 0; }
.project .forwhom {
  font-family: var(--sc);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.project .forwhom em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
  margin-left: 4px;
}
.project .title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-style: italic;
  margin: 8px 0 16px;
  color: var(--ink);
}
.project .lede-line {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 600px;
}

.project .specs {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.project .specs > div { display: flex; flex-direction: column; gap: 2px; }
.project .specs dt {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.project .specs dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .project {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 28px 22px;
  }
  .project .title { font-size: 40px; }
  .project .specs { grid-template-columns: minmax(0, 1fr); }
}

.note-feed {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 16px;
}

.note-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 32px;
  padding: 40px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-soft);
}
.note-item:last-child { border-bottom: 0; }

.note-item .idx {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--ochre-d);
  line-height: 1;
  text-align: right;
  padding-top: 4px;
  letter-spacing: -0.01em;
}

.note-item .body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  min-width: 0;
}
.note-item .body i {
  font-style: italic;
  color: var(--ink);
}
.note-item .body a {
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.note-item .body a:hover {
  color: var(--ochre-d);
  border-bottom-color: var(--accent);
}
.note-item .body .update {
  font-family: var(--sc);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 2px 8px;
  margin-right: 4px;
  vertical-align: 0.12em;
}

@media (max-width: 760px) {
  .note-feed { padding-left: 0; padding-right: 0; }
  .note-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 0;
  }
  .note-item .idx { font-size: 22px; }
  .note-item .body { font-size: 17px; }
}

.works-results { max-width: 1100px; margin: 0 auto; }

/* Category jump bar — pill row with embedded counts */
.works-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line);
}
.works-jump .lbl {
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-right: 12px;
}
.works-jump button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  padding: 6px 10px 6px 12px;
  cursor: pointer;
  transition: all 160ms ease;
}
.works-jump button:hover { border-color: var(--ink); color: var(--ink); }
.works-jump button .n {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.04em;
  background: var(--paper-2);
  color: var(--ink-soft);
  padding: 2px 6px;
  border-radius: 2px;
}
.works-jump button:hover .n { background: var(--ink); color: var(--paper); }

/* Category section */
.work-cat { margin-bottom: 8px; }
.work-cat .cat-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 56px 0 18px;
}
.work-cat .cat-head .rn {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ochre-d);
}
.work-cat .cat-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.work-cat .cat-head .rule { height: 1px; background: var(--line); align-self: end; margin-bottom: 12px; }
.work-cat .cat-head .count {
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* Table */
.work-table {
  border-top: 1px solid var(--line);
}
.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr) 100px 90px;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.work-row.header {
  padding: 12px 0 10px;
  border-bottom: 1px solid var(--ink-soft);
}
.work-row.header,
.work-row.header .col-title,
.work-row.header .col-instr,
.work-row.header .col-dur,
.work-row.header .col-year {
  font-family: var(--sc);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  line-height: 1.4;
}
.work-row.header .col-dur,
.work-row.header .col-year { text-align: right; }

.work-row:not(.header) .col-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  min-width: 0;
}
.work-row .col-title .title-text { font-style: italic; }
.work-row .col-title .title-text i { font-style: normal; } /* nested binomial flips back to roman */
.work-row .col-title .title-text .sub {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.85em;
  font-weight: 400;
  margin-left: 4px;
}
.work-row .col-title a {
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.work-row .col-title a:hover { color: var(--ochre-d); }
/* Trailing external-link arrow — appended via ::after with a leading
   no-break space so it always stays glued to the last word of the title,
   even when the title wraps to a new line. */
.work-row .col-title a::after {
  content: '\00a0\2197';
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  white-space: nowrap;
}
.work-row .col-title a:hover::after { color: var(--ochre-d); }

.work-row:not(.header) .col-instr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
  min-width: 0;
}
.work-row:not(.header) .col-dur {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  text-align: right;
  line-height: 1.4;
}
.work-row.header .col-dur { text-align: right; font-family: var(--sc); font-size: 14px; }
.work-row:not(.header) .col-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  text-align: right;
}
.work-row.header .col-year { text-align: right; }

.work-row:hover { background: var(--paper-2); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.work-row.header:hover { background: transparent; margin: 0; padding-left: 0; padding-right: 0; }

@media (max-width: 900px) {
  .work-row {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 12px 18px;
  }
  .work-row .col-title { grid-column: 1; }
  .work-row .col-year  { grid-column: 2; grid-row: 1; }
  .work-row .col-instr { grid-column: 1 / -1; }
  .work-row .col-dur   { grid-column: 1 / -1; text-align: left; margin-top: -4px; }
  .work-row.header .col-instr,
  .work-row.header .col-dur { display: none; }
}

.disc-results { max-width: 980px; margin: 0 auto; }

.disc-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.disc-row:last-child { border-bottom: 0; }

.disc-row .cover {
  position: relative;
}
.disc-row .cover img {
  width: 200px;
  height: 200px;
  display: block;
  object-fit: cover;
}
.disc-row .cover .filename {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  text-align: center;
  word-break: break-all;
}
/* Hide the filename hint once the cover loads — it's only there to
   identify which file is expected. onLoad stamps data-loaded on the img. */
.disc-row .cover img[data-loaded] ~ .filename { display: none; }

.disc-row .body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
}
.disc-row .meta-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.disc-row .meta-row .year { color: var(--ochre-d); }
.disc-row .meta-row .dot { color: var(--ink-mute); }
.disc-row .album {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.005em;
}
.disc-row .album em { font-style: italic; font-weight: 400; }
.disc-row .text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 6px 0 0;
}
.disc-row .text i { font-style: italic; color: var(--ink); }
.disc-row .text a {
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.disc-row .text a:hover { color: var(--ochre-d); border-bottom-color: var(--accent); }
.disc-row .open {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  align-self: flex-start;
  margin-top: 8px;
  transition: color 160ms ease;
}
.disc-row .open:hover { color: var(--ochre-d); }

@media (max-width: 760px) {
  .disc-row { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .disc-row .cover img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
  .disc-row .album { font-size: 24px; }
}

.perf-year { margin-bottom: 8px; }

/* Year-jump bar (replaces the sidebar) */
.perf-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.perf-jump .lbl {
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-right: 12px;
}
.perf-jump button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 160ms ease;
}
.perf-jump button:hover { border-color: var(--ink); color: var(--ink); }
.perf-jump button.upcoming {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  font-family: var(--sc);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}
.perf-jump button.upcoming:hover { background: var(--accent-d); border-color: var(--accent-d); }

/* Decade divider — subtle small-caps marker between year groups */
.perf-jump .decade-div {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  padding: 0 6px 0 14px;
  border-left: 1px solid var(--line);
  margin-left: 6px;
  align-self: center;
}

/* Year-select fallback (used when 24+ past years are present) */
.perf-jump .year-select {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  padding: 6px 10px;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

/* Full-width results column on Performances (no sidebar) */
.perf-results { max-width: 980px; margin: 0 auto; }
.year-marker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 22px;
  padding: 48px 0 18px;
}
.year-marker .y {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ochre-d);
}
.year-marker .y.upcoming {
  color: var(--accent);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.year-marker .rule { height: 1px; background: var(--line); align-self: end; margin-bottom: 14px; }
.year-marker .count {
  font-family: var(--sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.perf-year:first-child .year-marker { padding-top: 28px; }

.perf-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 180px;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.perf-row:last-child { border-bottom: 0; }

.perf-row .date {
  text-align: right;
  line-height: 1;
}
.perf-row .date .mo {
  display: block;
  font-family: var(--sc);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ochre-d);
  text-transform: uppercase;
}
.perf-row .date .dy {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.perf-row .date .wk {
  display: block;
  margin-top: 6px;
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.perf-row .content { min-width: 0; }
.perf-row .work {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.005em;
}
.perf-row .work em { font-style: italic; }
.perf-row .work .detail {
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
}
.perf-row .venue {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin: 8px 0 0;
  line-height: 1.4;
}
.perf-row .venue .city { color: var(--ink-soft); }
.perf-row .performer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  margin: 4px 0 0;
  line-height: 1.5;
}

.perf-row .badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 4px;
}
.perf-row .premiere {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  background: var(--paper-2);
  color: var(--ochre-d);
  border: 1px solid var(--ochre);
  text-transform: uppercase;
  white-space: nowrap;
}
.perf-row .premiere.world {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.perf-row .country {
  font-family: var(--sc);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  padding: 3px 8px;
  border: 1px solid var(--line);
}
.perf-row .tix {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  white-space: nowrap;
}
.perf-row .tix:hover { color: var(--ochre-d); }

/* Upcoming rows — left accent rule + slightly warmer ground */
.perf-row.is-upcoming {
  background: linear-gradient(to right, var(--paper-2) 0, var(--paper-2) 4px, transparent 4px);
  padding-left: 16px;
  margin-left: -16px;
  position: relative;
}
.perf-row.is-upcoming::before {
  content: '';
  position: absolute;
  left: -16px; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--ochre);
}
.perf-row.is-upcoming .date .dy { color: var(--accent); }

/* Premiere legend in sidebar */
.prem-legend {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dotted var(--line);
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.prem-legend > div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 4px;
}
.prem-legend .mk {
  font-family: var(--mono);
  color: var(--ochre-d);
  text-align: left;
  font-size: 12px;
}

/* Narrow viewport adjustments for performances rows */
@media (max-width: 760px) {
  .perf-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }
  .perf-row .date .dy { font-size: 32px; }
  .perf-row .badges {
    grid-column: 2 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .year-marker .y { font-size: 56px; }
}
@media (max-width: 1080px) {
  :root { --gutter: 32px; }
  .audio-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .side {
    position: static;
    padding-top: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
  }
  .side .group { padding-bottom: 18px; margin-bottom: 18px; }
  .hero { grid-template-columns: 300px 1fr; height: 460px; }
  .hero .plate { padding: 36px 28px 28px; }
  .hero .plate .name { font-size: 72px; }
  .page-head { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .page-head h1 { font-size: 72px; }
}

@media (max-width: 760px) {
  :root { --gutter: 22px; }
  .hero { grid-template-columns: minmax(0, 1fr); height: auto; }
  .hero .portrait { height: 320px; }
  .hero .plate { border-right: 0; border-bottom: 1px solid var(--line); }
  .intro { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .now-grid { grid-template-columns: minmax(0, 1fr); }
  .explore { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot .row { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hdr-nav { gap: 14px; font-size: 14px; flex-wrap: wrap; justify-content: flex-end; }
  .site-hdr,
  .site-hdr.shrunk { height: auto; min-height: var(--hdr-min); }
  .site-hdr .hdr-inner {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 10px 20px;
  }
  .site-hdr:not(.on-home) .hdr-mark { flex: 1 0 100%; font-size: 15px; }
  .site-hdr:not(.on-home) .hdr-nav { margin-left: 0; width: 100%; justify-content: flex-start; }
  .results .row { grid-template-columns: 36px 110px minmax(0, 1fr); }
  .results .row .meta { grid-column: 2 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .results .row .meta .yr { font-size: 20px; }
  .quote-band { padding: 60px 0; }
  .quote-band blockquote { font-size: 26px; }
  .page-head h1 { font-size: 56px; }
}

@media (max-width: 450px) {
  .explore .tile { padding: 28px 20px 22px; }
  .explore .tile h4 { font-size: 24px; }
  .explore .tile .meta { font-size: 13px; }
  .explore .tile .arrow { margin-top: 18px; }
}
