/* ==========================================================================
   HOME PAGE
   Hero, social proof bar, offerings, performances grid.
   ========================================================================== */

/* HERO ------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background reel: local video element fills hero with object-fit cover. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background:
    linear-gradient(135deg, #0E1014 0%, #1A1D24 50%, #2A1F1A 100%);
}

/* Overlay: dark fade on the left for text readability,
   brand glow on the right where the action is. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 16, 20, 0.85) 0%, rgba(14, 16, 20, 0.55) 35%, rgba(14, 16, 20, 0.2) 65%, rgba(14, 16, 20, 0.45) 100%),
    linear-gradient(180deg, rgba(14, 16, 20, 0.3) 0%, transparent 25%, rgba(14, 16, 20, 0.55) 100%),
    radial-gradient(ellipse at 75% 50%, rgba(200, 168, 107, 0.18), transparent 60%),
    radial-gradient(ellipse at 20% 90%, rgba(92, 42, 47, 0.35), transparent 55%);
}

/* Reduce motion: pause the video for users who request it. */
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation-play-state: paused; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  width: 100%;
}

/* Sound toggle button (small, unobtrusive, bottom-right of hero) */
.hero-sound {
  position: absolute;
  bottom: 32px; right: 48px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.35);
  background: rgba(14, 16, 20, 0.5);
  backdrop-filter: blur(8px);
  color: rgba(245, 241, 232, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 16px;
}
.hero-sound:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(14, 16, 20, 0.7);
}
.hero-sound[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-content { max-width: 620px; }
.hero-byline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.hero-eyebrow { color: var(--gold); display: inline-block; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-tagline {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.82);
  margin-bottom: 14px;
  max-width: 540px;
  font-weight: 300;
}
.hero-meta {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 241, 232, 0.5);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(245, 241, 232, 0.4);
  margin: 14px auto 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* SOCIAL PROOF BAR ------------------------------------------------------- */
.proof {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 48px;
  border-bottom: 1px solid var(--line);
}
.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.proof-list {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 232, 0.85);
}
.proof-list span { display: flex; align-items: center; gap: 8px; }
.proof-divider { color: rgba(245, 241, 232, 0.25); }

/* OFFERINGS -------------------------------------------------------------- */
.offerings { background: var(--cream); }
.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.offering {
  position: relative;
  padding: 56px 48px;
  background: var(--cream-warm);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}
.offering::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.offering:hover {
  transform: translateY(-8px);
  border-color: var(--gold-deep);
  box-shadow: 0 24px 50px rgba(14, 16, 20, 0.12);
}
.offering:hover::before { transform: scaleX(1); }
.offering:hover .offering-link { color: var(--gold-deep); }
.offering:hover .offering-link::after { transform: translateX(8px); }
.offering-eyebrow {
  color: var(--gold-deep);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.offering h3 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}
.offering p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.offering-meta {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s;
  margin-bottom: 24px;
}
.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.3s;
}
.offering:hover .offering-link::after { transform: translateX(6px); }
.offering-link::after {
  content: '\2192';
  transition: transform 0.25s;
}

/* HOMEPAGE PERFORMANCES GRID --------------------------------------------- */
.performances {
  background: var(--ink);
  color: var(--cream);
}
.perf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 600px;
}
.perf {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  background: linear-gradient(135deg, #2A1F1A, #4A3525, #1A1D24);
}
.perf:nth-child(1) { grid-row: 1 / 3; }
.perf .yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.perf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 20, 0.95) 0%, rgba(14, 16, 20, 0.3) 50%, transparent 100%);
  z-index: 1;
}
.perf-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}
.perf-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.perf-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.perf:nth-child(1) .perf-title { font-size: 36px; }
.perf-venue {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.6);
  letter-spacing: 0.05em;
}
.perf-play {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(245, 241, 232, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s;
}
.perf:hover .perf-play { background: var(--gold); border-color: var(--gold); }
.perf-play::before {
  content: '';
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--cream);
  margin-left: 3px;
  transition: border-left-color 0.3s;
}
.perf:hover .perf-play::before { border-left-color: var(--ink); }

/* MOBILE ----------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 16, 20, 0.55) 0%, rgba(14, 16, 20, 0.35) 30%, rgba(14, 16, 20, 0.85) 100%),
      radial-gradient(ellipse at 50% 90%, rgba(92, 42, 47, 0.3), transparent 60%);
  }
  .hero-inner { padding: 120px 24px 80px; }
  .hero-sound { right: 24px; bottom: 24px; }
  .proof { padding: 22px 20px; }
  .proof-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }
  .proof-label { display: block; }
  .proof-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    justify-items: center;
    font-size: 12px;
    letter-spacing: 0.05em;
    width: 100%;
  }
  .proof-list .proof-divider { display: none; }
  .proof-list span { justify-content: center; }
  .offering-grid { grid-template-columns: 1fr; }
  .offering { padding: 40px 28px; min-height: auto; }
  .offering h3 { font-size: 32px; }
  .perf-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    height: auto;
  }
  .perf:nth-child(1) { grid-row: auto; }
}
