@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #111114;
  --ink-soft: #242329;
  --paper: #f3efe6;
  --paper-light: #faf8f2;
  --wine: #7a1f2b;
  --wine-dark: #4d121a;
  --gold: #c8a86a;
  --line: rgba(17, 17, 20, 0.16);
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body.menu-open { overflow: hidden; }

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

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

button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--white);
  padding: 10px 14px;
  transform: translateY(-150%);
  z-index: 1000;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: 100;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 20, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .02em;
}

.brand-name small {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .75;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  opacity: .88;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }

.language-toggle {
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: var(--white);
  min-width: 62px;
  padding: 8px 11px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(122,31,43,.6), transparent 30%),
    linear-gradient(130deg, #0d0d10 15%, #18171b 58%, #4d121a 130%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-art {
  position: absolute;
  right: -8%;
  top: 6%;
  width: 58%;
  opacity: .32;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 80px;
  padding-top: 90px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(68px, 8vw, 126px);
}

.hero-lead {
  max-width: 670px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }

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

.button-secondary {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}

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

.hero-card {
  min-height: 460px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.hero-card-top,
.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.hero-card-bottom p {
  max-width: 320px;
  margin: 0;
  line-height: 1.7;
}

.hero-card-center {
  position: relative;
  width: 280px;
  height: 280px;
  margin: auto;
  display: grid;
  place-items: center;
}

.sound-ring {
  position: absolute;
  border: 1px solid rgba(200,168,106,.5);
  border-radius: 50%;
}

.ring-one { width: 100%; height: 100%; animation: pulse 6s infinite; }
.ring-two { width: 70%; height: 70%; animation: pulse 6s 1s infinite; }
.ring-three { width: 40%; height: 40%; animation: pulse 6s 2s infinite; }

.play-symbol {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.08); opacity: .9; }
}

.marquee {
  overflow: hidden;
  background: var(--wine);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: scroll 28s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 30px;
  font-size: 11px;
  letter-spacing: .25em;
}

.marquee span::after {
  content: "✦";
  margin-left: 60px;
  color: var(--gold);
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

.section { padding: 125px 0; }

.section h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 84px);
}

.two-column {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 120px;
}

.about-copy > p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #48464d;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stats div {
  min-height: 135px;
  padding: 22px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--wine);
}

.stats span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b6870;
}

.programs {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading.horizontal {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}

.section-heading.horizontal > p {
  margin: 0 0 8px;
  color: #5f5c63;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(17,17,20,.08);
}

.program-card.feature {
  background: var(--wine);
  color: var(--white);
  border-color: transparent;
}

.card-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.program-card h3 {
  margin: 90px 0 18px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.05;
}

.program-card p {
  color: #5f5c63;
}

.program-card.feature p { color: rgba(255,255,255,.7); }

.program-card a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

.artists { background: var(--ink); color: var(--white); }

.artists .section-heading.horizontal > p { color: rgba(255,255,255,.58); }

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.artist-card {
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}

.portrait {
  aspect-ratio: 4 / 5;
  background-color: #2f2e34;
  position: relative;
}

.portrait::before,
.portrait::after {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50% 50% 44% 44%;
}

.portrait::after {
  inset: 30% 8% 0;
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
}

.placeholder-one {
  background:
    radial-gradient(circle at 50% 25%, rgba(200,168,106,.42), transparent 23%),
    linear-gradient(145deg, #3a3031, #17171a);
}

.placeholder-two {
  background:
    radial-gradient(circle at 50% 25%, rgba(122,31,43,.65), transparent 24%),
    linear-gradient(145deg, #35262a, #17171a);
}

.placeholder-three {
  background:
    radial-gradient(circle at 50% 25%, rgba(164,131,91,.45), transparent 24%),
    linear-gradient(145deg, #2e2a26, #17171a);
}

.artist-card > div:last-child { padding: 24px; }

.artist-card span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .2em;
}

.artist-card h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 34px;
}

.artist-card p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.events { background: var(--paper-light); }

.event-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 45%, rgba(200,168,106,.18), transparent 25%),
    linear-gradient(125deg, var(--wine-dark), var(--wine));
}

.event-label {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.15);
}

.event-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: .35em;
}

.event-content {
  max-width: 760px;
  padding: 85px 70px;
}

.event-content h2 { font-size: clamp(48px, 6vw, 86px); }

.event-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.72);
}

.event-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 55px;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.15);
}

.event-note span {
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: .25em;
}

.contact { background: var(--paper); }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #5f5c63;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 34px;
  background: var(--paper-light);
  border: 1px solid var(--line);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(122,31,43,.08);
}

.contact-form .full { grid-column: 1 / -1; }

.form-note {
  margin: -4px 0 0;
  color: #747078;
  font-size: 11px;
}

.site-footer {
  padding: 50px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 60px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 22px;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 82px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(17,17,20,.98);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { font-family: var(--serif); font-size: 34px; }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 90px;
  }

  .hero-grid { gap: 60px; }
  .hero-card { min-height: 390px; }
  .hero-art { width: 95%; top: 15%; right: -35%; }

  .two-column { gap: 45px; }
  .section-heading.horizontal {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .program-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .program-card { min-height: 340px; }
  .program-card h3 { margin-top: 50px; }

  .event-panel { grid-template-columns: 80px 1fr; }
  .event-note { display: none; }

  .contact-grid { gap: 50px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-name strong { font-size: 16px; }
  .brand-name small { font-size: 8px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand { min-width: auto; }

  .hero h1 { font-size: 58px; }
  .hero-card { min-height: 330px; }
  .hero-card-center { width: 220px; height: 220px; }

  .section { padding: 88px 0; }
  .section h2 { font-size: 47px; }

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

  .event-panel { grid-template-columns: 1fr; }
  .event-label { display: none; }
  .event-content { padding: 55px 28px; }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .contact-form .full { grid-column: auto; }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
