:root {
  --void: #0e1116;
  --ink: #151820;
  --mist: #eef1f4;
  --mist-soft: #d9dee6;
  --silver: #b8bfc9;
  --brass: #b8954a;
  --brass-soft: #d4b56a;
  --velvet: #4a1528;
  --velvet-deep: #2a0c16;
  --text: #f4f6f8;
  --text-muted: rgba(244, 246, 248, 0.72);
  --ink-text: #171a21;
  --ink-muted: #4a5160;
  --line: rgba(184, 149, 74, 0.35);
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--brass);
  color: var(--void);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: rgba(14, 17, 22, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(14, 17, 22, 0.92);
  border-bottom-color: rgba(184, 149, 74, 0.18);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 60;
}

.logo-mark {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  color: var(--brass-soft);
  background:
    radial-gradient(circle at 50% 40%, rgba(184, 149, 74, 0.16), transparent 70%),
    rgba(14, 17, 22, 0.55);
  box-shadow: inset 0 0 0 1px rgba(184, 149, 74, 0.25);
}

.logo-mark__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-text {
  display: grid;
  gap: 0.12rem;
  line-height: 1.1;
}

.logo-text__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.logo-text__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brass-soft);
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  color: var(--brass-soft) !important;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  gap: 0.4rem;
  flex-direction: column;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.05);
  animation: portraitIn 1.8s var(--ease) both;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.72) 38%, rgba(10, 12, 16, 0.45) 62%, rgba(10, 12, 16, 0.78) 100%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.55) 0%, rgba(10, 12, 16, 0.2) 40%, rgba(10, 12, 16, 0.88) 100%),
    radial-gradient(ellipse 50% 55% at 72% 40%, rgba(184, 149, 74, 0.12), transparent 70%);
}

.hero-beam {
  position: absolute;
  inset: -10% 10% auto 40%;
  height: 65%;
  background: linear-gradient(180deg, rgba(212, 181, 106, 0.16), transparent 70%);
  filter: blur(32px);
  mix-blend-mode: screen;
  animation: beamDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-layout {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
  animation: riseIn 1.1s 0.15s var(--ease) both;
}

.portrait-frame {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  padding: 0.7rem 0.7rem 0.85rem;
  background:
    linear-gradient(145deg, #d4b56a 0%, #8a6a2d 28%, #f0dfb0 48%, #b8954a 72%, #6e5220 100%);
  box-shadow:
    0 0 0 1px rgba(240, 223, 176, 0.35),
    0 28px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  animation: riseIn 1.15s 0.3s var(--ease) both;
  overflow: visible;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(14, 17, 22, 0.45);
  pointer-events: none;
  z-index: 2;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(240, 223, 176, 0.55);
  pointer-events: none;
  z-index: 2;
}

.portrait-frame__ornament {
  position: absolute;
  inset: 0.15rem;
  border: 1px dashed rgba(14, 17, 22, 0.28);
  pointer-events: none;
  z-index: 2;
}

.portrait-frame__ornament::before,
.portrait-frame__ornament::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid rgba(240, 223, 176, 0.85);
  z-index: 3;
}

.portrait-frame__ornament::before {
  top: 0.15rem;
  left: 0.15rem;
  border-right: 0;
  border-bottom: 0;
}

.portrait-frame__ornament::after {
  right: 0.15rem;
  bottom: 0.15rem;
  border-left: 0;
  border-top: 0;
}

.portrait-frame__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: contrast(1.04) saturate(0.95);
}

.portrait-frame__caption {
  position: relative;
  z-index: 4;
  display: block;
  width: fit-content;
  max-width: calc(100% - 0.5rem);
  margin: 0.65rem auto 0.15rem;
  padding: 0.4rem 0.95rem;
  background: var(--void);
  border: 1px solid rgba(240, 223, 176, 0.75);
  color: var(--brass-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.hero-role {
  margin: 0 0 1rem;
  color: var(--brass-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-name {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
  overflow: visible;
}

.hero-firstname {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  color: var(--silver);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hero-lastname {
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  padding-bottom: 0.08em;
  overflow: visible;
  background: linear-gradient(180deg, #fff 20%, var(--brass-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-lead {
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.rep-filter:focus-visible,
.contact-card:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--brass-soft);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brass);
  color: var(--void);
}

.btn-primary:hover {
  background: var(--brass-soft);
}

.btn-ghost {
  border: 1px solid rgba(244, 246, 248, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.section-light {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
  color: var(--ink-text);
}

.section-dark {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(74, 21, 40, 0.35), transparent 55%),
    var(--ink);
  color: var(--text);
}

.section-velvet {
  background:
    linear-gradient(135deg, var(--velvet-deep), var(--velvet) 55%, #1a0d14);
  color: var(--text);
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-light .eyebrow {
  color: #8a6a2d;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.section-lead {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-dark .section-lead,
.section-velvet .section-lead {
  color: var(--text-muted);
}

/* Biography */
.bio-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.bio-text p {
  color: var(--ink-muted);
  font-size: 1.06rem;
}

.bio-text strong {
  color: var(--ink-text);
  font-weight: 600;
}

.fact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 26, 33, 0.12);
}

.fact-list > div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(23, 26, 33, 0.12);
}

.fact-list dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6a2d;
}

.fact-list dd {
  margin: 0;
  font-weight: 500;
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line);
  margin-left: 0.35rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.25rem;
  padding: 0 0 2rem 1.75rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.28rem;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(184, 149, 74, 0.15);
}

.timeline time {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.timeline h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.timeline p {
  color: var(--text-muted);
  margin: 0;
}

/* Repertoire */
.rep-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.rep-filter {
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(23, 26, 33, 0.14);
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.rep-filter.is-active,
.rep-filter:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--text);
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.rep-card {
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 26, 33, 0.08);
  border-left: 2px solid var(--brass);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.3s var(--ease);
}

.rep-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--velvet);
}

.rep-card.is-hidden {
  display: none;
}

.rep-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.rep-card p {
  margin: 0 0 0.7rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.rep-card span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6a2d;
}

.concert-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 26, 33, 0.12);
}

.concert-block h3 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.concert-block p {
  color: var(--ink-muted);
  max-width: 70ch;
}

/* Awards */
.awards-list {
  display: grid;
  gap: 0;
}

.awards-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 181, 106, 0.22);
}

.award-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass-soft);
}

.awards-list h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.awards-list p {
  margin: 0;
  color: var(--text-muted);
}

/* Conductors */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.chip-cloud li {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(23, 26, 33, 0.12);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 500;
}

.collab-notes p {
  color: var(--ink-muted);
  max-width: 70ch;
}

/* Discography */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.disc-card {
  padding: 1.4rem 1.25rem;
  background: linear-gradient(160deg, rgba(74, 21, 40, 0.35), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(184, 149, 74, 0.22);
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.disc-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
}

.disc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.disc-card h3 {
  font-size: 1.35rem;
}

.disc-card p {
  margin: auto 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Video */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(23, 26, 33, 0.1);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(23, 26, 33, 0.12);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-note {
  margin: 0.9rem 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.contact-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(184, 149, 74, 0.28);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  background: rgba(184, 149, 74, 0.08);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.contact-card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
}

.contact-card span:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(184, 149, 74, 0.18);
  background: #0a0c10;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer-tag,
.footer-copy {
  margin: 0.25rem 0 0;
  color: rgba(244, 246, 248, 0.5);
  font-size: 0.88rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes beamDrift {
  from {
    transform: translateX(-4%) translateY(0);
    opacity: 0.55;
  }
  to {
    transform: translateX(8%) translateY(4%);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 980px) {
  .bio-grid,
  .rep-grid,
  .disc-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    background: rgba(10, 12, 16, 0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav a {
    font-size: 1.15rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-bottom: 3.25rem;
    gap: 2rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .portrait-frame {
    justify-self: center;
    width: min(88vw, 380px);
    max-width: 380px;
    order: -1;
  }

  .hero-lastname {
    font-size: clamp(3.6rem, 18vw, 6rem);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
  }

  body {
    font-size: 1rem;
  }

  .bio-grid,
  .rep-grid,
  .disc-grid,
  .contact-cards,
  .fact-list > div,
  .awards-list li {
    grid-template-columns: 1fr;
  }

  .fact-list > div {
    gap: 0.25rem;
  }

  .hero-actions,
  .rep-filters {
    gap: 0.55rem;
  }

  .btn {
    width: 100%;
  }

  .logo-text__name {
    font-size: 1rem;
  }

  .logo-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .section {
    padding: 3.75rem 0;
  }
}
