﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #CC3318;
  --orange: #F05228;
  --ember: #FF7040;
  --cream: #EFE7DE; --body-text: #3A3330;
  --dark: #0D0D0D;
  --wine-not: #8B2F3C;
  --gold-line: rgba(255, 218, 175, 0.22);
  --gold-soft: rgba(196, 122, 0, 0.12);
  --event-accent: #CC3318;
  --event-accent-secondary: #F05228;
  --event-accent-soft: rgba(204, 51, 24, 0.12);
  --event-hero-wash-glow: rgba(255, 140, 70, 0.16);
  --event-hero-wash-accent: rgba(204, 51, 24, 0.1);
}
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--dark); }
.page { min-height: 100vh; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 769px) {
  .nav { padding: 20px 40px; }
}
.nav-logo img { height: 30px; display: block; }
@media (min-width: 769px) {
  .nav-logo img { height: 36px; }
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-ig svg { display: block; }
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(204,51,24,0.4);
}
.nav-toggle {
  display: flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin: -8px -8px -8px 4px;
  border: none; background: transparent; cursor: pointer; color: #fff;
}
@media (min-width: 769px) {
  .nav-toggle { display: none; }
}
.nav-toggle-box { display: block; position: relative; width: 22px; height: 16px; }
.nav-toggle-bar {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), top 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.nav-toggle-bar:nth-child(1) { top: 0; }
.nav-toggle-bar:nth-child(2) { top: 7px; }
.nav-toggle-bar:nth-child(3) { top: 14px; }
.nav.nav-open .nav-toggle-bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle-bar:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 10000; background: #000;
  padding: calc(56px + env(safe-area-inset-top, 0px)) 28px 48px;
  overflow-y: auto;
  transform: translateY(-100%); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.42s;
}
.nav-drawer.is-open {
  transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-drawer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  width: 100%; max-width: 400px; margin: 0 auto; padding-top: 28px;
}
.nav-drawer-link {
  font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 500; line-height: 1.3;
  color: #fff; text-decoration: none; text-align: center; letter-spacing: 0.02em;
  text-transform: none;
}
.nav-drawer-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 280px; padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 700; color: #fff !important; text-decoration: none;
  background: linear-gradient(135deg, var(--red), var(--orange));
}
@media (min-width: 769px) {
  .nav-drawer { display: none !important; visibility: hidden !important; pointer-events: none !important; }
  .nav-links { display: flex !important; }
}
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-drawer { display: block; }
}

/* ——— Cinematic hero (Spotlight-inspired, expanded) ——— */
.ed-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(155deg, #1f140a 0%, #120c08 38%, #080604 100%);
  margin: 0;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--event-accent) 28%, transparent),
    0 0 0 2px rgba(255, 200, 140, 0.06),
    0 0 0 3px rgba(0, 0, 0, 0.28) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 80px -24px rgba(0, 0, 0, 0.45),
    0 0 100px -24px color-mix(in srgb, var(--event-accent) 35%, transparent);
}
.ed-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.68;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.02);
}
.ed-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 58% at 12% 0%, var(--event-hero-wash-glow), transparent 54%),
    radial-gradient(ellipse 55% 48% at 100% 88%, var(--event-hero-wash-accent), transparent 58%),
    radial-gradient(ellipse 70% 40% at 50% 100%, var(--event-hero-wash-accent), transparent 50%),
    linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.4) 44%, rgba(22, 14, 10, 0.32) 100%);
}
.ed-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.065;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255, 245, 230, 0.45) 0.7px, transparent 0.8px);
  background-size: 3px 3px;
}
.ed-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 20px 36px;
}
@media (min-width: 769px) {
  .ed-hero__inner { padding: 120px 40px 48px; }
}
.ed-type-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.95);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--event-accent) 35%, transparent);
  background: color-mix(in srgb, var(--event-accent) 42%, rgba(0, 0, 0, 0.35));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.ed-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 11vw, 76px);
  letter-spacing: 1.5px;
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
}
.ed-hero__partner {
  margin-bottom: 16px;
}
.ed-hero__partner-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.ed-theme--game-show-social .ed-hero__subtitle {
  -webkit-line-clamp: 6;
}
.ed-hero__subtitle {
  font-size: clamp(16px, 4.2vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  max-width: 38em;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ed-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.ed-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.ed-chip time { font-weight: 500; color: rgba(255, 255, 255, 0.75); }
.ed-hero__address {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 10px;
  max-width: 36em;
}
.ed-hero__maps {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 22px;
}
.ed-hero__maps:hover { text-decoration: underline; text-underline-offset: 3px; }
.ed-hero__cta-block {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}
.ed-hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  gap: 12px;
}
.ed-hero__cta-stack .ed-hero__price {
  margin-bottom: 0;
}
.ed-hero__cta-stack .ed-cta-wrap {
  width: 100%;
  align-items: stretch;
}
.ed-hero__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 8vw, 48px);
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.ed-hero__price small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}
.ed-hero__reassure {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
  max-width: 28em;
}
.ed-app-savings {
  width: 100%;
  margin-top: 2px;
}
.ed-app-savings__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 230, 210, 0.95);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.ed-app-savings__trigger:hover {
  color: #fff;
}
.ed-app-savings__panel {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
}
.ed-app-savings__heading {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.ed-app-savings__list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.ed-app-savings__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.ed-app-savings__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: rgba(255, 200, 160, 0.95);
}
.ed-app-savings__cta {
  width: 100%;
  max-width: none;
  font-size: 14px;
  padding: 12px 20px;
}
.ed-final-cta .ed-app-savings__trigger {
  color: rgba(255, 220, 200, 0.95);
}
.ed-final-cta .ed-app-savings__panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.ed-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 320px;
}
.ed-cta-wrap--hero .ed-cta { max-width: none; }
.ed-checkout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.ed-cta-wrap--hero .ed-checkout { max-width: none; }
.ed-checkout__qty-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ed-checkout__qty-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.ed-checkout__qty {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}
.ed-final-cta .ed-checkout__qty-wrap {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}
.ed-final-cta .ed-checkout__qty-label { color: var(--body-text); }
.ed-final-cta .ed-checkout__qty {
  background: #fff;
  color: var(--dark);
  border-color: rgba(0, 0, 0, 0.12);
}
.ed-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.ed-cta--primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--event-accent), var(--event-accent-secondary));
  box-shadow: 0 10px 28px color-mix(in srgb, var(--event-accent) 38%, transparent), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}
.ed-cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--event-accent) 45%, transparent), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}
.ed-cta--ghost {
  color: rgba(255, 255, 255, 0.95) !important;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.ed-cta--ghost:hover { background: rgba(255, 255, 255, 0.06); }
.ed-cta--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ed-final-cta .ed-cta--ghost {
  color: var(--dark) !important;
  border-color: rgba(13, 13, 13, 0.2);
  background: rgba(255, 255, 255, 0.85);
}
.ed-final-cta .ed-cta--disabled {
  background: rgba(13, 13, 13, 0.08);
  color: rgba(13, 13, 13, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.08);
}

/* ——— Content sections (chapter rhythm: distinct bands + warmth) ——— */
.ed-section {
  position: relative;
  padding: 60px 20px 64px;
}
@media (min-width: 769px) {
  .ed-section { padding: 76px 40px 84px; }
}
.ed-section--cream { background: var(--cream); }
.ed-section--paper { background: #fdf8f5; }
.ed-warm-divider-top {
  border-top: 1px solid color-mix(in srgb, var(--event-accent) 22%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.ed-section--warm-spot {
  background:
    radial-gradient(ellipse 88% 60% at 50% 0%, rgba(255, 112, 64, 0.07), transparent 58%),
    var(--cream);
}
.ed-section--warm-spot-alt {
  background:
    radial-gradient(ellipse 72% 45% at 90% 100%, rgba(204, 51, 24, 0.055), transparent 52%),
    var(--cream);
}
/* Chapter backgrounds: alternate warmth + fine grain (no layout change) */
.ed-section--partner {
  background-color: #fffaf6;
  background-image:
    radial-gradient(ellipse 80% 55% at 20% 0%, rgba(15, 95, 143, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 80%, rgba(204, 51, 24, 0.05), transparent 50%),
    radial-gradient(rgba(40, 22, 12, 0.022) 0.6px, transparent 0.7px);
  background-size: 100% 100%, 100% 100%, 14px 14px;
}
.ed-partner-card {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 640px) {
  .ed-partner-card {
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 40px;
  }
}
.ed-partner-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 24px;
  min-height: 160px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--event-accent) 18%, transparent);
  box-shadow: 0 8px 28px rgba(40, 22, 12, 0.06);
}
.ed-partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
}
.ed-partner-content .ed-section__title {
  margin-bottom: 14px;
}
.ed-partner-link-wrap {
  margin: 18px 0 0;
}
.ed-partner-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--event-accent);
  text-decoration: none;
}
.ed-partner-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ed-section--chapter-reassure {
  background-color: #f2e6dc;
  background-image:
    radial-gradient(ellipse 100% 65% at 50% -5%, rgba(255, 120, 75, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 60%, rgba(204, 51, 24, 0.09), transparent 50%),
    radial-gradient(rgba(90, 45, 25, 0.035) 0.55px, transparent 0.65px);
  background-size: 100% 100%, 100% 100%, 13px 13px;
  box-shadow: inset 0 0 80px -20px rgba(255, 200, 160, 0.12);
}
.ed-section--chapter-expect {
  background-color: #fffaf6;
  background-image:
    radial-gradient(ellipse 85% 50% at 80% 0%, rgba(255, 175, 120, 0.1), transparent 52%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(204, 51, 24, 0.04), transparent 48%),
    radial-gradient(rgba(255, 255, 255, 0.65) 0.4px, transparent 0.5px),
    radial-gradient(rgba(40, 22, 12, 0.022) 0.6px, transparent 0.7px);
  background-size: 100% 100%, 100% 100%, 9px 9px, 14px 14px;
}
.ed-section--chapter-timeline {
  background-color: #f8f0e8;
  background-image:
    radial-gradient(ellipse 75% 55% at 10% 100%, rgba(255, 140, 90, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 45% at 90% 0%, rgba(204, 51, 24, 0.07), transparent 50%),
    radial-gradient(rgba(70, 38, 22, 0.03) 0.55px, transparent 0.65px);
  background-size: 100% 100%, 100% 100%, 12px 12px;
  box-shadow: inset 0 0 100px -30px rgba(255, 190, 140, 0.08);
}
.ed-section--chapter-who {
  background-color: #fdf8f5;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(204, 51, 24, 0.06), transparent 55%),
    radial-gradient(rgba(120, 60, 40, 0.025) 0.55px, transparent 0.65px);
  background-size: 100% 100%, 11px 11px;
}
.ed-section__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--event-accent);
  margin: 0 0 16px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.ed-section__eyebrow--inverse {
  color: #ff8a5c;
  text-shadow: 0 1px 12px rgba(255, 112, 64, 0.35);
}
.ed-title-accent {
  color: var(--event-accent);
  text-shadow: 0 0 24px color-mix(in srgb, var(--event-accent) 12%, transparent);
}
.ed-title-accent--inverse {
  color: #ff9a72;
  text-shadow: 0 0 28px rgba(255, 112, 64, 0.25);
}
.ed-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ed-inner--narrow { max-width: 560px; text-align: center; }
.ed-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 7.2vw, 52px);
  letter-spacing: 1.45px;
  line-height: 0.98;
  color: #080808;
  margin: 0 0 32px;
}
.ed-section__lead {
  font-size: 17px;
  line-height: 1.68;
  color: rgba(13, 13, 13, 0.62);
  font-weight: 400;
}
.ed-section__lead + .ed-section__lead { margin-top: 0.5em; }
.ed-reassurance-short {
  font-size: 17px;
  line-height: 1.68;
  color: rgba(13, 13, 13, 0.65);
  font-weight: 400;
  margin-bottom: 0;
}
.ed-reassurance-short:not([hidden]) + .ed-section__lead {
  margin-top: 0.5em;
}

.ed-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .ed-card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.ed-expect-card {
  background: linear-gradient(165deg, #fff8f3 0%, #fff2ea 100%);
  border: 1.5px solid rgba(204, 51, 24, 0.2);
  border-radius: 16px;
  padding: 24px 22px 26px;
  min-height: 0;
  box-shadow:
    0 4px 0 rgba(204, 51, 24, 0.04),
    0 14px 36px rgba(40, 20, 10, 0.07),
    0 2px 8px rgba(204, 51, 24, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.ed-expect-card:hover {
  border-color: rgba(204, 51, 24, 0.52);
  transform: translateY(-3px);
  box-shadow:
    0 6px 0 rgba(204, 51, 24, 0.06),
    0 22px 48px rgba(40, 18, 8, 0.12),
    0 12px 32px rgba(204, 51, 24, 0.14),
    0 0 0 1px rgba(255, 200, 170, 0.35) inset;
}
@media (prefers-reduced-motion: reduce) {
  .ed-expect-card { transition: border-color 0.2s ease, box-shadow 0.22s ease; }
  .ed-expect-card:hover { transform: none; }
}
@media (min-width: 769px) {
  .ed-expect-card { padding: 26px 26px 28px; }
}
.ed-expect-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  letter-spacing: 0.6px;
  color: #050505;
  margin-bottom: 14px;
}
.ed-expect-card p {
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(13, 13, 13, 0.7);
}

.ed-timeline {
  list-style: none;
  margin-top: 22px;
  padding: 0;
  border-left: 4px solid rgba(204, 51, 24, 0.72);
  margin-left: 12px;
  box-shadow: -2px 0 20px rgba(204, 51, 24, 0.08);
}
.ed-timeline li {
  position: relative;
  padding: 0 0 48px 28px;
}
@media (min-width: 769px) {
  .ed-timeline li { padding-bottom: 54px; }
}
.ed-timeline li:last-child { padding-bottom: 0; }
.ed-timeline li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #CC3318;
  border: 2px solid #f8f0e8;
  box-shadow:
    0 0 0 2px rgba(204, 51, 24, 0.35),
    0 2px 8px rgba(204, 51, 24, 0.35);
}
.ed-timeline h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4.8vw, 32px);
  letter-spacing: 0.65px;
  color: #CC3318;
  margin-bottom: 10px;
  line-height: 1.05;
}
.ed-timeline p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(13, 13, 13, 0.84);
}

.ed-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}
@media (min-width: 520px) {
  .ed-who-grid { grid-template-columns: repeat(2, 1fr); }
}
.ed-who-card {
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f3 100%);
  border: 1.5px solid rgba(204, 51, 24, 0.14);
  border-radius: 14px;
  padding: 20px 20px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(13, 13, 13, 0.86);
  min-height: 56px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(35, 18, 10, 0.05);
}

.ed-final-cta {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 130, 80, 0.18), transparent 52%),
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(204, 51, 24, 0.12), transparent 45%),
    linear-gradient(180deg, #14100d 0%, #0a0908 42%, #161210 100%);
  color: #fff;
  padding: 52px 20px 56px;
  border-top: 1px solid rgba(255, 140, 90, 0.2);
}
@media (min-width: 769px) {
  .ed-final-cta { padding: 64px 40px 72px; }
}
.ed-final-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 52px);
  letter-spacing: 1.15px;
  margin: 0 0 14px;
  color: #fff;
}
.ed-final-cta__line {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
}
.ed-final-cta .ed-cta-wrap {
  margin: 0 auto;
  align-items: stretch;
}
.ed-final-cta .ed-cta--primary:hover { transform: translateY(-1px); }

.ed-state { max-width: 560px; margin: 100px auto 48px; padding: 0 20px; text-align: center; }
.ed-state--hidden { display: none !important; }
.ed-state h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 8vw, 44px);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.ed-state p { font-size: 15px; color: rgba(13,13,13,0.55); line-height: 1.55; margin-bottom: 22px; }
.ed-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.ed-loading { padding-top: 40px; color: rgba(13,13,13,0.45); font-size: 15px; }

.events-footnote {
  text-align: center;
  font-size: 14px;
  color: rgba(13,13,13,0.55);
  line-height: 1.65;
  padding: 24px 20px 8px;
  max-width: 520px;
  margin: 0 auto;
}
.events-footnote a {
  color: rgba(13,13,13,0.55);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 0;
}
@media (min-width: 769px) {
  footer {
    padding: 40px 56px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-ig { color: rgba(255,255,255,0.4); }
.footer-ig:hover { color: var(--red); }

/* Social proof strip (London Social Night evergreen page) */
.ed-proof {
  background: var(--dark);
  padding: 48px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 769px) {
  .ed-proof { padding: 48px 56px; }
}
.ed-proof__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .ed-proof__inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.ed-proof__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
}
.ed-proof__num em { font-style: normal; color: var(--event-accent); }
.ed-proof__label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  font-weight: 300;
}
.ed-proof__label strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.ed-proof-chips {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 769px) {
  .ed-proof-chips { padding: 12px 56px; }
}
.ed-proof-chips__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .ed-proof-chips { padding: 10px 14px; }
  .ed-proof-chips__inner { gap: 6px; }
}
.ed-proof-chips__chip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--event-accent);
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  max-width: 100%;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}
html.ed-theme--special-edition .ed-proof-chips__chip,
html.ed-theme--yoga-social .ed-proof-chips__chip {
  color: #1a1008;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset;
}
@media (max-width: 480px) {
  .ed-proof-chips__chip {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

.footer-guides {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  width: 100%;
}
.footer-guides-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
  white-space: nowrap;
}
.footer-guides-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-guides-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-guides-links a:hover { color: rgba(255, 255, 255, 0.8); }
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-guides { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-guides-links { gap: 14px; }
  .footer-guides-links a { padding: 6px 0; }
}
