:root {
  --royal-blue: #114fd0;
  --midnight-blue: #071a35;
  --deep-blue: #0a2f6f;
  --champagne: #f1dfc3;
  --warm-ivory: #fff8ee;
  --soft-ivory: #f7efe3;
  --gold: #c9a15d;
  --ink: #101820;
  --muted: #66707a;
  --line: rgba(16, 24, 32, 0.14);
  --header-height: 76px;
  --shadow: 0 24px 70px rgba(7, 26, 53, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--warm-ivory);
  background: rgba(7, 26, 53, 0.78);
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(7, 26, 53, 0.94);
}

.brand,
.header-actions,
.site-nav,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 248, 238, 0.42);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.site-nav {
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: rgba(255, 248, 238, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a,
.site-footer a,
.text-link {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--champagne);
}

.header-actions {
  justify-content: end;
  gap: 12px;
}

.language-switch {
  padding: 3px;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 999px;
}

.language-switch button,
.nav-toggle {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  color: rgba(255, 248, 238, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: var(--midnight-blue);
  background: var(--champagne);
}

.admin-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 999px;
  color: var(--warm-ivory);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-ivory);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  color: var(--warm-ivory);
  background:
    radial-gradient(circle at 90% 14%, rgba(17, 79, 208, 0.42), transparent 28%),
    linear-gradient(135deg, var(--midnight-blue), var(--deep-blue));
}

.hero-media {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--soft-ivory);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 62%, rgba(7, 26, 53, 0.18)),
    linear-gradient(180deg, rgba(7, 26, 53, 0.08), transparent 22%, rgba(7, 26, 53, 0.08));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
}

.hero-copy {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 50px) clamp(28px, 6vw, 90px) 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-text {
  width: min(610px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 248, 238, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 238, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.button-primary {
  color: var(--midnight-blue);
  background: var(--champagne);
  border-color: var(--champagne);
}

.button-secondary {
  color: var(--warm-ivory);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--soft-ivory);
}

.intro-strip div {
  min-height: 126px;
  padding: 28px clamp(20px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

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

.intro-strip span,
.timeline-card span,
.award-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-strip strong {
  color: var(--deep-blue);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 94px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section h2 {
  margin-bottom: 0;
  color: var(--midnight-blue);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.rich-text {
  color: #3d4650;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.rich-text p {
  margin-bottom: 20px;
}

.text-link {
  color: var(--royal-blue);
  font-weight: 800;
}

.biography-section,
.gallery-section {
  background: var(--warm-ivory);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(42px, 7vw, 78px);
}

.timeline-card,
.award-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.timeline-card h3,
.award-grid h3 {
  margin-bottom: 10px;
  color: var(--midnight-blue);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 800;
}

.timeline-card p,
.award-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.repertoire-section {
  color: var(--warm-ivory);
  background:
    radial-gradient(circle at 18% 8%, rgba(17, 79, 208, 0.5), transparent 32%),
    linear-gradient(135deg, var(--midnight-blue), var(--deep-blue));
}

.repertoire-section .section-kicker,
.repertoire-section h2 {
  color: var(--warm-ivory);
}

.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.16);
  box-shadow: var(--shadow);
}

.repertoire-grid article {
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 248, 238, 0.08);
}

.repertoire-grid span,
.media-feature span,
.video-placeholder span {
  display: block;
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.repertoire-grid h3,
.event h3,
.media-feature h3,
.video-placeholder h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 800;
}

.repertoire-grid p {
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.55;
}

.performances-section,
.acknowledgements-section {
  background: var(--soft-ivory);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.76);
}

.event time {
  color: var(--royal-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event h3 {
  color: var(--midnight-blue);
}

.event p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.media-feature,
.photo-tile,
.video-placeholder {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--midnight-blue);
}

.media-feature {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  align-items: end;
  color: var(--warm-ivory);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide,
.video-placeholder {
  grid-column: span 2;
}

.media-feature img,
.photo-tile img,
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-feature::after,
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 26, 53, 0.82));
}

.media-feature div,
.video-placeholder div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: var(--warm-ivory);
}

.contact-section {
  background: var(--midnight-blue);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 8px;
  color: var(--warm-ivory);
  background:
    radial-gradient(circle at 84% 14%, rgba(17, 79, 208, 0.46), transparent 26%),
    rgba(255, 248, 238, 0.05);
}

.contact-panel h2 {
  color: var(--warm-ivory);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 999px;
  color: var(--champagne);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: rgba(255, 248, 238, 0.72);
  background: #061326;
}

.site-footer a {
  color: var(--champagne);
  font-weight: 800;
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    display: none;
    background: rgba(7, 26, 53, 0.97);
  }

  .site-nav {
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border: 1px solid rgba(255, 248, 238, 0.16);
    border-radius: 8px 8px 0 0;
  }

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

  .header-actions {
    top: 390px;
    justify-content: space-between;
    padding: 0 24px 24px;
    border: 1px solid rgba(255, 248, 238, 0.16);
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 68vh;
  }

  .hero-image {
    min-height: 68vh;
    object-position: center 8%;
  }

  .hero-copy {
    min-height: auto;
    padding: 54px clamp(22px, 6vw, 60px) 66px;
  }

  .intro-strip,
  .section-grid,
  .repertoire-grid,
  .timeline-grid,
  .award-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-media {
    min-height: 62vh;
  }

  .hero-image {
    min-height: 62vh;
  }

  .hero-copy {
    padding: 42px 20px 58px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 20px;
  }

  .event {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .media-feature,
  .photo-tile.tall,
  .photo-tile.wide,
  .video-placeholder {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-panel {
    padding: 28px 20px;
  }

  .contact-details a {
    border-radius: 8px;
  }
}
