:root {
  --bg: #080808;
  --panel: #131313;
  --panel-2: #1c1c1c;
  --text: #ffffff;
  --muted: #c8c8c8;
  --red: #e10600;
  --red-dark: #8f0704;
  --yellow: #ffd233;
  --line: rgba(255,255,255,.13);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(8,8,8,.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0 58%, var(--yellow) 58% 70%, transparent 70%);
  transform: skewX(-18deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-cta) {
  opacity: .82;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--yellow);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta,
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(225,6,0,.26);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(255,255,255,.06);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 78px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-event.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.72) 41%, rgba(0,0,0,.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8,8,8,0) 34%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.kicker,
.section-label {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(82px, 13vw, 168px);
  line-height: .82;
}

h2 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .9;
}

h3 {
  font-size: 32px;
  line-height: .95;
}

.hero-subtitle {
  margin: 20px 0 0;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: #eeeeee;
  font-size: 18px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.event-strip {
  width: min(860px, 100%);
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(13,13,13,.78);
  box-shadow: var(--shadow);
}

.event-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 56px;
  align-items: start;
}

.copy-block {
  color: var(--muted);
  font-size: 18px;
}

.copy-block p:first-child {
  margin-top: 0;
}

.quick-lines {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.quick-lines strong {
  display: block;
  padding: 16px 18px;
  border-left: 5px solid var(--red);
  background: linear-gradient(90deg, rgba(225,6,0,.16), rgba(255,255,255,.04));
  color: #fff;
}

.contrast,
.schedule,
.location {
  background:
    linear-gradient(135deg, rgba(225,6,0,.16), transparent 36%),
    var(--panel);
}

.truth-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.truth-panel,
.schedule-card,
.activity-grid article,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.truth-panel {
  padding: 28px;
}

.truth-no {
  border-color: rgba(225,6,0,.44);
}

.truth-yes {
  border-color: rgba(255,210,51,.32);
}

.truth-panel ul,
.schedule-card ul,
.family-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.truth-panel li,
.schedule-card li,
.family-list li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #ededed;
  font-weight: 700;
}

.truth-panel li::before,
.schedule-card li::before,
.family-list li::before {
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.truth-no li::before { content: "×"; color: var(--red); }
.truth-yes li::before,
.schedule-card li::before,
.family-list li::before { content: "✓"; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.activity-grid article {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
}

.activity-grid span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(225,6,0,.18);
  font-size: 27px;
}

.activity-grid p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.schedule-card {
  padding: 34px;
  border-radius: 8px;
}

.schedule-card.featured {
  border-color: rgba(225,6,0,.55);
  background: linear-gradient(160deg, rgba(225,6,0,.24), rgba(255,255,255,.04));
}

.day {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.schedule-card h3 {
  font-size: clamp(46px, 6vw, 72px);
  color: #fff;
}

.family-band {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(255,210,51,.22);
  background:
    linear-gradient(120deg, rgba(255,210,51,.12), rgba(225,6,0,.16)),
    var(--panel-2);
}

.family-band p {
  color: var(--muted);
  font-size: 18px;
}

.family-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  border-radius: 8px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.location-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.location-name {
  margin: 22px 0 0;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.map-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(225,6,0,.32) 18% 22%, transparent 22% 42%, rgba(255,210,51,.22) 42% 45%, transparent 45%),
    radial-gradient(circle at 70% 35%, rgba(225,6,0,.32), transparent 34%),
    #101010;
}

.map-card span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.map-card strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 82px;
  line-height: .9;
  text-transform: uppercase;
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
  font: 900 14px/1 "Montserrat", Arial, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 70;
  width: min(390px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 124px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #101010;
  box-shadow: var(--shadow);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 4px;
  font-size: 12px;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 6px;
  background: rgba(0,0,0,.12);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  align-content: start;
  overflow-y: auto;
  padding: 16px;
}

.message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.message.bot {
  background: rgba(255,255,255,.08);
  color: #f1f1f1;
}

.message.user {
  justify-self: end;
  background: var(--yellow);
  color: #151515;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-form input,
.chat-form button {
  min-height: 44px;
  border-radius: 6px;
  font: 700 14px "Montserrat", Arial, sans-serif;
}

.chat-form input {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 0 12px;
}

.chat-form button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px 28px;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .event-strip,
  .split,
  .truth-grid,
  .schedule-grid,
  .family-band,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .event-strip span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 68px;
  }

  .brand {
    font-size: 25px;
  }

  .nav-links {
    inset: 68px 0 auto 0;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-content {
    padding: 64px 0 52px;
  }

  h1 {
    font-size: 82px;
  }

  h2 {
    font-size: 52px;
  }

  .section {
    padding: 68px 0;
  }

  .activity-grid,
  .family-list {
    grid-template-columns: 1fr;
  }

  .family-band {
    padding: 28px;
  }

  .map-card strong {
    font-size: 58px;
  }

  .chat-panel {
    right: 16px;
    bottom: 84px;
  }
}
