:root {
  --bg: #0d0c09;
  --text: #f6f0e4;
  --muted: #d1c6b2;
  --gold: #c7a364;
  --gold-bright: #f1d497;
  --emerald: #0f8e74;
  --emerald-bright: #3ec1a4;
  --line: rgba(199, 163, 100, 0.22);
  --white: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --glass-dark: linear-gradient(180deg, rgba(26, 23, 18, 0.82) 0%, rgba(11, 10, 8, 0.68) 100%);
  --radius: 28px;
  --container: min(1220px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 122px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 120, 98, 0.08), transparent 34%),
    radial-gradient(circle at top, rgba(199, 163, 100, 0.14), transparent 28%),
    linear-gradient(180deg, #17130c 0%, #090909 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background:
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(45deg, rgba(199, 163, 100, 0.11) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.07), transparent 36%);
}

body::after {
  content: "";
  position: fixed;
  inset: -18% -10%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px 16px),
    conic-gradient(from 20deg at 35% 40%, rgba(112, 201, 183, 0.06), rgba(216, 175, 98, 0.06), rgba(132, 154, 255, 0.05), rgba(112, 201, 183, 0.06));
  mix-blend-mode: screen;
}

body[data-page="home"] {
  --text: #f6f0e4;
  --muted: #d1c6b2;
  --line: rgba(199, 163, 100, 0.28);
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 74% 14%, rgba(18, 120, 98, 0.1), transparent 36%),
    radial-gradient(circle at top, rgba(199, 163, 100, 0.16), transparent 26%),
    linear-gradient(180deg, #18140f 0%, #0b0a09 100%);
}

body[data-page="repertoire"] {
  --text: #f6f0e4;
  --muted: #d1c6b2;
  --line: rgba(199, 163, 100, 0.28);
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 70% 16%, rgba(18, 120, 98, 0.1), transparent 38%),
    radial-gradient(circle at top, rgba(199, 163, 100, 0.16), transparent 24%),
    linear-gradient(180deg, #18140f 0%, #0b0a09 100%);
}

body.is-modal-open,
body.is-nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  color: #8f6a2b;
}

.site-brand img {
  width: 156px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a::after,
.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown__trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 8px;
  border-radius: 18px;
  background: rgba(17, 16, 13, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 35;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown__trigger[aria-expanded="true"] + .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a,
.nav-dropdown__menu button {
  padding: 10px 12px;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #f6f0e4;
  text-align: left;
  cursor: pointer;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu button:hover {
  background: rgba(199, 163, 100, 0.14);
}

.site-header__contacts {
  display: grid;
  text-align: right;
  color: #412d09;
}

.site-header__contacts a {
  font-weight: 800;
  font-size: 1.32rem;
}

.site-header__contacts span {
  color: var(--gold);
  font-size: 1.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(15, 12, 8, 0.12);
  transform: translateY(-1px);
}

.nav-toggle__bars {
  display: grid;
  gap: 6px;
}

.nav-toggle__bars span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(11, 10, 9, 0.55);
  backdrop-filter: blur(12px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
}

.site-footer__brand img {
  width: 148px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__nav a {
  position: relative;
  padding: 8px 0;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-footer__nav a:hover::after {
  transform: scaleX(1);
}

.site-footer__contacts {
  display: grid;
  justify-items: end;
  text-align: right;
  color: rgba(246, 240, 228, 0.88);
}

.site-footer__contacts a {
  font-weight: 800;
  font-size: 1.2rem;
  color: rgba(246, 240, 228, 0.92);
}

.site-footer__contacts span {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(199, 163, 100, 0.16);
  color: rgba(246, 240, 228, 0.62);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__contacts {
    justify-items: start;
    text-align: left;
  }
}

.nav-backdrop {
  display: none;
}

.site-nav__contacts {
  display: none;
}

.page {
  padding-bottom: 88px;
}

.hero,
.hero-summary,
.repertoire-hero {
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100%;
  height: calc(100vh - 90px);
  max-height: calc(100vh - 90px);
  height: min(calc(100svh - 90px), calc(100dvh - 90px));
  min-height: 0;
  max-height: min(calc(100svh - 90px), calc(100dvh - 90px));
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
}

.repertoire-hero__image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.hero__image {
  position: relative;
  z-index: 0;
  grid-row: 1;
  grid-column: 1;
  display: block;
  place-self: end center;
  max-width: none;
  width: 100% !important;
  min-width: 0;
  min-height: 0;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.repertoire-hero__overlay {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.16) 0%, rgba(12, 10, 8, 0.5) 100%),
    linear-gradient(90deg, rgba(12, 10, 8, 0.08) 0%, rgba(12, 10, 8, 0.28) 100%);
}

.hero-summary {
  padding-top: 28px;
  margin-top: 0;
}

.hero__copy h1,
.repertoire-hero h1,
.section-heading h2,
.feature-layout__copy h2,
.soloist-row__content h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero__title {
  max-width: 920px;
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
  text-align: center;
}

.hero__title span:first-child {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: none;
}

.hero__title span:last-child {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: none;
  text-wrap: balance;
}

.soloist-row__content h3 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--gold-bright);
}

.hero__lead,
.section-heading p,
.feature-layout__copy p,
.panel p,
.repertoire-hero p,
.soloist-row__content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero__copy {
  width: min(100%, 1000px);
  max-width: 1000px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.hero__copy--standalone {
  margin: 0 auto;
}

.hero-summary {
  padding-top: 18px;
  margin-top: 0;
}

.hero-summary__line {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-summary__line + .hero-summary__line {
  margin-top: 10px;
}

.hero-summary__line--gold {
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 700;
}

.hero-summary__line--beige {
  color: var(--muted);
  font-size: clamp(1.28rem, 2vw, 2.1rem);
  font-weight: 500;
}

.hero__copy--standalone .hero__actions {
  margin-top: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #efd79f;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 32px;
  border: 1px solid rgba(199, 163, 100, 0.42);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.button::after,
.promo-card::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -32%;
  width: 32%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 232, 186, 0.46), transparent);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.button:hover,
.promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(199, 163, 100, 0.16);
}

.button:hover::after,
.promo-card:hover::after {
  transform: translateX(420%) rotate(18deg);
}

.button--gold {
  background: linear-gradient(135deg, #f3da9a 0%, #bb8d42 100%);
  color: #23180b;
  box-shadow: 0 18px 40px rgba(187, 141, 66, 0.25);
}

.button--glass {
  background: rgba(12, 11, 9, 0.18);
  border: 1px solid rgba(241, 212, 151, 0.74);
  color: var(--gold-bright);
  backdrop-filter: blur(14px) saturate(1.06);
  box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.18), 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button--dark {
  background: rgba(12, 11, 9, 0.18);
  border-color: rgba(241, 212, 151, 0.58);
  color: var(--gold-bright);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.12), 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button__icon {
  width: 116px;
  height: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(199, 163, 100, 0.9);
  background:
    linear-gradient(135deg, rgba(243, 218, 154, 0.98) 0%, rgba(187, 141, 66, 0.98) 100%);
  color: var(--emerald-bright);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.18), 0 10px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
  position: relative;
  overflow: hidden;
  clip-path: none;
}

.button__icon svg {
  width: 94px;
  height: 94px;
}

.button__icon::after,
.promo-card__icon::after {
  content: "";
  position: absolute;
  inset: -10% auto -10% -60%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-24deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.button--hero-outline {
  min-height: 48px;
  min-width: min(100%, 920px);
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(226, 191, 122, 0.85);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 100%);
  color: var(--gold-bright);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14), inset 0 0 0 1px rgba(255, 244, 222, 0.2);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px) saturate(1.08);
  justify-content: center;
}

.button--hero-outline.button--promo-main {
  width: min(100%, 760px);
  min-height: 112px;
  padding: 0 28px;
  border-radius: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.button--hero-outline.button--promo-main::before {
  content: none;
}

.button--promo-main .button__icon {
  width: 156px;
  height: 126px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.button--promo-main .button__icon::before {
  content: none;
}

.button--promo-main .button__icon svg {
  width: 114px;
  height: 114px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(20, 198, 160, 0.42));
}

.button--promo-main .button__icon svg path {
  fill: #18e0b7;
  stroke: #e5be74;
  stroke-width: 1.8;
  paint-order: stroke fill;
}

.button--promo-main > span:last-child {
  color: transparent;
  background: linear-gradient(180deg, #fff0c4 0%, #e2bc79 46%, #9f6f2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(94, 61, 19, 0.66);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.7vw, 2.5rem);
  letter-spacing: 0.16em;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 242, 214, 0.95), 0 2px 0 rgba(185, 138, 65, 0.6), 0 0 20px rgba(255, 226, 166, 0.48), 0 10px 16px rgba(0, 0, 0, 0.3);
}

.button--promo-main > span:last-child::before {
  content: none;
}

.button--promo-main > span:last-child::after {
  content: none;
}

.hero__floating-action {
  position: relative;
  z-index: 2;
  grid-row: 2;
  grid-column: 1;
  justify-self: center;
  width: min(560px, calc(100vw - 64px));
  margin: 0;
  padding: 0 12px 8px;
  box-sizing: border-box;
  transform: none;
}

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  color: rgba(246, 240, 228, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll-cue--repertoire {
  bottom: 28px;
}

.hero__scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(45deg);
  animation: scroll-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 1;
  }
}

.section {
  padding-top: 68px;
}

#duet.section {
  padding-top: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading--compact {
  margin-bottom: 24px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.panel,
.feature-layout__copy,
.soloist-row {
  border: 1px solid rgba(241, 212, 151, 0.68);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(28, 24, 19, 0.8) 0%, rgba(9, 8, 7, 0.64) 100%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(140, 104, 38, 0.32);
  backdrop-filter: blur(20px) saturate(1.08);
}

.soloist-stack {
  display: grid;
  gap: 22px;
}

.soloist-row {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(380px, 500px) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  border: 1px solid rgba(241, 212, 151, 0.64);
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(28, 24, 19, 0.72) 0%, rgba(9, 8, 7, 0.58) 100%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(140, 104, 38, 0.32);
  backdrop-filter: blur(18px) saturate(1.08);
  overflow: hidden;
}

.soloist-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
}

.soloist-row--reverse .soloist-row__media {
  order: 2;
}

.soloist-row--reverse .soloist-row__content {
  order: 1;
  grid-template-columns: minmax(360px, 500px) minmax(230px, 300px);
}

.soloist-row__content .promo-card--duet {
  width: min(100%, 500px);
}

.soloist-row--reverse .soloist-row__content .promo-card {
  order: 1;
}

.soloist-row--reverse .soloist-row__content .soloist-row__copy {
  order: 2;
}

.soloist-row__media {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  height: 100%;
}

.soloist-row__content {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(360px, 500px);
  gap: 0;
  align-items: stretch;
  justify-content: center;
  padding: 14px 18px;
}

.soloist-row__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  justify-items: stretch;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  align-self: center;
}

.soloist-row__copy p {
  margin: 0;
  color: #f0e6d3;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.5;
}

.soloist-row__media img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  border-radius: 30px 0 0 30px;
  box-shadow: none;
}

.soloist-row:first-child .soloist-row__media img {
  object-position: center center;
}

.soloist-row--reverse .soloist-row__media img {
  border-radius: 0 30px 30px 0;
  object-position: center center;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.feature-layout--main-show {
  grid-template-columns: minmax(420px, 560px) minmax(280px, 420px);
  justify-content: center;
}

.feature-layout__media {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.feature-layout__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-layout__copy,
.panel {
  padding: 32px;
}

.feature-layout__copy {
  align-self: center;
}

.feature-layout__copy--wide {
  max-width: 920px;
  margin: 0 auto;
}

.main-show-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(320px, 1fr) minmax(240px, 300px);
  gap: 24px;
  align-items: stretch;
}

.feature-layout__copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.feature-layout__copy p {
  font-size: 1.05rem;
}

.panel--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.promo-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border-radius: 40px;
  border: 1px solid rgba(241, 212, 151, 0.72);
  background: linear-gradient(160deg, rgba(28, 24, 19, 0.76) 0%, rgba(11, 10, 8, 0.58) 100%);
  color: var(--text);
  text-align: left;
  box-shadow: var(--shadow), 0 0 0 1px rgba(140, 104, 38, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.06);
}

.promo-card--large {
  min-height: 320px;
}

.promo-card--wide {
  width: 100%;
  min-height: 220px;
  margin-top: 12px;
}

.promo-card__eyebrow {
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promo-card__title {
  max-width: 20ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  font-weight: 800;
}

.promo-card__icon {
  width: 146px;
  height: 146px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #14d7b0;
  border: 1px solid rgba(226, 191, 122, 0.72);
  background: linear-gradient(165deg, rgba(21, 20, 17, 0.96), rgba(8, 8, 7, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 241, 210, 0.1), inset 0 -14px 18px rgba(4, 4, 4, 0.42), 0 12px 22px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
  position: relative;
  overflow: hidden;
  clip-path: none;
}

.promo-card__icon svg {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 8px rgba(22, 204, 165, 0.45));
}

.promo-card__icon svg path {
  fill: #14d7b0;
  stroke: #e5be74;
  stroke-width: 1.4;
  paint-order: stroke fill;
}

.button__icon:hover,
.button--hero-outline:hover .button__icon,
.promo-card__icon:hover,
.promo-card:hover .promo-card__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.22), 0 16px 30px rgba(0, 0, 0, 0.3), 0 0 18px rgba(62, 193, 164, 0.24);
  filter: saturate(1.06);
}

.button__icon:hover::after,
.button--hero-outline:hover .button__icon::after,
.promo-card__icon:hover::after,
.promo-card:hover .promo-card__icon::after {
  transform: translateX(240%) skewX(-24deg);
}

.promo-card--duet {
  min-height: 650px;
  justify-items: center;
  text-align: center;
  align-content: center;
  gap: 16px;
  border-radius: 44px;
  width: 100%;
  height: 100%;
  padding: 22px 22px;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-self: stretch;
}

.promo-card--duet .promo-card__icon {
  justify-self: center;
  margin: 0 auto;
}

.promo-card--duet .promo-card__icon::before {
  content: "";
  position: absolute;
  right: -42px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3da9a 0%, #bb8d42 100%);
  border: 1px solid rgba(241, 212, 151, 0.9);
  transform: translateY(-50%);
  box-shadow: -18px 0 0 rgba(8, 8, 8, 0.88), 0 8px 16px rgba(0, 0, 0, 0.34);
}

.promo-card--duet .promo-card__title {
  max-width: 11ch;
  text-align: center;
  margin: 0 auto;
}

/* Variant 1: centered emerald play in premium frame */
.promo-card--duet-v1 {
  border-radius: 56px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 239, 196, 0.1), transparent 38%),
    linear-gradient(165deg, rgba(26, 23, 19, 0.88), rgba(9, 9, 8, 0.78));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(247, 220, 155, 0.26);
}

.promo-card--duet-v1 .promo-card__icon {
  width: 146px;
  height: 146px;
  border-radius: 22px;
}

.promo-card--duet-v1 .promo-card__icon::before {
  display: none;
}

.promo-card--duet-v1 .promo-card__icon svg {
  width: 96px;
  height: 96px;
}

.promo-card--duet-v1 .promo-card__icon svg path {
  fill: #14d7b0;
  stroke: #e5be74;
}

/* Variant 2: left play, center void, right golden accent */
.promo-card--duet-v2 {
  border-radius: 54px;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  justify-items: center;
  text-align: center;
  padding: 24px 24px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.4) 0 68%, rgba(7, 7, 7, 0.15) 68% 100%),
    linear-gradient(165deg, rgba(26, 23, 19, 0.88), rgba(9, 9, 8, 0.78));
}

.promo-card--duet-v2 .promo-card__eyebrow {
  align-self: end;
}

.promo-card--duet-v2 .promo-card__title {
  align-self: end;
  max-width: 11ch;
  text-align: center;
  margin: 0 auto;
}

.promo-card--duet-v2 .promo-card__icon {
  justify-self: center;
  margin: 0;
  width: 146px;
  height: 146px;
  border-radius: 22px;
}

.promo-card--duet-v2 .promo-card__icon::before {
  display: none;
}

.promo-card--duet-v2 .promo-card__icon svg {
  width: 96px;
  height: 96px;
}

.promo-card--duet-v2 .promo-card__icon svg path {
  fill: #14d7b0;
  stroke: #e5be74;
}

.promo-card--duet-v2 .promo-card__icon::after {
  display: none;
}

.promo-card--duet-v2::before {
  display: none;
}

.section-heading#orchestra,
#orchestra .section-heading {
  max-width: none;
  text-align: center;
}

#orchestra .section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: min(94vw, 1200px);
  text-wrap: balance;
}

.promo-card--emerald-outline {
  background: linear-gradient(180deg, rgba(15, 142, 116, 0.12) 0%, rgba(11, 10, 8, 0.7) 100%);
}

.promo-card--gold-filled {
  background: linear-gradient(135deg, #f1d497 0%, #c29548 100%);
  color: #23180b;
}

.promo-card--gold-filled .promo-card__eyebrow {
  color: rgba(61, 34, 4, 0.78);
}

.promo-card--gold-filled .promo-card__icon {
  border-color: rgba(128, 92, 27, 0.82);
  color: var(--emerald);
  background: rgba(255, 241, 209, 0.92);
}

.orchestra-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.orchestra-layout.panel {
  padding: 0;
  overflow: hidden;
}

.orchestra-layout__copy {
  display: grid;
  align-content: start;
  max-width: none;
  gap: 8px;
  padding: 0 24px 24px;
}

.orchestra-layout__copy p {
  font-size: 1.32rem;
  line-height: 1.72;
  color: #efd79f;
  font-weight: 700;
}

.orchestra-layout__media {
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: transparent;
  padding: 0;
  order: -1;
  min-height: 540px;
  max-width: none;
  margin: 0;
}

.orchestra-layout__media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  max-height: none;
  object-fit: cover;
  object-position: center 42%;
  background: transparent;
  border-radius: inherit;
  display: block;
  image-rendering: auto;
}

.orchestra-layout .promo-card--wide {
  width: 100%;
  min-height: 176px;
  margin-top: 12px;
  justify-self: center;
  justify-items: center;
  text-align: center;
  grid-template-rows: auto auto auto;
}

.orchestra-layout .promo-card--wide .promo-card__icon {
  justify-self: center;
}

.contacts-panel {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 26px;
}

.contact-grid--compact {
  margin-bottom: 22px;
}

.contact-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 156px;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(241, 212, 151, 0.64);
  background: var(--glass-dark);
  color: inherit;
  box-shadow: var(--shadow), 0 0 0 1px rgba(140, 104, 38, 0.26);
  backdrop-filter: blur(12px);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #f8f4eb;
  border: 2px solid rgba(199, 163, 100, 0.86);
  background: radial-gradient(circle at 30% 30%, rgba(62, 193, 164, 0.98), rgba(9, 109, 88, 0.92));
}

.contact-card__icon svg {
  width: 26px;
  height: 26px;
}

.contact-card__label {
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card__value {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
}

.repertoire-footer {
  padding-bottom: 24px;
}

.contact-name {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-phone {
  margin: 10px 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.repertoire-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130vh;
  min-height: 980px;
  overflow: hidden;
  background: #0f0e0c;
}

.repertoire-hero__image {
  max-width: none;
  width: 100%;
  min-width: 100vw;
  object-fit: contain;
  object-position: center -28px;
}

.repertoire-hero__overlay {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.08) 0%, rgba(12, 10, 8, 0.42) 100%);
}

.repertoire-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  padding-bottom: 0;
}

.repertoire-hero .button-row {
  width: min(100%, 1240px);
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.42fr) minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 16px;
  align-items: center;
  justify-content: center;
}

.repertoire-hero__actions {
  justify-items: center;
  align-content: center;
  row-gap: 16px;
}

.repertoire-hero__scroll-inline {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  grid-column: 1 / -1;
  margin-top: 6px;
  justify-self: center;
}

.repertoire-hero .button {
  min-height: 54px;
  font-size: 0.96rem;
  width: 100%;
  border-radius: 999px;
}

.button--repertoire-primary {
  min-height: 74px;
  min-width: 0;
  padding-left: 48px;
  padding-right: 48px;
  font-size: 1.12rem;
  font-weight: 800;
}

.repertoire-note {
  margin: 0 0 28px;
  padding: 0;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
  text-wrap: balance;
  background: transparent;
}

.repertoire-content-section {
  position: relative;
}

.repertoire-content-section::before {
  content: none;
}

.repertoire-content-section .container {
  position: relative;
  z-index: 1;
}

.repertoire-gallery {
  position: relative;
}

.repertoire-gallery::before {
  content: none;
}

.accordion-list {
  display: grid;
  gap: 18px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid rgba(241, 212, 151, 0.62);
  border-radius: var(--radius);
  background: var(--glass-dark);
  box-shadow: var(--shadow), 0 0 0 1px rgba(140, 104, 38, 0.24);
  backdrop-filter: blur(12px);
}

.accordion-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold-bright);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item ul {
  margin: 0;
  padding: 0 28px 24px 46px;
  columns: 2;
  column-gap: 36px;
}

.accordion-item li {
  break-inside: avoid;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.accordion-item__arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(45deg);
  transition: transform 0.24s ease;
  margin-right: 10px;
}

.accordion-item[open] .accordion-item__arrow {
  transform: rotate(225deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

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

.repertoire-gallery .container {
  width: min(1120px, calc(100vw - 40px));
}

.gallery-grid__item {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(241, 212, 151, 0.46);
  border-radius: 14px;
  background: rgba(10, 10, 9, 0.3);
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.gallery-grid__img {
  transform: none;
}

.section-heading__single-line {
  white-space: nowrap;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.video-modal__dialog {
  position: relative;
  width: min(1100px, calc(100vw - 32px));
  margin: 5vh auto;
  padding: 24px;
  border-radius: 28px;
  background: #0b0b0b;
  border: 1px solid rgba(241, 212, 151, 0.58);
  box-shadow: var(--shadow), 0 0 0 1px rgba(140, 104, 38, 0.22);
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.video-modal__player {
  width: 100%;
  max-height: 76vh;
  border-radius: 22px;
  background: black;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 7, 0.74);
}

.lead-modal__dialog {
  position: relative;
  width: min(720px, calc(100vw - 32px));
  margin: 8vh auto;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(241, 212, 151, 0.62);
  background: linear-gradient(180deg, rgba(23, 20, 15, 0.98) 0%, rgba(12, 11, 9, 0.98) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(140, 104, 38, 0.24);
}

.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lead-form__field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.lead-form__field--full {
  grid-column: 1 / -1;
}

.lead-form__note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(246, 240, 228, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lead-form__note a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lead-form__field span {
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(241, 212, 151, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(246, 240, 228, 0.48);
}

.lead-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.lead-form__success {
  grid-column: 1 / -1;
  margin: 0;
  color: #efd79f;
}

/* Final client tuning */
.hero {
  background: #ffffff;
}

.hero__floating-action {
  width: min(620px, calc(100vw - 64px));
  padding: 0 12px 10px;
}

.button--hero-outline.button--promo-main {
  width: 100%;
  height: 200px;
  min-height: 200px;
  padding: 0 31px 0 34px;
  border-radius: 29px;
  border: 7px solid transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%) padding-box,
    linear-gradient(180deg, #7c5a14 0%, #d9bf6e 7%, #f5e08a 13%, #9b7422 23%, #7c5a14 37%, #cfa94b 50%, #f5e08a 67%, #8b661d 84%, #6e4f12 100%) border-box;
  box-shadow:
    inset 0 0 0 1px rgba(92, 66, 18, 0.86),
    inset 0 2px 0 rgba(255, 249, 226, 0.72),
    inset 0 -1px 0 rgba(96, 68, 16, 0.36),
    0 2px 5px rgba(75, 48, 10, 0.13);
  backdrop-filter: none;
  gap: 40px;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
}

.button--hero-outline.button--promo-main::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  border: 2px solid rgba(100, 75, 21, 0.82);
  background:
    linear-gradient(180deg, rgba(245, 224, 138, 0.16), transparent 20%, transparent 76%, rgba(124, 90, 20, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(245, 224, 138, 0.5),
    inset 0 -1px 0 rgba(110, 79, 18, 0.28);
  opacity: 1;
  pointer-events: none;
}

.button--hero-outline.button--promo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  transform: none;
  background:
    radial-gradient(ellipse at 25% 47%, rgba(0, 0, 0, 0.035), transparent 23%),
    linear-gradient(100deg, transparent 0%, transparent 38%, rgba(245, 224, 138, 0.1) 48%, transparent 57%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.button--hero-outline.button--promo-main:hover::before {
  opacity: 1;
  animation: none;
}

.button--promo-main .button__icon {
  width: 116px;
  height: 126px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #0a8d62;
  clip-path: none;
  overflow: visible;
  transform: translateY(0);
  z-index: 1;
}

.button--promo-main .button__icon::after {
  content: none;
  display: none;
}

.button--promo-main .button__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(5px);
  filter:
    saturate(0.95)
    brightness(0.97)
    drop-shadow(0 3px 3px rgba(75, 48, 10, 0.18))
    drop-shadow(0 0 2px rgba(8, 74, 48, 0.16));
}

.button--promo-main .button__icon svg path {
  stroke: none;
  paint-order: normal;
}

.button--promo-main .button__icon svg .hero-play__rim {
  fill: url("#hero-play-rim");
  stroke: rgba(103, 73, 18, 0.74);
  stroke-width: 1.8;
  paint-order: stroke fill;
}

.button--promo-main .button__icon svg .hero-play__rim-facet--top {
  fill: rgba(255, 241, 174, 0.56);
}

.button--promo-main .button__icon svg .hero-play__rim-facet--right {
  fill: rgba(246, 223, 131, 0.5);
}

.button--promo-main .button__icon svg .hero-play__rim-facet--bottom {
  fill: rgba(104, 73, 18, 0.48);
}

.button--promo-main .button__icon svg .hero-play__face {
  fill: url("#hero-play-face");
  stroke: rgba(255, 233, 171, 0.28);
  stroke-width: 0.9;
  paint-order: stroke fill;
}

.button--promo-main .button__icon svg .hero-play__side {
  fill: url("#hero-play-side");
  opacity: 1;
}

.button--promo-main .button__icon svg .hero-play__facet--top {
  fill: url("#hero-play-light-facet");
  opacity: 0.42;
}

.button--promo-main .button__icon svg .hero-play__facet--bottom {
  fill: url("#hero-play-dark-facet");
  opacity: 0.72;
}

.button--promo-main .button__icon svg .hero-play__facet--left {
  fill: rgba(8, 122, 76, 0.45);
}

.button--promo-main .button__icon svg .hero-play__shine {
  fill: rgba(255, 244, 187, 0.55);
}

.promo-card__icon svg path {
  fill: #087b54;
  stroke: #d4aa58;
  stroke-width: 1.7;
  paint-order: stroke fill;
}

.button--promo-main > span:last-child {
  font-family: "Manrope", "Montserrat", sans-serif;
  color: transparent;
  background:
    linear-gradient(180deg, #8b661f 0%, #d5b65f 16%, #f7e79c 34%, #b4872d 54%, #6e4f12 76%, #b8862b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.05px rgba(94, 67, 20, 0.9);
  font-size: 99px;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1;
  transform: translateY(-2px);
  z-index: 1;
  text-shadow:
    0 1px 0 rgba(255, 246, 215, 0.72),
    0 2px 0 rgba(118, 83, 22, 0.34),
    0 4px 5px rgba(80, 52, 12, 0.12);
}

.button--promo-main > span:last-child::after {
  content: none;
}

.button--promo-main:hover > span:last-child::after {
  transform: translateX(520%) rotate(18deg);
}

@keyframes frame-gold-sheen {
  from {
    background-position: 160% 0;
  }
  to {
    background-position: -80% 0;
  }
}

.button--gold,
.button--glass,
.promo-card--gold-filled {
  background:
    radial-gradient(circle at 28% 18%, rgba(96, 255, 221, 0.48), transparent 36%),
    linear-gradient(135deg, #1fe0bb 0%, #0f9e80 48%, #08715d 100%);
  color: #061814;
  border-color: rgba(241, 212, 151, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(222, 255, 246, 0.35),
    0 18px 42px rgba(15, 142, 116, 0.25);
}

.button--glass {
  color: #f6dfaa;
  backdrop-filter: blur(16px) saturate(1.14);
}

.button--gold {
  background: linear-gradient(135deg, #f3da9a 0%, #bb8d42 100%);
  color: #23180b;
  border-color: rgba(241, 212, 151, 0.88);
  box-shadow: 0 18px 40px rgba(187, 141, 66, 0.25);
}

.button--tech-rider {
  color: #050504 !important;
  font-weight: 900;
}

.promo-card--emerald-outline,
.promo-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(31, 224, 187, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(28, 24, 19, 0.78) 0%, rgba(6, 18, 16, 0.7) 100%);
}

.promo-card--gold-filled .promo-card__eyebrow {
  color: rgba(3, 31, 25, 0.72);
}

.promo-card--gold-filled .promo-card__icon {
  background: rgba(5, 22, 18, 0.92);
  border-color: rgba(226, 191, 122, 0.9);
}

#orchestra .section-heading {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#orchestra .section-heading p {
  max-width: none;
  font-size: clamp(1.05rem, 1.45vw, 1.34rem);
  line-height: 1.55;
}

.orchestra-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 26px;
  align-items: stretch;
}

.orchestra-layout.panel {
  padding: 26px;
  overflow: hidden;
}

.orchestra-layout__copy {
  padding: 0;
  align-content: center;
}

.orchestra-layout__copy p {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.62;
  color: var(--muted);
  font-weight: 600;
}

.orchestra-layout__media {
  order: initial;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
}

.orchestra-layout__media img {
  min-height: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.orchestra-layout .promo-card--wide {
  min-height: 170px;
  margin-top: 10px;
  text-align: left;
  justify-items: start;
}

@media (max-width: 1100px) {
  .hero__content--single,
  .feature-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .soloist-row,
  .soloist-row--reverse {
    grid-template-columns: 1fr;
  }

  .soloist-row--reverse .soloist-row__media,
  .soloist-row--reverse .soloist-row__content {
    order: initial;
  }

  .soloist-row__content,
  .soloist-row--reverse .soloist-row__content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px 26px;
  }

  .soloist-row__content .promo-card--duet {
    width: 100%;
  }

  .soloist-row--reverse .promo-card--duet-v2 {
    width: 100%;
    justify-self: stretch;
    margin-left: 0;
  }

  .soloist-row__media img,
  .soloist-row--reverse .soloist-row__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 30px 30px 0 0;
    object-position: center 35%;
  }
}

@media (max-width: 900px) {
  .panel--split,
  .soloist-row,
  .soloist-row--reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__contacts {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 65;
  }

  .nav-backdrop {
    display: none;
  }

  body.is-nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--gold);
    border-left: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transition: width 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
    z-index: 60;
    overflow: hidden;
  }

  body.is-nav-open .site-nav {
    width: 100vw;
    padding: 104px 22px 24px;
    border-left: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }

  .site-nav > a,
  .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .site-nav > a::after,
  .nav-dropdown__trigger::after {
    content: none;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .nav-dropdown__trigger:hover,
  .nav-dropdown__trigger:focus-visible {
    background: rgba(199, 163, 100, 0.14);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    z-index: auto;
  }

  .nav-dropdown__trigger[aria-expanded="true"] + .nav-dropdown__menu {
    max-height: 460px;
    padding: 6px 0 10px;
  }

  .nav-dropdown__menu a,
  .nav-dropdown__menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(0, 0, 0, 0.04);
    color: #412d09;
  }

  .nav-dropdown__menu button[data-video-src]::after {
    content: "▶";
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(199, 163, 100, 0.55);
    background: rgba(199, 163, 100, 0.14);
    color: var(--gold);
    font-size: 0.74rem;
    line-height: 1;
    padding-left: 1px;
  }

  .site-nav__contacts {
    display: grid;
    gap: 2px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #412d09;
  }

  .site-nav__contacts a {
    font-weight: 800;
    font-size: 1.2rem;
  }

  .site-nav__contacts span {
    color: var(--gold);
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .main-show-grid {
    gap: 16px;
  }

  .promo-card {
    padding: 22px;
    border-radius: 28px;
    gap: 14px;
  }

  .promo-card--large {
    min-height: 260px;
  }

  .promo-card--wide {
    min-height: 190px;
  }

  .promo-card__icon {
    width: 112px;
    height: 112px;
    border-radius: 20px;
  }

  .promo-card__icon svg {
    width: 76px;
    height: 76px;
  }

  .promo-card--duet {
    min-height: 420px;
    border-radius: 38px;
  }

  .promo-card__title {
    max-width: none;
    font-size: clamp(1.28rem, 4.6vw, 1.65rem);
  }

  .promo-card__eyebrow {
    font-size: 0.78rem;
  }

  .promo-card--duet .promo-card__title {
    max-width: none;
  }

  body.is-nav-open .nav-toggle__bars span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.is-nav-open .nav-toggle__bars span:nth-child(2) {
    opacity: 0;
  }

  body.is-nav-open .nav-toggle__bars span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .soloist-row__media img,
  .gallery-grid img {
    height: auto;
  }

  .accordion-item ul {
    columns: 1;
  }

  .repertoire-hero__content {
    padding: 0 18px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .main-show-grid,
  .orchestra-layout,
  .soloist-row__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .site-header__inner {
    padding: 18px 0;
  }

  .site-brand img {
    width: 124px;
  }

  .site-nav {
    width: min(100vw, 92vw);
    padding: 84px 18px 18px;
  }

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

  .feature-layout__copy,
  .panel,
  .soloist-row {
    padding: 16px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .button--hero-outline.button--promo-main {
    height: 86px;
    min-height: 86px;
    padding: 0 14px;
    border-radius: 24px;
    gap: 12px;
  }

  .button--hero-outline {
    min-width: 0;
  }

  .button--hero-outline.button--promo-main::before {
    inset: 7px;
    border-radius: 18px;
  }

  .button--promo-main .button__icon {
    width: 62px;
    height: 56px;
  }

  .button--promo-main > span:last-child {
    font-size: clamp(2.1rem, 11vw, 2.7rem);
    letter-spacing: 1px;
    -webkit-text-stroke-width: 0.8px;
  }

  .hero__scroll-cue,
  .hero__scroll-cue--repertoire {
    bottom: 16px;
  }

  .hero-summary {
    padding-top: 0;
  }

  .hero__copy {
    padding: 20px 18px;
  }

  .repertoire-hero {
    height: 520px;
    min-height: 520px;
  }

  .repertoire-hero .button-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .repertoire-hero__image {
    object-fit: contain;
    object-position: center top;
  }

  .repertoire-hero .button {
    min-height: 54px;
    font-size: 0.9rem;
    padding-left: 18px;
    padding-right: 18px;
  }

  .repertoire-hero .button--repertoire-primary {
    min-height: 62px;
    font-size: 0.95rem;
  }

  .repertoire-hero__overlay {
    background:
      linear-gradient(180deg, rgba(12, 10, 8, 0.1) 0%, rgba(12, 10, 8, 0.46) 100%),
      linear-gradient(90deg, rgba(12, 10, 8, 0.04) 0%, rgba(12, 10, 8, 0.12) 100%);
  }

  .contact-card {
    min-height: 136px;
  }

  .promo-card {
    padding: 14px;
    border-radius: 20px;
  }

  .promo-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .promo-card__icon svg {
    width: 46px;
    height: 46px;
  }

  .promo-card--large {
    min-height: 188px;
  }

  .promo-card--wide {
    min-height: 140px;
  }

  .promo-card--duet {
    min-height: 260px;
    gap: 10px;
    border-radius: 30px;
    padding: 14px;
  }

  .promo-card__eyebrow {
    font-size: 0.74rem;
  }

  .promo-card__title {
    font-size: clamp(1.18rem, 5vw, 1.5rem);
  }

  .promo-card--duet-v1 .promo-card__icon,
  .promo-card--duet-v2 .promo-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .promo-card--duet-v1 .promo-card__icon svg,
  .promo-card--duet-v2 .promo-card__icon svg {
    width: 46px;
    height: 46px;
  }

  .section-heading__single-line {
    white-space: normal;
  }

  .lead-modal__dialog {
    margin: 4vh auto;
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-backdrop,
  .nav-toggle,
  .nav-toggle__bars span,
  .nav-dropdown__menu,
  .cookie-banner__panel {
    transition: none;
  }
}

/* Exact promo button: raster reference rendered inside a real HTML button. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero__floating-action {
  width: min(560px, calc(100vw - 64px));
}

.button--hero-outline.button--promo-main {
  display: block;
  width: 100%;
  aspect-ratio: 2044 / 659;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 4.9% / 15%;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
  line-height: 0;
  position: relative;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button--hero-outline.button--promo-main::before {
  content: none;
}

.button--hero-outline.button--promo-main::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -38%;
  z-index: 2;
  width: 34%;
  opacity: 0;
  transform: translateX(-120%) rotate(18deg);
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(124, 90, 20, 0) 18%,
      rgba(184, 134, 43, 0.4) 36%,
      rgba(245, 224, 138, 0.95) 48%,
      rgba(207, 169, 75, 0.86) 56%,
      rgba(124, 90, 20, 0) 78%,
      transparent 100%
    );
  pointer-events: none;
  will-change: transform, opacity;
}

.button--hero-outline.button--promo-main:hover,
.button--hero-outline.button--promo-main:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(199, 163, 100, 0.16);
}

.button--hero-outline.button--promo-main:hover::after,
.button--hero-outline.button--promo-main:focus-visible::after {
  animation: promo-gold-stripe 1.15s ease-in-out infinite;
}

@keyframes promo-gold-stripe {
  0% {
    opacity: 0;
    transform: translateX(-120%) rotate(18deg);
  }

  15% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(520%) rotate(18deg);
  }
}

.button__exact-image {
  display: block;
  width: 100%;
  height: 100%;
  background: url("./assets/images/promo-button-exact.png") center / 100% 100% no-repeat;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .hero {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 0;
    height: min(calc(100svh - 90px), calc(100dvh - 90px));
    min-height: 0;
    max-height: min(calc(100svh - 90px), calc(100dvh - 90px));
  }

  .hero__image {
    grid-row: 1;
    place-self: stretch;
    width: 100% !important;
    max-width: none;
    height: 100% !important;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    transform: scale(1.06);
    transform-origin: 50% 65%;
  }

  .hero__floating-action {
    grid-row: 2;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(300px, calc(100vw - 150px)) !important;
    margin: 0 auto 0;
    padding: 0 10px 10px;
    transform: none;
  }

  .button--hero-outline.button--promo-main {
    height: auto;
    min-height: 0;
    top: -50px;
    padding: 0;
    border-radius: 4.9% / 15%;
    gap: 0;
  }
}

/* Client typography pass */
#duet .section-heading h2,
#orchestra .section-heading h2,
#contacts .section-heading h2,
#main-show .eyebrow {
  font-family: "Alegreya SC", "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.025em;
}

#duet .section-heading h2,
#orchestra .section-heading h2,
#main-show .eyebrow {
  color: var(--gold-bright);
}

.soloist-row__copy h3 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
  text-align: center;
}

.soloist-row__copy p {
  font-family: "Caveat", cursive;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: center;
}

.feature-layout__copy p,
.orchestra-layout__copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.38rem, 1.9vw, 1.76rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

#orchestra .section-heading p {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(0.92rem, 1.12vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-transform: none;
}

.accordion-item summary {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.accordion-item li {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  font-weight: 500;
  line-height: 1.35;
}

.orchestra-layout__repertoire-word {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.98em;
  font-weight: 500 !important;
  line-height: 1;
  font-feature-settings: "kern" 1, "liga" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.orchestra-layout__repertoire-queen-img {
  display: inline-block;
  width: auto;
  height: 1.08em;
  vertical-align: -0.23em;
}

.site-header__contacts span,
.contact-name {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button--tech-rider {
  color: #050504 !important;
}

/* Final visual fixes: soloist copy, promo parity, orchestra crop, contact icons. */
.soloist-row .promo-card--duet {
  width: min(100%, 500px);
  min-height: 650px;
  height: 100%;
  justify-self: stretch;
}

.soloist-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
}

.soloist-row--reverse .soloist-row__content {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(390px, 430px) minmax(250px, 320px);
  gap: 20px;
  justify-content: center;
  overflow: visible;
}

.soloist-row--reverse .promo-card--duet-v2 {
  border-radius: 56px;
  width: min(100%, 430px);
  min-height: 650px;
  padding: 22px 22px;
  gap: 16px;
  justify-self: start;
  margin-left: 12px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 239, 196, 0.1), transparent 38%),
    linear-gradient(165deg, rgba(26, 23, 19, 0.88), rgba(9, 9, 8, 0.78));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(247, 220, 155, 0.26);
}

.soloist-row--reverse .soloist-row__copy {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  padding: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  align-self: center;
  transform: none;
  overflow: visible;
}

.soloist-row--reverse .soloist-row__copy h3 {
  display: block;
  padding-left: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.12;
  margin-bottom: 18px;
  overflow: visible;
  transform: translateX(10px);
}

.soloist-row--reverse .soloist-row__copy p {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.1;
}

.soloist-row--reverse .soloist-row__media {
  position: relative;
  z-index: 1;
}

.main-show-grid .promo-card--gold-filled {
  background: linear-gradient(135deg, #f1d497 0%, #c29548 100%) !important;
  color: #23180b !important;
}

.main-show-grid .promo-card--gold-filled .promo-card__eyebrow {
  color: rgba(61, 34, 4, 0.78) !important;
}

.main-show-grid .promo-card--gold-filled .promo-card__icon {
  color: var(--emerald) !important;
  background: rgba(255, 241, 209, 0.92) !important;
  border-color: rgba(128, 92, 27, 0.82) !important;
}

.soloist-row .promo-card__icon svg path {
  fill: #087b54;
  stroke: #d4aa58;
}

.main-show-grid .promo-card--large {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.main-show-grid .promo-card--large .promo-card__title {
  margin: 0 auto;
}

#orchestra .orchestra-layout {
  width: min(1280px, 100%);
  grid-template-columns: minmax(320px, 1fr) minmax(560px, 720px) !important;
  gap: 32px;
  align-items: start;
}

#orchestra .orchestra-layout.panel {
  padding: 26px;
}

#orchestra .orchestra-layout__media {
  width: 100%;
  aspect-ratio: 2752 / 1536;
  min-height: 0;
  border-radius: 26px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

#orchestra .orchestra-layout__aside {
  display: grid;
  align-content: start;
  gap: 16px;
}

#orchestra .orchestra-layout__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
  transform: none;
}

#orchestra .orchestra-layout__copy {
  padding: 0;
  display: grid;
  align-content: start;
  padding-top: 8px;
}

#orchestra .orchestra-layout .promo-card--wide {
  min-height: 170px;
  margin-top: 0;
  text-align: center;
  justify-items: center;
}

@media (max-width: 900px) {
  #orchestra .orchestra-layout {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  #orchestra .orchestra-layout.panel {
    padding: 0 0 26px;
  }

  #orchestra .orchestra-layout__aside {
    gap: 0;
  }

  #orchestra .orchestra-layout__media {
    order: -1;
    aspect-ratio: auto;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
  }

  #orchestra .orchestra-layout__media img {
    height: auto;
    object-fit: contain;
  }

  #orchestra .orchestra-layout__copy {
    padding: 0 26px;
  }

  #orchestra .orchestra-layout .promo-card--wide {
    margin-top: 12px;
    text-align: center;
    justify-items: center;
  }
}

.repertoire-hero .button--glass {
  background: rgba(12, 11, 9, 0.26);
  color: var(--gold-bright);
  border-color: rgba(241, 212, 151, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 248, 226, 0.12), 0 10px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px) saturate(1.02);
}

.repertoire-hero .button--glass.button--tech-rider {
  color: var(--gold-bright) !important;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0;
  white-space: nowrap;
  min-width: 0;
  padding-left: 24px;
  padding-right: 24px;
  background: rgba(12, 11, 9, 0.26);
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.repertoire-hero .button--glass:not(.button--tech-rider) {
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.repertoire-hero .button--gold {
  background: linear-gradient(135deg, #f3da9a 0%, #cfa14b 100%);
  color: #23180b;
  border-color: rgba(241, 212, 151, 0.88);
  box-shadow: 0 18px 40px rgba(187, 141, 66, 0.24);
}

.repertoire-hero .button--repertoire-primary {
  min-height: 74px;
  padding-left: 48px;
  padding-right: 48px;
  font-size: 0.96rem;
  font-weight: 800;
}

.contact-card__icon {
  color: #f8f4eb;
  border: 2px solid rgba(199, 163, 100, 0.86);
  background: radial-gradient(circle at 30% 30%, rgba(62, 193, 164, 0.98), rgba(9, 109, 88, 0.92));
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 34;
  padding: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner__panel {
  width: min(980px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px) saturate(1.06);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-banner.is-visible .cookie-banner__panel {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__text {
  margin: 0;
  color: rgba(35, 24, 11, 0.86);
  font-size: 0.98rem;
  line-height: 1.45;
}

.cookie-banner__link {
  color: rgba(187, 141, 66, 1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__accept.button {
  min-height: 44px;
  padding: 0 18px;
}

.cookie-banner__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(35, 24, 11, 0.72);
  cursor: pointer;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner__panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 14px;
  }

  .cookie-banner__actions {
    justify-content: space-between;
  }

  .cookie-banner__close {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 641px) {
  .repertoire-hero .button-row {
    width: min(100%, 1040px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .repertoire-hero .button {
    min-height: 74px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.repertoire-note {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 1.85vw, 1.72rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--gold-bright);
}

@media (max-width: 640px) {
  .repertoire-hero__image {
    object-fit: contain;
    object-position: center top;
  }

  .repertoire-hero__content {
    align-items: flex-end;
    padding-bottom: 18px;
  }

  .repertoire-hero .button--glass.button--tech-rider {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .soloist-row--reverse .soloist-row__content {
    grid-template-columns: 1fr;
  }

  .soloist-row--reverse .soloist-row__copy {
    max-width: none;
    transform: none;
  }
}

/* Hero desktop: полный кадр без жесткого кропа, кнопка отдельным рядом под фото. */
@media (min-width: 721px) {
  .hero {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 0;
    height: min(calc(100svh - 90px), calc(100dvh - 90px));
    min-height: 0;
    max-height: min(calc(100svh - 90px), calc(100dvh - 90px));
    padding: 20px 0 0;
    background: #ffffff;
    overflow: hidden;
  }

  .hero__image {
    grid-row: 1;
    place-self: end center;
    width: 100% !important;
    max-width: none;
    height: 100% !important;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
    transform: scale(0.96);
    transform-origin: 50% 0%;
  }

  .hero__floating-action {
    grid-row: 2;
    width: min(420px, calc(100vw - 92px));
    margin-top: -116px;
    padding: 2px 12px 8px;
  }
}

@media (min-width: 721px) and (max-height: 1400px) {
  .hero__image {
    transform: scale(0.98);
  }
}

@media (min-width: 721px) and (max-width: 1600px) {
  .hero {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 0;
    position: relative;
    height: min(calc(100svh - 90px), calc(100dvh - 90px));
    min-height: 0;
    max-height: min(calc(100svh - 90px), calc(100dvh - 90px));
    padding-top: 20px;
    overflow: hidden;
  }

  .hero__image {
    position: relative;
    inset: auto;
    left: auto;
    bottom: auto;
    grid-row: 1;
    place-self: end center;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    max-width: none;
    object-fit: contain;
    object-position: center top;
    transform: scale(0.95);
    transform-origin: 50% 0%;
  }

  .hero__floating-action {
    position: relative;
    left: auto;
    bottom: auto;
    grid-row: 2;
    width: min(390px, calc(100vw - 120px));
    margin: -98px auto 0;
    padding: 0 12px 6px;
    transform: none;
    z-index: 2;
  }
}

.show-statement {
  padding-top: 72px;
}

.show-statement__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  isolation: isolate;
}

.show-statement__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: min(420px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(241, 212, 151, 0.86), transparent);
  animation: show-statement-line 3.6s ease-in-out infinite;
}

.show-statement__brand {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.26em;
}

.show-statement__marquee {
  position: relative;
  width: min(100%, 1180px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.show-statement__track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: show-statement-marquee 12s linear infinite;
}

.show-statement__track span {
  flex: 0 0 auto;
  margin: 0;
  font-family: "Alegreya SC", "Cormorant Garamond", serif;
  color: var(--text);
  font-size: clamp(2.05rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 0 22px rgba(241, 212, 151, 0.12);
}

@keyframes show-statement-line {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) scaleX(0.86);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes show-statement-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 28px));
  }
}

@media (max-width: 900px) {
  .show-statement__marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .show-statement__track {
    width: 100%;
    display: block;
    animation: none;
  }

  .show-statement__track span {
    display: block;
    white-space: normal;
    text-align: center;
  }

  .show-statement__track span + span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .soloist-row .promo-card--duet {
    min-height: 380px;
  }

  .soloist-row--reverse .promo-card--duet-v2 {
    width: 100%;
    min-height: 380px;
    margin-left: 0;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .soloist-row .promo-card--duet {
    min-height: 320px;
  }

  .soloist-row--reverse .promo-card--duet-v2 {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .soloist-row .promo-card--duet {
    min-height: 260px;
  }

  .soloist-row--reverse .promo-card--duet-v2 {
    min-height: 260px;
  }
}
