:root {
  --paper: #f2eee5;
  --ink: #181713;
  --muted: #706b60;
  --gold: #a8844f;
  --gold-text: #765c32;
  --line: rgba(24, 23, 19, 0.18);
  --serif: "Noto Serif SC", "Songti SC", Georgia, serif;
  --sans: Inter, "PingFang SC", sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(6rem, 11vw, 10rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.7), transparent 24rem),
    radial-gradient(circle at 86% 42%, rgba(168, 132, 79, 0.08), transparent 32rem),
    repeating-linear-gradient(92deg, rgba(24, 23, 19, 0.012) 0, rgba(24, 23, 19, 0.012) 1px, transparent 1px, transparent 5px),
    linear-gradient(145deg, #f5f1e8 0%, var(--paper) 52%, #ede7db 100%);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  opacity: 0.045;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a,
button,
input,
select,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

img {
  display: block;
  max-width: 100%;
  background: #d8d0c1;
  object-fit: cover;
}

.image-fallback {
  background: linear-gradient(145deg, #c7bdad, #716a5f);
}

.image-failed {
  opacity: 0;
}

.has-image-failed {
  background: linear-gradient(145deg, #c7bdad, #716a5f);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

figure,
blockquote,
p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  font: 0.75rem var(--sans);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(8rem, 0.75fr) minmax(34rem, 2.45fr);
  align-items: center;
  min-height: 5rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 229, 0.92);
  backdrop-filter: blur(16px);
}

.site-brand,
.site-nav,
.language-toggle {
  font-family: var(--sans);
}

.menu-toggle {
  display: none;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.site-brand span:first-child {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-text);
  font-family: var(--serif);
  font-size: 1rem;
  place-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(1.1rem, 2.3vw, 2.6rem);
}

.site-nav a {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-decoration: none;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border: 1px solid var(--gold-text);
  padding: 0.55rem 0.8rem;
  color: var(--gold-text);
  background: transparent;
  font: 600 0.68rem var(--sans);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.js-ready .language-toggle {
  display: inline-flex;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--paper);
  background: var(--gold-text);
}

.section-shell {
  width: min(100%, 100rem);
  margin-inline: auto;
  padding: var(--section-space) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.65fr) 2fr;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.section-index {
  margin-bottom: 0.6rem;
  color: var(--gold-text);
  font: 600 0.68rem/1.4 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-heading-wide {
  grid-template-columns: minmax(20rem, 1.4fr) minmax(15rem, 0.6fr);
}

.section-heading-wide > p {
  justify-self: end;
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(28rem, 0.88fr);
  column-gap: clamp(3rem, 5vw, 5.5rem);
  width: min(100%, 100rem);
  min-height: clamp(48rem, 100svh, 66rem);
  margin-inline: auto;
  padding: clamp(8.5rem, 11vw, 10.5rem) var(--page-pad) clamp(4.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 5rem;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 44rem;
  padding-right: 0;
}

.hero-season {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: var(--gold-text);
  font: 600 0.68rem var(--sans);
  letter-spacing: 0.2em;
}

.hero-season::before {
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-name-en {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font: 0.72rem var(--sans);
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 2;
  width: auto;
  margin: 0 0 1.5rem;
  font-size: clamp(5.5rem, 11vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.82;
  white-space: nowrap;
}

.hero-role {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.08em;
}

.hero-intro {
  max-width: 32rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 1px solid var(--ink);
  padding: 0.9rem 1.4rem;
  font: 600 0.72rem var(--sans);
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--gold-text);
  background: var(--gold-text);
}

.button-text {
  border-color: transparent;
  padding-inline: 0;
}

.button-icon {
  margin-left: 0.7rem;
  color: var(--gold-text);
}

.button-text:hover,
.button-text:focus-visible {
  color: var(--gold-text);
}

.hero-portrait {
  position: relative;
  align-self: center;
  width: 100%;
  min-height: 34rem;
  margin: 0;
  background: linear-gradient(145deg, #b5ad9e, #776f63);
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 238, 229, 0.25);
  box-shadow: inset 0 0 0 0.6rem rgba(242, 238, 229, 0.05);
  content: "";
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-position: center 20%;
  filter: none;
}

.hero-number {
  position: absolute;
  bottom: 1.2rem;
  left: var(--page-pad);
  margin: 0;
  color: var(--gold-text);
  font: italic 0.75rem var(--serif);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(16rem, 0.7fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.about-kicker {
  margin-bottom: 1.75rem;
  color: var(--gold-text);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.artist-bio {
  max-width: 54rem;
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2.35vw, 2rem);
  line-height: 1.9;
  text-align: justify;
}

.artist-bio::first-letter {
  float: left;
  margin: 0.16em 0.14em 0 0;
  color: var(--gold-text);
  font-size: 3.6em;
  line-height: 0.72;
}

.milestones {
  align-self: start;
  padding-top: 0.5rem;
  border-top: 2px solid var(--ink);
}

.milestones h3 {
  margin: 1rem 0 2.2rem;
  font: 600 0.68rem var(--sans);
  letter-spacing: 0.18em;
}

.milestones ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.milestones li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.75;
}

.milestone-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-text);
  font: 600 0.66rem var(--sans);
  letter-spacing: 0.14em;
}

.milestone-title,
.milestone-detail {
  display: block;
}

.milestone-detail {
  white-space: pre-line;
}

.recordings {
  border-block: 1px solid var(--line);
}

.recording-catalogue {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3.5rem);
  counter-reset: recording;
}

.recording-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  counter-increment: recording;
}

.recording-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.recording-card:nth-child(n + 3) {
  grid-column: span 2;
}

.recording-card::before {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.4rem 0.58rem;
  border: 1px solid rgb(242 238 229 / 45%);
  background: rgb(24 23 19 / 82%);
  color: var(--paper);
  content: counter(recording, decimal-leading-zero);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.recording-art {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #c8b99f, #50493f);
}

.recording-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) sepia(0.12);
  transition: filter 350ms ease, transform 350ms ease;
}

.recording-art-program {
  display: grid;
  grid-template-rows: auto 1fr auto;
  aspect-ratio: 16 / 9;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border: 1px solid rgb(24 23 19 / 16%);
  color: var(--ink);
  background:
    linear-gradient(rgb(168 132 79 / 7%) 1px, transparent 1px),
    #eee7d9;
  background-size: 100% 1.65rem;
}

.recording-art-program::after {
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgb(118 92 50 / 34%);
  content: "";
  pointer-events: none;
}

.recording-card:nth-child(4) .recording-art-program {
  background:
    linear-gradient(rgb(24 23 19 / 5%) 1px, transparent 1px),
    #dfe2d8;
  background-size: 100% 1.65rem;
}

.recording-card:nth-child(5) .recording-art-program {
  background:
    linear-gradient(rgb(24 23 19 / 5%) 1px, transparent 1px),
    #ddd8cf;
  background-size: 100% 1.65rem;
}

.recording-program-credit,
.recording-program-work,
.recording-art-program strong {
  position: relative;
  z-index: 1;
}

.recording-program-credit,
.recording-program-work {
  font: 600 0.58rem/1.35 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recording-program-credit {
  justify-self: end;
  color: var(--gold-text);
}

.recording-art-program strong {
  align-self: center;
  max-width: 90%;
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  font-weight: 400;
  line-height: 1.25;
  text-wrap: balance;
}

.recording-program-work {
  max-width: 88%;
  color: var(--muted);
}

.recording-card:hover .recording-art img {
  filter: saturate(1) sepia(0);
  transform: translateY(-0.3rem);
}

.recording-details {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr auto;
  align-items: baseline;
  gap: 0.6rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.recording-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.recording-card h3 {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
}

.recording-year {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.recording-repertoire {
  grid-column: 1 / -1;
  grid-row: 2;
}

.play-button {
  grid-column: 1 / -1;
  grid-row: 4;
  justify-self: start;
  min-height: 2.5rem;
  margin-top: 0.5rem;
  border: 1px solid var(--gold-text);
  padding: 0.65rem 0.85rem;
  color: var(--gold-text);
  background: transparent;
  font: 600 0.66rem var(--sans);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.play-button:hover,
.play-button:focus-visible,
.play-button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--gold-text);
}

.concert-list {
  border-top: 2px solid var(--ink);
}

.concert-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) minmax(20rem, 1.2fr) minmax(16rem, 0.9fr);
  align-items: start;
  gap: 2rem;
  min-height: 8.25rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, background-color 200ms ease;
}

.concert-row:hover {
  padding-inline: 1rem;
  background: rgba(168, 132, 79, 0.07);
}

.concert-row time {
  color: var(--gold-text);
  font: 500 clamp(1.05rem, 1.7vw, 1.35rem) var(--sans);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.concert-row h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.concert-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.concert-row > p {
  color: var(--ink);
  font-size: 0.92rem;
}

.concert-location:empty {
  display: none;
}

.concert-row:has(> .concert-location:empty) > div {
  grid-column: 2 / -1;
}

.season-note {
  font-family: var(--sans);
  font-size: 0.68rem !important;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  grid-template-rows: repeat(2, clamp(13rem, 25vw, 30rem));
  gap: clamp(0.8rem, 1.6vw, 1.5rem);
  background: #d8d0c1;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #c7bdad, #716a5f);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: none;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item:nth-child(1) img {
  object-position: center top;
}

.gallery-item:nth-child(2) img {
  object-position: center 50%;
}

.gallery-item:nth-child(3) img {
  object-position: center 44%;
}

.press {
  position: relative;
  text-align: center;
}

.press::before {
  display: block;
  width: 1px;
  height: 4rem;
  margin: 0 auto 3rem;
  background: var(--gold);
  content: "";
}

.press-heading {
  display: block;
  border: 0;
}

.press-heading h2 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

.quote-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 24rem;
  margin: 0;
  padding: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.quote-card + .quote-card {
  border-left: 1px solid var(--line);
}

.quote-card blockquote {
  margin: 0;
}

.quote-card blockquote::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 4rem;
  line-height: 0.5;
  content: "“";
}

.quote-card blockquote p {
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.55;
}

.quote-card figcaption {
  color: var(--muted);
  font: 0.7rem var(--sans);
  letter-spacing: 0.14em;
}

.coverage-block {
  margin-top: clamp(4rem, 8vw, 7rem);
  text-align: left;
}

.coverage-block > h3 {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font: 600 0.7rem var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coverage-list {
  border-bottom: 1px solid var(--line);
}

.coverage-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
}

.coverage-meta p,
.coverage-meta time {
  display: block;
  margin: 0;
  font: 0.68rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-meta p {
  color: var(--ink);
  font-weight: 700;
}

.coverage-meta time {
  margin-top: 0.65rem;
  color: var(--muted);
}

.coverage-content h4 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.25;
}

.coverage-content > p {
  max-width: 46rem;
  margin: 1.25rem 0 1.6rem;
  color: var(--muted);
  font: 0.9rem/1.75 var(--sans);
}

.coverage-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  color: var(--ink);
  font: 700 0.68rem var(--sans);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.coverage-content a:hover,
.coverage-content a:focus-visible {
  gap: 0.8rem;
  color: var(--gold);
}

.contact {
  width: 100%;
  max-width: none;
  padding-inline: var(--page-pad);
  background: var(--ink);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100%, 90rem);
  margin: auto;
  padding: clamp(2rem, 6vw, 6rem);
  color: var(--ink);
  background-color: #f8f4eb;
  background-image: linear-gradient(120deg, rgba(168, 132, 79, 0.06), transparent 55%);
}

.contact-intro h2 {
  margin: 1.2rem 0 2rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.contact-intro > p:not(.section-index) {
  max-width: 30rem;
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.85;
}

.contact-intro > a {
  color: var(--gold-text);
  font: 0.8rem var(--sans);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 2rem 1.5rem;
  padding-top: 0.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font: 600 0.68rem var(--sans);
  letter-spacing: 0.14em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
  color: var(--ink);
  background: transparent;
  font: 1rem/1.5 var(--serif);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 4px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.form-submit p {
  max-width: 19rem;
  margin: 0;
  color: var(--muted);
  font: 0.68rem/1.7 var(--sans);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold-text);
  font: 600 0.72rem/1.6 var(--sans);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem var(--page-pad);
  color: var(--paper);
  background: var(--ink);
}

.footer-brand {
  display: block;
  margin-bottom: 1.3rem;
  font-size: 1.4rem;
  text-decoration: none;
}

.footer-brand > span:last-child {
  margin-left: 0.8rem;
  color: var(--gold);
  font: 0.62rem var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer nav {
  margin: 0;
  color: rgba(242, 238, 229, 0.6);
  font: 0.66rem var(--sans);
  letter-spacing: 0.08em;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.site-footer :focus-visible {
  outline-color: var(--gold);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 6.5rem;
    padding-block: 0.7rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2.4vw, 1.5rem);
    min-width: 0;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: 0;
    padding-top: clamp(9rem, 15vw, 11rem);
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(6rem, 16vw, 9rem);
  }

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

  .about-layout {
    gap: 4rem;
  }

  .recording-catalogue {
    gap: 1.5rem;
  }

  .concert-row {
    grid-template-columns: 8rem minmax(12rem, 0.7fr) minmax(12rem, 1fr);
    gap: 1rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-width: 0;
    padding: clamp(2rem, 5vw, 3.5rem);
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 1.25rem;
    --section-space: 5rem;
  }

  html {
    scroll-padding-top: 7rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 6.5rem;
    padding-block: 0.7rem;
  }

  .site-brand {
    align-self: start;
  }

  .js-enabled .site-header {
    min-height: 4.5rem;
  }

  .js-enabled .menu-toggle {
    display: inline-flex;
    align-items: center;
    align-self: start;
    justify-content: center;
    min-height: 2.5rem;
    border: 1px solid var(--ink);
    padding: 0.6rem 0.85rem;
    color: var(--ink);
    background: transparent;
    font: 600 0.68rem var(--sans);
    letter-spacing: 0.12em;
    cursor: pointer;
  }

  .js-enabled .menu-toggle:hover,
  .js-enabled .menu-toggle:focus-visible,
  .js-enabled .menu-toggle[aria-expanded="true"] {
    color: var(--paper);
    background: var(--ink);
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: 100%;
    overflow-x: visible;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .js-enabled .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0.5rem;
    overflow: visible;
  }

  .js-enabled .site-nav.is-open {
    display: flex;
  }

  .js-enabled .site-nav a {
    min-height: 2.75rem;
    padding: 0.75rem 0;
  }

  .js-ready .language-toggle {
    align-self: flex-start;
    min-width: 2.75rem;
    min-height: 2.75rem;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .section-heading,
  .section-heading-wide {
    display: block;
  }

  .section-heading h2 {
    margin-top: 1rem;
  }

  .section-heading-wide > p {
    margin-top: 1.5rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 9.5rem;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-season {
    margin-bottom: 2.8rem;
  }

  .hero h1 {
    width: auto;
    margin-right: 0;
    font-size: clamp(5.1rem, 25vw, 7.2rem);
    white-space: normal;
  }

  .hero-portrait {
    min-height: 0;
    margin-top: 3rem;
  }

  .hero-portrait img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-number {
    display: none;
  }

  .about-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .artist-bio {
    text-align: left;
  }

  .recording-catalogue,
  .quote-list {
    grid-template-columns: 1fr;
  }

  .recording-card:nth-child(-n + 2),
  .recording-card:nth-child(n + 3) {
    grid-column: auto;
  }

  .recording-card + .recording-card {
    margin-top: 2rem;
  }

  .concert-row {
    grid-template-columns: 7rem 1fr;
    padding: 1.5rem 0;
  }

  .concert-row > p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    background: transparent;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .gallery-item:nth-child(1) img {
    aspect-ratio: 4 / 5;
  }

  .gallery-item:nth-child(2) img {
    aspect-ratio: 6 / 5;
  }

  .gallery-item:nth-child(3) img {
    aspect-ratio: 2 / 3;
  }

  .quote-card {
    min-height: 17rem;
    padding-inline: 0;
  }

  .quote-card + .quote-card {
    border-left: 0;
  }

  .coverage-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 2.25rem;
  }

  .coverage-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
  }

  .coverage-meta time {
    margin-top: 0;
  }

  .contact {
    padding-inline: 0;
  }

  .contact-panel {
    padding: 3rem 1.25rem;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 430px) {
  .concert-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .concert-row time {
    white-space: normal;
  }

  .concert-row > p {
    grid-column: auto;
  }

  .concert-row:has(> .concert-location:empty) > div {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
