/* ── Events Index — Edify design system ── */
:root {
  --white: #ffffff;
  --bg: #ededed;
  --black: #000000;
  --accent: #2a967d;
  --gray: #949494;
  --gray-dark: #474747;
}

/* ── PAGE HEADER (full-bleed video; no hero text) ── */
.ev-page-header {
  background: var(--bg);
  position: relative;
  min-height: 55vh;
  overflow: hidden;
}
.ev-page-header-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}
.ev-page-header-bg.is-fallback {
  background: linear-gradient(160deg, #1a1520 0%, #2a1f35 50%, #1a2030 100%);
}
.ev-page-header-bg.is-fallback .ev-hero-video {
  display: none;
}
.ev-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
/* ── WHITE CARD LIFT ── */
.ev-white-lift {
  position: relative; z-index: 2;
  margin-top: -60px;
  border-radius: 60px 60px 0 0;
  background: var(--white);
  box-shadow: 0 0 10px -5px var(--black);
  overflow: hidden;
}

/* ── CONTENT AREA ── */
.ev-content {
  width: 100%; max-width: 1000px;
  margin: 0 auto; padding: 100px 40px 120px;
}

/* ── TO BE ANNOUNCED ── */
.ev-tba {
  display: flex; flex-direction: column; gap: 24px;
}
.ev-tba-label {
  font-family: 'Outfit', sans-serif; font-weight: 400;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray); margin: 0;
}
.ev-tba-heading {
  font-family: 'Judson', serif; font-style: italic;
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: -0.04em; line-height: 0.95em;
  color: var(--black); margin: 0;
}
.ev-tba-body {
  font-family: 'Outfit', sans-serif; font-weight: 400;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: -0.02em; line-height: 1.45em;
  color: var(--gray-dark); margin: 0;
}

/* ── BIG CTA ── */
.ev-big-cta {
  display: flex; align-items: center; justify-content: space-evenly;
  width: 100%; height: 300px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  text-decoration: none; overflow: hidden; position: relative;
  transition: background 0.3s;
}
.ev-big-cta:hover { background: var(--black); }
.ev-big-cta-text {
  font-family: 'Outfit', sans-serif; font-weight: 350;
  font-size: clamp(40px, 10vw, 160px);
  letter-spacing: -0.06em; line-height: 0.9em;
  color: var(--black); transition: color 0.3s; text-align: center;
}
.ev-big-cta:hover .ev-big-cta-text { color: var(--white); }
.ev-big-cta-circle {
  width: 175px; height: 175px; border-radius: 50%;
  border: 1px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color 0.3s;
}
.ev-big-cta:hover .ev-big-cta-circle { border-color: var(--white); }
.ev-big-cta-circle svg { transition: stroke 0.3s; }
.ev-big-cta:hover .ev-big-cta-circle svg { stroke: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ev-page-header-inner { padding: 100px 25px 60px; }
  .ev-content { padding: 60px 25px 80px; }
  .ev-big-cta-circle { width: 60px; height: 60px; }
}
@media (max-width: 600px) {
  .ev-white-lift { border-radius: 30px 30px 0 0; }
}
