:root {
  --black: #111;
  --ink: #1c1c1c;
  --muted: #6a6a6a;
  --line: #e8e8e8;
  --white: #fff;
  --cream: #f6f3ee;
  --gold: #c4a574;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img, video, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.btn-header,
.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
body:not(.has-hero) .site-header {
  background: rgba(17,17,17,.94);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
}

.logo {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 22px;
}

.nav-desktop a,
.nav-mobile a {
  color: #ececec;
  font-size: 13px;
  letter-spacing: .04em;
}

.header-mobile { display: none; margin-left: auto; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 8px;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: #fff;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 28px 24px;
  background: rgba(17,17,17,.96);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.hero-media,
.hero-placeholder,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder { background: #1a1a1a; }

.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5.4vw, 68px);
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 18px;
  color: #eee;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-proof {
  margin: 28px 0 0;
  font-size: 13px;
  letter-spacing: .06em;
  color: #d8d8d8;
}

.site-main { background: var(--white); }

.site-main--page { padding: 120px 0 80px; }

.page-intro {
  max-width: 720px;
}

.page-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 56px);
}

.performers-intro.block {
  padding-top: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  margin-top: 28px;
}

.video-card h2 {
  margin: 12px 0 0;
  font-size: 22px;
}

.media-video.is-short {
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin-inline: auto;
}

.block {
  padding: 88px 0;
}

.block-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.block h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
}

.kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px 24px;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.78) 100%);
}

.card > *:not(.card-media) {
  position: relative;
  z-index: 1;
}

.card h3 { margin: 0 0 8px; font-size: 28px; }
.card p { margin: 0 0 16px; color: #ddd; }
.card-link { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

.card-featured {
  box-shadow: inset 0 0 0 1px rgba(196,165,116,.55);
}

.card-featured p { color: #cfcfcf; }

.card-badge {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.media-slot {
  min-height: 420px;
  background: #ddd;
}

.media-video {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.media-video iframe,
.yt-mount,
.yt-mount iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-toggle {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.js-yt-wrap.is-playing .yt-poster,
.js-yt-wrap.is-playing .yt-toggle {
  background: transparent;
}

.js-yt-wrap.is-playing .yt-poster {
  opacity: 0;
  pointer-events: none;
}

.yt-toggle-icon {
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(17, 17, 17, .35);
  position: relative;
}

.yt-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}

.js-yt-wrap.is-playing .yt-toggle {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
}

.js-yt-wrap.is-playing .yt-toggle-icon {
  width: 42px;
  height: 42px;
}

.js-yt-wrap.is-playing .yt-toggle-icon::after {
  left: 50%;
  width: 10px;
  height: 14px;
  border: 0;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -50%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
}

.points { display: grid; gap: 10px; padding: 0; margin: 20px 0 28px; }
.points li { list-style: none; padding-left: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.step small {
  display: block;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  background: #111;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-grid a:nth-child(3n) img { height: 320px; }

.media-photo {
  min-height: 0;
  background: #111;
  overflow: hidden;
}

.media-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  text-align: center;
}

.cta-media {
  position: absolute;
  inset: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.cta-band .block-inner { position: relative; z-index: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.88);
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin: 32px auto 0;
  position: relative;
}

.form label { font-size: 14px; }
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  font: inherit;
}

.form textarea { min-height: 110px; }

.form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.logo img {
  display: block;
  max-height: 48px;
  width: auto;
}

.custom-logo-link { display: block; }

.site-footer {
  background: #0c0c0c;
  color: #cfcfcf;
  padding: 64px 28px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  width: min(1120px, 100%);
  margin: 0 auto 40px;
}

.footer-grid h2 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 12px;
}

.footer-grid nav,
.footer-grid p { display: grid; gap: 8px; }

.footer-logo { color: #fff; margin: 0 0 12px; }

.footer-copy {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 18px;
  font-size: 13px;
}
