:root {
  --bg: #09141b;
  --bg-deep: #061017;
  --panel: rgba(8, 22, 31, 0.78);
  --panel-strong: rgba(11, 28, 38, 0.9);
  --panel-border: rgba(173, 219, 255, 0.12);
  --text: #edf7ff;
  --muted: #95b2c4;
  --soft: #658195;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #62d0ff;
  --accent-2: #8bf6cf;
  --good: #7ff2b2;
  --warn: #f6ce62;
  --danger: #ff7a66;
  --shadow: 0 24px 80px rgba(1, 8, 12, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(79, 169, 230, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(85, 255, 193, 0.12), transparent 24%),
    linear-gradient(180deg, #0d1c26 0%, #09141b 48%, #061017 100%);
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.page-shell {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 18px 72px;
}

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.ambient-a {
  top: 10%;
  right: 3%;
  width: 240px;
  height: 240px;
  background: rgba(98, 208, 255, 0.12);
  animation: drift-a 16s ease-in-out infinite;
}

.ambient-b {
  left: -2%;
  top: 38%;
  width: 260px;
  height: 260px;
  background: rgba(139, 246, 207, 0.08);
  animation: drift-b 18s ease-in-out infinite;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}

.brand-logo-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
}

.brand-location {
  margin-bottom: 0;
}

.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;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

h1,
h2,
.decision-title,
.stat-value,
.decision-label {
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.header-meta {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  min-width: 0;
}

.header-meta-card {
  width: 100%;
  max-width: none;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(173, 219, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(7, 20, 28, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(1, 8, 12, 0.22);
}

.header-meta-eyebrow {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-condition-spotlight {
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  min-height: 136px;
}

.current-condition-spotlight .guide-range {
  grid-column: 2;
  text-align: left;
  white-space: normal;
  font-size: 0.82rem;
  margin-top: 2px;
}

.current-condition-spotlight .guide-copy strong {
  font-size: 1.08rem;
}

.current-condition-spotlight .guide-copy span {
  display: block;
  margin-top: 4px;
}

.header-note {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-grid,
.detail-grid,
.events-grid,
.notes-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-grid {
  grid-template-columns: 1.4fr 1fr;
}

.detail-grid,
.events-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-grid,
.notes-grid {
  grid-template-columns: 1fr;
}

.hero-card,
.panel {
  min-width: 0;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-xl);
}

.hero-card-main {
  padding: 26px;
}

.hero-card-stack {
  display: grid;
  gap: 18px;
  background: none;
  border: 0;
  box-shadow: none;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.data-disclaimer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 209, 102, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.18), rgba(255, 122, 102, 0.1)),
    rgba(22, 17, 9, 0.82);
  color: #fff4d0;
  box-shadow:
    0 0 0 1px rgba(255, 209, 102, 0.08),
    0 18px 42px rgba(255, 209, 102, 0.12);
}

.data-disclaimer[hidden] {
  display: none;
}

.data-disclaimer strong {
  flex: 0 0 auto;
  color: #ffd166;
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 1.04rem;
}

.data-disclaimer span {
  color: rgba(255, 244, 208, 0.9);
  line-height: 1.45;
  text-align: right;
}

.hero-topline,
.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.source-list,
.panel-kicker {
  margin: 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.panel-link {
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.panel-link:hover,
.panel-link:focus-visible {
  text-decoration: underline;
}

.panel-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(98, 208, 255, 0.34);
  background: linear-gradient(180deg, rgba(98, 208, 255, 0.18), rgba(98, 208, 255, 0.1));
  color: #d8f3ff;
  text-align: center;
  box-shadow: 0 12px 26px rgba(5, 17, 28, 0.24);
}

.panel-link-button:hover,
.panel-link-button:focus-visible {
  text-decoration: none;
  background: linear-gradient(180deg, rgba(98, 208, 255, 0.24), rgba(98, 208, 255, 0.14));
  border-color: rgba(98, 208, 255, 0.48);
}

.hero-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin: 26px 0 28px;
}

.decision-label {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.decision-title {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.decision-detail {
  margin: 14px 0 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.6;
}

.decision-badge {
  min-width: 96px;
  padding: 16px 14px;
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.decision-grid,
.weather-grid,
.daylight-grid {
  display: grid;
  gap: 14px;
}

.decision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weather-grid,
.daylight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.weather-dashboard {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.green-acres-panel {
  --status-accent-rgb: 149, 178, 196;
  --status-accent: #95b2c4;
  position: relative;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(184, 213, 229, 0.15);
  background:
    radial-gradient(circle at right top, rgba(98, 208, 255, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(7, 19, 27, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 36px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.green-acres-panel[data-status="open"] {
  --status-accent-rgb: 139, 246, 207;
  --status-accent: #8bf6cf;
}

.green-acres-panel[data-status="delayed"] {
  --status-accent-rgb: 98, 208, 255;
  --status-accent: #62d0ff;
}

.green-acres-panel[data-status="limited"] {
  --status-accent-rgb: 255, 209, 102;
  --status-accent: #ffd166;
}

.green-acres-panel[data-status="closed"] {
  --status-accent-rgb: 255, 122, 102;
  --status-accent: #ff7a66;
}

.green-acres-panel > * {
  position: relative;
  z-index: 1;
}

.green-acres-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: 12px;
}

.green-acres-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 16px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(var(--status-accent-rgb), 0.28);
  background: rgba(var(--status-accent-rgb), 0.12);
  color: var(--status-accent);
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 0 28px rgba(var(--status-accent-rgb), 0.12);
}

.green-acres-panel[data-status="open"] .green-acres-pill,
.green-acres-panel[data-status="closed"] .green-acres-pill {
  --guide-accent-rgb: var(--status-accent-rgb);
  border-color: rgba(var(--status-accent-rgb), 0.42);
  background: rgba(var(--status-accent-rgb), 0.16);
  box-shadow:
    0 0 0 1px rgba(var(--status-accent-rgb), 0.08),
    0 0 30px rgba(var(--status-accent-rgb), 0.18);
  animation: green-acres-pill-pulse 2.4s ease-in-out infinite;
}

.green-acres-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px rgba(var(--status-accent-rgb), 0.6);
}

.green-acres-panel[data-status="open"] .green-acres-pill::before,
.green-acres-panel[data-status="closed"] .green-acres-pill::before {
  box-shadow: 0 0 0 0 rgba(var(--status-accent-rgb), 0.38);
  animation: guide-dot-pulse 1.7s ease-in-out infinite;
}

.green-acres-report {
  margin: 0;
  max-width: 66ch;
}

.green-acres-address-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  max-width: 290px;
  margin-top: 0;
  border-color: rgba(184, 213, 229, 0.18);
  background: linear-gradient(180deg, rgba(184, 213, 229, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 12px 28px rgba(5, 17, 28, 0.14);
  text-align: center;
}

.green-acres-address-link:hover,
.green-acres-address-link:focus-visible {
  border-color: rgba(184, 213, 229, 0.3);
  background: linear-gradient(180deg, rgba(184, 213, 229, 0.13), rgba(255, 255, 255, 0.055));
}

.green-acres-map-chooser {
  grid-column: 1 / -1;
}

.weather-visual {
  --wind-rotation: 0deg;
  --wind-pulse-duration: 3.2s;
  position: relative;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(98, 208, 255, 0.12);
  background:
    radial-gradient(circle at left center, rgba(98, 208, 255, 0.12), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(7, 19, 27, 0.62);
}

.weather-wind-gauge {
  position: relative;
  width: 168px;
  height: 168px;
}

.weather-wind-ring,
.weather-wind-core,
.weather-wind-arrow,
.weather-compass-label {
  position: absolute;
}

.weather-wind-ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(139, 246, 207, 0.18);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 58%),
    repeating-conic-gradient(from -1deg, rgba(237, 247, 255, 0.18) 0deg 0.7deg, transparent 0.7deg 6deg),
    radial-gradient(circle at center, rgba(98, 208, 255, 0.08), rgba(3, 12, 18, 0.1) 68%);
  box-shadow:
    inset 0 0 20px rgba(98, 208, 255, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.22);
}

.weather-wind-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid rgba(237, 247, 255, 0.72);
  transform: translateX(-50%);
}

.weather-compass-label {
  color: rgba(237, 247, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-compass-n {
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
}

.weather-compass-e {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.weather-compass-s {
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.weather-compass-w {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.weather-wind-arrow {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 244, 236, 0.92), rgba(225, 244, 236, 0.92));
  transform-origin: 0% 50%;
  transform: translateY(-50%) rotate(var(--wind-rotation));
  transition: transform 700ms ease;
  box-shadow: 0 0 10px rgba(225, 244, 236, 0.08);
  animation: compass-pulse var(--wind-pulse-duration) ease-in-out infinite;
  z-index: 2;
}

.weather-wind-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 4px solid rgba(225, 244, 236, 0.92);
  background: rgba(9, 20, 27, 0.92);
  transform: translate(-50%, -50%);
}

.weather-wind-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 5px solid rgba(225, 244, 236, 0.92);
  border-right: 5px solid rgba(225, 244, 236, 0.92);
  transform: translateY(-50%) rotate(45deg);
}

.weather-wind-core {
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), rgba(10, 19, 27, 0.96));
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.weather-visual-copy {
  position: relative;
  z-index: 1;
}

.weather-wind-direction {
  margin-top: 2px;
}

.weather-speed-readout {
  margin: 8px 0 0;
  color: #f1f7fb;
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.weather-speed-number {
  font-size: 1.9rem;
  font-weight: 800;
}

.weather-speed-units {
  color: rgba(237, 247, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-wind-detail {
  max-width: 46ch;
  margin: 6px 0 0;
  color: var(--muted);
}

.weather-water-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.weather-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.weather-summary-card,
.weather-subpanel {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.weather-water-card {
  grid-column: 1 / -1;
}

.weather-forecast-now {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.weather-subpanel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 14px;
}

.weather-hourly-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
}

.weather-hourly-card {
  position: relative;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(139, 246, 207, 0.1);
  background:
    radial-gradient(circle at 76% 18%, rgba(139, 246, 207, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.weather-hourly-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(98, 208, 255, 0.08)),
    linear-gradient(90deg, rgba(139, 246, 207, 0.12), rgba(98, 208, 255, 0.16));
  opacity: var(--rain-alpha, 0.14);
  pointer-events: none;
}

.weather-hourly-card.is-wet {
  border-color: rgba(98, 208, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(98, 208, 255, 0.1);
}

.weather-hourly-card.is-mixed {
  border-color: rgba(139, 246, 207, 0.18);
}

.weather-hourly-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.weather-hourly-card.is-loading {
  grid-column: 1 / -1;
}

.weather-hourly-time,
.weather-hourly-rain,
.weather-hourly-summary {
  margin: 0;
}

.weather-hourly-time {
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.weather-hourly-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffd166;
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.24);
}

.weather-hourly-icon::before,
.weather-hourly-icon::after {
  content: "";
  position: absolute;
}

.weather-hourly-icon.is-sunny::before {
  inset: -5px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 209, 102, 0.44);
  animation: weather-icon-spin 14s linear infinite;
}

.weather-hourly-icon.is-cloudy,
.weather-hourly-icon.is-rainy,
.weather-hourly-icon.is-stormy {
  background: rgba(161, 190, 205, 0.34);
  box-shadow: none;
}

.weather-hourly-icon.is-cloudy::before,
.weather-hourly-icon.is-rainy::before,
.weather-hourly-icon.is-stormy::before {
  left: 4px;
  right: 3px;
  bottom: 8px;
  height: 11px;
  border-radius: 999px;
  background: rgba(221, 238, 245, 0.76);
  box-shadow:
    5px -6px 0 rgba(221, 238, 245, 0.76),
    12px -3px 0 rgba(221, 238, 245, 0.76);
}

.weather-hourly-icon.is-rainy::after,
.weather-hourly-icon.is-stormy::after {
  left: 8px;
  bottom: 1px;
  width: 13px;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(98, 208, 255, 0.9) 0 2px, transparent 2px 5px);
  transform: skewX(-14deg);
}

.weather-hourly-icon.is-stormy::after {
  left: 11px;
  bottom: 0;
  width: 8px;
  height: 13px;
  clip-path: polygon(36% 0, 100% 0, 62% 44%, 100% 44%, 20% 100%, 44% 54%, 0 54%);
  background: #ffd166;
  transform: none;
}

.weather-hourly-bar {
  position: relative;
  z-index: 1;
  height: 8px;
  margin: 14px 0 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.weather-hourly-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(98, 208, 255, 0.42), rgba(139, 246, 207, 0.96));
  box-shadow: 0 0 12px rgba(98, 208, 255, 0.22);
}

.weather-hourly-rain {
  position: relative;
  z-index: 1;
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 700;
}

.weather-hourly-summary {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.daylight-visual {
  position: relative;
  margin: 4px 0 20px;
  min-height: 132px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 209, 102, 0.24), transparent 23%),
    linear-gradient(180deg, rgba(98, 208, 255, 0.12), rgba(10, 24, 32, 0.08) 58%, rgba(139, 246, 207, 0.1));
  border: 1px solid rgba(255, 209, 102, 0.12);
}

.daylight-arc {
  position: absolute;
  inset: 10px 14px 4px;
  width: calc(100% - 28px);
  height: calc(100% - 14px);
  overflow: visible;
}

.daylight-arc-track,
.daylight-arc-fill {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
}

.daylight-arc-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.daylight-arc-fill {
  stroke: url("#daylightGradient");
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 8px rgba(255, 209, 102, 0.34));
  transition: stroke-dashoffset 700ms ease;
}

.daylight-sun {
  fill: #ffd166;
  filter: drop-shadow(0 0 12px rgba(255, 209, 102, 0.62));
  transition: cx 700ms ease, cy 700ms ease;
  animation: daylight-sun-pulse 3.8s ease-in-out infinite;
}

.daylight-horizon {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(139, 246, 207, 0.58), transparent);
  box-shadow: 0 12px 24px rgba(139, 246, 207, 0.08);
}

.lake-grid {
  margin-top: 16px;
}

dt,
.stat-label {
  margin: 0 0 6px;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd,
.stat-value {
  margin: 0;
  font-size: clamp(1.18rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.forecast-copy {
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--text);
}

.signal-copy {
  font-size: 0.98rem;
}

.meter-block {
  margin-top: 18px;
}

.meter-track {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(127, 242, 178, 0.18), rgba(246, 206, 98, 0.16), rgba(255, 122, 102, 0.18)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.08),
    inset 0 -8px 12px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.meter-fill {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 0%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.5) 0 7%, transparent 8%),
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.18) 22%, transparent 28% 48%, rgba(255, 255, 255, 0.12) 54%, transparent 60%),
    linear-gradient(180deg, rgba(212, 255, 247, 0.9), rgba(98, 208, 255, 0.94) 46%, rgba(54, 169, 210, 0.96));
  background-size: 42px 100%, 74px 100%, 100% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -5px 9px rgba(15, 81, 103, 0.28),
    0 0 18px rgba(98, 208, 255, 0.18);
  transition: width 700ms ease;
  animation: pipe-water-flow 1.8s linear infinite;
  overflow: hidden;
}

.meter-fill::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -5px;
  width: 13px;
  height: calc(100% + 6px);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(236, 255, 255, 0.78), rgba(255, 255, 255, 0));
  filter: blur(0.4px);
  opacity: 0.72;
  animation: pipe-water-edge 1.35s ease-in-out infinite;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.82rem;
}

.river-monitor-stack {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.river-monitor-section {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.river-monitor-section .panel-header {
  margin-bottom: 0;
}

.history-chart-compact {
  height: 220px;
  margin-top: 18px;
}

.history-chart {
  width: 100%;
  height: 240px;
  margin-top: 16px;
}

.source-bullets {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.source-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.58;
}

.source-bullets li + li {
  margin-top: 12px;
}

.source-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.guide-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.guide-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.guide-item.is-active {
  border-color: rgba(var(--guide-accent-rgb), 0.44);
  background:
    linear-gradient(135deg, rgba(var(--guide-accent-rgb), 0.16), rgba(var(--guide-accent-rgb), 0.07) 46%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(var(--guide-accent-rgb), 0.14),
    0 16px 34px rgba(var(--guide-accent-rgb), 0.16);
  animation: guide-card-pulse 2.6s ease-in-out infinite;
}

.guide-item.is-active::before {
  content: "";
  position: absolute;
  inset: -45% auto auto -24%;
  width: 40%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(16deg);
  animation: guide-card-sheen 3.8s linear infinite;
  pointer-events: none;
}

.guide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.guide-item.is-active .guide-dot {
  box-shadow: 0 0 0 0 rgba(var(--guide-accent-rgb), 0.42);
  animation: guide-dot-pulse 1.7s ease-in-out infinite;
}

.guide-copy strong,
.guide-range {
  display: block;
}

.guide-copy strong {
  font-size: 1rem;
}

.guide-item.is-active .guide-copy strong {
  color: #fff8ef;
}

.guide-copy span,
.guide-range {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.guide-item.is-active .guide-copy span,
.guide-item.is-active .guide-range {
  color: rgba(237, 247, 255, 0.84);
}

.guide-range {
  text-align: right;
  white-space: nowrap;
}

.jakes-weekend-meta {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: 24px;
  margin-top: 16px;
  align-items: stretch;
}

.jakes-meta-window,
.jakes-meta-note {
  min-width: 0;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(173, 219, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(5, 16, 23, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.jakes-meta-window {
  grid-column: 1;
  display: block;
}

.jakes-week-range {
  white-space: nowrap;
}

.jakes-meta-window-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  align-items: center;
  gap: 20px;
}

.jakes-meta-window-copy {
  min-width: 0;
}

.jakes-meta-window-copy .stat-label {
  margin-bottom: 10px;
}

.jakes-venue-note {
  max-width: none;
  margin: 0;
}

.jakes-meta-note {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jakes-address-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 10px 14px;
  appearance: none;
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(139, 246, 207, 0.26);
  background: linear-gradient(180deg, rgba(139, 246, 207, 0.14), rgba(98, 208, 255, 0.08));
  color: #effff7;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(5, 17, 28, 0.18);
}

.jakes-address-link:hover,
.jakes-address-link:focus-visible {
  text-decoration: none;
  border-color: rgba(139, 246, 207, 0.42);
  background: linear-gradient(180deg, rgba(139, 246, 207, 0.2), rgba(98, 208, 255, 0.12));
}

.map-app-chooser {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(98, 208, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(98, 208, 255, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.map-app-chooser[hidden] {
  display: none;
}

.map-app-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.map-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(139, 246, 207, 0.18);
  background: rgba(8, 22, 31, 0.58);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.map-app-button:hover,
.map-app-button:focus-visible {
  border-color: rgba(139, 246, 207, 0.42);
  background: rgba(139, 246, 207, 0.12);
  text-decoration: none;
}

.map-app-note {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.jakes-section-block {
  margin-top: 22px;
}

.jakes-section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 14px;
}

.jakes-hero {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

.jakes-hero-inline {
  width: 104px;
  padding: 0;
  background: none;
}

.jakes-hero-image {
  width: min(100%, 104px);
  height: auto;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.jakes-event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.jakes-event-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.jakes-event-card.is-empty {
  grid-column: 1 / -1;
}

.jakes-event-card.is-live-card {
  border-color: rgba(224, 182, 84, 0.56);
  background:
    linear-gradient(135deg, rgba(139, 92, 30, 0.18), rgba(224, 182, 84, 0.14) 42%, rgba(98, 208, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(224, 182, 84, 0.14),
    0 20px 46px rgba(199, 153, 46, 0.26);
  animation: live-card-pulse 2.4s ease-in-out infinite;
}

.jakes-event-card.is-live-card::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -30%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 239, 197, 0.24), transparent);
  transform: rotate(16deg);
  animation: live-card-sheen 3.4s linear infinite;
  pointer-events: none;
}

.jakes-event-topline,
.jakes-event-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.jakes-event-time {
  color: var(--accent-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.jakes-event-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.jakes-event-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.jakes-event-admission {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(127, 242, 178, 0.12);
  border: 1px solid rgba(127, 242, 178, 0.18);
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
}

.jakes-event-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.jakes-event-status.is-live {
  background: rgba(102, 30, 24, 0.9);
  border: 1px solid rgba(186, 94, 77, 0.72);
  color: #ffe2d7;
  box-shadow: 0 0 0 0 rgba(186, 94, 77, 0.42);
  animation: live-badge-pulse 1.6s ease-in-out infinite;
}

.jakes-event-status.is-live::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ffb09b;
  box-shadow: 0 0 14px rgba(255, 176, 155, 0.7);
  animation: live-dot-blink 1.1s ease-in-out infinite;
}

.jakes-event-status:not(.is-live) {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--soft);
}

.jakes-event-card.is-live-card .jakes-event-title {
  color: #fff5e8;
}

.jakes-event-card.is-live-card .forecast-copy {
  color: #fff3e4;
}

.jakes-event-link {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.jakes-event-link:hover,
.jakes-event-link:focus-visible {
  text-decoration: underline;
}

.support-section {
  margin-top: 18px;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(139, 246, 207, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at right center, rgba(139, 246, 207, 0.11), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 28, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 44px rgba(1, 8, 12, 0.2);
}

.support-copy {
  min-width: 0;
}

.support-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.support-copy p:not(.eyebrow) {
  max-width: 64ch;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(139, 246, 207, 0.28);
  background: linear-gradient(180deg, rgba(139, 246, 207, 0.16), rgba(98, 208, 255, 0.08));
  color: #effff7;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(5, 17, 28, 0.2);
}

.support-button:hover,
.support-button:focus-visible {
  border-color: rgba(139, 246, 207, 0.46);
  background: linear-gradient(180deg, rgba(139, 246, 207, 0.22), rgba(98, 208, 255, 0.12));
  text-decoration: none;
}

.support-qr {
  width: 132px;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.site-footer {
  margin-top: 28px;
  padding-top: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
  border-top: 1px solid rgba(184, 213, 229, 0.12);
  color: rgba(184, 213, 229, 0.68);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.traffic-counter {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-areas:
    "label count copy";
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 2px 0 0;
  color: rgba(184, 213, 229, 0.7);
}

.traffic-counter-label {
  grid-area: label;
  color: rgba(125, 242, 200, 0.78);
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#traffic-count {
  grid-area: count;
  color: rgba(237, 247, 255, 0.9);
  font-family: "Outfit", "Segoe UI Variable Display", sans-serif;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

#traffic-counter-copy {
  grid-area: copy;
  color: rgba(184, 213, 229, 0.58);
  font-size: 0.84rem;
}

.traffic-counter.is-unavailable {
  opacity: 0.72;
}

.noscript-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 122, 102, 0.92);
  color: #210a05;
  font-weight: 700;
  z-index: 10;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 242, 178, 0.38);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(127, 242, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(127, 242, 178, 0);
  }
}

@keyframes compass-pulse {
  0% {
    box-shadow: 0 0 6px rgba(225, 244, 236, 0.04);
  }
  50% {
    box-shadow: 0 0 12px rgba(225, 244, 236, 0.1);
  }
  100% {
    box-shadow: 0 0 6px rgba(225, 244, 236, 0.04);
  }
}

@keyframes weather-icon-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes daylight-sun-pulse {
  0%,
  100% {
    r: 8.4px;
    opacity: 0.9;
  }
  50% {
    r: 10px;
    opacity: 1;
  }
}

@keyframes live-badge-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(186, 94, 77, 0.34);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 10px rgba(186, 94, 77, 0);
  }
}

@keyframes live-dot-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

@keyframes live-card-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(224, 182, 84, 0.14),
      0 20px 46px rgba(199, 153, 46, 0.26);
  }
  50% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(235, 198, 110, 0.28),
      0 24px 56px rgba(212, 169, 64, 0.36);
  }
}

@keyframes live-card-sheen {
  0% {
    transform: translate3d(-180%, 0, 0) rotate(16deg);
  }
  100% {
    transform: translate3d(280%, 0, 0) rotate(16deg);
  }
}

@keyframes guide-card-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(var(--guide-accent-rgb), 0.14),
      0 16px 34px rgba(var(--guide-accent-rgb), 0.16);
  }
  50% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(var(--guide-accent-rgb), 0.24),
      0 20px 42px rgba(var(--guide-accent-rgb), 0.24);
  }
}

@keyframes guide-card-sheen {
  0% {
    transform: translate3d(-180%, 0, 0) rotate(16deg);
  }
  100% {
    transform: translate3d(300%, 0, 0) rotate(16deg);
  }
}

@keyframes guide-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--guide-accent-rgb), 0.38);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(var(--guide-accent-rgb), 0);
  }
}

@keyframes green-acres-pill-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(var(--status-accent-rgb), 0.08),
      0 0 24px rgba(var(--status-accent-rgb), 0.16);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(var(--status-accent-rgb), 0.18),
      0 0 36px rgba(var(--status-accent-rgb), 0.28);
  }
}

@keyframes pipe-water-flow {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 42px 0, 74px 0, 0 0;
  }
}

@keyframes pipe-water-edge {
  0%,
  100% {
    opacity: 0.52;
    transform: scaleY(0.82);
  }
  50% {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-18px, 14px, 0); }
}

@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(22px, -16px, 0); }
}

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

@media (max-width: 980px) {
  .hero-grid,
  .detail-grid,
  .events-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-header,
  .hero-body,
  .hero-topline,
  .panel-header {
    flex-direction: column;
  }

  .header-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .header-meta-card {
    max-width: 100%;
  }

  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-lockup {
    width: 100%;
  }

  .brand-logo-image {
    width: min(100%, 420px);
  }

  .hero-card-main,
  .panel {
    padding: 18px;
  }

  .decision-grid,
  .weather-grid,
  .daylight-grid {
    grid-template-columns: 1fr;
  }

  .weather-summary-grid {
    grid-template-columns: 1fr;
  }

  .data-disclaimer {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-disclaimer span {
    text-align: left;
  }

  .jakes-weekend-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
  }

  .jakes-hero-inline {
    padding: 0;
    background: none;
  }

  .jakes-meta-window {
    display: block;
  }

  .jakes-meta-window-body {
    grid-template-columns: minmax(0, 1fr) 88px;
    align-items: flex-start;
    gap: 16px;
  }

  .jakes-hero {
    justify-content: flex-start;
  }

  .jakes-hero-inline {
    width: 88px;
  }

  .jakes-week-range {
    white-space: normal;
  }

  .decision-badge {
    min-width: 0;
    width: 100%;
  }

  .weather-visual {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .green-acres-panel {
    padding: 16px 18px;
  }

  .weather-subpanel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .weather-hourly-list {
    grid-template-columns: 1fr 1fr;
  }

  .daylight-visual {
    min-height: 112px;
  }

  .weather-wind-gauge {
    width: 148px;
    height: 148px;
  }

  .weather-wind-arrow {
    width: 50px;
  }

  .weather-wind-core {
    width: 74px;
    height: 74px;
  }

  .guide-item {
    grid-template-columns: auto 1fr;
  }

  .guide-range {
    grid-column: 2;
    text-align: left;
  }

  .jakes-event-topline,
  .jakes-event-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: 16px 10px 56px;
  }

  .ambient {
    display: none;
  }

  .site-header {
    gap: 14px;
    margin-bottom: 16px;
  }

  .brand-lockup,
  .brand-logo-link {
    align-items: center;
    width: 100%;
  }

  .brand-logo-link {
    justify-content: center;
  }

  .brand-logo-image {
    width: min(72vw, 292px);
  }

  .brand-location {
    width: 100%;
    max-width: 30ch;
    margin-inline: auto;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    line-height: 1.45;
  }

  .header-meta-card {
    padding: 14px;
    border-radius: 18px;
  }

  .header-meta-eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .current-condition-spotlight {
    min-height: 0;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .current-condition-spotlight .guide-copy strong {
    font-size: 1rem;
  }

  .current-condition-spotlight .guide-copy span {
    font-size: 0.88rem;
  }

  .current-condition-spotlight .guide-range {
    font-size: 0.8rem;
  }

  .hero-grid,
  .detail-grid,
  .events-grid,
  .notes-grid {
    max-width: 100%;
    gap: 14px;
    margin-bottom: 14px;
  }

  .hero-card-main,
  .panel {
    padding: 14px;
    border-radius: 18px;
  }

  .panel-header,
  .weather-subpanel-header,
  .jakes-section-header {
    gap: 6px;
  }

  .panel-kicker {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .eyebrow,
  .stat-label {
    letter-spacing: 0.12em;
  }

  .data-disclaimer {
    gap: 8px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .weather-dashboard {
    min-width: 0;
    max-width: 100%;
    gap: 12px;
    margin-top: 12px;
  }

  .green-acres-panel,
  .weather-summary-card,
  .weather-subpanel,
  .daylight-grid > div,
  .weather-visual-copy {
    min-width: 0;
  }

  .weather-summary-card,
  .weather-subpanel {
    padding: 14px;
    border-radius: 16px;
  }

  .green-acres-pill {
    width: fit-content;
    max-width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    text-align: left;
  }

  .green-acres-body {
    grid-template-columns: 1fr;
  }

  .green-acres-address-link,
  .green-acres-map-chooser {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .green-acres-report,
  .forecast-copy,
  .weather-water-note,
  .panel-kicker,
  .stat-value,
  .source-bullets li {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .weather-visual {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .weather-wind-gauge {
    width: 124px;
    height: 124px;
  }

  .weather-wind-ring::before {
    top: 3px;
    border-left-width: 5px;
    border-right-width: 5px;
    border-bottom-width: 10px;
  }

  .weather-compass-label {
    font-size: 0.68rem;
  }

  .weather-compass-n {
    top: 11px;
  }

  .weather-compass-e {
    right: 12px;
  }

  .weather-compass-s {
    bottom: 11px;
  }

  .weather-compass-w {
    left: 12px;
  }

  .weather-wind-core {
    width: 58px;
    height: 58px;
  }

  .weather-wind-arrow {
    width: 40px;
    height: 4px;
  }

  .weather-wind-arrow::before {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .weather-wind-arrow::after {
    width: 14px;
    height: 14px;
    border-top-width: 4px;
    border-right-width: 4px;
  }

  .weather-wind-direction {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .weather-speed-readout {
    margin-top: 4px;
  }

  .weather-speed-number {
    font-size: 1.55rem;
  }

  .weather-wind-detail {
    font-size: 0.9rem;
  }

  .weather-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 10px;
  }

  .weather-summary-card:nth-child(3),
  .weather-water-card {
    grid-column: 1 / -1;
  }

  .weather-forecast-now {
    font-size: 1rem;
  }

  .weather-water-note {
    font-size: 0.88rem;
  }

  .weather-hourly-list {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: visible;
    padding: 0;
  }

  .weather-hourly-card {
    min-height: 0;
    padding: 13px;
  }

  .weather-hourly-card.is-loading {
    grid-column: auto;
  }

  .daylight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .daylight-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .daylight-grid .forecast-copy {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.45;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .daylight-visual {
    min-height: 106px;
    border-radius: 16px;
  }

  .daylight-horizon {
    bottom: 17px;
  }

  .river-monitor-stack {
    gap: 14px;
    margin-top: 18px;
  }

  .river-monitor-section {
    padding-top: 14px;
  }

  .meter-track {
    height: 16px;
  }

  .meter-fill {
    background-size: 34px 100%, 58px 100%, 100% 100%;
    animation-duration: 2.2s;
  }

  .meter-labels {
    gap: 10px;
    font-size: 0.76rem;
  }

  .history-chart-compact {
    height: 178px;
    margin-top: 12px;
  }

  .guide-list {
    gap: 10px;
    margin-top: 12px;
  }

  .guide-item {
    gap: 10px;
    padding: 13px;
    border-radius: 14px;
  }

  .guide-copy strong,
  .guide-range {
    font-size: 0.94rem;
  }

  .guide-copy span,
  .guide-range {
    font-size: 0.84rem;
  }

  .jakes-weekend-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: stretch;
    width: 100%;
  }

  .panel-link-button {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    line-height: 1.35;
  }

  .jakes-meta-window,
  .jakes-meta-note {
    grid-column: auto;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    overflow: hidden;
  }

  .jakes-meta-window-body {
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .jakes-meta-window-copy {
    min-width: 0;
  }

  .jakes-meta-window-copy .stat-label {
    margin-bottom: 6px;
  }

  .jakes-hero-inline {
    order: -1;
    width: 76px;
    justify-content: flex-start;
  }

  .jakes-hero-image {
    width: 76px;
    border-radius: 22px;
  }

  .jakes-week-range {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1;
    white-space: normal;
  }

  .jakes-venue-note {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .jakes-address-link {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .map-app-chooser {
    padding: 12px;
    border-radius: 16px;
  }

  .map-app-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-app-button {
    min-height: 44px;
    font-size: 0.94rem;
  }

  .jakes-event-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .jakes-event-card {
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .jakes-event-meta {
    justify-content: flex-start;
  }

  .jakes-event-title {
    font-size: 1.08rem;
  }

  .jakes-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .jakes-event-admission,
  .jakes-event-status {
    min-height: 34px;
    align-items: center;
  }

  .source-bullets {
    margin-top: 12px;
  }

  .source-bullets li {
    padding-left: 16px;
    font-size: 0.92rem;
  }

  .support-section {
    margin-top: 14px;
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    text-align: left;
  }

  .support-copy h2 {
    font-size: 1.35rem;
  }

  .support-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .support-button {
    width: 100%;
    padding: 12px 14px;
    text-align: center;
  }

  .support-qr {
    width: 136px;
    justify-self: center;
  }

  .site-footer {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 0.85rem;
  }

  .traffic-counter {
    grid-template-columns: auto auto;
    grid-template-areas:
      "label count"
      "copy copy";
    gap: 4px 8px;
  }

  .traffic-counter-label {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  #traffic-count {
    font-size: 0.98rem;
  }

  #traffic-counter-copy {
    font-size: 0.78rem;
  }
}

@media (max-width: 370px) {
  .page-shell {
    padding-left: 8px;
    padding-right: 8px;
  }

  .brand-logo-image {
    width: min(74vw, 270px);
  }

  .weather-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .weather-visual-copy {
    width: 100%;
  }

  .weather-summary-grid,
  .daylight-grid {
    grid-template-columns: 1fr;
  }

  .weather-summary-card:nth-child(3),
  .weather-water-card,
  .daylight-grid > div:last-child {
    grid-column: auto;
  }

  .weather-hourly-list {
    grid-template-columns: 1fr;
  }

  .jakes-meta-window-body {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .jakes-hero-inline {
    width: 86px;
  }
}
