:root {
  --ink: #070b10;
  --charcoal: #0b1017;
  --forest: #233c5c;
  --forest-deep: #05070b;
  --blue: #0072ce;
  --blue-deep: #003d73;
  --blue-soft: #dcecff;
  --stone: #b9c2cc;
  --warm: #ffffff;
  --paper: #f7f9fc;
  --gold: #6fb6ff;
  --muted: #65707d;
  --line: rgba(7, 11, 16, 0.14);
  --flag-blue: #0072ce;
  --flag-black: #000000;
  --flag-white: #ffffff;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 114, 206, 0.05), transparent 260px),
    var(--paper);
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 70px);
  color: var(--warm);
  border-top: 3px solid var(--flag-blue);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 126px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 0.86;
  letter-spacing: 0;
}

.brand span + span {
  padding-left: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 3px;
}

.language-switch button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--charcoal);
  background: var(--warm);
}

.site-header.is-scrolled .language-switch button.active,
.site-header.nav-open .language-switch button.active {
  color: var(--warm);
  background: var(--flag-blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--warm);
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: clamp(20px, 6vw, 90px);
  bottom: 0;
  width: min(360px, 52vw);
  height: 6px;
  background: linear-gradient(90deg, var(--flag-blue) 0 33.33%, var(--flag-black) 33.33% 66.66%, var(--flag-white) 66.66% 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-hero img {
  left: auto;
  right: 0;
  width: min(56vw, 760px);
  object-position: 62% 30%;
  filter: saturate(0.85) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 32%, rgba(17, 21, 21, 0.06), rgba(17, 21, 21, 0.34) 30%, rgba(17, 21, 21, 0.74) 70%),
    linear-gradient(90deg, rgba(17, 21, 21, 0.9), rgba(17, 21, 21, 0.56) 48%, rgba(17, 21, 21, 0.28)),
    linear-gradient(0deg, rgba(17, 21, 21, 0.8), transparent 52%);
}

.portrait-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.84) 42%, rgba(0, 61, 115, 0.38) 74%, rgba(0, 61, 115, 0.16)),
    linear-gradient(0deg, rgba(5, 7, 11, 0.9), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 150px clamp(20px, 6vw, 90px) 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(72px, 13vw, 172px);
  line-height: 0.83;
}

h2 {
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.94;
}

h3 {
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}

p {
  line-height: 1.75;
}

.hero-quote {
  max-width: 560px;
  color: rgba(244, 240, 232, 0.9);
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 46px);
  line-height: 1.06;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  color: var(--flag-black);
  border-color: var(--flag-white);
  background: var(--warm);
}

.button.secondary {
  color: var(--warm);
  border-color: rgba(0, 114, 206, 0.84);
  background: rgba(0, 114, 206, 0.16);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 70px);
  bottom: 34px;
  display: flex;
  gap: 16px;
  color: rgba(244, 240, 232, 0.78);
  font-size: 12px;
}

.hero-index span {
  border-left: 1px solid rgba(0, 114, 206, 0.7);
  padding-left: 16px;
}

section:not(.hero) {
  padding: clamp(72px, 10vw, 145px) clamp(20px, 6vw, 90px);
}

.atmosphere-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: var(--forest-deep);
  color: var(--warm);
  border-top: 1px solid rgba(0, 114, 206, 0.46);
}

.atmosphere-image img {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.atmosphere-copy p {
  color: rgba(244, 240, 232, 0.78);
  font-size: 18px;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  color: #3c403d;
  font-size: clamp(17px, 1.8vw, 21px);
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(46px, 7vw, 86px);
  background: var(--line);
  border: 1px solid var(--line);
}

.facts-strip div {
  min-height: 142px;
  padding: 24px;
  background: var(--flag-white);
}

.facts-strip strong {
  display: block;
  margin-bottom: 18px;
  color: var(--flag-blue);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
}

.facts-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.image-text-section,
.media-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.16), transparent 38%),
    var(--charcoal);
  color: var(--warm);
}

.image-panel img,
.media-image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.text-panel p,
.media-content p,
.recordings-section .section-heading p {
  color: rgba(244, 240, 232, 0.78);
  font-size: 18px;
}

.word-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.word-cloud span,
.repertoire-grid span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(111, 182, 255, 0.46);
  padding: 9px 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legacy-section,
.recordings-section {
  background: #e8eef6;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(32px, 6vw, 76px);
}

.section-heading.compact {
  margin-bottom: 34px;
}

.legacy-grid,
.recording-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.recording-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.legacy-grid article,
.recording-card {
  min-height: 330px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--flag-white);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--flag-blue), var(--flag-black), var(--flag-white)) 1;
}

.card-number,
.recording-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--flag-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legacy-grid p,
.recording-card p,
.contact-section p {
  color: #55574f;
}

.repertoire-section {
  background:
    linear-gradient(90deg, var(--flag-blue) 0 10px, var(--flag-black) 10px 20px, var(--flag-white) 20px 30px, transparent 30px),
    var(--forest-deep);
  color: var(--warm);
}

.repertoire-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}

.composer-line {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(244, 240, 232, 0.18);
  color: rgba(244, 240, 232, 0.74);
  line-height: 1.7;
}

.composer-line strong {
  color: var(--warm);
}

.recordings-section {
  color: var(--ink);
}

.recordings-section .section-heading p {
  color: #55574f;
  max-width: 720px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 9px 14px;
  color: var(--blue-deep);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: var(--warm);
  border-color: var(--flag-blue);
  background: var(--flag-blue);
}

.recording-card {
  transition: opacity 160ms ease, transform 160ms ease;
}

.recording-card.is-hidden {
  display: none;
}

.recording-card a {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-section {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--blue-deep);
}

.media-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.18);
}

.media-list article {
  padding: 24px 0;
  background: var(--blue-deep);
}

.media-list h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  background: var(--paper);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label:nth-child(4) {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 12px;
  color: var(--ink);
  background: var(--flag-white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  grid-column: 1 / -1;
  width: fit-content;
  color: var(--warm);
  border-color: var(--flag-blue);
  background: var(--flag-blue);
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 90px);
  color: rgba(244, 240, 232, 0.74);
  background:
    linear-gradient(90deg, var(--flag-blue) 0 33.33%, var(--flag-black) 33.33% 66.66%, var(--flag-white) 66.66% 100%) top / 100% 5px no-repeat,
    var(--ink);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--warm);
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 10px 20px 22px;
    color: var(--ink);
    background: rgba(251, 248, 241, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    margin-left: auto;
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 130px;
  }

  .hero-index {
    left: 20px;
    right: 20px;
    bottom: 26px;
    flex-wrap: wrap;
  }

  .intro-grid,
  .atmosphere-section,
  .image-text-section,
  .media-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .facts-strip,
  .legacy-grid,
  .recording-grid {
    grid-template-columns: 1fr 1fr;
  }

  .composer-line {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 18px;
    gap: 10px;
  }

  .brand {
    font-size: 23px;
    min-width: 104px;
  }

  h1 {
    font-size: clamp(58px, 22vw, 88px);
  }

  .hero-actions,
  .contact-form,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .portrait-hero img {
    width: 100%;
    object-position: 57% 24%;
    opacity: 0.66;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

  .facts-strip,
  .legacy-grid,
  .recording-grid {
    grid-template-columns: 1fr;
  }

  .facts-strip div,
  .legacy-grid article,
  .recording-card {
    min-height: auto;
  }

  .contact-form label,
  .contact-form label:nth-child(4),
  .contact-form .button {
    grid-column: auto;
  }
}
