:root {
  --red: #c91424;
  --deep-red: #7d0912;
  --gold: #ffbf3c;
  --charcoal: #13151a;
  --ink: #22242a;
  --muted: #6d7280;
  --light: #f7f8fb;
  --white: #ffffff;
  --border: rgba(19, 21, 26, 0.12);
  --shadow: 0 24px 80px rgba(19, 21, 26, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; }
.brand strong { display: block; font-size: 1.1rem; letter-spacing: 0.02em; }
.brand small { color: var(--muted); font-size: 0.78rem; display: block; }
.nav-menu { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { padding: 10px 14px; border-radius: 999px; font-weight: 600; color: var(--ink); }
.nav-menu a:hover { background: var(--white); color: var(--red); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: var(--charcoal); color: var(--white); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 191, 60, 0.28), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(201, 20, 36, 0.4), transparent 32%),
    linear-gradient(135deg, #15161b 0%, #39070d 55%, #16171d 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: auto -10% -20% -10%; height: 220px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: rotate(-4deg);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow, .section-kicker { color: var(--red); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; font-size: 0.8rem; }
.hero .eyebrow { color: var(--gold); display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 3px; border-radius: 999px; background: currentColor; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.045em; }
h3 { font-size: 1.15rem; }
p { margin: 0; }
.hero-text { font-size: 1.25rem; color: rgba(255,255,255,0.82); max-width: 660px; margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 14px 22px;
  font-weight: 800; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--deep-red)); color: var(--white); box-shadow: 0 14px 34px rgba(201, 20, 36, 0.32); }
.btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); color: var(--white); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.hero-stats div { border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.08); border-radius: 20px; padding: 18px; }
.hero-stats strong { display: block; font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-stats span { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.hero-card { position: relative; }
.hero-card > img { filter: drop-shadow(0 30px 70px rgba(0,0,0,0.4)); }
.dispatch-card {
  position: absolute; left: 0; right: 0; bottom: 24px; margin: auto; width: min(360px, 92%);
  display: flex; gap: 14px; align-items: center; padding: 16px;
  border-radius: 22px; background: rgba(255,255,255,0.92); color: var(--ink); box-shadow: var(--shadow);
}
.dispatch-card p { color: var(--muted); font-size: 0.92rem; }
.pulse { width: 14px; height: 14px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 8px rgba(201,20,36,0.14); flex: 0 0 auto; }

.split-grid { display: grid; grid-template-columns: 280px 1fr; gap: 52px; }
.split-grid p { color: var(--muted); font-size: 1.08rem; margin-top: 18px; max-width: 760px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-heading h2 { max-width: 720px; }
.cards, .station-list, .photo-grid, .feature-grid { display: grid; gap: 22px; }
.three-card-grid { grid-template-columns: repeat(3, 1fr); }
.info-card, .station-card, .feature-panel, .contact-form {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(19,21,26,0.08);
}
.info-card { padding: 28px; min-height: 300px; }
.info-card img { height: 100px; margin-bottom: 28px; }
.info-card p, .station-card p, .feature-panel p, .contact p { color: var(--muted); }
.communities { background: var(--white); }
.communities .info-card { background: var(--light); }

.stations { background: linear-gradient(180deg, var(--light), #fff); }
.station-list { grid-template-columns: repeat(2, 1fr); }
.station-card { display: flex; gap: 20px; padding: 26px; align-items: flex-start; }
.station-number { font-weight: 900; color: var(--red); font-size: 1.4rem; line-height: 1; }
.station-card a { color: var(--red); font-weight: 800; display: inline-block; margin-top: 12px; }

.feature-band { background: var(--charcoal); color: var(--white); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.feature-panel { padding: 34px; background: #fff; color: var(--ink); }
.feature-panel.dark { background: linear-gradient(135deg, var(--red), var(--deep-red)); color: var(--white); border-color: rgba(255,255,255,0.15); }
.feature-panel.dark p { color: rgba(255,255,255,0.78); }
.feature-panel a { color: var(--red); font-weight: 800; display: inline-block; margin-top: 18px; }
.feature-panel.dark a { color: var(--gold); }

.photo-grid { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.photo-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); }
.photo-grid img:first-child { grid-row: span 2; height: 582px; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 48px; align-items: start; }
.contact-note { margin-top: 26px; padding: 18px; border-radius: 18px; background: #fff2f3; color: var(--deep-red); border: 1px solid rgba(201,20,36,0.15); }
.contact-form { padding: 28px; display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 14px 15px; font: inherit; background: var(--light); color: var(--ink); }
textarea { resize: vertical; }
.form-status { min-height: 1.4em; color: var(--red); font-weight: 700; }

.site-footer { background: #0f1116; color: rgba(255,255,255,0.78); padding: 34px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; }
.footer-brand small { color: rgba(255,255,255,0.6); }
.footer-grid a { color: var(--gold); }

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

@media (max-width: 880px) {
  .section-pad { padding: 68px 0; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 82px; left: 16px; right: 16px; flex-direction: column; align-items: stretch;
    padding: 14px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all 0.2s ease;
  }
  .nav-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero-grid, .split-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .three-card-grid, .station-list, .feature-grid, .photo-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .photo-grid img, .photo-grid img:first-child { height: auto; min-height: 220px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand small { display: none; }
  .hero-actions .btn { width: 100%; }
  .station-card { flex-direction: column; }
}
