:root {
  --ink: #101310;
  --muted: #667067;
  --line: #dfe4df;
  --soft-line: #edf0ed;
  --paper: #ffffff;
  --wash: #f3f7f1;
  --green: #54b948;
  --dark-green: #287f31;
  --warning: #fff4dd;
  --danger: #bb2c22;
  --sans: "Manrope", Arial, sans-serif;
  --display: "DM Serif Display", Georgia, serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.wordmark {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.05em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span { color: var(--green); }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 700;
}
.site-nav > a, .site-nav summary { padding: 28px 0 25px; text-decoration: none; }
.site-nav > a, .site-nav summary { border-bottom: 3px solid transparent; }
.site-nav > a:hover, .site-nav > a.active, .site-nav summary:hover { border-color: var(--green); }
.site-nav details { position: relative; }
.site-nav summary { cursor: pointer; list-style: none; }
.site-nav summary::-webkit-details-marker { display: none; }
.site-nav details > div {
  position: absolute;
  top: 58px;
  right: -18px;
  min-width: 180px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(16, 19, 16, .12);
}
.site-nav details a { display: block; padding: 11px 12px; text-decoration: none; }
.site-nav details a:hover { background: var(--wash); }
.header-tools { display: flex; align-items: center; gap: 8px; }
.header-weather-link { color: var(--dark-green); font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.unit-toggle, .location-trigger {
  min-height: 40px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.unit-toggle { min-width: 42px; padding: 0 10px; }
.location-trigger {
  max-width: 230px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-trigger span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pin-dot { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--green); }

.alert-bar { display: none; }
.alert-bar.visible {
  display: block;
  padding: 10px max(20px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: white;
  font-size: 13px;
  text-align: center;
}
.alert-bar button { border: 0; background: transparent; color: inherit; cursor: pointer; font-weight: 800; text-decoration: underline; }
.alert-bar.severe { background: var(--danger); }

.page-shell { width: min(calc(100% - 40px), var(--max)); min-height: calc(100vh - 210px); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--dark-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.page-title { max-width: 850px; padding: 78px 0 42px; border-bottom: 1px solid var(--line); }
.page-title h1 { margin: 0; font: 400 clamp(46px, 7vw, 84px)/.98 var(--display); letter-spacing: -.035em; }
.page-title > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }

.page-loading { min-height: 65vh; display: grid; place-content: center; justify-items: center; color: var(--muted); }
.page-loading span {
  width: 32px;
  height: 32px;
  border: 3px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.page-error { max-width: 700px; margin: 80px auto; padding: 48px; background: var(--wash); text-align: center; }
.page-error h1 { margin: 0; font: 400 44px/1.05 var(--display); }
.page-error button, .primary-link, .official-doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: end;
  padding: clamp(75px, 10vw, 136px) 0 84px;
  border-bottom: 1px solid var(--ink);
}
.lead-story h1 { max-width: 810px; margin: 0; font: 400 clamp(54px, 7.5vw, 104px)/.91 var(--display); letter-spacing: -.045em; }
.lead-summary { max-width: 710px; margin: 30px 0 18px; color: #465047; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.story-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0 0 30px; color: var(--muted); font-size: 12px; font-weight: 700; }
.primary-link { gap: 18px; }
.primary-link:hover, .official-doc-link:hover { background: var(--dark-green); border-color: var(--dark-green); }

.weather-now-card { padding: 28px; background: var(--wash); border-top: 5px solid var(--green); }
.weather-now-top { display: flex; align-items: center; justify-content: space-between; }
.weather-now-top p { margin: 0; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.weather-now-top img { width: 68px; height: 68px; object-fit: cover; border-radius: 50%; }
.hero-temp { margin: 18px 0 -6px; font: 400 82px/1 var(--display); }
.weather-now-card h2 { margin: 0; font-size: 18px; }
.weather-now-card > p:not(.hero-temp) { margin: 5px 0; color: var(--muted); font-size: 13px; }
.quick-range { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid #d8dfd5; }
.quick-range span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.quick-range strong { display: block; color: var(--ink); font-size: 19px; }
.change-location { margin-top: 22px; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; text-decoration: underline; }

.headline-section, .desk-section { padding: 75px 0 86px; border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.section-head h2 { margin: 0; font: 400 clamp(38px, 5vw, 58px)/1 var(--display); }
.section-head > a { color: var(--dark-green); font-size: 13px; font-weight: 800; text-decoration: none; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 28px; }
.office-story { border-top: 1px solid var(--ink); padding-top: 14px; }
.office-story img { width: 100%; aspect-ratio: 16/9; margin-bottom: 18px; object-fit: cover; background: var(--wash); }
.office-story h3 { margin: 0 0 10px; font: 400 27px/1.1 var(--display); }
.office-story p { margin: 0; color: var(--muted); font-size: 14px; }
.office-story .story-kicker { margin: 0 0 9px; color: var(--dark-green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.office-story a { display: inline-block; margin-top: 14px; color: var(--dark-green); font-size: 12px; font-weight: 800; text-decoration: none; }
.office-story.text-story { padding: 24px; background: var(--wash); border: 0; border-left: 4px solid var(--green); }
.empty-story { grid-column: 1/-1; padding: 35px; background: var(--wash); color: var(--muted); }
.coverage-credit { margin: 26px 0 0; color: var(--muted); font-size: 11px; }
.coverage-credit a { color: var(--ink); font-weight: 800; }
.desk-links { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.desk-links a { min-height: 240px; padding: 24px 20px; display: flex; flex-direction: column; border-right: 1px solid var(--line); text-decoration: none; }
.desk-links a:last-child { border-right: 0; }
.desk-links a:hover { background: var(--wash); }
.desk-links span { color: var(--green); font-size: 12px; font-weight: 800; }
.desk-links strong { margin-top: auto; font: 400 28px/1.1 var(--display); }
.desk-links small { margin-top: 10px; color: var(--muted); }
.source-note { padding: 36px 0; color: var(--muted); font-size: 13px; }

.news-page-title { max-width: 980px; }
.news-tools { padding: 34px 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--ink); }
.news-tabs { display: flex; gap: 8px; }
.news-tabs a { padding: 10px 15px; border: 1px solid var(--line); font-size: 12px; font-weight: 800; text-decoration: none; }
.news-tabs a.active { background: var(--ink); border-color: var(--ink); color: white; }
.news-search { width: min(100%, 430px); display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.news-search input[type="search"] { min-width: 0; height: 45px; padding: 0 14px; border: 1px solid #aab2aa; border-right: 0; border-radius: 0; }
.news-search button { padding: 0 20px; border: 1px solid var(--ink); background: var(--ink); color: white; cursor: pointer; font-size: 12px; font-weight: 800; }
.news-list-heading { padding: 28px 0 20px; display: flex; justify-content: space-between; gap: 30px; color: var(--muted); font-size: 12px; }
.news-list-heading p { margin: 0; color: var(--ink); font-weight: 800; }
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 28px; padding: 0 0 58px; }
.news-card { min-width: 0; padding-top: 16px; display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.news-card .story-kicker { margin: 0 0 9px; color: var(--dark-green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-card h3 { margin: 0 0 12px; font: 400 27px/1.1 var(--display); }
.news-card h3 a { text-decoration: none; }
.news-card h3 a:hover { color: var(--dark-green); }
.news-card > p:not(.story-kicker) { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.news-card-meta { margin-top: auto; padding-top: 10px; display: grid; gap: 4px; color: var(--muted); font-size: 10px; }
.news-card-meta span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.story-link { margin-top: 15px; color: var(--dark-green); font-size: 12px; font-weight: 800; text-decoration: none; }
.news-pagination { min-height: 66px; padding: 18px 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; }
.news-pagination a { color: var(--dark-green); font-weight: 800; text-decoration: none; }
.news-pagination a:last-child { justify-self: end; }
.news-pagination strong { padding: 0 16px; }
.source-disclosure { margin: 44px 0 90px; padding: 25px 28px; border-left: 4px solid var(--green); background: var(--wash); }
.source-disclosure p { margin: 7px 0; color: var(--muted); font-size: 13px; }
.source-disclosure a { color: var(--dark-green); font-size: 12px; font-weight: 800; }

.article-shell { width: min(calc(100% - 40px), 1040px); min-height: calc(100vh - 210px); margin: 0 auto; }
.article-header { max-width: 940px; padding: clamp(66px, 9vw, 112px) 0 46px; border-bottom: 1px solid var(--ink); }
.article-header h1 { margin: 0; font: 400 clamp(48px, 6.8vw, 82px)/.98 var(--display); letter-spacing: -.035em; }
.article-meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 9px 28px; color: var(--muted); font-size: 12px; font-weight: 700; }
.article-topics { margin: 12px 0 0; color: var(--dark-green); font-size: 11px; font-weight: 800; }
.official-copy-note { max-width: 820px; margin: 34px 0 44px; padding: 20px 24px; border-left: 4px solid var(--green); background: var(--wash); }
.official-copy-note p { margin: 5px 0; color: var(--muted); font-size: 13px; }
.official-copy-note small { color: var(--muted); }
.article-body { max-width: 760px; margin: 0 0 58px; font-family: Georgia, serif; font-size: 19px; line-height: 1.78; }
.article-body p { margin: 0 0 1.35em; white-space: pre-line; }
.article-body h2 { margin: 1.7em 0 .65em; font: 400 32px/1.15 var(--display); }
.article-body blockquote { margin: 1.6em 0; padding: 0 0 0 24px; border-left: 3px solid var(--green); font-style: italic; }
.article-body .article-list-item { position: relative; padding-left: 24px; }
.article-body .article-list-item::before { content: "•"; position: absolute; left: 2px; color: var(--green); }
.media-rights-note { max-width: 760px; margin: -30px 0 50px; padding: 17px 20px; background: var(--wash); color: var(--muted); font-size: 12px; }
.allegation-note { max-width: 760px; padding: 24px; border: 1px solid var(--line); }
.allegation-note p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.article-return { max-width: 760px; margin: 42px 0 90px; display: flex; justify-content: space-between; gap: 20px; }
.article-return a { color: var(--dark-green); font-size: 12px; font-weight: 800; }

.current-overview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding: 55px 0 65px; border-bottom: 1px solid var(--ink); }
.current-large { display: grid; grid-template-columns: 1fr auto; gap: 15px 35px; align-items: center; }
.current-large img { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; }
.large-temp { margin: 0; font: 400 clamp(70px, 8vw, 108px)/.9 var(--display); }
.current-large h2 { margin: 12px 0 2px; font-size: 20px; }
.current-large div > p:last-child { margin: 0; color: var(--muted); }
.station-line { grid-column: 1/-1; margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.metrics-grid { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); align-content: start; border-top: 1px solid var(--ink); }
.metrics-grid div { padding: 18px 5px; border-bottom: 1px solid var(--line); }
.metrics-grid div:nth-child(odd) { padding-right: 22px; }
.metrics-grid div:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); }
.metrics-grid dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.metrics-grid dd { margin: 5px 0 0; font-size: 17px; font-weight: 700; }
.page-cards { display: grid; grid-template-columns: repeat(4, 1fr); padding: 60px 0 90px; }
.page-cards a { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-left: 0; display: flex; flex-direction: column; text-decoration: none; }
.page-cards a:first-child { border-left: 1px solid var(--line); }
.page-cards a:hover { background: var(--wash); border-top-color: var(--green); }
.page-cards h2 { margin: 18px 0 10px; font: 400 29px/1.08 var(--display); }
.page-cards p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.page-cards span { margin-top: auto; color: var(--dark-green); font-size: 12px; font-weight: 800; }

.chart-panel { margin: 48px 0 34px; padding: 30px; background: var(--wash); }
.chart-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.chart-head h2 { margin: 0; font: 400 33px/1 var(--display); }
.chart-head div { display: flex; gap: 6px; }
.chart-head button { padding: 7px 12px; border: 1px solid var(--line); background: white; cursor: pointer; font-size: 11px; font-weight: 800; }
.chart-head button.active { background: var(--ink); border-color: var(--ink); color: white; }
.trend-chart { width: 100%; min-height: 230px; overflow-x: auto; }
.trend-chart svg { min-width: 720px; width: 100%; height: 230px; overflow: visible; }
.hourly-detail-list { margin-bottom: 90px; border-top: 1px solid var(--ink); }
.hour-row { display: grid; grid-template-columns: 115px 65px minmax(180px, 1fr) 110px 120px; gap: 20px; align-items: center; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.hour-row img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.hour-row time, .hour-row strong { font-weight: 800; }
.hour-row p { margin: 0; color: var(--muted); font-size: 13px; }
.hour-row small { color: var(--muted); }

.week-list { margin: 50px 0 90px; border-top: 1px solid var(--ink); }
.forecast-day { display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid var(--line); }
.forecast-day > header { padding: 28px 25px 28px 0; }
.forecast-day > header h2 { margin: 0; font: 400 31px/1.1 var(--display); }
.forecast-day > header p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.day-periods { display: grid; grid-template-columns: repeat(2, 1fr); }
.day-period { padding: 28px; border-left: 1px solid var(--line); }
.day-period-head { display: flex; align-items: center; gap: 15px; }
.day-period img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }
.day-period h3 { margin: 0; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.day-period strong { font: 400 30px/1 var(--display); }
.day-period p { margin: 16px 0 9px; font-size: 14px; }
.day-period small { color: var(--muted); }
.missing-period { color: var(--muted); display: grid; place-content: center; }

.alert-page-list { margin: 50px 0 35px; display: grid; gap: 18px; }
.alert-card { padding: 28px; border: 1px solid var(--line); border-left: 5px solid #e5a321; }
.alert-card.severe, .alert-card.extreme { border-left-color: var(--danger); }
.alert-card h2 { margin: 0 0 10px; font: 400 31px/1.08 var(--display); }
.alert-card p { margin: 5px 0; color: var(--muted); font-size: 14px; }
.alert-card button { margin-top: 17px; padding: 0; border: 0; background: transparent; color: var(--dark-green); cursor: pointer; font-weight: 800; }
.all-clear { padding: 50px; background: var(--wash); text-align: center; }
.all-clear h2 { margin: 0; font: 400 40px/1 var(--display); }
.all-clear p { color: var(--muted); }
.alert-explainer { margin: 0 0 90px; padding: 28px; background: var(--wash); }
.alert-explainer h2 { margin-top: 0; font: 400 28px/1 var(--display); }

.radar-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); gap: 45px; padding: 50px 0 90px; }
.radar-frame { min-height: 460px; display: grid; place-items: center; overflow: hidden; background: #eef1ef; border: 1px solid var(--line); }
.radar-frame img { width: 100%; height: auto; }
.radar-frame p { padding: 30px; color: var(--muted); text-align: center; }
.radar-layout aside { padding: 30px; background: var(--wash); align-self: start; }
.radar-layout aside h2 { margin: 0 0 15px; font: 400 32px/1.05 var(--display); }
.radar-layout aside p { color: var(--muted); font-size: 14px; }
.radar-layout aside a { display: inline-block; margin-top: 12px; color: var(--dark-green); font-size: 13px; font-weight: 800; }

.safety-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 50px 0 90px; }
.safety-list article, .safety-list > a { padding: 32px; background: var(--wash); border-top: 4px solid var(--green); text-decoration: none; }
.safety-list > a:hover { background: #eaf3e7; }
.safety-list > a > span { color: var(--green); font-size: 12px; font-weight: 800; }
.safety-list h2 { margin: 0 0 14px; font: 400 31px/1 var(--display); }
.safety-list p, .safety-list li { color: #485148; font-size: 14px; }
.safety-list a { color: var(--dark-green); font-weight: 800; }

.health-hero { display: grid; grid-template-columns: minmax(260px, 1fr) 2fr; gap: 40px; margin: 50px 0 40px; padding: 38px; background: var(--wash); }
.health-hero h2 { margin: 8px 0; font: 400 45px/1 var(--display); }
.health-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); }
.health-dot.degraded { background: #e5a321; }
.health-dot.failing { background: var(--danger); }
.health-hero dl { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.health-hero dl div { padding: 20px; background: white; }
.health-hero dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.health-hero dd { margin: 7px 0 0; font: 400 27px/1 var(--display); }
.endpoint-list { margin-bottom: 90px; border-top: 1px solid var(--ink); }
.endpoint-row { display: grid; grid-template-columns: 1.2fr 100px 1fr; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 13px; }
.endpoint-row strong { text-transform: capitalize; }
.endpoint-row span { color: var(--muted); }

.coverage-summary { max-width: 900px; margin: 45px 0 35px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.coverage-summary > div { padding: 28px; background: var(--wash); }
.coverage-summary strong { font: 400 27px/1 var(--display); }
.coverage-summary p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.reuse-note { max-width: 900px; margin: -10px 0 42px; padding: 18px 22px; border-left: 3px solid var(--green); background: var(--wash); color: var(--muted); font-size: 12px; }
.reuse-note strong { color: var(--ink); }
.coverage-list { margin-bottom: 45px; border-top: 1px solid var(--ink); }
.coverage-list article { display: grid; grid-template-columns: 180px 1fr 110px; gap: 30px; align-items: start; padding: 25px 4px; border-bottom: 1px solid var(--line); }
.coverage-list h2 { margin: 0; font: 400 27px/1.1 var(--display); }
.coverage-list p { margin: 0; color: var(--muted); font-size: 14px; }
.status-live, .status-next { justify-self: end; padding: 5px 9px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-live { background: #ddf2d8; color: #236d2c; }
.status-next { background: #edf0ed; color: #596159; }
.official-doc-link { margin: 0 0 90px; padding: 25px; background: var(--wash); }
.official-doc-link a { color: var(--dark-green); font-weight: 800; }
.policy-copy { max-width: 850px; margin: 45px 0 90px; }
.policy-copy section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.policy-copy h2 { margin: 0 0 12px; font: 400 31px/1.1 var(--display); }
.policy-copy p, .policy-copy li { color: var(--muted); }

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 12px;
}
.site-footer p { margin: 0; }

dialog { color: var(--ink); }
dialog::backdrop { background: rgba(16, 19, 16, .56); backdrop-filter: blur(3px); }
.location-dialog, .alert-dialog { width: min(calc(100% - 28px), 660px); max-height: 86vh; padding: 0; border: 0; box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.dialog-head { padding: 25px 28px; display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--line); }
.dialog-head h2 { margin: 0; font: 400 35px/1 var(--display); }
.dialog-head button { width: 38px; height: 38px; border: 0; background: var(--wash); cursor: pointer; font-size: 24px; }
.location-search { padding: 28px 28px 12px; }
.location-search label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 800; }
.location-search > div { display: grid; grid-template-columns: 1fr auto; }
.location-search input { min-width: 0; height: 48px; padding: 0 14px; border: 1px solid #aab2aa; border-right: 0; border-radius: 0; }
.location-search button { padding: 0 20px; border: 1px solid var(--ink); background: var(--ink); color: white; cursor: pointer; font-weight: 800; }
.use-location { margin: 2px 28px 14px; padding: 0; border: 0; background: transparent; color: var(--dark-green); cursor: pointer; font-size: 12px; font-weight: 800; }
.search-status { margin: 8px 28px 15px; color: var(--muted); font-size: 12px; }
.search-results { max-height: 330px; overflow-y: auto; padding: 0 28px 25px; }
.search-result { width: 100%; padding: 15px 4px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 0; border-bottom: 1px solid var(--line); background: white; cursor: pointer; text-align: left; }
.search-result:hover { color: var(--dark-green); }
.search-result strong { display: block; }
.search-result small { color: var(--muted); }
.alert-dialog [data-alert-body] { max-height: 62vh; overflow-y: auto; padding: 28px; }
.alert-dialog h3 { margin: 24px 0 6px; font-size: 13px; text-transform: uppercase; }
.alert-dialog p { white-space: pre-line; }
.alert-dialog .alert-facts { padding: 17px; background: var(--wash); color: var(--muted); font-size: 13px; }
.alert-dialog a { color: var(--dark-green); font-weight: 800; }
.toast { position: fixed; z-index: 50; right: 20px; bottom: 20px; max-width: 360px; padding: 13px 18px; background: var(--ink); color: white; opacity: 0; transform: translateY(20px); pointer-events: none; transition: .2s; font-size: 13px; }
.toast.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .header-inner { gap: 20px; }
  .site-nav { justify-content: flex-start; gap: 18px; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .location-trigger { max-width: 150px; }
  .home-hero { grid-template-columns: 1fr 320px; gap: 45px; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .news-list { grid-template-columns: repeat(2, 1fr); }
  .desk-links, .page-cards { grid-template-columns: repeat(2, 1fr); }
  .desk-links a:nth-child(2) { border-right: 0; }
  .desk-links a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .page-cards a:nth-child(3) { border-left: 1px solid var(--line); }
  .radar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { width: min(calc(100% - 28px), var(--max)); min-height: auto; padding: 13px 0 0; grid-template-columns: 1fr auto; }
  .site-nav { grid-column: 1/-1; order: 3; width: 100%; }
  .site-nav > a, .site-nav summary { padding: 13px 0 11px; }
  .site-nav details > div { top: 42px; }
  .location-trigger { max-width: 180px; }
  .unit-toggle { display: none; }
  .page-shell, .site-footer, .article-shell { width: min(calc(100% - 28px), var(--max)); }
  .home-hero, .current-overview { grid-template-columns: 1fr; }
  .home-hero { padding: 64px 0; gap: 45px; }
  .lead-story h1 { font-size: clamp(52px, 15vw, 78px); }
  .page-title { padding-top: 54px; }
  .page-title h1 { font-size: clamp(44px, 13vw, 66px); }
  .story-grid, .news-grid, .news-list, .safety-list { grid-template-columns: 1fr; }
  .news-tools { align-items: stretch; flex-direction: column; }
  .news-search { width: 100%; }
  .news-list-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .article-body { font-size: 18px; }
  .current-overview { gap: 40px; }
  .page-cards { grid-template-columns: 1fr; }
  .page-cards a { border-left: 1px solid var(--line); border-bottom: 0; }
  .page-cards a:last-child { border-bottom: 1px solid var(--line); }
  .hour-row { grid-template-columns: 82px 48px 1fr 70px; gap: 10px; }
  .hour-row .hour-wind { display: none; }
  .forecast-day { grid-template-columns: 1fr; }
  .forecast-day > header { padding-bottom: 14px; }
  .day-periods { grid-template-columns: 1fr; }
  .day-period { border-left: 0; border-top: 1px solid var(--line); }
  .health-hero { grid-template-columns: 1fr; }
  .health-hero dl { grid-template-columns: repeat(2, 1fr); }
  .coverage-summary { grid-template-columns: 1fr; }
  .coverage-list article { grid-template-columns: 1fr; gap: 12px; }
  .status-live, .status-next { justify-self: start; }
  .site-footer { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .site-nav { gap: 16px; font-size: 12px; }
  .location-trigger { max-width: 142px; }
  .home-hero { padding-top: 48px; }
  .weather-now-card { padding: 22px; }
  .story-grid { gap: 36px; }
  .desk-links { grid-template-columns: 1fr; }
  .desk-links a { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .desk-links a:last-child { border-bottom: 0; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics-grid div, .metrics-grid div:nth-child(odd), .metrics-grid div:nth-child(even) { padding: 15px 4px; border-left: 0; }
  .current-large img { width: 78px; height: 78px; }
  .chart-panel { margin-left: -14px; margin-right: -14px; padding: 22px 14px; }
  .chart-head { align-items: flex-start; flex-direction: column; }
  .hour-row { grid-template-columns: 75px 40px 1fr; }
  .hour-row .hour-rain { display: none; }
  .radar-frame { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
