:root {
  --ink: #08090a;
  --stage: #101419;
  --wine: #5b1726;
  --moss: #1f4f45;
  --brass: #caa15c;
  --paper: #f6efe2;
  --muted: #c8beb0;
  --line: rgba(246, 239, 226, 0.16);
  --panel: rgba(14, 17, 20, 0.76);
  --panel-strong: rgba(20, 23, 27, 0.92);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(16, 20, 25, 0.98)),
    var(--ink);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(246, 239, 226, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.32) 1px, transparent 1px);
  background-size: 72px 72px;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 9, 10, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: var(--brass);
  font-style: italic;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.94rem;
}

.nav-links a,
.language-switch a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.language-switch a:hover,
.text-link:hover {
  color: var(--paper);
  border-color: var(--brass);
}

.language-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-switch a {
  display: grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.language-switch a[aria-current="true"] {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 64px) 76px;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 10, 0.92) 0%, rgba(8, 9, 10, 0.7) 43%, rgba(8, 9, 10, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.88) 0%, rgba(8, 9, 10, 0.18) 48%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(90deg, var(--wine), var(--moss), var(--brass));
}

.hero-inner {
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow,
.tag {
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  font-size: 4.9rem;
}

.hero-lead {
  max-width: 710px;
  margin-top: 22px;
  color: #eee4d6;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #11100d;
  background: var(--brass);
  border-color: var(--brass);
}

.button.secondary {
  color: var(--paper);
  background: rgba(246, 239, 226, 0.08);
}

.button.wide {
  width: 100%;
}

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

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--stage);
}

.metric-band span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.split,
.image-split,
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.section-copy {
  max-width: 680px;
}

.section-copy.compact {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-copy h2,
.feature-program h2 {
  font-size: 3.1rem;
}

.section-copy p,
.program-copy p,
.feature-program p,
.format-panel p,
.faq p {
  color: var(--muted);
  font-size: 1rem;
}

.section-copy h2 + p,
.feature-program h2 + p {
  margin-top: 18px;
}

.direction-grid,
.list-panel,
.format-panel,
.booking-panel,
.repertoire {
  display: grid;
  gap: 12px;
}

.direction-card,
.program-card,
.feature-program,
.format-panel,
.booking-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.direction-card {
  min-height: 170px;
  display: grid;
  align-content: end;
  padding: 22px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.direction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background: linear-gradient(135deg, rgba(91, 23, 38, 0.84), rgba(31, 79, 69, 0.58));
}

.direction-card.music::before {
  background: linear-gradient(135deg, rgba(31, 79, 69, 0.84), rgba(202, 161, 92, 0.5));
}

.direction-card span,
.direction-card strong {
  position: relative;
  z-index: 1;
}

.direction-card span {
  color: var(--brass);
  font-weight: 800;
}

.direction-card strong {
  margin-top: 8px;
  font-size: 1.28rem;
  line-height: 1.28;
}

.image-split img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  color: var(--muted);
  position: relative;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 0.58em;
  background: var(--brass);
  border-radius: 2px;
}

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

.program-card {
  overflow: hidden;
}

.program-copy {
  padding: 22px;
}

.program-copy h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(91, 23, 38, 0.28), rgba(31, 79, 69, 0.28)),
    #050607;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-program {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.list-panel span,
.repertoire span,
.format-panel p {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.05);
  color: var(--paper);
  font-weight: 800;
}

.stage-band {
  width: 100%;
  max-width: none;
  min-height: 460px;
  display: grid;
  place-items: center start;
  padding: 86px clamp(18px, 5vw, 64px);
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 10, 0.9), rgba(8, 9, 10, 0.32)),
    var(--stage-image);
  background-position: center;
  background-size: cover;
}

.video-section .video-frame {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.format-panel,
.booking-panel {
  padding: 24px;
}

.format-panel h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.gallery-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.gallery-strip img:first-child {
  height: 430px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-top: 12px;
}

.booking-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 92px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(91, 23, 38, 0.34), rgba(31, 79, 69, 0.28)),
    var(--panel-strong);
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-line strong {
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 50px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer p {
  max-width: 680px;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 3.7rem;
  }

  .metric-band,
  .program-grid,
  .split,
  .image-split,
  .booking-section,
  .feature-program,
  .gallery-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .metric-band span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-section {
    padding: 28px;
  }

  .gallery-strip img,
  .gallery-strip img:first-child {
    height: 290px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1.42rem;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 32px;
  }

  .hero {
    min-height: 88svh;
    padding: 134px 18px 58px;
    background-position: 58% center;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1160px);
    padding: 62px 0;
  }

  .section-copy h2,
  .feature-program h2 {
    font-size: 2.35rem;
  }

  .program-copy h3,
  .format-panel h3 {
    font-size: 1.72rem;
  }

  .stage-band {
    min-height: 380px;
    padding: 62px 18px;
  }
}
