:root {
  --ink: #101418;
  --ink-2: #171d24;
  --ink-3: #222a34;
  --paper: #faf7f1;
  --paper-2: #f3e9d3;
  --gold: #b98a3c;
  --gold-ink: #7d5a1e;
  --gold-bright: #d4ad62;
  --gold-soft: #e9d4a3;

  --c-heading: #1c232b;
  --c-body: #39424c;
  --c-mut: #646d77;
  --c-accent: var(--gold-ink);
  --c-hair: rgb(16 20 24 / 0.13);
  --c-surface: #ffffff;

  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-sm: clamp(0.8125rem, 0.79rem + 0.15vw, 0.875rem);
  --fs-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --fs-lede: clamp(1.0625rem, 1rem + 0.45vw, 1.3125rem);
  --fs-h3: clamp(1.125rem, 1.06rem + 0.4vw, 1.3125rem);
  --fs-h2: clamp(1.7rem, 1.35rem + 1.9vw, 2.7rem);
  --fs-h1: clamp(2.7rem, 1.9rem + 4.6vw, 5rem);

  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --space: clamp(4.25rem, 3rem + 5vw, 7.5rem);
  --header-h: 4.5rem;
  --radius: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 10px 30px rgb(16 20 24 / 0.08);
}
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  color-scheme: light;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-body);
  background: var(--paper);
  overflow-x: clip;
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
figure, blockquote { margin: 0; }
ul[class], ol[class],
nav ul, .header__menu ul, .repcard ul { list-style: none; padding: 0; }

[hidden] { display: none !important; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-heading);
  text-wrap: balance;
}
p, li { text-wrap: pretty; }

a { color: var(--c-accent); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space); }
.section--ink {
  background: var(--ink);
  color-scheme: dark;
  --c-heading: #f3efe4;
  --c-body: #b9c0c9;
  --c-mut: #8d959f;
  --c-accent: var(--gold-bright);
  --c-hair: rgb(255 255 255 / 0.14);
  --c-surface: var(--ink-2);
  --shadow: 0 10px 30px rgb(0 0 0 / 0.35);
}
.section--paper2 { background: var(--paper-2); }

.cv-auto { content-visibility: auto; contain-intrinsic-size: auto 760px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  inset: 0.75rem auto auto 0.75rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.section-head { margin-bottom: clamp(2.25rem, 2rem + 2vw, 3.5rem); max-width: 46rem; }
.section-head h2 { font-size: var(--fs-h2); margin-top: 0.75rem; }
.section-head .lede { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.section-head__note { font-size: var(--fs-sm); color: var(--c-mut); }

.lede { font-size: var(--fs-lede); line-height: 1.55; color: var(--c-body); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 3rem;
  padding: 0.8em 1.8em;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #14100a; }
.btn--gold:hover { background: var(--gold-soft); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { border-color: rgb(255 255 255 / 0.45); color: #f3efe4; }
.btn--ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn--outline { border-color: currentColor; color: var(--c-accent); }
.btn--outline:hover { background: var(--gold); border-color: var(--gold); color: #14100a; }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--ink) 68%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  color-scheme: dark;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.header__mark { height: 2.5rem; width: auto; }

.header__burger {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: none;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 6px;
  color: #f3efe4;
}
.header__burger:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.header__menu {
  border: 0;
  padding: 0;
  background: transparent;
}
.header__menu:popover-open {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  flex-direction: column;
  justify-content: center;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 0.3s var(--ease), display 0.3s allow-discrete, overlay 0.3s allow-discrete;
}
@starting-style {
  .header__menu:popover-open { opacity: 0; }
}
.header__menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.header__menu a:not(.btn) {
  display: block;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #f3efe4;
  text-decoration: none;
}
.header__menu a:not(.btn):hover { color: var(--gold-bright); }
.header__menu-cta { margin-top: 1.25rem; }
.header__close {
  position: absolute;
  top: 0.85rem;
  right: var(--gutter);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 6px;
  color: #f3efe4;
}

@media (min-width: 900px) {
  .header__burger, .header__close { display: none; }
  .header__menu { display: contents; }
  .header__menu ul {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
  .header__menu a:not(.btn) {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #d9dde2;
    padding: 0.6rem 0.85rem;
    border-radius: 4px;
  }
  .header__menu a:not(.btn):hover { color: var(--gold-bright); }
  .header__menu-cta { margin: 0 0 0 0.85rem; }
  .header__menu-cta .btn { min-height: 2.6rem; padding-block: 0.55em; }
}
@media (min-width: 900px) and (max-width: 1060px) {
  .header__menu-cta { display: none; }
}

.hero {
  position: relative;
  min-height: max(100svh, 34rem);
  display: grid;
  place-items: center;
  overflow: clip;
  background: var(--ink);
  color-scheme: dark;
  --c-accent: var(--gold);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide picture, .hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__slide img { transform: scale(1.07); }
  .hero__slide.is-active img { transform: scale(1); transition: transform 8s linear; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgb(16 20 24 / 0.62) 0%,
    rgb(16 20 24 / 0.28) 42%,
    rgb(16 20 24 / 0.72) 100%);
}

.hero--low { place-items: end center; }
.hero--low .hero__content {
  padding-block: calc(var(--header-h) + 2rem) clamp(4.5rem, 11svh, 8.5rem);
}
.hero--low::after {
  background: linear-gradient(180deg,
    rgb(16 20 24 / 0.34) 0%,
    rgb(16 20 24 / 0.10) 34%,
    rgb(16 20 24 / 0.52) 66%,
    rgb(16 20 24 / 0.85) 100%);
}
.hero--low .hero__scroll { bottom: 1.6rem; }
@media (max-aspect-ratio: 8/7) and (max-width: 700px) {
  .hero--low .hero__content { padding-bottom: 3rem; }
  .hero--low .hero__title { font-size: 2.6rem; }
  .hero--low .hero__lede { font-size: 1rem; margin-top: 0.9rem; }
  .hero--low .hero__cta { margin-top: 1.4rem; gap: 0.6rem; }
}
.hero--low :is(.hero__media, .hero__slide) img { object-position: 50% 30%; }
@media (max-aspect-ratio: 8/7) {
  .hero--low :is(.hero__media, .hero__slide) img { object-position: 50% 25%; }
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: calc(var(--header-h) + 2rem) 7rem;
}
.hero__title {
  font-size: var(--fs-h1);
  letter-spacing: 0.01em;
  color: #f6f2e7;
  margin-top: 0.5rem;
  text-shadow: 0 2px 30px rgb(0 0 0 / 0.45);
}
.hero__title img {
  height: clamp(2.9rem, 2rem + 4.5vw, 4.6rem);
  width: auto;
  margin-inline: auto;
}
.hero__lede {
  max-width: 38rem;
  margin: 0.9rem auto 0;
  font-size: var(--fs-lede);
  color: #d8dce1;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.5);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.hero__controls {
  position: absolute;
  z-index: 2;
  inset: auto 0 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
html:not(.js) .hero__controls { display: none; }
.hero__arrow, .hero__pause {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgb(16 20 24 / 0.35);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 50%;
  color: #e9e5da;
  transition: border-color 0.2s, color 0.2s;
}
.hero__arrow:hover, .hero__pause:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.hero__pause .ico-play, .hero__pause[aria-pressed="true"] .ico-pause { display: none; }
.hero__pause[aria-pressed="true"] .ico-play { display: block; }
.hero__dots { display: flex; }
.hero__dot {
  width: 2.1rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  padding: 0;
}
.hero__dot::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.42);
  transition: background-color 0.25s, transform 0.25s;
}
.hero__dot:hover::after { background: #fff; }
.hero__dot[aria-current="true"]::after { background: var(--gold-bright); transform: scale(1.45); }
.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 4.6rem;
  translate: -50% 0;
  color: rgb(255 255 255 / 0.75);
}
.hero__scroll:hover { color: var(--gold-bright); }
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll svg { animation: hero-bob 2.2s var(--ease) infinite; }
  @keyframes hero-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 7px; } }
}
@media (max-width: 640px) {
  .hero__scroll { display: none; }
}

.strip {
  background: linear-gradient(100deg, var(--ink-2), #1c242e);
  border-block: 1px solid var(--ink-3);
  padding-block: 1.9rem;
}
.strip__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem 1.4rem;
}
.strip__label { grid-column: 1 / -1; }
.strip__date {
  display: grid;
  justify-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-bright);
}
.strip__day { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.strip__month { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.strip__info h2 { font-size: clamp(1.2rem, 1.05rem + 0.9vw, 1.6rem); }
.strip__info p { margin-top: 0.3rem; font-size: var(--fs-sm); color: var(--c-mut); }
.strip__cta { justify-self: start; grid-column: 2; }
@media (min-width: 800px) {
  .strip__inner { grid-template-columns: auto auto 1fr auto; }
  .strip__label {
    grid-column: auto;
    writing-mode: sideways-lr;
    justify-self: center;
  }
  .strip__label::before { display: none; }
  .strip__cta { grid-column: auto; justify-self: end; }
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__media::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: clip;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.about__video picture, .about__video img, .about__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__video video { opacity: 0; transition: opacity 0.8s var(--ease); }
.about--video.is-playing .about__video video { opacity: 1; }
.video-toggle {
  position: absolute;
  z-index: 1;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.3);
  background: rgb(16 20 24 / 0.45);
  color: #e9e5da;
}
.video-toggle:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.video-toggle .ico-play, .video-toggle[aria-pressed="true"] .ico-pause { display: none; }
.video-toggle[aria-pressed="true"] .ico-play { display: block; }
.sound-toggle {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.3);
  background: rgb(16 20 24 / 0.45);
  color: #e9e5da;
}
.sound-toggle:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.sound-toggle .ico-on, .sound-toggle[aria-pressed="true"] .ico-off { display: none; }
.sound-toggle[aria-pressed="true"] .ico-on { display: block; }
.about__video .sound-toggle { right: 4.05rem; bottom: 0.8rem; }

.about__features { display: grid; gap: 1.4rem; margin-block: 2rem 2.2rem; }
.about__features li { display: flex; gap: 1rem; }
.about__features svg { flex: 0 0 auto; width: 2.4rem; height: 2.4rem; color: var(--c-accent); }
.about__features h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; }
.about__features p { font-size: var(--fs-sm); color: var(--c-mut); margin-top: 0.15rem; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 5fr 6fr; gap: 4.5rem; }
}

.stats { padding-block: clamp(3rem, 2.4rem + 3vw, 5rem); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 1rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 1.9rem + 2.6vw, 3.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mut);
}
@media (min-width: 760px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.events__list { border-top: 1px solid var(--c-hair); }
.event {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.4rem 1.6rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--c-hair);
  transition: background-color 0.25s var(--ease);
}
.event:hover { background: rgb(255 255 255 / 0.55); }
.section--ink .event:hover { background: rgb(255 255 255 / 0.04); }
.event__date {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 4.6rem;
  padding: 0.6rem 0.5rem;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--c-accent);
  grid-row: span 2;
}
.event__day { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; line-height: 1; }
.event__month { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.2rem; }
.event__body h3 { font-size: var(--fs-h3); }
.event__meta { font-size: var(--fs-sm); color: var(--c-mut); margin-top: 0.35rem; }
.event__aside {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.event__price { font-size: var(--fs-sm); font-weight: 600; color: var(--c-heading); white-space: nowrap; }
.event__badge {
  display: inline-block;
  padding: 0.45em 1em;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-hair);
  color: var(--c-mut);
}
.event--soldout .event__date { border-color: var(--c-hair); color: var(--c-mut); }
.event--soldout h3 { color: var(--c-mut); }
@media (min-width: 800px) {
  .event { grid-template-columns: auto 1fr auto; }
  .event__date { grid-row: auto; }
  .event__aside { grid-column: auto; margin-top: 0; }
}

.promo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(78svh, 40rem);
  padding-block: var(--space);
  overflow: clip;
}
.promo__media, .promo__media picture { position: absolute; inset: 0; }
.promo__media img, .promo__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.promo__media video { opacity: 0; transition: opacity 0.8s var(--ease); }
.promo.is-playing .promo__media video { opacity: 1; }
.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(13 16 20 / 0.55);
}
.promo--bare::after { content: none; }
.promo--bare {
  min-height: 0;
  padding-block: 0;
  aspect-ratio: 16 / 9;
}
.promo__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
}
.promo__content h2 { font-size: var(--fs-h2); color: #f4f0e5; max-width: 22ch; }
.promo__content .lede { color: #cfd4da; max-width: 44ch; }
.promo__toggle {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.3);
  background: rgb(16 20 24 / 0.45);
  color: #e9e5da;
}
.promo__toggle:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.promo__toggle .ico-play, .promo__toggle[aria-pressed="true"] .ico-pause { display: none; }
.promo__toggle[aria-pressed="true"] .ico-play { display: block; }
.promo .sound-toggle { right: calc(1.1rem + 3.25rem); bottom: 1.1rem; z-index: 2; }

.repertoire__grid { display: grid; gap: 1.1rem; }
.repcard {
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow);
}
.repcard h3 {
  font-size: var(--fs-h3);
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--c-hair);
}
.repcard li {
  padding-block: 0.42rem;
  font-size: var(--fs-sm);
}
.repcard li strong { color: var(--c-heading); font-weight: 600; }
.repcard__more { color: var(--c-mut); font-style: italic; }
.repcard li span { color: var(--c-mut); }
@media (min-width: 800px) {
  .repertoire__grid { grid-template-columns: repeat(3, 1fr); }
}
.audio-card {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem 2.5rem;
  align-items: center;
  background: var(--ink);
  color-scheme: dark;
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem;
}
.audio-card h3 { color: #f3efe4; font-size: 1.1rem; }
.audio-card__note { font-size: var(--fs-sm); color: #949ca6; margin-top: 0.2rem; }
.audio-card audio { width: 100%; }
.audio-card__list { display: grid; gap: 1.1rem; }
.audio-track__title { font-size: var(--fs-sm); font-weight: 600; color: #f3efe4; margin-bottom: 0.35rem; }
.audio-track__title span { font-weight: 400; color: #949ca6; }
@media (min-width: 800px) {
  .audio-card { grid-template-columns: 1fr 1.2fr; }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
}
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: clip;
  border-radius: 6px;
  background: var(--ph, var(--ink-2));
}
.gallery__item--wide .gallery__link { height: 100%; aspect-ratio: auto; }
.gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.gallery__link:hover img { transform: scale(1.045); }
.gallery__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: inherit;
  transition: border-color 0.3s;
}
.gallery__link:hover::after { border-color: var(--gold-bright); }
@media (min-width: 700px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

body:has(.lightbox[open]),
body:has(.header__menu:popover-open) { overflow: hidden; }

.lightbox {
  border: 0;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: min(92vw, 1200px);
  overflow: visible;
}
.lightbox::backdrop {
  background: rgb(9 11 14 / 0.93);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lightbox__fig img {
  width: 100%;
  max-height: 80svh;
  object-fit: contain;
  border-radius: 6px;
  background: var(--ink-2);
}
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.8rem;
  font-size: var(--fs-sm);
  color: #c6ccd3;
}
.lightbox__count { font-variant-numeric: tabular-nums; color: #8d959f; }
.lightbox__btn {
  position: fixed;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.28);
  background: rgb(16 20 24 / 0.5);
  color: #e9e5da;
}
.lightbox__btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.lightbox__btn--close { top: 1rem; right: 1rem; }
.lightbox__btn--prev { left: 1rem; top: 50%; translate: 0 -50%; }
.lightbox__btn--next { right: 1rem; top: 50%; translate: 0 -50%; }
@media (max-width: 700px) {
  .lightbox__btn--prev, .lightbox__btn--next { top: auto; bottom: 1rem; translate: none; }
  .lightbox__btn--prev { left: 25%; }
  .lightbox__btn--next { right: 25%; }
}

.members__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.1rem;
}
.member__photo {
  aspect-ratio: 3 / 4;
  overflow: clip;
  border-radius: var(--radius);
  background: var(--ph, var(--ink-2));
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.member:hover .member__photo img { transform: scale(1.05); }
.member__name { font-size: 1.08rem; margin-top: 0.9rem; }
.member__role { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent); margin-top: 0.2rem; }
.members__note { margin-top: 2.2rem; text-align: center; font-size: var(--fs-sm); color: var(--c-mut); }
@media (min-width: 640px) { .members__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .members__grid { grid-template-columns: repeat(6, 1fr); gap: 1.1rem; } }

.scroller { position: relative; }
.scroller__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 0.25rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.scroller__track::-webkit-scrollbar { display: none; }
.scroller__btns { display: flex; gap: 0.5rem; }
.scroller__btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--c-hair);
  background: transparent;
  color: var(--c-heading);
}
.scroller__btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.quote {
  flex: 0 0 min(85%, 26rem);
  scroll-snap-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}
.quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--c-heading);
}
.quote p::before { content: "„"; color: var(--gold-bright); font-size: 1.4em; line-height: 0; margin-right: 0.1em; }
.quote footer { margin-top: 1.2rem; font-size: var(--fs-sm); color: var(--c-mut); }
.quote cite { display: block; font-style: normal; font-weight: 700; color: var(--c-body); }
@media (min-width: 900px) { .quote { flex-basis: 26rem; } }

.partners { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.2rem 3.5rem;
}
.partners__label {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mut);
  margin-bottom: 1.6rem;
}
.partner { display: grid; justify-items: center; opacity: 0.6; filter: grayscale(1); transition: opacity 0.3s, filter 0.3s; }
.partner:hover { opacity: 1; filter: none; }
.partner__mark { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.12em; color: var(--c-heading); }
.partner__sub { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-mut); }

.faq__list { max-width: 46rem; margin-inline: auto; border-top: 1px solid var(--c-hair); }
.faq__item { border-bottom: 1px solid var(--c-hair); }
.faq__item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-heading);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-accent);
  transition: rotate 0.3s var(--ease);
}
.faq__item[open] summary::after { rotate: 45deg; }
.faq__item::details-content {
  height: 0;
  overflow: clip;
  transition: height 0.35s var(--ease), content-visibility 0.35s allow-discrete;
}
.faq__item[open]::details-content { height: auto; }
.faq__body { padding: 0 2.5rem 1.4rem 0.2rem; color: var(--c-body); }
.faq__body p + p { margin-top: 0.6rem; }

.band {
  background: linear-gradient(115deg, #c79a4b 0%, #a4762c 100%);
  padding-block: clamp(3rem, 2.5rem + 3vw, 5rem);
  text-align: center;
}
.band h2 { font-size: var(--fs-h2); color: #171207; }
.band p { max-width: 42rem; margin: 0.9rem auto 1.8rem; color: #3c2f13; }

.contact__form-cta { margin-top: 1.5rem; }
.contact__grid { display: grid; gap: 2.5rem; }
.contact__cards { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); align-content: start; }
.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mut);
  margin-bottom: 0.8rem;
}
.contact-card p { margin-top: 0.25rem; }
.contact-card strong { color: var(--c-heading); }
.contact-card address { font-style: normal; }
.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--c-hair);
  border-radius: 50%;
  color: var(--c-heading);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.socials a:hover { color: var(--c-accent); border-color: var(--gold); translate: 0 -2px; }
.contact__map {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: clip;
  border: 1px solid var(--c-hair);
  box-shadow: var(--shadow);
  min-height: 16rem;
}
.contact__map svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.contact__map span {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  translate: -50% 0;
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  background: var(--ink);
  color: var(--paper);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 99px;
  transition: background-color 0.25s;
}
.contact__map:hover span { background: var(--gold-ink); }
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 3fr 2fr; }
}

.footer {
  background: var(--ink);
  color-scheme: dark;
  --c-heading: #f3efe4;
  --c-body: #aab2bb;
  --c-mut: #7d858f;
  --c-accent: var(--gold-bright);
  --c-hair: rgb(255 255 255 / 0.12);
  color: var(--c-body);
  padding-top: var(--space);
}
.footer__grid {
  display: grid;
  gap: 2.6rem;
  padding-bottom: 3.5rem;
}
.footer__brand { display: grid; gap: 0.9rem; justify-items: start; }
.footer__brand .footer__logo { height: 6.6rem; width: auto; }
.footer__name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--c-heading); }
.footer__motto { font-size: var(--fs-sm); color: var(--c-mut); font-style: italic; }
.footer__h {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mut);
  margin-bottom: 1rem;
}
.footer li { padding-block: 0.28rem; }
.footer a { color: var(--c-body); text-decoration: none; }
.footer a:hover { color: var(--gold-bright); text-decoration: underline; }
.footer address { font-style: normal; }
.footer .socials { margin-top: 1.1rem; }
.footer .socials a { color: var(--c-body); }
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--c-hair);
  font-size: var(--fs-sm);
  color: var(--c-mut);
}
.footer__top { display: inline-flex; align-items: center; gap: 0.45em; }
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.features__list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 1.7rem;
}
.feature {
  display: flex;
  gap: 1.1rem;
}
.feature svg { flex: 0 0 auto; width: 2.2rem; height: 2.2rem; color: var(--gold-ink); }
.feature h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; }
.feature p { margin-top: 0.3rem; color: var(--c-body); }
.features__cta { text-align: center; margin-top: 2.4rem; }

.pricing__grid { display: grid; gap: 1.1rem; }
.package {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
}
.package__name {
  font-size: var(--fs-h3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.package__duration { margin-top: 0.5rem; font-weight: 600; color: var(--c-heading); }
.package__desc { margin-top: 0.8rem; font-size: var(--fs-sm); color: var(--c-mut); }
.package__price {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.6rem + 1.2vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-ink);
}
.package__cta { margin-top: 1.2rem; }
.pricing__notes {
  margin-top: 2.2rem;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-mut);
}
.pricing__notes p + p { margin-top: 0.35rem; }
@media (min-width: 800px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: no-preference) {
  html.js body[data-anim="on"] .reveal {
    opacity: 0;
    translate: 0 18px;
    transition: opacity 0.65s var(--ease), translate 0.65s var(--ease);
    transition-delay: calc(var(--d, 0) * 90ms);
    animation: reveal-failsafe 0.6s var(--ease) 2.4s forwards;
  }
  html.anim-live body[data-anim="on"] .reveal { animation: none; }
  html.js body[data-anim="on"] .reveal.is-in {
    opacity: 1;
    translate: 0 0;
  }
  @keyframes reveal-failsafe {
    to { opacity: 1; translate: 0 0; }
  }
}

@media print {
  .header, .hero__controls, .hero__scroll, .promo, .band,
  .lightbox, .scroller__btns, .skip-link { display: none !important; }
  .section--ink, .strip, .footer { background: #fff !important; color: #000 !important; }
  body { background: #fff; }
}
