/* ===== TOKENS ===== */
:root {
  --navy: #0d1b33;
  --navy-line: rgba(13, 27, 51, 0.16);
  --navy-line-soft: rgba(13, 27, 51, 0.1);
  --navy-70: rgba(13, 27, 51, 0.7);
  --navy-52: rgba(13, 27, 51, 0.52);
  --cream: #f5f1e8;
  --cream-card: #efe9dc;
  --red: #d61f25;
  --red-dark: #7e0b0e;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-52: rgba(255, 255, 255, 0.52);
  --white-10: rgba(255, 255, 255, 0.1);
  --yellow: #ffff1a;
  --green: #1bcc65;
  --font-display: "Archivo Black", Arial Black, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.57;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; }

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

main > * {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* Full-bleed sections: background (photo or color) spans the viewport
   edge to edge; their own content is capped further down instead. */
.hero,
.calendar-section,
.final-cta {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section {
  padding: 60px 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section__title--white { color: #fff; }

.section__subtitle {
  margin-top: 12px;
  color: var(--navy-70);
}

/* ===== BUTTONS / INPUTS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.btn--block { width: 100%; }

.btn--navy { background: var(--navy); color: #fff; }

.btn--red {
  background: var(--red);
  color: #fff;
  border-bottom: 4px solid var(--red-dark);
}

.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.input {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--navy-line-soft);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
}

.input::placeholder { color: var(--navy-52); }

.input--dark {
  background: var(--white-10);
  border: none;
  color: #fff;
}

.input--dark::placeholder { color: var(--white-60); }

/* ===== TOPBAR ===== */
.topbar { background: var(--navy); }

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.topbar__support { display: none; }

.topbar__brand {
  font-weight: 600;
  color: #fff;
}

.topbar__call {
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.logo { display: flex; align-items: center; gap: 8px; }

.logo__mark { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

.logo__wordmark { display: none; }

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 10px;
  color: #fff;
  white-space: nowrap;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.live-pill__dot { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 24px 16px 0;
  overflow: hidden;
  min-height: 620px;
}

.hero__bg,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(13, 27, 51, 0.6), var(--navy));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  text-align: center;
  color: #fff;
}

.eyebrow {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.hero__subtitle {
  color: var(--white-70);
  max-width: 601px;
  margin: 0 auto;
}

.hero__cards {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-card__label {
  font-weight: 600;
  font-size: 14px;
}

.check-card__hint {
  font-size: 12px;
  color: var(--navy-52);
}

.call-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-card__box {
  background: var(--red);
  border-bottom: 4px solid var(--red-dark);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.call-card__label { font-weight: 600; font-size: 13px; }

.call-card__number {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 8px;
}

.call-card__code {
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.call-card__code-em { color: #ff555b; }

.call-card__fine {
  font-size: 12px;
  color: var(--white-52);
  text-transform: uppercase;
  text-align: center;
}

/* ===== HOW IT WORKS ===== */
.how-it-works__grid {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tile {
  background: var(--cream-card);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tile--card { flex-direction: row; align-items: flex-start; gap: 16px; }

.tile__icon { width: 40px; height: 40px; flex-shrink: 0; }

.tile__title { font-weight: 600; font-size: 17px; margin-bottom: 8px; }

.tile__text { color: var(--navy-70); }

/* ===== CONFIRMED CALENDAR ===== */
.calendar-section {
  background: var(--navy);
  color: #fff;
}

/* Content still caps at 1440 and centers, even though the navy
   background above bleeds to the viewport edge. */
.calendar-section__head,
.calendar-table,
.calendar-section__note,
.cta-bar {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.calendar-table {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.calendar-table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  padding: 12px 0;
  border-top: 1px solid var(--white-10);
  font-size: 13px;
}

.calendar-table__row:last-child { border-bottom: 1px solid var(--white-10); }

.calendar-table__row--head {
  color: var(--white-70);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
}

.status__dot { width: 8px; height: 8px; }

.status--confirmed { background: rgba(27, 204, 101, 0.1); color: var(--green); }
.status--tbc { background: rgba(255, 255, 26, 0.1); color: var(--yellow); }
.status--waitlist { background: var(--white-10); color: #fff; }

.calendar-section__note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--white-70);
}

.cta-bar {
  margin-top: 24px;
  background: var(--red);
  border-bottom: 4px solid var(--red-dark);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.cta-bar__label { font-weight: 600; font-size: 13px; display: block; }
.cta-bar__number { font-family: var(--font-display); font-size: 22px; display: block; margin-top: 4px; }

/* ===== WHAT THE EVENTS ARE ===== */
.events-are__grid {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.events-are__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.events-are__left { display: flex; flex-direction: column; gap: 12px; }

.events-are__photo {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.events-are__photo img { width: 100%; height: 260px; object-fit: cover; }

.cant-make-it {
  background: var(--cream-card);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

/* ===== QUESTIONS + NOTIFY ===== */
.questions-section__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq {
  background: var(--cream-card);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: 24px;
}

.faq__list { margin-top: 20px; display: flex; flex-direction: column; }

.faq__item { border-top: 1px solid var(--navy-line); }

.faq__item:last-child { border-bottom: 1px solid var(--navy-line); }

.faq__question {
  width: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
}

.faq__icon img { width: 100%; height: 100%; }

.faq__icon-minus { display: none; }

.faq__item.is-open .faq__icon-plus { display: none; }
.faq__item.is-open .faq__icon-minus { display: block; }

.faq__answer {
  display: none;
  padding-bottom: 20px;
  color: var(--navy-70);
}

.faq__item.is-open .faq__answer { display: block; }

.notify-card {
  position: relative;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  padding: 24px;
}

.notify-card__bg,
.notify-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.notify-card__overlay {
  position: absolute;
  inset: 0;
  height: 260px;
  background: linear-gradient(to bottom, rgba(13, 27, 51, 0.6), var(--navy));
}

.notify-card__content {
  position: relative;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
}

.notify-card__text { color: var(--white-70); }

.notify-card__form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  height: 368px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  overflow: hidden;
  text-align: center;
}

.final-cta__bg,
.final-cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 51, 0.6), var(--navy));
}

.final-cta__content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.final-cta__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.final-cta__kicker { color: var(--yellow); font-weight: 600; font-size: 14px; }

.final-cta__content .call-card { width: 100%; max-width: 343px; margin: 0 auto; }

.final-cta .call-card__box { padding: 12px 24px; }
.final-cta .call-card__label { font-size: 12px; }
.final-cta .call-card__number { font-size: 24px; margin-top: 4px; }

.final-cta__link { font-weight: 600; color: var(--white-70); font-size: 14px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 32px 16px;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__text { margin-top: 12px; color: var(--white-70); }

.footer__phone {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 20px;
}

.footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer__col-title { color: var(--white-70); }

.footer__link { color: #fff; }

.footer__divider {
  margin: 32px 0;
  border: none;
  border-top: 1px solid var(--white-10);
}

.footer__legal {
  font-size: 12px;
  color: var(--white-70);
  line-height: 1.6;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.toast--visible { transform: translateY(0); }

.toast__title { font-weight: 600; margin-bottom: 4px; }

.toast__text { color: var(--white-70); font-size: 13px; }

@media (min-width: 900px) {
  .toast { left: auto; right: 24px; bottom: 24px; width: 360px; }
}

/* ===== CITY MODAL / DRAWER ===== */
.city-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.city-modal[hidden] { display: none; }

.city-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 51, 0.6);
}

.city-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--cream);
  padding: 32px 24px 28px;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: city-modal-up 0.25s ease;
}

@keyframes city-modal-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.city-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--navy-52);
  cursor: pointer;
}

.city-modal__eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--red);
}

.city-modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--navy);
  padding-right: 24px;
}

.city-modal__text { color: var(--navy-70); font-size: 14px; }

.city-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 900px) {
  .city-modal { align-items: center; padding: 24px; }

  .city-modal__panel {
    border-radius: 12px;
    animation: city-modal-fade 0.2s ease;
  }

  @keyframes city-modal-fade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--navy);
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.cookie-banner--visible { transform: translateY(0); }

.cookie-banner__text { font-size: 13px; color: var(--white-70); line-height: 1.6; }

.cookie-banner__text a { color: #fff; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__actions .btn { flex: 1 1 0; padding: 12px; font-size: 13px; }

@media (min-width: 900px) {
  .cookie-banner {
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
  }

  .cookie-banner__text { flex: 1 1 auto; }

  .cookie-banner__actions { flex: 0 0 auto; }

  .cookie-banner__actions .btn { flex: 0 0 auto; padding: 12px 20px; }
}

/* ================================================= */
/* ===== DESKTOP (matches Figma 1440 frame) ======== */
/* ================================================= */
@media (min-width: 900px) {
  .section { padding: 80px 40px; }

  .section__title { font-size: 40px; }

  .topbar__support { display: block; color: var(--white-60); }

  .logo__mark { width: 40px; height: 40px; }

  .logo__wordmark { display: block; height: 16px; width: auto; }

  .live-pill { font-size: 12px; gap: 8px; flex: 0 0 auto; }

  .topbar__row--nav { padding: 12px 24px; }

  .hero {
    min-height: 800px;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .hero__content { padding-top: 170px; max-width: 800px; }

  .hero__title { font-size: 80px; }

  .hero__cards {
    position: absolute;
    left: 50%;
    top: 460px;
    transform: translateX(-50%);
    width: 844px;
    max-width: calc(100vw - 48px);
    flex-direction: row;
    align-items: stretch;
    margin-top: 0;
    padding-bottom: 0;
  }

  .hero__cards .check-card { flex: 1 0 0; }

  .hero__cards .call-card { flex: 0 0 376px; justify-content: flex-start; }

  .how-it-works__grid { flex-direction: row; }
  .how-it-works__grid .tile { flex: 1 1 0; }

  .tile--card:not(.tile--wide) { flex-direction: column; }

  .events-are__grid { flex-direction: row; align-items: stretch; }

  .events-are__left { flex: 1 1 0; }

  .events-are__cards { flex-direction: row; flex-wrap: wrap; }

  .events-are__cards .tile--card { flex: 1 1 calc(50% - 6px); flex-direction: column; }

  .events-are__right { flex: 0 0 380px; display: flex; flex-direction: column; }

  .events-are__photo { flex: 1; }

  .events-are__photo img { height: 100%; min-height: 280px; }

  .questions-section__grid { flex-direction: row; align-items: stretch; }

  .faq, .notify-card { flex: 1 1 0; }

  .notify-card__content { padding-top: 180px; }

  .calendar-table__row { grid-template-columns: repeat(4, 1fr); }

  .final-cta { height: 560px; padding: 0 60px; }

  .final-cta__content { gap: 24px; max-width: 800px; }

  .final-cta__heading { gap: 12px; }

  .final-cta__title { font-size: 60px; }

  .final-cta__kicker { font-size: 14px; }

  .final-cta__content .call-card { max-width: 800px; }

  .final-cta .call-card__box {
    height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
  }
  .final-cta .call-card__label { font-size: 14px; }
  .final-cta .call-card__number { font-size: 40px; margin-top: 0; line-height: 1; }

  .final-cta__link { font-size: 14px; }

  .footer { padding: 32px 40px; }

  .footer__grid { flex-direction: row; gap: 40px; }

  .footer__brand { flex: 1 1 0; }

  .footer__col { flex: 1 1 0; }
}

/* ===== POLICY PAGES ===== */
.policy-page { padding: 40px 16px 80px; }

.policy-page__inner { max-width: 760px; margin: 0 auto; }

.policy-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-70);
  margin-bottom: 24px;
}

.policy-page__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.policy-page__updated {
  margin-top: 8px;
  font-size: 13px;
  color: var(--navy-52);
}

.policy-page__body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--navy-70);
  font-size: 14px;
  line-height: 1.7;
}

.policy-page__body h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.policy-page__body h3 {
  margin-top: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.policy-page__body ul,
.policy-page__body ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-page__body a { color: var(--red); text-decoration: underline; }

.policy-page__body strong { color: var(--navy); }

@media (min-width: 900px) {
  .policy-page { padding: 80px 40px 120px; }
  .policy-page__title { font-size: 40px; }
}
