/**
 * IsItHurricaneSeasonYet.com — styles.css v3
 *
 * Design target: Windy.com visual quality × consumer readability.
 * Deep navy + storm amber. Source Serif 4 + Inter.
 * Dark-mode native — high contrast, cinematic depth.
 */

/* ─── Tokens ─────────────────────────────────────────────────────────────── */

:root {
  --serif: 'Source Serif 4', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  /* Palette — Coastal Navy */
  --bg:          #14304d;
  --bg-2:        #1a3d5c;
  --bg-card:     #1e4468;
  --bg-card-2:   #204e72;
  --ink:         #eef4fa;
  --ink-2:       #8aaec8;
  --ink-3:       #5d87a6;

  /* Brand */
  --accent:      #f5a623;   /* storm amber */
  --accent-dim:  rgba(245,166,35,0.13);
  --accent-2:    #7db8d8;   /* coastal blue */
  --accent-2-dim:rgba(125,184,216,0.13);

  /* Threat spectrum */
  --threat-none:    #2ecc71;
  --threat-watch:   #f5a623;
  --threat-warning: #e07b00;
  --threat-direct:  #e84040;

  /* Formation probability */
  --prob-low:      #2ecc71;
  --prob-moderate: #f5a623;
  --prob-elevated: #e07b00;

  /* Rules */
  --rule:         rgba(255,255,255,0.07);
  --rule-strong:  rgba(255,255,255,0.13);

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-hover: 0 6px 28px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);

  --max-width: 1100px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
a:hover { opacity: 0.8; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }
.hidden { display: none !important; }

/* ─── Shell ──────────────────────────────────────────────────────────────── */

.shell { min-height: 100vh; display: flex; flex-direction: column; }

/* ─── Masthead ───────────────────────────────────────────────────────────── */

.masthead {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  height: 58px;
  background: rgba(7,17,31,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.mast-brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 17px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}
.mast-brand:hover { opacity: 0.85; }
.mast-date {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-3);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mast-nav { display: flex; gap: 2px; flex-shrink: 0; }
.mast-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mast-btn:hover, .mast-btn[aria-current="page"] {
  background: var(--accent-dim);
  color: var(--accent);
  opacity: 1;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 28px 48px;
  overflow: hidden;
}
.hero-scene {
  position: absolute;
  inset: 0;
  background-color: #14304d; /* fallback */
  background-image:
    linear-gradient(to bottom, rgba(10,22,40,0.38) 0%, rgba(10,22,40,0.58) 100%),
    url('og-image.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}
/* State tinting */
.hero-scene[data-state="active-storm"] {
  background-image:
    linear-gradient(to bottom, rgba(40,8,8,0.62) 0%, rgba(14,20,40,0.78) 100%),
    url('og-image.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-verdict {
  font-family: var(--serif);
  font-size: clamp(56px, 11vw, 104px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.35;
  margin-bottom: 10px;
}
.hero-driver {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--threat-none);
  transition: background 0.6s;
}
.hero-bar--watch   { background: var(--threat-watch); }
.hero-bar--warning { background: var(--threat-warning); }
.hero-bar--direct  {
  background: var(--threat-direct);
  animation: threatPulse 1.5s ease-in-out infinite;
}
@keyframes threatPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Sections ───────────────────────────────────────────────────────────── */

.section {
  padding: 64px 28px;
  border-top: 1px solid var(--rule);
}
.section:nth-child(even) { background: var(--bg-2); }
.section-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.section-head { margin-bottom: 32px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.section-num {
  font-size: 0.8em;
  color: var(--accent);
  font-style: italic;
  margin-right: 6px;
  font-weight: 600;
}
.section-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ─── Coastal scene — bridges hero to content ────────────────────────────── */

.coast-scene {
  display: block;
  line-height: 0;
  margin-top: -2px; /* flush with hero bottom */
  background: var(--bg);
}
.coast-scene svg { width: 100%; height: auto; display: block; }

/* ─── HBID — editorial prose, no card ───────────────────────────────────── */

.hbid-card { /* no card — open section */ }

.hbid-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.hbid-severity {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hbid-sentence {
  font-family: var(--serif);
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 640px;
}
.hbid-decision {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 560px;
}

/* ─── Formation bars ─────────────────────────────────────────────────────── */

.formation-bars {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 16px;
}
.form-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.form-bar-pct {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  min-height: 16px;
  text-align: center;
}
.form-bar-track {
  width: 100%;
  height: 100px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.form-bar-fill {
  width: 100%;
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
  min-height: 0;
}
.form-bar--green  { background: linear-gradient(180deg, var(--prob-low) 0%, rgba(46,204,113,0.6) 100%); }
.form-bar--yellow { background: linear-gradient(180deg, var(--prob-moderate) 0%, rgba(245,166,35,0.6) 100%); }
.form-bar--orange { background: linear-gradient(180deg, var(--prob-elevated) 0%, rgba(224,123,0,0.6) 100%); }
.form-bar-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Quiet state */
.formation-quiet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  gap: 10px;
  border: 1px dashed var(--rule-strong);
  border-radius: 10px;
  margin-bottom: 16px;
}
.formation-quiet-icon { font-size: 32px; opacity: 0.5; }
.formation-quiet-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-3);
}
.gtwo-summary {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ─── Prep Window ────────────────────────────────────────────────────────── */

.prep-preseason-banner {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.prep-ps-count {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.prep-ps-label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.prep-preseason-message {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 24px;
  line-height: 1.5;
}
.prep-context {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 20px;
  line-height: 1.5;
}
.prep-tracks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.prep-track {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.prep-track:hover { box-shadow: var(--shadow-hover); }
.prep-track-icon { font-size: 22px; flex-shrink: 0; }
.prep-track-info { flex: 1; }
.prep-track-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.prep-track-note { font-family: var(--sans); font-size: 12px; color: var(--ink-3); }
.prep-track-status {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.prep-status--ok     { background: rgba(46,204,113,0.12); color: var(--threat-none); border: 1px solid rgba(46,204,113,0.2); }
.prep-status--tight  { background: rgba(245,166,35,0.12); color: var(--threat-watch); border: 1px solid rgba(245,166,35,0.2); }
.prep-status--late   { background: rgba(232,64,64,0.12);  color: var(--threat-direct); border: 1px solid rgba(232,64,64,0.2); }
.prep-cta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
}

/* ─── Basin grid (replaces bullseye) ─────────────────────────────────────── */

.basin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.basin-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.basin-risk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}
.basin-info { flex: 1; }
.basin-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.basin-status {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.basin-note { font-family: var(--sans); font-size: 12px; color: var(--ink-3); }
.basin-summary {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ─── Season drivers ─────────────────────────────────────────────────────── */

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.driver-card {
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.driver-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}
.driver-icon { font-size: 26px; margin-bottom: 10px; }
.driver-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.driver-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.driver--positive { color: var(--threat-direct); }
.driver--negative { color: var(--threat-none); }
.driver-note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.45;
}

/* ─── Season clock ───────────────────────────────────────────────────────── */

.clock-wrap { margin-bottom: 12px; }
.clock-track {
  position: relative;
  height: 20px;
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: visible;
}
.clock-peak {
  position: absolute;
  top: -1px; bottom: -1px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 4px;
}
.clock-today {
  position: absolute;
  top: -6px; bottom: -6px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clock-today-dot {
  width: 3px;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent);
}
.clock-today-label {
  position: absolute;
  top: -22px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.clock-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-3);
  padding: 0 2px;
  margin-bottom: 4px;
}
.clock-peak-label-row { margin-bottom: 20px; }
.clock-peak-badge {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.clock-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.clock-stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.clock-stat-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ─── ACE chart ──────────────────────────────────────────────────────────── */

.ace-chart { min-height: 180px; }
.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  border: 1px dashed var(--rule-strong);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
}

/* ─── Prep grid ──────────────────────────────────────────────────────────── */

.prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.prep-card {
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.prep-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}
.prep-card-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.prep-card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.prep-card-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}
.prep-card-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(245,166,35,0.3);
}
.prep-card-cta:hover { border-color: var(--accent); opacity: 0.85; }

/* ─── Cone map ───────────────────────────────────────────────────────────── */

.cone-map { min-height: 400px; border-radius: 10px; overflow: hidden; }
.map-placeholder {
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
  border: 1px dashed var(--rule-strong);
  border-radius: 10px;
  font-family: var(--sans); font-size: 13px; color: var(--ink-3);
}

/* ─── Decision table ─────────────────────────────────────────────────────── */

.decision-table { display: flex; flex-direction: column; gap: 10px; }
.decision-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
}
.decision-chip {
  font-family: var(--sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.chip--evacuate { background: rgba(232,64,64,0.15);  color: var(--threat-direct); }
.chip--prepare  { background: rgba(245,166,35,0.12); color: var(--threat-watch); }
.chip--monitor  { background: rgba(90,172,223,0.12); color: var(--accent-2); }
.decision-text strong { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 6px; }
.decision-text p { font-family: var(--sans); font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-bottom: 8px; }
.decision-text a { color: var(--accent-2); }

/* ─── Email alerts ───────────────────────────────────────────────────────── */

.alerts-cta {
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  border-radius: 14px;
  padding: 36px 40px;
  max-width: 560px;
  box-shadow: var(--shadow-card);
}
.alerts-cta h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em;
}
.alerts-cta p {
  font-family: var(--sans); font-size: 14px; color: var(--ink-2);
  line-height: 1.55; margin-bottom: 20px;
}
.alert-form { display: flex; gap: 8px; }
.alert-form input[type="email"] {
  flex: 1; padding: 11px 16px;
  background: var(--bg-2); border: 1px solid var(--rule-strong);
  border-radius: 7px; font-family: var(--sans); font-size: 14px;
  color: var(--ink); outline: none;
  transition: border-color 0.15s;
}
.alert-form input:focus { border-color: var(--accent); }
.alert-form button {
  padding: 11px 20px;
  background: var(--accent); color: #07111f;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  border: none; border-radius: 7px;
  white-space: nowrap; transition: background 0.15s;
}
.alert-form button:hover { background: #e09410; }

/* ─── Share footer ───────────────────────────────────────────────────────── */

.share-footer { text-align: center; padding: 16px 0; }
.share-footer p {
  font-family: var(--serif); font-size: 20px; color: var(--ink-2); margin-bottom: 18px;
}
.share-btns { display: flex; gap: 10px; justify-content: center; }
.share-btn {
  display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: 7px;
  border: 1px solid var(--rule-strong);
  background: var(--bg-card); color: var(--ink);
  cursor: pointer; text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.share-btn:hover { border-color: var(--accent); background: var(--accent-dim); color: var(--ink); opacity: 1; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */

footer {
  margin-top: auto;
  padding: 44px 28px;
  border-top: 1px solid var(--rule-strong);
  background: rgba(7,17,31,0.8);
}
.ft-nav { display: flex; flex-wrap: wrap; gap: 4px 14px; margin-bottom: 16px; }
.ft-nav a { font-family: var(--sans); font-size: 13px; color: var(--ink-2); text-decoration: none; }
.ft-nav a:hover { color: var(--accent); }
.ft-also { font-family: var(--sans); font-size: 13px; color: var(--ink-3); margin-bottom: 10px; }
.ft-also a { color: var(--ink-2); }
.ft-meta { font-family: var(--sans); font-size: 12px; color: var(--ink-3); line-height: 1.6; }
.ft-meta strong { color: var(--threat-watch); }

/* ─── Static pages (.page) ───────────────────────────────────────────────── */

.page { max-width: 720px; margin: 0 auto; padding: 64px 28px; flex: 1; }
.page-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.page h1 {
  font-family: var(--serif); font-size: clamp(28px, 5vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 20px;
}
.page-lede {
  font-family: var(--serif); font-size: 18px; color: var(--ink-2);
  line-height: 1.65; margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--rule-strong);
}
.page h2 {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--ink); margin-top: 36px; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.page p { font-family: var(--serif); font-size: 16px; color: var(--ink-2); line-height: 1.75; margin-bottom: 16px; }
.page ul, .page ol { font-family: var(--serif); font-size: 16px; color: var(--ink-2); line-height: 1.75; padding-left: 24px; margin-bottom: 16px; }
.page li { margin-bottom: 6px; }
.page strong { color: var(--ink); }
.page a { color: var(--accent-2); }
.meta-date { font-family: var(--sans); font-size: 12px; color: var(--ink-3); margin-bottom: 28px; }

/* ─── Contact form ───────────────────────────────────────────────────────── */

.contact-form { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.contact-form label {
  display: block; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 11px 16px;
  background: var(--bg-card); border: 1px solid var(--rule-strong);
  border-radius: 7px; font-family: var(--sans); font-size: 15px;
  color: var(--ink); outline: none; transition: border-color 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  align-self: flex-start; padding: 11px 24px;
  background: var(--accent); color: #07111f;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  border: none; border-radius: 7px;
}
.contact-form button:hover { background: #e09410; }

/* ─── Guides page ────────────────────────────────────────────────────────── */

.guide-list { list-style: none; padding: 0; margin-top: 8px; }
.guide-item { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.guide-item:first-child { border-top: 1px solid var(--rule-strong); }
.guide-item a { border-bottom: none; color: var(--ink); text-decoration: none; display: block; }
.guide-title {
  font-family: var(--serif); font-weight: 700; font-size: 22px;
  color: var(--accent-2); margin-bottom: 6px; line-height: 1.2;
}
.guide-desc { font-family: var(--serif); font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.guide-item a:hover .guide-title { color: var(--accent); }
.guide-tag {
  display: inline-block; font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent);
  padding: 2px 8px; border-radius: 3px; margin-bottom: 8px;
}
.guide-section-head {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 44px; margin-bottom: 0;
}

/* ─── No-data ────────────────────────────────────────────────────────────── */

.no-data { font-family: var(--sans); font-size: 14px; color: var(--ink-3); padding: 24px 0; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .masthead { padding: 0 16px; }
  .mast-date { display: none; }
  .mast-btn { padding: 5px 8px; font-size: 12px; }
  .hero { padding: 36px 16px 36px; min-height: 280px; }
  .section { padding: 44px 16px; }
  .page { padding: 44px 16px; }
  .hbid-row { flex-direction: column; gap: 20px; }
  .hbid-meter { flex-direction: row; min-width: unset; }
  .hbid-step { flex: 1; }
  .prep-track { flex-wrap: wrap; }
  .prep-track-status { width: 100%; text-align: center; margin-top: 6px; }
  .alert-form { flex-direction: column; }
  .alerts-cta { padding: 24px 20px; }
  .share-btns { flex-direction: column; align-items: center; }
  footer { padding: 32px 16px; }
  .clock-stats { gap: 20px; }
  .prep-preseason-banner { gap: 6px; }
  .prep-ps-count { font-size: 40px; }
}
