body {
  background: #090c12;
}

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.header-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none;
}
.header-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text);
}
.header-cta {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent-text);
  text-decoration: none;
  border: 1px solid rgba(212, 136, 74, 0.30);
  padding: 12px 16px;
  border-radius: var(--r);
  transition: background 0.15s;
}
.header-cta:hover { background: rgba(212, 136, 74, 0.10); }
.header-cta:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }

/* ── HERO ─────────────────────────────────────────────────
   Hero background image and position are set per-page via
   CSS custom properties --hero-img and --hero-pos.
   ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.22) 22%,
      rgba(0, 0, 0, 0.48) 55%,
      rgba(9, 12, 18, 0.94) 82%,
      #090c12 100%
    ),
    var(--hero-img) var(--hero-pos, center 50%) / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  padding: 130px 28px 90px;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-inner {
    padding-top: 76px;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-text);
  background: rgba(212, 136, 74, 0.10);
  border: 1px solid rgba(212, 136, 74, 0.22);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(14px, 3.4vw, 17px);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hero-sub span { display: block; }

.hero-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 14px;
  background: rgba(5, 8, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-email {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.hero-email::placeholder { color: var(--text-dim); }

@keyframes email-glow {
  0%, 100% { box-shadow: 0 0 0 0      rgba(212, 136, 74, 0.00); }
  50%       { box-shadow: 0 0 16px 4px rgba(212, 136, 74, 0.45); }
}
.hero-form:focus-within {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  animation: email-glow 2s ease-in-out infinite;
}

.hero-btn {
  border: none;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1208;
  cursor: pointer;
  white-space: nowrap;
  background: var(--accent);
  transition: background 0.15s;
}
.hero-btn:hover { background: var(--accent-hover); }
.hero-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hero-btn--solo { display: inline-block; text-decoration: none; border-radius: var(--r); padding: 13px 26px; }
html { scroll-behavior: smooth; }
#get-alerts { scroll-margin-top: 80px; }

.hero-fine {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.4px;
}

/* ── STAT STRIP ──────────────────────────────────────────── */
.stat-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: rgba(212, 136, 74, 0.06);
  border-top: 1px solid rgba(212, 136, 74, 0.14);
  border-bottom: 1px solid rgba(212, 136, 74, 0.14);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px 36px;
  border-right: 1px solid rgba(212, 136, 74, 0.12);
  flex: 1;
  min-width: 120px;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-text);
  line-height: 1.1;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── STAT STRIP NARROW PHONES ────────────────────────────── */
@media (max-width: 400px) {
  .stat-strip {
    display: grid;
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 136, 74, 0.12);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ── CONTENT SECTIONS ────────────────────────────────────── */
.section {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 28px;
}

.section-kicker {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-body {
  color: var(--text-muted);
  line-height: 1.80;
  max-width: 680px;
}
.section-body p { margin-bottom: 14px; }
.section-body p:last-child { margin-bottom: 0; }
.section-body ul li strong { display: block; margin-bottom: 2px; }

.section-divider {
  height: 1px;
  background: var(--glass-border);
  max-width: 880px;
  margin: 0 auto;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 640px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 24px 22px;
}
.how-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: rgba(212, 136, 74, 0.28);
  line-height: 1;
  margin-bottom: 12px;
}
.how-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.how-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PARK FACTS GRID ─────────────────────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 32px;
}
.fact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 16px 18px;
}
.fact-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.fact-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

/* ── BOTTOM CTA ──────────────────────────────────────────── */
.bottom-cta {
  background: rgba(212, 136, 74, 0.05);
  border-top: 1px solid rgba(212, 136, 74, 0.12);
  text-align: center;
  padding: 80px 28px;
}
.bottom-h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.10;
  margin-bottom: 10px;
}
.bottom-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer-wrap { padding: 32px 24px 0; }
.site-footer {
  text-align: center;
  padding: 20px 24px 24px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
}
.site-footer a { color: var(--text-dim); text-decoration: underline; }
.site-footer a:hover { color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) { .hero-form:focus-within { animation: none; } }
