:root {
  --navy: #062a4d;
  --navy-2: #0b3a66;
  --blue: #075ea8;
  --gold: #f4bd18;
  --gold-soft: #fff4cb;
  --ink: #142536;
  --muted: #566a7d;
  --line: #d9e4ee;
  --paper: #ffffff;
  --tint: #f3f8fc;
  --shadow: 0 18px 55px rgba(6, 42, 77, 0.12);
  --radius: 22px;
  --shell: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: var(--blue); text-underline-offset: 0.2em; }
a:hover { color: var(--navy); }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid #ffcf33;
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
}

.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 840px); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand img { flex: 0 0 52px; border-radius: 50%; }
.brand span { display: grid; line-height: 1.2; }
.brand strong { font-size: 1.04rem; }
.brand small { color: var(--muted); font-size: 0.72rem; }

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover { color: var(--blue); }
.nav-toggle { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.button-small { min-height: 42px; padding: 9px 18px; font-size: 0.9rem; }
.button-secondary { color: var(--navy); background: transparent; border-color: var(--navy); }
.button-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.65); }
.button-ghost:hover { color: var(--navy); background: #fff; border-color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0 68px;
  background:
    radial-gradient(circle at 85% 5%, rgba(7, 94, 168, 0.16), transparent 31%),
    linear-gradient(145deg, #f7fbff, #edf5fb);
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -140px;
  border: 44px solid rgba(244, 189, 24, 0.18);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light { color: #ffda67; }

h1, h2, h3 { color: var(--navy); line-height: 1.12; text-wrap: balance; }
h1 { margin: 0; font-size: clamp(3.6rem, 8vw, 6.9rem); letter-spacing: -0.065em; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.04em; }
h3 { margin: 0; font-size: 1.22rem; }

.hero-title {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(1.24rem, 2.5vw, 1.75rem);
  font-weight: 780;
  line-height: 1.35;
}

.hero-lead { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.event-facts div { padding: 15px 16px; background: rgba(255,255,255,.92); }
.event-facts dt { color: var(--muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.event-facts dd { margin: 4px 0 0; color: var(--navy); font-size: 0.92rem; font-weight: 750; line-height: 1.35; }

.hero-media {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.hero-media img { width: 100%; aspect-ratio: 2.25 / 1; display: block; object-fit: cover; }
.hero-media figcaption { padding: 10px 12px 3px; color: var(--muted); font-size: 0.76rem; transform: rotate(-1.3deg); }

.countdown-band { color: #fff; background: var(--navy); }
.countdown-layout { min-height: 210px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.countdown-layout h2 { color: #fff; }
.countdown-layout p { max-width: 680px; margin: 12px 0 0; color: #c8d9e8; }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.countdown span { min-height: 104px; display: grid; place-items: center; align-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; }
.countdown strong { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1; }
.countdown small { margin-top: 6px; color: #c8d9e8; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

.section { padding: clamp(72px, 9vw, 112px) 0; }
.section-tint { background: var(--tint); }
.section-dark { color: #d9e7f3; background: linear-gradient(135deg, #041e38, #0a3a65); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-heading > p { color: #cfdeeb; }

.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading > p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); font-size: 1.02rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr 0.75fr; gap: 50px; align-items: end; }
.split-heading > p { margin: 0; }

.card-grid { display: grid; gap: 18px; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }

.feature-card,
.path-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(6, 42, 77, 0.07);
}

.feature-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 30px; color: var(--navy); background: var(--gold-soft); border-radius: 12px; font-weight: 900; }
.feature-card p, .path-card p { color: var(--muted); }
.feature-card a, .path-card a, .text-link { margin-top: auto; font-weight: 850; }

.day-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; }
.day-grid li { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.day-grid time { display: grid; color: var(--muted); }
.day-grid time span { color: var(--blue); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.day-grid time strong { margin: 8px 0 3px; color: var(--navy); font-size: 1.35rem; }
.day-grid p { margin: 18px 0 0; color: var(--muted); font-size: 0.9rem; }
.centred-action { display: flex; justify-content: center; margin-top: 32px; }

.status-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 38px;
  background: var(--gold-soft);
  border: 1px solid #f1d777;
  border-radius: 24px;
}

.status-panel p:not(.eyebrow) { max-width: 760px; margin: 14px 0 0; color: #5e552d; }
.status-panel .text-link { margin-bottom: 8px; white-space: nowrap; }

.table-scroll { overflow-x: auto; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; background: rgba(255,255,255,.05); }
caption { padding: 18px; color: #fff; font-weight: 850; text-align: left; }
th, td { padding: 16px 18px; border-top: 1px solid rgba(255,255,255,.15); text-align: left; }
thead th { color: #ffda67; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
tbody th { color: #fff; }

.two-column { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-cards article { min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; background: var(--tint); border: 1px solid var(--line); border-radius: 18px; }
.price-cards p { margin: 24px 0 0; color: var(--blue); font-size: 1.3rem; font-weight: 900; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 44px 22px 0; color: var(--navy); font-size: 1.08rem; font-weight: 850; cursor: pointer; }
.faq-list p { margin: -4px 0 24px; color: var(--muted); }
.review-note { margin: 28px 0 0; color: var(--muted); font-size: 0.84rem; }

.final-cta { padding: 64px 0; color: #fff; background: var(--blue); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.final-cta h2 { color: #fff; }
.final-cta p:not(.eyebrow) { max-width: 700px; margin: 12px 0 0; color: #d8eaf8; }
.final-cta .hero-actions { margin-top: 0; }

.site-footer { padding: 64px 0 96px; color: #bed0df; background: #03172b; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 44px; }
.footer-brand img { border-radius: 50%; }
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer h2 { margin: 14px 0 6px; font-size: 1.4rem; }
.site-footer h3 { margin: 0 0 14px; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.site-footer a { color: #d7e6f2; }
.footer-bottom { margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); font-size: 0.82rem; }
.footer-bottom p { max-width: 880px; margin: 0; }

.mobile-cta { display: none; }

.page-hero {
  padding: 78px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(220, 173, 60, .18), transparent 30%),
    linear-gradient(135deg, var(--navy), #0b456c);
}
.page-hero .breadcrumb { margin: 0 0 24px; color: #d6e5f0; font-size: .88rem; }
.page-hero .breadcrumb a { color: #fff; }
.page-hero h1 { max-width: 900px; margin: 0 0 20px; color: #fff; font-size: clamp(2.45rem, 7vw, 5rem); line-height: .98; }
.page-hero p { max-width: 760px; margin: 0; color: #d6e5f0; font-size: clamp(1.02rem, 2vw, 1.22rem); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(34px, 6vw, 76px); align-items: start; }
.prose { min-width: 0; }
.prose section { padding: 0 0 32px; margin: 0 0 32px; border-bottom: 1px solid var(--line); }
.prose section:last-child { margin-bottom: 0; border-bottom: 0; }
.prose h2 { margin: 0 0 14px; font-size: clamp(1.6rem, 3.5vw, 2.35rem); }
.prose h3 { margin: 24px 0 9px; font-size: 1.18rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 8px; }
.callout { padding: 22px 24px; margin: 24px 0; background: #f1f7fb; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; }
.callout p:last-child { margin-bottom: 0; }
.policy-nav { position: sticky; top: 96px; padding: 24px; background: #f7fafc; border: 1px solid var(--line); border-radius: 18px; }
.policy-nav h2 { margin: 0 0 14px; font-size: 1.04rem; }
.policy-nav nav { display: grid; gap: 10px; }
.policy-nav a { color: var(--navy); font-size: .9rem; font-weight: 750; }

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .primary-nav { gap: 14px; }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .day-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid nav:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  .site-header { position: relative; }
  .header-inner { min-height: 70px; }
  .nav-toggle {
    min-width: 48px;
    min-height: 44px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 800;
  }
  .primary-nav {
    position: absolute;
    z-index: 20;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .primary-nav[data-open="true"] { display: flex; }
  .primary-nav a { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { transform: none; }
  .hero-media figcaption { transform: none; }
  .countdown-layout { padding-block: 42px; grid-template-columns: 1fr; gap: 28px; }
  .split-heading { grid-template-columns: 1fr; gap: 16px; }
  .three-up { grid-template-columns: 1fr; }
  .status-panel { grid-template-columns: 1fr; align-items: start; }
  .status-panel .text-link { white-space: normal; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta .hero-actions { margin-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid nav:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .content-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
}

@media (max-width: 560px) {
  body { padding-bottom: 66px; }
  .shell, .narrow { width: min(calc(100% - 28px), var(--shell)); }
  .brand small { display: none; }
  .hero { padding: 48px 0 54px; }
  h1 { font-size: clamp(3.25rem, 18vw, 5.4rem); }
  .hero-actions .button { width: 100%; }
  .event-facts { grid-template-columns: 1fr; }
  .hero-media { border-width: 6px; border-radius: 18px; }
  .countdown-layout { gap: 22px; }
  .countdown span { min-height: 86px; }
  .four-up, .day-grid, .price-cards { grid-template-columns: 1fr; }
  .feature-card, .path-card { min-height: 0; }
  .section { padding: 68px 0; }
  .status-panel { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 50px; }
  .mobile-cta {
    position: fixed;
    z-index: 120;
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 56px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    overflow: hidden;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.28);
  }
  .mobile-cta a { display: grid; place-items: center; padding: 8px; color: #fff; border-right: 1px solid rgba(255,255,255,.16); font-size: 0.78rem; font-weight: 850; text-decoration: none; text-align: center; }
  .mobile-cta a:first-child { color: var(--navy); background: var(--gold); }
  .mobile-cta a:last-child { border-right: 0; }
}

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

@media print {
  .site-header, .hero-actions, .mobile-cta, .final-cta, .nav-toggle { display: none !important; }
  body { padding: 0; color: #000; }
  .section, .hero { padding: 24px 0; }
  .section-dark, .countdown-band, .site-footer { color: #000; background: #fff; }
  .section-dark h2, .countdown-layout h2, .site-footer h2, .site-footer h3 { color: #000; }
}
