:root {
  --navy: #0b1f3a;
  --navy-2: #102c50;
  --red: #b4232a;
  --red-dark: #8f1b21;
  --gold: #d7b36a;
  --cream: #f6f3ed;
  --paper: #ffffff;
  --ink: #172033;
  --muted: #657083;
  --line: #dfe4ea;
  --shadow: 0 20px 50px rgba(7, 26, 49, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-180%);
  background: white;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,31,58,.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1; }
.brand-top { font-weight: 900; color: var(--navy); letter-spacing: .03em; font-size: 1.18rem; }
.brand-star { color: var(--red); }
.brand-bottom { margin-top: 6px; color: var(--muted); font-size: .68rem; letter-spacing: .13em; font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; font-weight: 650; font-size: .95rem; color: #24324a; }
.site-nav a:hover { color: var(--red); }
.nav-cta { padding: 10px 15px; background: var(--navy); color: white !important; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 25%, rgba(215,179,106,.20), transparent 28%),
    linear-gradient(135deg, #07172c 0%, #0b1f3a 55%, #12385f 100%);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; padding: 94px 0; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .76rem; margin: 0 0 12px; }
.eyebrow { color: #e7c989; }
.hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 6.6vw, 6.4rem); line-height: .97; margin: 0 0 26px; letter-spacing: -.035em; font-weight: 700; }
.hero-lede { max-width: 760px; color: #d7e2ee; font-size: 1.16rem; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { font-size: .92rem; color: #aabbd0; margin-top: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: rgba(255,255,255,.12); }

.hero-mark { display: grid; place-items: center; }
.seal { width: min(380px, 86vw); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 30px 70px rgba(0,0,0,.25); }
.seal-ring { width: 83%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; border: 9px double #e4c77c; box-shadow: inset 0 0 0 2px rgba(255,255,255,.45); }
.seal-center { width: 75%; aspect-ratio: 1; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(255,255,255,.32); background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%); }
.seal-city { font-weight: 900; letter-spacing: .19em; font-size: .96rem; color: #e4c77c; }
.seal-911 { font-family: Georgia, serif; font-weight: 800; font-size: 5.1rem; line-height: .95; }
.seal-service { font-size: .66rem; letter-spacing: .13em; font-weight: 800; color: #dce7f2; }

.quick-facts { background: var(--cream); border-bottom: 1px solid #ebe4d8; }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.fact { padding: 26px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; border-right: 1px solid #ddd4c6; }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; }
.fact span { color: var(--muted); font-size: .88rem; }

.section { padding: 94px 0; }
.section h2, .updates h2 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.05; margin: 0 0 20px; letter-spacing: -.025em; }
.section p { color: #4f5b6d; font-size: 1.05rem; }
.section-kicker { color: var(--red); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.quote-card { padding: 42px; border-radius: var(--radius); background: var(--cream); border-left: 5px solid var(--gold); box-shadow: var(--shadow); }
.quote-card p { font-family: Georgia, serif; color: var(--navy); font-size: 1.6rem; line-height: 1.35; margin-top: 0; }
.quote-card span { color: var(--muted); font-size: .9rem; font-weight: 700; }

.section-dark { background: var(--navy); }
.section-dark h2, .section-dark p { color: white; }
.section-dark .section-kicker { color: #e7c989; }
.section-heading { max-width: 790px; margin-bottom: 40px; }
.section-heading.light p { color: #c6d3e0; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { background: white; border-radius: var(--radius); padding: 30px; min-height: 245px; box-shadow: 0 15px 50px rgba(0,0,0,.16); }
.info-card h3 { color: var(--navy); font-size: 1.28rem; margin: 18px 0 8px; }
.info-card p { color: var(--muted); font-size: .98rem; }
.card-number { font-weight: 900; color: var(--red); letter-spacing: .12em; }

.recognition-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.recognition-list { display: grid; gap: 12px; }
.recognition-list > div { display: flex; gap: 14px; align-items: center; padding: 16px 18px; background: #f8fafc; border: 1px solid var(--line); border-radius: 13px; font-weight: 800; color: var(--navy); }
.recognition-list span { color: var(--red); }

.section-soft { background: #f6f8fb; }
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.partner-card { min-height: 130px; padding: 22px; border-radius: 14px; background: white; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.partner-card strong { color: var(--navy); line-height: 1.3; }
.partner-card span { margin-top: 8px; color: var(--muted); font-size: .8rem; }
.partner-note { margin-top: 22px; font-size: .92rem !important; color: var(--muted) !important; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 65px; align-items: start; }
.faq-list details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.faq-list p { font-size: .98rem; margin-bottom: 0; }

.updates { padding: 72px 0; background: var(--cream); border-top: 1px solid #e8e0d4; border-bottom: 1px solid #e8e0d4; }
.updates-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.updates h2 { margin-bottom: 12px; }
.updates p { color: var(--muted); max-width: 760px; margin-bottom: 0; }

.site-footer { background: #07172c; color: #d3deea; padding: 42px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer-brand { color: white; font-weight: 900; letter-spacing: .05em; font-size: 1.15rem; }
.footer-brand span { color: #e4c77c; }
.site-footer p { margin: 5px 0; color: #aebdd0; font-size: .88rem; }
.site-footer a { color: white; }
.footer-meta { text-align: right; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero-grid, .split, .recognition-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .hero { min-height: 600px; }
  .event-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 70px; }
  .brand-top { font-size: 1rem; }
  .brand-bottom { font-size: .58rem; }
  .hero-grid { padding: 72px 0; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-lede { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid #ddd4c6; }
  .fact:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .quote-card { padding: 28px; }
  .quote-card p { font-size: 1.35rem; }
  .partner-grid { grid-template-columns: 1fr; }
  .updates-inner, .footer-grid { flex-direction: column; align-items: stretch; }
  .footer-meta { text-align: left; }
}
