:root {
  --ink: #17151f;
  --navy: #101a32;
  --wine: #7b2040;
  --plum: #4c255e;
  --teal: #007c89;
  --gold: #d99b2b;
  --cream: #faf7f2;
  --paper: #ffffff;
  --mist: #edf0f4;
  --muted: #5f6471;
  --shadow: 0 20px 60px rgba(17, 21, 33, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  padding-bottom: 78px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 16, 32, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  display: block;
  max-width: 260px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #15100a;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 9px 22px rgba(114, 75, 17, 0.25);
}

.button:hover,
.button:focus-visible {
  background: #efb03c;
}

.button:focus-visible,
.direction-link:focus-visible,
.brand-mark:focus-visible,
.mobile-sticky a:focus-visible {
  outline: 3px solid rgba(0, 124, 137, 0.45);
  outline-offset: 3px;
}

.button.secondary {
  background: var(--navy);
  color: var(--paper);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(660px, calc(90svh - 70px), 860px);
  display: grid;
  align-items: end;
  color: var(--paper);
  background: var(--navy);
  overflow: hidden;
}

.hero picture,
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 22, 0.98) 0%, rgba(7, 10, 22, 0.82) 30%, rgba(7, 10, 22, 0.36) 56%, rgba(7, 10, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 10, 22, 0.76) 0%, rgba(7, 10, 22, 0.24) 34%, rgba(7, 10, 22, 0.08) 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(140px, 18vw, 210px) 0 clamp(44px, 7vw, 76px);
}

.hero-inner > * {
  max-width: 590px;
}

.presented {
  margin: 0 0 16px;
  color: #f0d396;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.16rem, 2.5vw, 1.78rem);
  line-height: 1.26;
  color: rgba(255, 255, 255, 0.94);
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.hero .event-details {
  max-width: 780px;
}

.event-details li {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.microcopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.92rem;
}

.urgency-strip {
  background: var(--wine);
  color: var(--paper);
}

.urgency-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.urgency-inner p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
}

.urgency-inner .button {
  flex: 0 0 auto;
  box-shadow: none;
}

.proof-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 26, 50, 0.09);
}

.proof-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  list-style: none;
}

.proof-grid li {
  padding: 22px 18px;
  border-left: 1px solid rgba(16, 26, 50, 0.08);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
}

.proof-grid li:last-child {
  border-right: 1px solid rgba(16, 26, 50, 0.08);
}

.photo-proof {
  background: #f4f1ec;
}

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

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 24px;
}

.experience-grid article {
  padding: 20px;
  border: 1px solid rgba(16, 26, 50, 0.11);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius);
  background: #f7f8fa;
}

.experience-grid h3 {
  margin: 0;
}

.experience-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: end;
}

.section-heading-row .lead {
  margin: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
  margin-top: 30px;
}

.photo-grid figure,
.leader-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.photo-grid figure {
  min-height: 190px;
}

.photo-grid .photo-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid picture,
.photo-grid img,
.leader-photo picture,
.leader-photo img {
  width: 100%;
  height: 100%;
}

.photo-grid img,
.leader-photo img {
  object-fit: cover;
}

.leader-photo img {
  object-position: center top;
}

.photo-grid figcaption,
.leader-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  background: linear-gradient(0deg, rgba(10, 14, 24, 0.82), rgba(10, 14, 24, 0));
}

.section {
  padding: clamp(48px, 7vw, 84px) 0;
}

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

.section.dark {
  background: var(--navy);
  color: var(--paper);
}

.kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section.dark .kicker {
  color: #f0d396;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.section.dark .lead,
.section.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.story-blocks {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.story-block p {
  margin: 8px 0 0;
  color: var(--muted);
}

.program-note {
  padding: 24px;
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.program-note ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.program-note li {
  padding-left: 20px;
  position: relative;
  color: var(--navy);
  font-weight: 800;
}

.program-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wine);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
}

.section-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  font-weight: 800;
}

.section-cta .button {
  flex: 0 0 auto;
}

.leadership-section {
  border-top: 1px solid rgba(16, 26, 50, 0.08);
}

.leadership-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.leadership-copy p:not(.kicker):not(.lead) {
  max-width: 700px;
  color: var(--muted);
}

.leadership-copy .button {
  margin-top: 18px;
}

.leader-photo {
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.45fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.feature-callout {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.feature-callout p {
  margin: 0 0 22px;
  font-size: 1.05rem;
}

.composer-card {
  padding: 0;
  overflow: hidden;
}

.composer-card .eyebrow,
.composer-card h3,
.composer-card p:not(.eyebrow),
.composer-card .button {
  margin-left: 24px;
  margin-right: 24px;
}

.composer-card h3 {
  margin-bottom: 10px;
}

.composer-card .button {
  margin-bottom: 24px;
}

.composer-portrait {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.composer-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 28%;
}

.movement-list {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.movement-list h3 {
  margin: 0 0 14px;
  color: var(--paper);
}

.movement-list ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section.dark .eyebrow {
  color: #f0d396;
}

.performer-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

.performer-card,
.faq-item {
  border: 1px solid rgba(16, 26, 50, 0.11);
  border-radius: var(--radius);
  background: var(--paper);
}

.performer-card {
  min-height: 156px;
  padding: 20px;
}

.primary-performer {
  grid-column: span 2;
  border-top: 5px solid var(--gold);
}

.chorus-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.chorus-feature-card picture {
  min-height: 100%;
  aspect-ratio: 16 / 10;
  background: var(--navy);
}

.chorus-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: brightness(0.78) saturate(0.94) contrast(1.08);
  transform: scale(1.08);
}

.chorus-feature-card > div {
  display: grid;
  align-content: end;
  padding: 22px;
}

.chorus-feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.artist-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
}

.artist-card picture {
  aspect-ratio: 4 / 5;
  background: var(--navy);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gabe-stage-card img {
  object-position: center top;
}

.artist-card > div {
  padding: 18px 20px 20px;
}

.artist-card .eyebrow {
  margin-bottom: 8px;
}

.logo-card {
  display: grid;
  align-content: end;
  gap: 14px;
  background: var(--navy);
  color: var(--paper);
}

.logo-card img {
  width: min(100%, 260px);
  max-height: 58px;
  object-fit: contain;
}

.logo-card p {
  color: rgba(255, 255, 255, 0.76);
}

.symphony-card {
  align-content: start;
  padding: 0;
  overflow: hidden;
}

.symphony-director-photo {
  display: block;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.08);
}

.symphony-director-photo img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.symphony-card-body {
  padding: 18px 20px 20px;
}

.symphony-card .symphony-logo {
  display: block;
  width: min(100%, 250px);
  max-height: 54px;
  margin: 0 0 16px;
  object-fit: contain;
}

.symphony-card .eyebrow {
  color: #f0d396;
}

.chorus-card {
  border-top: 5px solid var(--teal);
}

.performer-card p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.logo-card p {
  color: rgba(255, 255, 255, 0.76);
}

.venue-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.45fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: stretch;
}

.details-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.details-list dt {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.details-list dd {
  margin: 0;
  color: var(--paper);
  font-weight: 800;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.direction-link {
  color: #f0d396;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.venue-note {
  display: grid;
  align-content: center;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.venue-note p {
  margin: 0;
}

.venue-photo-card {
  align-content: start;
  padding: 0;
  overflow: hidden;
}

.venue-photo-card picture {
  display: block;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.08);
}

.venue-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-photo-card p {
  padding: 22px 24px 24px;
}

.sponsors {
  padding: clamp(44px, 6vw, 72px) 0;
  background: #0b1020;
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sponsors .kicker {
  color: #f0d396;
}

.supporter-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.supporter-logo {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #fff;
  transition: opacity 160ms ease, transform 160ms ease;
}

.supporter-logo:hover,
.supporter-logo:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.supporter-logo img {
  width: 100%;
  max-width: 220px;
  max-height: 72px;
  object-fit: contain;
}

.supporter-logo-small img {
  max-width: 152px;
  max-height: 52px;
}

.supporter-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.faq-item {
  padding: 20px;
}

.final-cta {
  text-align: center;
  background: var(--wine);
  color: var(--paper);
}

.final-cta .lead {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
}

.final-detail {
  max-width: 760px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.final-cta .event-details {
  justify-content: center;
}

.site-footer {
  padding: 28px 0;
  background: #0b1020;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(16, 26, 50, 0.96);
  color: var(--paper);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.22);
}

.mobile-sticky strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.15;
}

.mobile-sticky span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.mobile-sticky .button {
  min-height: 44px;
  padding: 12px 15px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .proof-grid,
  .performer-grid,
  .experience-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .narrative-grid,
  .feature,
  .venue-panel,
  .section-heading-row,
  .leadership-panel {
    grid-template-columns: 1fr;
  }

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

  .program-note,
  .venue-note,
  .leader-photo {
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 84px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .site-header .button {
    display: none;
  }

  .urgency-inner,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section-cta .button {
    width: 100%;
  }

  .urgency-inner {
    min-height: auto;
    padding: 12px 0;
  }

  .urgency-inner .button {
    display: none;
  }

  .hero {
    min-height: clamp(560px, calc(88svh - 64px), 800px);
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 10, 22, 0.36) 0%, rgba(7, 10, 22, 0.52) 42%, rgba(7, 10, 22, 0.96) 100%);
  }

  .hero-media {
    filter: brightness(0.78) saturate(0.92);
    object-position: center center;
  }

  .hero-inner {
    width: 100%;
    padding: 120px 16px 30px;
  }

  .hero-inner > * {
    max-width: 100%;
  }

  .presented {
    font-size: 0.68rem;
    line-height: 1.24;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.4vw, 2.95rem);
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: clamp(1.02rem, 4.8vw, 1.16rem);
  }

  h2,
  h3,
  p,
  li {
    overflow-wrap: break-word;
  }

  .event-details {
    gap: 8px;
    margin: 20px 0 22px;
  }

  .event-details li {
    width: 100%;
    min-height: 38px;
    padding: 7px 10px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 340px;
  }

  .button {
    width: 100%;
  }

  .composer-card .button {
    width: calc(100% - 48px);
  }

  .proof-grid,
  .performer-grid,
  .experience-grid,
  .faq-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .primary-performer {
    grid-column: auto;
  }

  .chorus-feature-card {
    grid-template-columns: 1fr;
  }

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

  .supporter-logo {
    min-height: 96px;
  }

  .photo-grid {
    grid-auto-rows: auto;
  }

  .photo-grid figure,
  .photo-grid .photo-feature {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.35;
  }

  .proof-grid li {
    padding: 17px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 26, 50, 0.08);
  }

  .proof-grid li:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .mobile-sticky {
    display: flex;
  }
}
