:root {
  color-scheme: light;
  --paper: oklch(0.95 0.018 153);
  --paper-deep: oklch(0.89 0.027 153);
  --ink: oklch(0.18 0.027 163);
  --ink-soft: oklch(0.34 0.033 170);
  --forest: oklch(0.26 0.058 163);
  --reed: oklch(0.62 0.095 74);
  --wine: oklch(0.42 0.112 18);
  --sky: oklch(0.78 0.043 204);
  --line: oklch(0.76 0.026 154);
  --shadow: 0 28px 70px oklch(0.23 0.04 163 / 0.16);
  --sans: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --mono: "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  --radius: 8px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, oklch(0.81 0.064 25 / 0.5), transparent 25rem),
    linear-gradient(135deg, var(--paper), oklch(0.91 0.025 188));
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.38'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 4px;
}

.skip-link,
.sr-only,
.hidden {
  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:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  background: oklch(0.95 0.018 153 / 0.9);
  border-bottom: 1px solid oklch(0.76 0.026 154 / 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.3vw, 2rem);
  font-size: 0.83rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

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

.site-nav .nav-cta {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--forest);
  color: var(--forest);
}

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

.nav-toggle {
  display: none;
  width: 2.65rem;
  aspect-ratio: 1;
  border: 1px solid var(--forest);
  background: transparent;
  border-radius: 0;
  color: var(--forest);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 94svh;
  padding: clamp(7.5rem, 13vw, 11rem) clamp(1.2rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -12vw;
  width: min(48rem, 72vw);
  aspect-ratio: 1;
  border: 1px solid oklch(0.55 0.068 74 / 0.32);
  transform: rotate(-12deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.78fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: var(--max);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 8.3ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 12vw, 10.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  text-wrap: balance;
}

.hero-lede {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  line-height: 1.35;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button.primary {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

.button.primary:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.button.secondary {
  color: var(--forest);
  border-color: var(--forest);
  background: oklch(0.97 0.012 153 / 0.42);
}

.hero-portrait {
  margin: 0;
  justify-self: end;
  width: min(28rem, 100%);
}

.portrait-shell {
  position: relative;
  padding: clamp(0.55rem, 1.4vw, 0.85rem);
  background: oklch(0.2 0.042 165);
  box-shadow: var(--shadow);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: -1.15rem 1.15rem 1.15rem -1.15rem;
  border: 1px solid var(--reed);
  z-index: -1;
}

.portrait-shell img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.1) contrast(1.03);
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  display: grid;
  gap: 0.42rem;
  opacity: 0.18;
  pointer-events: none;
}

.hero-note span {
  height: 1px;
  background: var(--forest);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: oklch(0.965 0.014 155 / 0.62);
}

.intro-strip p {
  margin: 0;
  padding: 1rem clamp(0.75rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-align: center;
  text-transform: uppercase;
}

.intro-strip p:last-child {
  border-right: 0;
}

.section {
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading.compact {
  max-width: 48rem;
  display: block;
}

.section-heading h2,
.events-heading h2,
.teaching-card h2,
.contact-copy h2,
.thanks-shell h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.44fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.profile-lead {
  display: grid;
  gap: 1.2rem;
  max-width: 48rem;
}

.profile-lead p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.48;
}

.fact-panel {
  border-top: 3px solid var(--forest);
  background: oklch(0.975 0.012 155 / 0.66);
  box-shadow: 0 18px 48px oklch(0.28 0.04 160 / 0.08);
}

.fact-panel dl {
  margin: 0;
}

.fact-panel div {
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.fact-panel div:last-child {
  border-bottom: 0;
}

.fact-panel dt {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.fact-panel dd {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.sound-section {
  border-top: 1px solid var(--line);
}

.sound-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.sound-card {
  min-height: 20rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--forest);
  color: var(--paper);
}

.sound-card.offset {
  margin-top: 3.5rem;
  background: var(--wine);
}

.sound-index {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--sky);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.sound-card h3,
.ensemble-item h3,
.timeline h3,
.event-main h3,
.event-empty h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.06;
}

.sound-card p,
.ensemble-item p,
.timeline p,
.event-main p,
.event-empty p,
.teaching-card p,
.contact-copy p,
.thanks-shell p {
  margin: 0;
  color: inherit;
  text-wrap: pretty;
}

.sound-card p {
  margin-top: 1.2rem;
  color: oklch(0.92 0.017 85);
}

.ensembles-section {
  border-top: 1px solid var(--line);
}

.ensemble-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.ensemble-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(8rem, auto);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.1rem, 3vw, 2rem);
  background: var(--paper);
}

.ensemble-number {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.ensemble-label,
.event-band {
  margin: 0 0 0.4rem;
  color: var(--wine);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ensemble-item p:not(.ensemble-label) {
  max-width: 48rem;
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.ensemble-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.ensemble-links a,
.ensemble-links span,
.event-link {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.ensemble-links a:hover,
.event-link:hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-1px);
}

.event-link-disabled {
  border-color: var(--line);
  color: var(--ink-soft);
}

.ensemble-links.muted span {
  border-color: var(--line);
  color: var(--ink-soft);
}

.timeline-section {
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  list-style: none;
}

.timeline li {
  min-height: 14rem;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  background: oklch(0.965 0.014 155);
}

.timeline time {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--wine);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.timeline p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.events-section {
  border-top: 1px solid var(--line);
}

.events-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.events-note {
  max-width: 21rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.events-list {
  display: grid;
  gap: 0.8rem;
}

.event-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.26fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid var(--line);
  background: oklch(0.975 0.011 155 / 0.66);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.event-row:hover {
  border-color: var(--reed);
  transform: translateY(-2px);
  box-shadow: 0 18px 45px oklch(0.24 0.04 160 / 0.08);
}

.event-date {
  display: grid;
  gap: 0.25rem;
}

.event-date time {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.05;
}

.event-date span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.event-main p:last-child {
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.event-empty {
  padding: 2rem;
  border: 1px solid var(--line);
  background: oklch(0.975 0.011 155 / 0.72);
}

.event-empty p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.teaching-section {
  width: 100%;
  padding: 0;
  background: var(--forest);
  color: var(--paper);
}

.teaching-card {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(2rem, 6vw, 5rem);
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.teaching-card .kicker {
  color: var(--sky);
}

.teaching-card p {
  align-self: end;
  color: oklch(0.91 0.018 88);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.62fr);
  gap: clamp(2.2rem, 7vw, 6rem);
  align-items: start;
}

.contact-copy p:not(.kicker) {
  max-width: 36rem;
  margin-top: 1.35rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
}

.contact-methods {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
}

.contact-methods a {
  width: fit-content;
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border: 1px solid var(--line);
  background: oklch(0.975 0.011 155 / 0.72);
  box-shadow: 0 18px 45px oklch(0.24 0.04 160 / 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
}

.contact-form span {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 0.8rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px oklch(0.26 0.058 163 / 0.13);
  outline: 0;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
}

.site-footer nav a {
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.82rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.thanks-shell {
  width: min(42rem, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: oklch(0.975 0.011 155 / 0.72);
  box-shadow: var(--shadow);
}

.thanks-shell p:not(.kicker) {
  margin: 1.2rem 0 2rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.admin-page {
  min-height: 100svh;
}

.admin-shell {
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(4rem, 8vw, 7rem);
}

.admin-top,
.admin-dashboard-head,
.admin-list-head,
.admin-actions,
.admin-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-back,
.admin-item-actions button {
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.56fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  padding-top: clamp(4rem, 9vw, 8rem);
}

.admin-login h1,
.admin-dashboard h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.95;
}

.admin-login p:not(.kicker) {
  max-width: 36rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.admin-dashboard {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.52fr) minmax(0, 0.88fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.admin-card {
  border: 1px solid var(--line);
  background: oklch(0.975 0.011 155 / 0.78);
  box-shadow: 0 18px 45px oklch(0.24 0.04 160 / 0.08);
}

.admin-login-form,
.admin-event-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.admin-event-form label,
.admin-login-form label {
  display: grid;
  gap: 0.38rem;
}

.admin-event-form span,
.admin-login-form span {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.admin-event-form input,
.admin-event-form select,
.admin-login-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 0.8rem;
}

.admin-form-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem !important;
}

.admin-check input {
  width: 1.1rem;
  aspect-ratio: 1;
}

.admin-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.admin-status[data-tone="success"] {
  color: var(--forest);
}

.admin-status[data-tone="error"] {
  color: var(--wine);
}

.admin-list-panel {
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.admin-list-head {
  margin-bottom: 1rem;
}

.admin-list-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.admin-event-list {
  display: grid;
  gap: 0.8rem;
}

.admin-event-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.admin-event-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.admin-event-item p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.admin-event-meta,
.admin-visibility {
  color: var(--wine) !important;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.admin-visibility {
  display: inline-flex;
  margin-top: 0.75rem;
}

.admin-empty {
  margin: 0;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    top: 4.85rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    background: oklch(0.96 0.017 155 / 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-0.8rem);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .profile-layout,
  .contact-section,
  .teaching-card,
  .admin-login,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    justify-self: start;
    width: min(24rem, 88vw);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .sound-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .sound-card.offset {
    margin-top: 0;
  }

  .events-heading {
    display: grid;
  }

  .event-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .event-link {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .brand-text small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 6.8rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 24vw, 6.6rem);
  }

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

  .intro-strip p:nth-child(2) {
    border-right: 0;
  }

  .intro-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .ensemble-item {
    grid-template-columns: 1fr;
  }

  .ensemble-links {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .admin-dashboard-head,
  .admin-list-head,
  .admin-event-item,
  .admin-actions,
  .admin-item-actions {
    display: grid;
    justify-content: stretch;
  }

  .admin-form-pair {
    grid-template-columns: 1fr;
  }
}
