:root {
  --ink: #0f1114;
  --ink-soft: #171b20;
  --paper: #f4efe6;
  --paper-soft: #d8cbbb;
  --muted: #a89b8b;
  --line: rgba(244, 239, 230, 0.18);
  --gold: #c5a46d;
  --clay: #8d5f4b;
  --green: #74806a;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Inter, Arial, sans-serif;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
}

img,
video,
iframe,
audio {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 164, 109, 0.12), transparent 28rem),
    linear-gradient(180deg, #0d0e11 0%, #15191d 48%, #0f1114 100%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  background: rgba(15, 17, 20, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  text-decoration: none;
  letter-spacing: 0;
}

.brand span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(244, 239, 230, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 80vh;
  place-items: end start;
  overflow: hidden;
  padding: clamp(110px, 15vw, 180px) clamp(20px, 6vw, 86px) clamp(70px, 9vw, 110px);
}

.hero.compact {
  min-height: 58vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.52;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 17, 20, 0.96), rgba(15, 17, 20, 0.68) 44%, rgba(15, 17, 20, 0.3)),
    linear-gradient(0deg, var(--ink), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 11vw, 9.5rem);
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(244, 239, 230, 0.82);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(197, 164, 109, 0.7);
  border-radius: 999px;
  background: var(--gold);
  color: #15120d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--paper);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 86px);
}

.section.alt {
  background: rgba(244, 239, 230, 0.045);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(880px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 66px);
}

.section-title {
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
}

.section-intro {
  max-width: 650px;
  margin: 0;
  color: rgba(244, 239, 230, 0.76);
}

.section-title + .section-intro {
  margin-top: 22px;
}

.repertoire-intro {
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.image-stack {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.image-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.035);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-tile.tall {
  min-height: 620px;
}

.image-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 17, 20, 0.88), rgba(15, 17, 20, 0.08) 58%);
}

.image-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}

.image-label strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

.image-label span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 239, 230, 0.74);
  font-size: 0.92rem;
}

.panel,
.media-panel,
.work-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.panel,
.work-card,
.notice {
  padding: clamp(22px, 3vw, 34px);
}

.panel h3,
.work-card h3,
.notice h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.panel p,
.work-card p,
.notice p {
  margin: 0 0 16px;
  color: rgba(244, 239, 230, 0.76);
}

.panel p:last-child,
.work-card p:last-child,
.notice p:last-child {
  margin-bottom: 0;
}

.media-panel {
  overflow: hidden;
}

.media-panel.visual {
  min-height: 380px;
  background-position: center;
  background-size: cover;
}

.film {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050608;
  box-shadow: var(--shadow);
}

.ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.ratio iframe,
.ratio video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 230, 0.68);
  font-size: 0.92rem;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.pathway {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

.pathway .pathway-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.58;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.pathway::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 17, 20, 0.94), rgba(15, 17, 20, 0.2));
}

.pathway div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}

.pathway h3 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.pathway p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 239, 230, 0.76);
}

.pathway:hover .pathway-bg {
  opacity: 0.72;
  transform: scale(1.04);
}

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

.timeline-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  color: var(--gold);
  font-weight: 800;
}

.timeline-body {
  color: rgba(244, 239, 230, 0.78);
}

.timeline-body strong {
  display: block;
  color: var(--paper);
  font-weight: 700;
}

.repertoire {
  display: grid;
  gap: 20px;
}

.composer-block {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.composer-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.composer-head h3 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.composer-head span,
.work-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.works {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.recording-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.recording-button::before {
  content: "Play ";
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer {
  padding: 56px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #090a0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
}

.footer h2 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.footer p {
  max-width: 680px;
  margin: 0;
  color: rgba(244, 239, 230, 0.72);
}

.contact-list {
  display: grid;
  gap: 10px;
  color: rgba(244, 239, 230, 0.78);
  text-align: right;
}

.audio-card audio {
  width: 100%;
  margin-top: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(4, 5, 7, 0.82);
}

.modal.open {
  display: grid;
}

.modal-dialog {
  width: min(980px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07080a;
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.modal-title {
  margin: 0;
  color: rgba(244, 239, 230, 0.78);
  font-size: 0.9rem;
}

.close {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 17, 20, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .section-head,
  .grid.two,
  .grid.three,
  .image-story,
  .pathways,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 6.8rem);
  }

  .pathway {
    min-height: 360px;
  }

  .image-tile,
  .image-tile.tall {
    min-height: 340px;
  }

  .timeline-row,
  .works li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .composer-head {
    display: block;
  }

  .contact-list {
    text-align: left;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
