:root {
  --navy: #112f67;
  --navy-2: #0b234e;
  --gold: #c99a32;
  --gold-2: #e0b649;
  --gold-soft: #f6e7b6;
  --cream: #fff9e9;
  --sand: #ead79d;
  --ink: #182443;
  --muted: #665f50;
  --white: #ffffff;
  --border: rgba(17, 47, 103, 0.12);
  --shadow-sm: 0 12px 28px rgba(30, 31, 26, 0.08);
  --shadow-lg: 0 30px 80px rgba(25, 30, 40, 0.16);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(201,154,50,.08), transparent 32%),
    radial-gradient(circle at 85% 40%, rgba(17,47,103,.05), transparent 30%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-150%);
  z-index: 9999;
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 820px; text-align: center; }
.section { padding: 88px 0; }
.section-shell { position: relative; }
.section-tint { background: linear-gradient(180deg, rgba(246,231,182,.42), rgba(255,249,233,.92)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(17,47,103,.08);
  background: rgba(255,249,233,.92);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 152px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: 14px; color: var(--navy); }
.main-nav a:hover { color: var(--gold); }
.btn-header { margin-left: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .main-nav a:focus-visible, .text-link:focus-visible, .phone-link:focus-visible {
  outline: 3px solid rgba(201,154,50,.45);
  outline-offset: 3px;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(17,47,103,.2); }
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 16px 34px rgba(17,47,103,.26); }
.btn-ghost { border-color: rgba(17,47,103,.28); color: var(--navy); background: rgba(255,255,255,.4); }
.btn-ghost:hover { background: #fff; }
.btn-gold { background: linear-gradient(135deg, #f1cf66, #c99a32); color: var(--navy-2); box-shadow: 0 12px 30px rgba(201,154,50,.28); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.06); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { min-height: 56px; padding-inline: 28px; font-size: 15px; }

.hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,251,235,.98) 0%, rgba(244,226,166,.87) 56%, rgba(229,203,116,.75) 100%);
  border-bottom: 1px solid rgba(17,47,103,.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(115deg, transparent 0 56%, rgba(17,47,103,.035) 56% 57%, transparent 57%),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.7), transparent 26%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
  padding-block: 68px 74px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
}
.eyebrow {
  background: var(--navy);
  color: #fff;
  padding: 9px 12px;
  border-radius: 9px;
  letter-spacing: .06em;
}
.hero h1 {
  margin: 22px 0 20px;
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(52px, 6.2vw, 86px);
  line-height: .95;
  letter-spacing: -.055em;
}
.hero h1 span { display: block; color: var(--gold); font-size: .63em; letter-spacing: -.03em; margin-bottom: 8px; }
.hero-lead { max-width: 680px; margin: 0; font-size: 19px; line-height: 1.65; color: #504a3e; }
.event-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 28px; }
.event-pills span { padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 850; color: var(--navy); background: rgba(255,255,255,.62); border: 1px solid rgba(17,47,103,.12); box-shadow: 0 8px 20px rgba(31,32,25,.05); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { margin: 14px 0 0; font-size: 12px; color: var(--muted); }

.hero-visual { position: relative; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,0) 68%); filter: blur(2px); }
.hero-card {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(100%, 540px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
  background: #d8bd73;
}
.hero-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); pointer-events: none; }
.hero-card img { width: 100%; height: auto; }
.floating-badge { position: absolute; z-index: 3; padding: 12px 16px; border-radius: 12px; font-size: 13px; font-weight: 950; letter-spacing: .04em; box-shadow: var(--shadow-sm); }
.badge-one { top: 8%; right: -2%; background: var(--navy); color: #fff; transform: rotate(4deg); }
.badge-two { bottom: 8%; left: -3%; background: #fff; color: var(--navy); border: 1px solid rgba(17,47,103,.12); transform: rotate(-4deg); }

.section-kicker { margin-bottom: 14px; }
.section-kicker.light { color: #f5cf68; }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.section-lead, .kit-copy > p, .support p { margin: 20px auto 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 42px; }
.info-card { padding: 30px; min-height: 220px; background: rgba(255,255,255,.78); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-sm); }
.icon-circle { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg,var(--gold),#9d7121); font-size: 20px; font-weight: 900; }
.info-card h3 { margin: 20px 0 10px; color: var(--navy); font-size: 19px; }
.info-card p { margin: 0; line-height: 1.6; color: var(--muted); }

.kit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.kit-copy h2 { max-width: 520px; }
.kit-copy > p { margin-inline: 0; max-width: 570px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 24px; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 750; color: var(--navy); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(201,154,50,.16); color: #936916; font-size: 13px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); text-decoration: none; font-weight: 900; border-bottom: 1px solid rgba(17,47,103,.24); padding-bottom: 5px; }
.kit-visual { padding: 12px; border-radius: 30px; background: rgba(255,255,255,.5); border: 1px solid rgba(17,47,103,.08); box-shadow: var(--shadow-lg); }
.kit-visual img { width: 100%; border-radius: 22px; }

.event-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.event-card { min-height: 150px; padding: 24px; border-radius: 20px; border: 1px solid var(--border); background: #fffdfa; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.event-label { display: block; margin-bottom: 10px; color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.event-card strong { color: var(--navy); font-size: 22px; line-height: 1.15; }
.event-card small { margin-top: 7px; color: var(--muted); font-size: 13px; }

.cta-section { padding-top: 34px; }
.cta-panel { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding: 54px; color: #fff; border-radius: 30px; background:
  radial-gradient(circle at 20% 0%, rgba(255,255,255,.08), transparent 30%),
  linear-gradient(135deg, var(--navy), #071d46);
  box-shadow: 0 30px 70px rgba(11,35,78,.22);
}
.cta-panel h2 { color: #fff; max-width: 680px; }
.cta-panel p { margin: 18px 0 0; max-width: 650px; color: rgba(255,255,255,.78); line-height: 1.65; font-size: 17px; }
.cta-actions { display: flex; align-items: stretch; flex-direction: column; gap: 12px; }
.cta-actions span { font-size: 12px; text-align: center; color: rgba(255,255,255,.66); }

.support-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; padding: 40px; border-radius: 26px; background: rgba(255,255,255,.66); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.support h2 { max-width: 600px; }
.support p { margin-inline: 0; max-width: 650px; }
.support-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.phone-link { text-align: center; text-decoration: none; color: var(--navy); font-weight: 850; }

.site-footer { padding: 46px 0; background: var(--navy-2); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.footer-brand img { filter: drop-shadow(0 8px 20px rgba(0,0,0,.12)); }
.footer-brand p, .footer-copy span { margin: 10px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-copy { display: flex; flex-direction: column; gap: 4px; }
.footer-copy strong { color: #f4d066; font-size: 17px; }

.mobile-cta { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .btn-header { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cards-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .kit-grid { gap: 40px; }
  .event-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 132px; }
  .btn-header { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 44px 56px; }
  .hero-copy { text-align: left; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { margin-top: 10px; }
  .hero-card { width: min(92vw, 520px); transform: none; border-radius: 26px; }
  .badge-one { right: 0; }
  .badge-two { left: 0; }
  .kit-grid, .cta-panel, .support-grid, .footer-grid { grid-template-columns: 1fr; }
  .kit-grid { gap: 32px; }
  .kit-copy { order: 1; }
  .kit-visual { order: 2; }
  .cta-panel { padding: 36px 24px; }
  .support-grid { padding: 28px 22px; }
  .footer-grid { text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-copy { align-items: center; }
  .site-footer { padding-bottom: 104px; }
  .mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1200;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,249,233,.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(17,47,103,.1);
  }
  .mobile-cta .btn { width: 100%; min-height: 54px; }
}

@media (max-width: 520px) {
  .event-grid { grid-template-columns: 1fr; }
  .floating-badge { font-size: 11px; padding: 10px 12px; }
  .section h2 { font-size: 38px; }
  .hero h1 { letter-spacing: -.045em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
