﻿:root {
  --brand-logo-height: clamp(96px, calc(10vw - 4px), 179px);
  --brand-padding: 0 clamp(2.06rem, calc(3.43vw - 0.14rem), 3.84rem) clamp(2.57rem, calc(4.29vw - 0.18rem), 4.8rem) clamp(0.64rem, calc(1.07vw - 0.04rem), 1.2rem);
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --amber-100: #CC9200;
  --amber-500: #CC9200;
  --amber-600: #CC9200;
  --amber-700: #CC9200;
  --sand-100: var(--slate-50);
  --white: #ffffff;
  --header-logo-ratio: 0.44;
  --header-height: calc(var(--brand-logo-height) * var(--header-logo-ratio));
  --brand-offset-top: 0px;
  --brand-logo-drop: calc(var(--brand-logo-height) * 0.27);
  --brand-top-corner-x: 72%;
  --brand-corner-y-position: 43%;
  --brand-right-corner-x: 88%;
  --brand-visual-scale: 1.44;
  --brand-logo-inner-scale: 0.6075;
  --header-bg: rgba(255, 255, 255, 0);
  --nav-font-size: 1.28rem;
  --nav-base-gap: 0.25rem;
  --nav-base-padding-x: 0.46rem;
  --nav-edge-inset: 1rem;
  --nav-color: #ffffff;
  --menu-button-size: min(42px, max(18px, calc(var(--header-height) - 4px)));
  --menu-button-stripe-width: max(12px, calc(var(--menu-button-size) * 0.48));
  --menu-button-stripe-height: max(1.5px, calc(var(--menu-button-size) * 0.05));
  --menu-button-gap: max(2px, calc(var(--menu-button-size) * 0.095));
  --burger-button-top: max(0.75rem, env(safe-area-inset-top));
  --burger-menu-font-size: 1rem;
  --burger-menu-item-min-height: 42px;
  --burger-menu-item-padding-x: 0.65rem;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-v12-latin-300.woff2?v=20260518-7") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-v12-latin-regular.woff2?v=20260518-7") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-v12-latin-500.woff2?v=20260518-7") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-v12-latin-600.woff2?v=20260518-7") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-v12-latin-700.woff2?v=20260518-7") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-v12-latin-900.woff2?v=20260518-7") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: "Barlow", serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.shell.container-xl {
  max-width: 1280px;
}

.site-header .site-nav.shell.container-xl {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  padding-block: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
}

.header-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header-height);
  background: var(--header-bg);
  pointer-events: none;
  transition: background 180ms ease, height 180ms ease;
}

.site-header::before {
  content: none;
}

.site-nav {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  min-height: var(--header-height);
  gap: 1.5rem;
  transition: height 180ms ease, min-height 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  order: 1;
  flex-shrink: 0;
  align-self: flex-start;
  margin: 0;
  padding: var(--brand-padding);
  position: absolute;
  top: var(--brand-offset-top);
  left: 0;
  z-index: 60;
  background: var(--white);
  padding-bottom: calc(var(--brand-logo-height) * 0.52);
  clip-path: polygon(0 0, var(--brand-top-corner-x) 0, var(--brand-right-corner-x) var(--brand-corner-y-position), 0 100%);
  transform: scale(var(--brand-visual-scale));
  transform-origin: top left;
  transition: background 180ms ease, padding 180ms ease;
}

.brand::before {
  content: none;
}

.brand::after {
  content: none;
}

.brand-logo {
  position: relative;
  z-index: 2;
  top: var(--brand-logo-drop);
  left: calc(var(--brand-logo-height) * 0.1);
  width: auto;
  height: var(--brand-logo-height);
  object-fit: contain;
  transform: scale(var(--brand-logo-inner-scale));
  transform-origin: top left;
  transition: height 180ms ease, left 180ms ease, top 180ms ease, transform 180ms ease;
}

.brand-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.brand-frame polygon {
  fill: none;
  stroke: transparent;
  stroke-width: 0;
  vector-effect: non-scaling-stroke;
}

.nav-links {
  order: 2;
  position: fixed;
  z-index: 110;
  inset: 0 var(--nav-edge-inset) auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--nav-base-gap);
  min-width: 0;
  height: var(--header-height);
  margin: 0;
  max-width: none;
  white-space: nowrap;
}

.nav-links.navbar-collapse {
  flex-basis: auto;
  flex-grow: 1;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: min(42px, var(--header-height));
  padding: 0.42rem var(--nav-base-padding-x);
  border-radius: 0;
  color: var(--nav-color);
  font-size: var(--nav-font-size);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--amber-100);
}

.legal-page .nav-links a {
  color: var(--slate-900);
}

.nav-home-link {
  justify-content: center;
}

.nav-home-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-links a.nav-home-link.active {
  color: var(--nav-color);
}

.legal-page .nav-links a.nav-home-link.active {
  color: var(--slate-900);
}

.menu-button {
  order: 2;
  position: fixed;
  z-index: 110;
  inset: calc((var(--header-height) - var(--menu-button-size)) / 2) var(--nav-edge-inset) auto auto;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--menu-button-gap);
  margin: 0;
  width: var(--menu-button-size);
  height: var(--menu-button-size);
  border: 0;
  border-radius: min(0.5rem, calc(var(--menu-button-size) * 0.2));
  background: var(--slate-100);
  cursor: pointer;
  transition: width 180ms ease, height 180ms ease, inset 180ms ease, gap 180ms ease;
}

.menu-button span {
  display: block;
  width: var(--menu-button-stripe-width);
  height: var(--menu-button-stripe-height);
  margin: 0;
  background: var(--slate-900);
}

@media (max-width: 991.98px) {
  :root {
    --menu-button-size: 42px;
    --menu-button-stripe-width: 20px;
    --menu-button-stripe-height: 2px;
    --menu-button-gap: 4px;
  }

  .site-header {
    z-index: 1300;
  }

  .header-bar {
    display: none;
  }

  .menu-button {
    inset: var(--burger-button-top) var(--nav-edge-inset) auto auto;
    display: flex;
  }

  .nav-links {
    position: fixed;
    z-index: 1200;
    inset: calc(var(--burger-button-top) + var(--menu-button-size) + 0.45rem) var(--nav-edge-inset) auto auto;
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: min(22rem, calc(100vw - 2rem));
    height: auto;
    max-height: calc(100vh - var(--burger-button-top) - var(--menu-button-size) - 1rem);
    margin: 0 !important;
    padding: 1rem;
    overflow: auto;
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    background: white;
    box-shadow: var(--soft-shadow);
  }

  .nav-links a {
    color: var(--slate-900);
    min-height: var(--burger-menu-item-min-height);
    padding: 0.42rem var(--burger-menu-item-padding-x);
    font-size: var(--burger-menu-font-size);
  }

  .nav-links.collapse:not(.show) {
    display: none;
  }

  .nav-links.show,
  .nav-links.collapsing {
    display: flex;
  }
}

.page {
  padding-top: 0;
}

.hero {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero.compact {
  min-height: 400px;
}

.hero > img,
.hero > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img,
.hero > picture > img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
}

.hero-content {
  position: relative;
  z-index: 120;
  width: min(100% - 2rem, 900px);
}

.hero-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 2rem;
  font-size: 3.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-wordmark-primary {
  color: var(--amber-600);
}

.hero-wordmark-secondary {
  color: var(--white);
  font-weight: 300;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber-500);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 1;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  margin-top: 0.65rem;
  color: var(--slate-200);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 700;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: var(--slate-200);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.45rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.site-button:hover {
  text-decoration: none;
}

.site-button.primary {
  color: white;
  background: var(--amber-600);
}

.site-button.primary:hover {
  background: var(--amber-700);
}

.site-button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.section {
  padding: 5rem 0;
}

.scroll-section {
  scroll-margin-top: var(--header-height);
}

.section.soft {
  background: var(--sand-100);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2,
.copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-header p,
.copy p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.1rem;
}

.ensemble-roster {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--slate-200);
}

.ensemble-subheader {
  max-width: none;
  margin: 0 0 1.75rem;
  text-align: left;
}

.ensemble-subheader h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.director-section {
  margin-top: 4rem;
}

.split {
  align-items: center;
}

.copy p + p {
  margin-top: 1rem;
}

.story-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
}

.story-block > .row {
  margin-inline: 0;
}

.story-block h3 {
  margin: 0 0 1rem;
  color: var(--slate-900);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-block p {
  max-width: 900px;
  margin: 0;
  color: var(--slate-600);
  font-size: 1.1rem;
  line-height: 1.7;
}

.story-block p + p {
  margin-top: 1rem;
}

.copy h3 {
  margin: 1.8rem 0 0.75rem;
  color: var(--slate-900);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.copy .site-button {
  margin-top: 1.25rem;
}

.join-section {
  background: var(--sand-100);
}

.instrument-callout {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--amber-600);
  border-radius: 0.5rem;
  color: var(--slate-900);
  background: white;
  box-shadow: var(--soft-shadow);
  font-weight: 400;
}

.image-card {
  height: 400px;
  overflow: hidden;
  padding: 0;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.responsive-picture {
  display: block;
  width: 100%;
}

.responsive-picture > img {
  display: block;
  width: 100%;
  height: auto;
}

.hero > .responsive-picture,
.image-card .responsive-picture,
.carousel-item .responsive-picture {
  height: 100%;
}

.hero > .responsive-picture > img,
.image-card .responsive-picture > img,
.carousel-item .responsive-picture > img {
  height: 100%;
  object-fit: cover;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img.slide-focus-landscape {
  object-position: center 30%;
}

.image-card img.slide-focus-quantum {
  object-position: center 58%;
}

.lightbox-trigger {
  cursor: zoom-in;
}

.about-image {
  height: auto;
  aspect-ratio: 16 / 9;
}

.image-lightbox .modal-dialog {
  max-width: min(96vw, 1440px);
}

.image-lightbox .modal-content {
  border: 0;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.94);
}

.image-lightbox .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
}

.image-lightbox .btn-close {
  filter: invert(1) grayscale(1);
}

.image-lightbox .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.image-lightbox img {
  width: auto;
  height: auto;
  max-width: calc(96vw - 2rem);
  max-height: calc(100vh - 9rem);
  object-fit: contain;
}

.ensemble-image {
  height: auto;
  aspect-ratio: 2 / 1;
}

.welcome-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.welcome-copy {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-block: 2rem 3.5rem;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero-wordmark {
    font-size: 3.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-wordmark {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-wordmark {
    font-size: 2.45rem;
  }
}

.welcome-slideshow .carousel-inner,
.welcome-slideshow .carousel-item {
  height: 100%;
}

.welcome-slideshow {
  width: 100%;
  height: clamp(320px, 46vw, 620px);
  margin-top: 3rem;
  border-radius: 0;
}

.welcome-slideshow .carousel-inner {
  cursor: pointer;
}

.welcome-slideshow .carousel-inner:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: -6px;
}

.join-image {
  height: auto;
  aspect-ratio: 3 / 4;
}

.site-card {
  display: block;
  padding: 1.5rem;
  border: 0;
  border-radius: 0.75rem;
  color: inherit;
  background: white;
  box-shadow: var(--soft-shadow);
}

.site-card.center {
  text-align: center;
}

.register-card {
  overflow: hidden;
  padding: 0;
}

.register-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.register-card img.register-focus-top {
  object-position: center top;
}

.register-body {
  padding: 1.35rem;
  text-align: center;
}

.site-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-card p {
  margin: 0;
  color: var(--slate-600);
}

.member-list {
  margin-top: 0.75rem !important;
  color: var(--slate-500) !important;
  font-size: 0.92rem;
  line-height: 1.45;
}

.icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--amber-600);
  background: var(--amber-100);
  border-radius: 999px;
  font-size: 1.55rem;
  font-weight: 900;
}

.center .icon {
  margin-inline: auto;
}

.concert {
  position: relative;
  display: grid;
  grid-template-columns: 170px 170px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: white;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.concert-action {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  border-radius: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

.concert:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.concert-action:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 4px;
}

.concert-image {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  background: transparent;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.concert-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.concert-image:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 4px;
}

.concert + .concert {
  margin-top: 1.25rem;
}

.date-box {
  width: 100%;
  padding: 0.65rem;
  border-radius: 0.75rem;
  color: white;
  text-align: center;
  background: var(--amber-600);
}

.date-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.date-box strong {
  font-size: 2rem;
  line-height: 1;
}

.date-box span {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.date-box small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.82;
}

.date-box time {
  display: block;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.concert-modal .modal-content {
  border: 0;
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
}

.concert-modal .modal-header {
  border-bottom-color: var(--slate-200);
}

.concert-modal .modal-title {
  color: var(--slate-900);
  font-weight: 900;
}

.concert-modal .modal-body {
  padding: 1.5rem;
}

.concert-modal p {
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 1.65;
}

.concert-modal p:last-child {
  margin-bottom: 0;
}

.badge {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: white;
  background: var(--amber-600);
  font-size: 0.85rem;
  font-weight: 800;
}

.director {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--slate-50);
  box-shadow: none;
}

.director-image {
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  box-shadow: none;
}

.director-image .responsive-picture,
.director-image img {
  border-radius: inherit;
}

.director-image img {
  object-fit: cover;
  object-position: center top;
}

.director-copy {
  text-align: left;
}

.contact-grid {
  align-items: stretch;
  margin-top: 3rem;
}

.contact-top {
  margin-top: -0.25rem;
  margin-bottom: 3rem;
}

.contact-list {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
}

.contact-item .icon {
  margin: 0;
  border-radius: 0.75rem;
}

.contact-item .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-item .contact-social-icon {
  background: transparent;
}

.contact-item .contact-social-icon img {
  filter: invert(1);
}

.contact-item .contact-email-icon img {
  filter: none;
}

.contact-item a {
  color: var(--amber-700);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-address p {
  color: var(--amber-700);
  font-weight: 400;
  margin: 0.12rem 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-tile {
  padding: 1.15rem;
  border-radius: 0.85rem;
  background: white;
  box-shadow: var(--soft-shadow);
}

.newsletter-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--slate-50);
  box-shadow: var(--soft-shadow);
}

.newsletter-card h3,
.form-card h2 {
  margin: 0 0 0.75rem;
  color: var(--slate-900);
  font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.75rem);
}

.newsletter-card p {
  margin: 0 0 1rem;
  color: var(--slate-600);
}

.newsletter-note {
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 1.25rem;
}

.newsletter-form .site-button,
.form-card .site-button {
  align-self: flex-start;
  margin-top: auto;
}

.newsletter-consent {
  margin-top: 0.25rem;
}

.form-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--slate-50);
  box-shadow: var(--soft-shadow);
}

.form-card form {
  display: flex;
  flex: 1;
  flex-direction: column;
}

#contact-form {
  scroll-margin-top: max(5rem, calc(var(--header-height) + 2rem));
}

#newsletter {
  scroll-margin-top: max(5rem, calc(var(--header-height) + 2rem));
}

.form-note {
  margin: 0 0 1.25rem;
  color: var(--slate-600);
  font-size: 0.98rem;
}

.form-feedback {
  display: none;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
}

.form-feedback.success,
.form-feedback.error {
  display: block;
}

.form-feedback.success {
  color: #166534;
  background: #dcfce7;
}

.form-feedback.error {
  color: #991b1b;
  background: #fee2e2;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.legal-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: white;
  box-shadow: var(--soft-shadow);
}

.legal-card h2,
.legal-card h3,
.legal-card h4 {
  margin: 0 0 0.75rem;
  color: var(--slate-900);
}

.legal-card h2:not(:first-child),
.legal-card h3:not(:first-child),
.legal-card h4:not(:first-child) {
  margin-top: 1.5rem;
}

.legal-card h4 {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  font-weight: 900;
}

.legal-card p {
  margin: 0 0 1rem;
  color: var(--slate-600);
}

.legal-card ul {
  margin: 0 0 1rem;
  color: var(--slate-600);
}

.legal-card li + li {
  margin-top: 0.35rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--amber-700);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.repertoire-section {
  min-height: 100vh;
}

.repertoire-title {
  margin-bottom: 2.5rem;
}

.repertoire-card {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.repertoire-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--amber-500);
}

.repertoire-card-header {
  margin-bottom: 1rem;
}

.repertoire-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.12;
}

.repertoire-list {
  margin: 0;
}

.repertoire-list li {
  margin: 0;
  padding: 0.62rem 0;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-700);
  line-height: 1.35;
}

.repertoire-list li.has-video {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.piece-copy {
  min-width: 0;
}

.piece-title {
  color: var(--slate-900);
  font-weight: 400;
}

.piece-meta {
  color: var(--slate-600);
}

.repertoire-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-left: auto;
  border-radius: 6px;
  background: #ff0000;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
}

.repertoire-video-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--slate-700);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: 0.5rem;
  color: var(--slate-900);
  background: white;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--amber-100);
  border-color: var(--amber-600);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0.25rem 0 1.25rem;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 500;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
  accent-color: var(--amber-600);
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.captcha-row img {
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--slate-300);
  border-radius: 0.5rem;
  background: white;
}

.captcha-refresh {
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--slate-300);
  border-radius: 0.5rem;
  color: var(--slate-700);
  background: white;
  font-weight: 700;
}

.captcha-refresh:hover {
  color: var(--amber-700);
  border-color: var(--amber-600);
}

.footer {
  padding: 3rem 0;
  color: var(--slate-300);
  background: var(--slate-900);
}

.footer h2,
.footer h3 {
  margin: 0 0 0.75rem;
  color: white;
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  margin: 0;
}

.footer-social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer p,
.footer a {
  display: block;
  margin: 0.35rem 0;
  color: var(--slate-300);
}

@media (max-width: 520px) {
  .concert {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 1rem, 1280px);
  }

  .contact-grid.row {
    --bs-gutter-x: 0;
    margin-inline: 0;
  }

  .contact-grid.row > [class*="col-"] {
    padding-inline: 0;
  }

  :root {
    --header-bg: rgba(255, 255, 255, 0);
    --nav-color: #ffffff;
    --nav-font-size: 1.05rem;
  }

  .hero {
    min-height: 470px;
  }

  .section {
    padding: 4rem 0;
  }

  .repertoire-card {
    padding: 1.25rem;
  }

  .repertoire-card h2 {
    font-size: 1.3rem;
  }

}

@media (max-width: 991.98px) {
  :root {
    --brand-logo-height: 72px;
    --brand-padding: 0 1.54rem 1.93rem 0.48rem;
  }
}
