/* ============================================================
   Mandi Ellefson - Speaker Hub Landing Page
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: #040911;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

p { text-wrap: pretty; max-width: 72ch; }

a { color: inherit; text-decoration: none; }
a, button, [role='button'], input, textarea, select {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

::selection { background: rgba(35, 186, 224, 0.3); color: #fff; }
:focus-visible { outline: 2px solid #23bae0; outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --bg-black: #040911;
  --bg-navy: #0d1b2a;
  --bg-navy-mid: #2b4a6c;
  --cyan: #23bae0;
  --cyan-hover: #1da3c6;
  --coral: #fa5050;
  --coral-soft: rgba(250, 80, 80, 0.15);
  --ice: #e4faff;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.6);
  --muted-40: rgba(255,255,255,0.4);
  --muted-15: rgba(255,255,255,0.15);
  --muted-08: rgba(255,255,255,0.08);
  --muted-04: rgba(255,255,255,0.04);
  --gold-warm: rgba(255, 180, 50, 0.08);

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3.5rem, 1rem + 8vw, 9rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: 860px; }

.section {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}
.section--dark { background-color: var(--bg-black); }
.section--navy { background-color: var(--bg-navy); }
.section--gradient {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-navy) 50%, var(--bg-black) 100%);
}
.section--light {
  background-color: var(--ice);
  color: var(--bg-black);
}

/* ---------- SECTION DIVIDERS (coral & cyan accent lines) ---------- */
.section-divider {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.section-divider--coral {
  background: linear-gradient(90deg, var(--coral), transparent);
}
.section-divider--cyan {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.text-cyan { color: var(--cyan); }
.text-coral { color: var(--coral); }
.accent { color: var(--cyan); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-label--cyan { color: var(--cyan); }
.section-label--coral { color: var(--coral); }
.section-label--dark { color: var(--bg-navy-mid); }

.section__headline {
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 24ch;
}
.section__headline--md { font-size: var(--text-xl); }
.section__headline--dark { color: var(--bg-black); }
.section--light .section__headline { color: var(--bg-black); }

.section__body {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
}
.section__body p + p { margin-top: 1rem; }
.section__body--narrow { max-width: 640px; }
.section__body--dark { color: rgba(4, 9, 17, 0.7); max-width: 640px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn--cyan {
  background: var(--cyan);
  color: var(--bg-black);
}
.btn--cyan:hover { background: var(--cyan-hover); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--muted-40);
}
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--sm { padding: 0.625rem 1.5rem; font-size: var(--text-xs); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(4, 9, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--muted-08);
  transition: background 300ms ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo svg { flex-shrink: 0; }
.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__links a:hover { color: var(--white); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner .btn--sm { font-size: 0.75rem; padding: 0.5rem 1rem; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-black);
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Animated background gradient */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(35, 186, 224, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(250, 80, 80, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(255, 180, 50, 0.03) 0%, transparent 50%);
  animation: heroGradientShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGradientShift {
  0% { opacity: 0.7; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 0.8; transform: scale(1.02) translateY(5px); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* HERO NAME — Montserrat Black 900 */
.hero__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-hero);
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(35, 186, 224, 0.3);
  border-radius: var(--radius-full);
  background: rgba(35, 186, 224, 0.08);
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- HERO PHOTO ---------- */
.hero__photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  border-radius: 16px;
  overflow: hidden;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}
/* Warm color overlay tint for the photo */
.hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 180, 50, 0.08) 0%,
    rgba(255, 120, 30, 0.05) 50%,
    rgba(4, 9, 17, 0.3) 100%
  );
  pointer-events: none;
}
/* Cyan glow around the photo */
.hero__photo-glow {
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: transparent;
  box-shadow:
    0 0 40px rgba(35, 186, 224, 0.15),
    0 0 80px rgba(35, 186, 224, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: -1;
  pointer-events: none;
}

/* Photo placeholder (kept for about section) */
.photo-placeholder {
  background: linear-gradient(135deg, var(--bg-navy-mid) 0%, var(--bg-navy) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--muted-15);
}
.photo-placeholder span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--muted-40);
  letter-spacing: 0.05em;
}
.photo-placeholder--portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 560px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__photo {
    max-width: 320px;
  }
  .hero__name { font-size: clamp(2.75rem, 1rem + 7vw, 5rem); }
}
@media (max-width: 500px) {
  .hero { padding-top: 5rem; }
  .hero__name { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
}

/* ---------- ABOUT ---------- */
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(35, 186, 224, 0.15);
  border: 1px solid rgba(35, 186, 224, 0.2);
}
.about__photo {
  aspect-ratio: 3 / 4;
  max-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.about__text p {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}
.about__text p + p { margin-top: 1rem; }

/* ---------- STATS ROW (enhanced) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--muted-15);
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--cyan);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(35, 186, 224, 0.3), 0 0 60px rgba(35, 186, 224, 0.1);
}
.stat__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.375rem;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 320px; }
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat__number { font-size: var(--text-xl); }
}

/* ---------- SPEAKING TOPICS (enhanced cards) ---------- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.topic-card {
  background: linear-gradient(165deg, rgba(13, 27, 42, 0.9) 0%, rgba(4, 9, 17, 0.95) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(35, 186, 224, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Cyan-accented cards */
.topic-card--cyan {
  border-top: 4px solid var(--cyan);
  box-shadow: 0 4px 24px rgba(35, 186, 224, 0.08);
}
.topic-card--cyan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.6;
}
.topic-card--cyan::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(4, 9, 17, 0.4));
  pointer-events: none;
}

/* Coral-accented cards */
.topic-card--coral {
  border-top: 4px solid var(--coral);
  box-shadow: 0 4px 24px rgba(250, 80, 80, 0.06);
  border-color: rgba(250, 80, 80, 0.15);
}
.topic-card--coral::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
  opacity: 0.6;
}
.topic-card--coral::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(4, 9, 17, 0.4));
  pointer-events: none;
}

.topic-card__num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--muted-08);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.topic-card__title {
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.topic-card__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .topics-grid { grid-template-columns: 1fr; }
}

/* ---------- FRAMEWORK (enhanced) ---------- */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.framework-item {
  position: relative;
  padding: 2rem;
  background: linear-gradient(165deg, rgba(13, 27, 42, 0.5) 0%, rgba(4, 9, 17, 0.3) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(35, 186, 224, 0.1);
  border-top: 3px solid rgba(35, 186, 224, 0.4);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.framework-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(35, 186, 224, 0.08);
}
.framework-item__num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--muted-08);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.framework-item__title {
  font-size: var(--text-lg);
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.framework-item__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}
.framework-item__result {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--muted-08);
  font-style: italic;
}

@media (max-width: 768px) {
  .framework-grid { grid-template-columns: 1fr; gap: 2rem; }
  .framework-item { padding: 1.5rem; }
}

/* ---------- PROOF / CASE STUDIES (enhanced) ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.proof-card {
  background: linear-gradient(170deg, rgba(4, 9, 17, 0.95) 0%, rgba(13, 27, 42, 0.6) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--muted-15);
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.proof-card:hover {
  transform: translateY(-2px);
}

/* Cyan variant */
.proof-card--cyan {
  border-left: 4px solid var(--cyan);
  box-shadow: 0 4px 24px rgba(35, 186, 224, 0.06);
}
/* Coral variant */
.proof-card--coral {
  border-left: 4px solid var(--coral);
  box-shadow: 0 4px 24px rgba(250, 80, 80, 0.06);
}

.proof-card__header { margin-bottom: 1.25rem; }
.proof-card__name {
  font-size: var(--text-lg);
  color: var(--white);
  line-height: 1.2;
}
.proof-card__role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--cyan);
  margin-top: 0.25rem;
}
.proof-card--coral .proof-card__role {
  color: var(--coral);
}
.proof-card__quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}
.proof-card--coral .proof-card__quote {
  border-left-color: var(--coral);
}
.proof-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--muted-08);
}
.proof-stat { text-align: center; }
.proof-stat__value {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: var(--text-sm);
  color: var(--cyan);
  line-height: 1.2;
}
.proof-card--coral .proof-stat__value {
  color: var(--coral);
}
.proof-stat__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  color: var(--muted-40);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

.proof-badge {
  text-align: center;
  margin-top: 3rem;
}
.proof-badge__text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--cyan);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(35, 186, 224, 0.3);
  border-radius: var(--radius-full);
  background: rgba(35, 186, 224, 0.06);
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---------- VIDEO ---------- */
.video__subtitle {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 0.5rem;
}
.video-wrapper {
  margin-top: 2rem;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--muted-15);
  box-shadow: 0 0 60px rgba(35, 186, 224, 0.1), 0 0 120px rgba(35, 186, 224, 0.05);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- EVENTS (enhanced) ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.event-card {
  background: var(--bg-black);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--muted-15);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.event-card--styled {
  background: linear-gradient(170deg, rgba(4, 9, 17, 0.95) 0%, rgba(13, 27, 42, 0.5) 100%);
  border-top: 3px solid rgba(250, 80, 80, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.event-card--styled:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(35, 186, 224, 0.08);
}
.event-card--accent { border-color: rgba(35, 186, 224, 0.3); border-top-color: rgba(35, 186, 224, 0.5); }
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  flex-shrink: 0;
}
.event-card__month {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-card__day {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: var(--text-xl);
  color: var(--white);
  line-height: 1.1;
}
.event-card__year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--muted);
}
.event-card__title {
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: 0.25rem;
}
.event-card__topic {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}
.event-card__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-top: 0.625rem;
}
.event-card__badge--confirmed { background: rgba(35, 186, 224, 0.15); color: var(--cyan); }
.event-card__badge--target { background: rgba(250, 80, 80, 0.15); color: var(--coral); }
.event-card__badge--open { background: rgba(35, 186, 224, 0.15); color: var(--cyan); }

.events-cta {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---------- BOOK PREVIEW ---------- */
.book-form {
  margin-top: 2rem;
}
.book-form__fields {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
}
.book-form__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(4, 9, 17, 0.15);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--bg-black);
  font-size: var(--text-sm);
}
.book-form__input::placeholder { color: rgba(4, 9, 17, 0.4); }
.book-form__input:focus { outline: none; border-color: var(--cyan); }
.book-form__success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--bg-navy);
}

@media (max-width: 500px) {
  .book-form__fields { flex-direction: column; }
  .book-form__fields .btn { width: 100%; }
}

/* ---------- FOOTER (warmer) ---------- */
.footer {
  background: linear-gradient(180deg, var(--bg-black) 0%, #081420 40%, var(--bg-black) 100%);
  padding-top: clamp(5rem, 10vw, 10rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
  border-radius: 2px;
}
.footer__headline {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__sub {
  font-size: var(--text-lg);
  color: var(--muted);
  margin: 0 auto 1rem;
  max-width: 52ch;
}
.footer__sub-secondary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--cyan);
  margin: 0 auto 2rem;
}
.footer__email {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--cyan);
  margin-bottom: 2rem;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(35, 186, 224, 0.2);
}
.footer__email:hover { opacity: 0.8; }
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--muted-15);
  color: var(--muted);
}
.footer__social a:hover { color: var(--cyan); border-color: var(--cyan); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--muted-08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--muted-40);
}
.footer__hoc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--muted-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__hoc:hover { color: var(--cyan); }

@media (max-width: 500px) {
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
