 

:root {
  --bg: #0f1117;
  --bg2: #181c27;
  --bg3: #1e2335;
  --text: #e8eaf0;
  --text-muted: #8892a4;
  --accent: #22D3EE;
  --accent-hover: #67e8f9;
  --brand: #22D3EE;         
  --brand-hover: #67e8f9;
  --border: #2a2f3e;
  --hero-temp: #f0f4ff;
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

 
 
html { font-size: clamp(16px, calc(0.55vw + 9px), 22px); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

 

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-mark { display: block; flex: none; }
.logo:hover { color: var(--brand-hover); }

.site-header nav a {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-header nav a:hover { color: var(--brand-hover); }

 
.lang-switch { display: inline-flex; gap: 4px; align-items: center; }
.lang-switch .lang-opt {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 6px;
}
.lang-switch .lang-opt:hover { color: var(--brand-hover); }
.lang-switch .lang-opt.active {
  color: var(--brand);
  background: rgba(34, 211, 238, 0.14);
}

 

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

section { margin-bottom: 32px; }

 

.hero {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
   
  padding: 20px 60px 20px 20px;
  margin-bottom: 28px;
  display: grid;
  gap: 16px;
}

 
@media (min-width: 480px) {
  .hero {
    grid-template-columns: auto 1fr;
    grid-template-areas: "primary metrics";
    align-items: start;
  }
  .hero-primary { grid-area: primary; }
  .hero-metrics { grid-area: metrics; }
}

 
.hero-temp {
  font-size: 3rem;
  font-weight: 700;
  color: var(--hero-temp);
  line-height: 1;
  letter-spacing: -0.02em;
}

 
.hero-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 4px;
}

 
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  align-content: start;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-metric[hidden] { display: none; }

.hm-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  line-height: 1.2;
}

.hm-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

 
.btn-map.hero-map-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  z-index: 2;
}
.btn-map.hero-map-btn svg { display: block; width: 22px; height: 22px; }

.btn-map {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-map:hover { background: var(--accent-hover); }

 

.forecast-strip { }

.forecast-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

 
@media (max-width: 480px) {
  .forecast-days {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: repeat(7, minmax(84px, 1fr));
  }
}

.forecast-day {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forecast-day time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fc-icon { font-size: 1.4rem; }

.fc-high {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hero-temp);
}

.fc-low {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fc-wind {
  font-size: 0.75rem;
  color: var(--text-muted);
}

 

.hourly h2 { margin-bottom: 8px; }

.hourly-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: 4px;
}

#hourly-strip {
  display: flex;
  gap: 6px;
  min-width: max-content;
  padding-bottom: 2px;
}

.h-slot {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 56px;
}

.h-slot time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.h-icon { font-size: 1.1rem; }

.h-ta {
  font-size: 0.9rem;
  font-weight: 700;
}

.h-ws {
  font-size: 0.7rem;
  color: var(--text-muted);
}

 
.h-precip {
  font-size: 0.7rem;
  color: var(--accent);
}
.h-precip--zero {
  color: var(--text-muted);
  opacity: 0.55;
}

 

.location-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

 
.geo-facts {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.geo-facts li {
  position: relative;
}
.geo-facts li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

 

.segment-context {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -12px;
  margin-bottom: 20px;
}

.river-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.river-facts dt {
  color: var(--text-muted);
  font-weight: 500;
}
.river-facts dd {
  margin: 0;
}

.river-history,
.river-seasonal {
  margin-bottom: 28px;
}
.river-history p,
.river-seasonal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

 

.climate-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 8px;
}

.climate table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.climate th, .climate td {
  padding: 7px 10px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}

.climate th:first-child, .climate td:first-child {
  text-align: left;
}

.climate thead th {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.climate tbody tr:hover { background: var(--bg3); }
.climate tbody tr:last-child td,
.climate tbody tr:last-child th { border-bottom: none; }

.source-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

 

.faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq summary {
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details[open] {
  background: var(--bg2);
}

.faq details p {
  padding: 0 16px 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

 

.nearby-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nearby-list a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.nearby-list a:hover {
  background: var(--bg3);
  border-color: var(--accent);
}

 

.site-footer {
  border-top: 1px solid var(--text-muted);
  padding: 28px clamp(18px, 3.6vw, 40px);
  background: var(--bg2);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
}
.footer-meta { max-width: 1100px; margin: 0 auto 18px; line-height: 1.7; text-transform: none; letter-spacing: 0; }
.footer-main { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover, .site-footer .footer-puhub { color: var(--accent); }
.footer-puhub { font-weight: 700; text-transform: uppercase; }
@media (max-width: 640px) {
  .footer-main { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px 18px; }
  .footer-links { grid-column: 1 / -1; grid-row: 1; }
  .footer-copy { grid-column: 1; grid-row: 2; }
  .footer-place { grid-column: 2; grid-row: 2; justify-self: end; }
  .footer-links { gap: 12px 18px; }
}

.loading-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

 

.trail-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.trail-facts dt {
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.trail-facts dd { margin: 0; }

.trail-feature {
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  background: var(--bg2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
}

.trail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.trail-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trail-terrain,
.trail-seasonal {
  margin-bottom: 20px;
}
.trail-terrain p,
.trail-seasonal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sources {
  margin-bottom: 24px;
}
.sources h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.sources ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sources a {
  font-size: 0.88rem;
  color: var(--accent);
  text-decoration: none;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background 0.15s;
}
.sources a:hover { background: var(--bg2); }

 
.catalog-intro { color: var(--text-muted); font-size: .95rem; margin-bottom: 24px; }
.count { font-size: .85rem; font-weight: 400; color: var(--text-muted); }
.catalog-section { margin-bottom: 40px; }
.catalog-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 16px;
}
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) and (min-width: 601px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
.catalog-grid li { display: flex; flex-direction: column; padding: 4px 0; border-bottom: 1px solid var(--border); }
.catalog-grid a { color: var(--accent); text-decoration: none; font-size: .9rem; font-weight: 500; }
.catalog-grid a:hover { text-decoration: underline; }
.county { font-size: .75rem; color: var(--text-muted); }

 
.quality-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
}
.quality-excellent         { background: #14532d; color: #86efac; }
.quality-good              { background: #1e3a5f; color: #93c5fd; }
.quality-sufficient        { background: #451a03; color: #fcd34d; }
.quality-poor              { background: #450a0a; color: #fca5a5; }
.quality-not-classified    { background: #1f2937; color: #9ca3af; }
 
.quality-flag-green   { background: #14532d; color: #86efac; }
.quality-flag-yellow  { background: #422006; color: #fde047; }
.quality-flag-red     { background: #450a0a; color: #fca5a5; }
.quality-flag-purple  { background: #3b0764; color: #e9d5ff; }

 
.beach-quality { background: var(--bg2); border-radius: 8px; padding: 20px; margin: 24px 0; }
.beach-quality h2 { margin-top: 0; }
.beach-quality-current { margin-bottom: 4px; }
.beach-quality-year { font-size: .8rem; color: var(--text-muted); margin-left: 4px; }

 
.hero-sample {
    display: block;
    margin-top: 4px;
    font-size: .72rem;
    color: var(--text-muted);
    letter-spacing: .02em;
}
.hero-sample .quality-badge { font-size: .72rem; padding: 1px 5px; }
.hero-sample .beach-quality-year { font-size: .72rem; }
.beach-quality-label { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; }
.quality-history {
  display: flex;
  gap: 3px;
  margin: 8px 0 12px;
}
.quality-history-year {
  flex: 1;
  min-width: 0;
  padding: 6px 2px;
  text-align: center;
  border-radius: 4px;
  cursor: default;
}
.qh-year { display: block; font-size: .65rem; color: var(--text-muted); line-height: 1.2; }
.qh-label { display: block; font-size: .75rem; font-weight: 700; line-height: 1.2; }
.beach-quality-note { font-size: .8rem; color: var(--text-muted); margin-top: 8px; }

 

 
.beach-current-tests {
  background: var(--bg2);
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}
.beach-current-tests h2 { margin-top: 0; }
.latest-test {
  font-size: 1rem;
  line-height: 1.7;
  margin: 12px 0;
}
.latest-test strong {
  color: var(--text);
  margin-right: 4px;
}
.vtiav-history {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.vtiav-history th,
.vtiav-history td {
  text-align: left;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border);
}
.vtiav-history th {
  color: var(--text-muted);
  font-weight: 500;
}
.data-attribution {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.data-attribution a {
  color: var(--text-muted);
  text-decoration: underline;
}
.data-attribution a:hover { color: var(--accent); }

 

 
.brand { color: var(--brand); font-weight: 600; }

.methodology .fig { margin: 20px 0 30px; }
 
.methodology .flow-fig { width: fit-content; max-width: 100%; margin: 20px auto 30px; }
.fig figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

 
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.flow-sources { display: flex; flex-direction: column; gap: 8px; }
.flow-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 13px;
  min-width: 0;
}
.flow-source { width: 100%; }
.flow-ico {
  flex: none;
  width: 26px; height: 26px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.flow-ico svg { width: 20px; height: 20px; display: block; }
.flow-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.flow-txt strong { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.flow-txt small { font-size: 0.72rem; color: var(--text-muted); }

.flow-analysis {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  border-color: var(--brand);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.18), 0 4px 18px rgba(34, 211, 238, 0.12);
}
.flow-analysis strong { color: var(--brand); font-size: 0.92rem; font-weight: 700; }
.flow-analysis small { color: var(--text-muted); font-size: 0.74rem; }

.flow-output { gap: 9px; }
.flow-output strong { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.flow-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex: none;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
  animation: flow-pulse 1.8s ease-in-out infinite;
}
@keyframes flow-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.flow-arrow { flex: none; color: var(--text-muted); display: flex; }
.flow-arrow svg { width: 24px; height: 24px; display: block; }

@media (max-width: 560px) {
  .flow { flex-direction: column; align-items: stretch; gap: 8px; }
  .flow-arrow { transform: rotate(90deg); align-self: center; }
}

 
.cadence { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0 4px; }
.cadence-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}
.cadence-ico {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34, 211, 238, 0.10);
  color: var(--brand);
}
.cadence-ico svg { width: 20px; height: 20px; display: block; }
.cadence-txt { display: flex; flex-direction: column; line-height: 1.2; }
.cadence-val { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.cadence-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

 

.conditions h2 { margin: 28px 0 14px; font-size: 1.15rem; }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cond-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}
.cond-card--wide { grid-column: span 2; }
.cond-hd {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.cond-badge {
  font-size: 0.62rem; letter-spacing: 0.05em; padding: 1px 6px;
  border: 1px solid var(--brand); border-radius: 999px; color: var(--brand);
  text-transform: none;
}
.cond-wide-body { display: flex; align-items: center; gap: 14px; flex: 1; }
.cond-rows { flex: 1; display: flex; flex-direction: column; }
.cond-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0; font-size: 0.88rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.cond-row:last-child { border-bottom: none; }
.cond-row[hidden] { display: none; }
.cond-row b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.cond-flag-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--text-muted); vertical-align: baseline; margin-right: 2px;
}
.cond-big { font-size: 1.7rem; font-weight: 700; color: var(--hero-temp); line-height: 1.1; margin: 4px 0 6px; font-variant-numeric: tabular-nums; }
.cond-big small { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.cond-sub { font-size: 0.74rem; color: var(--text-muted); margin-top: auto; white-space: nowrap; overflow: hidden; }

 
.cond-compass { width: 118px; height: 118px; flex: none; }
.cond-cardinal { fill: var(--text-muted); font-size: 11px; font-weight: 600; text-anchor: middle; dominant-baseline: middle; }
.cond-compass-val { fill: var(--hero-temp); font-size: 13.5px; font-weight: 700; text-anchor: middle; }
.cond-compass-unit { fill: var(--text-muted); font-size: 7.5px; text-anchor: middle; }

 
.cond-gauge { width: 116px; height: 92px; margin: 0 auto; display: block; }
.cond-gauge-trend { fill: var(--text); font-size: 13px; text-anchor: middle; }
.cond-gauge-val { fill: var(--hero-temp); font-size: 19px; font-weight: 700; text-anchor: middle; font-variant-numeric: tabular-nums; }
.cond-gauge-unit { fill: var(--text-muted); font-size: 9px; text-anchor: middle; }
.cond-gauge-ends { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); padding: 0 10px; }

 
.cond-uv-bar { position: relative; display: flex; gap: 2px; height: 6px; margin: 6px 0 8px; }
.uv-seg { flex: 1; border-radius: 3px; opacity: 0.85; }
.uv-1 { background: #6fbf73; } .uv-2 { background: #f2d25c; }
.uv-3 { background: #ef8e4a; } .uv-4 { background: #e05252; }
.uv-5 { background: #a06ee0; }
.uv-dot {
  position: absolute; top: 50%; width: 10px; height: 10px;
  transform: translate(-50%, -50%);
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 2px var(--bg2);
}

 
.cond-moon { width: 96px; height: 96px; flex: none; }
.cond-moon { filter: drop-shadow(0 0 6px rgba(200,210,235,0.18)); }

 
.cond-precip-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 26px; margin: 6px 0 8px;
}
.cond-precip-bars .pb {
  flex: 1; border-radius: 2px 2px 1px 1px;
  background: rgba(232,234,240,0.10);
}
.cond-precip-bars .pb-wet { background: var(--brand); opacity: 0.85; }

 
.cond-sunarc { width: 100%; max-width: 150px; height: auto; margin: 0 auto; display: block; }
.cond-sun-times { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); margin: 6px 2px 4px; }
.cond-sun-times b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }

@media (max-width: 720px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .cond-card--wide { grid-column: span 2; }
}


 

main h1 { font-weight: 800; letter-spacing: -0.025em; }

 
main section > h2 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin: 34px 0 12px;
}
.conditions h2 { margin: 34px 0 12px; font-size: 0.8rem; }

 
.crumbs {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--text-muted);
  margin: 4px 0 14px;
}
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-current] { color: var(--text); }

 
.hero-unit { font-size: 1.5rem; font-weight: 600; color: var(--text-muted); margin-left: 2px; }
.hero-cond { display: flex; align-items: center; gap: 7px; font-size: 0.92rem; color: var(--text); margin-top: 2px; }
.hero-cond-icon svg { width: 22px; height: 22px; display: block; }
.hero-src {
  position: absolute; left: 20px; bottom: 8px;
  font-size: 0.7rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
 
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
  animation: live-pulse 3.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }
.hero-src-cadence { white-space: nowrap; }
.hero { position: relative; padding-bottom: 26px; }

 
.fc-icon svg { width: 30px; height: 30px; display: block; margin: 0 auto; }
.h-icon svg { width: 22px; height: 22px; display: block; margin: 0 auto; }
.fc-precip { font-size: 0.72rem; color: var(--accent); }
.fc-precip--zero { color: var(--text-muted); }

 
 

 
.hourly-scroll {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 4px 0;
  scroll-snap-type: x proximity;
}
 
.hourly-scroll {
  scrollbar-width: auto;                        
  scrollbar-color: var(--border) rgba(127, 143, 150, .16);
   
  --strip-bg: var(--bg2);
  background-color: var(--strip-bg);
  background-image:
    linear-gradient(to right, var(--strip-bg) 30%, rgba(0, 0, 0, 0)),
    linear-gradient(to left,  var(--strip-bg) 30%, rgba(0, 0, 0, 0)),
    linear-gradient(to right, rgba(255, 255, 255, .13), rgba(0, 0, 0, 0)),
    linear-gradient(to left,  rgba(255, 255, 255, .13), rgba(0, 0, 0, 0));
  background-position: left center, right center, left center, right center;
  background-size: 46px 100%, 46px 100%, 26px 100%, 26px 100%;
  background-repeat: no-repeat;
  background-attachment: local, local, scroll, scroll;
}
.hourly-scroll::-webkit-scrollbar { height: 10px; }
.hourly-scroll::-webkit-scrollbar-track {
  background: rgba(127, 143, 150, .16);
  border-radius: 99px;
  margin: 0 6px;
}
.hourly-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}
.hourly-scroll:hover::-webkit-scrollbar-thumb { background: var(--brand); }
.hourly-scroll .h-slot {
  background: none; border: none;
  scroll-snap-align: start;
  padding: 4px 10px;
}
.hourly-scroll .h-slot.h-now time { color: var(--accent); font-weight: 700; }

 
.geo-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.geo-chip {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
}
.geo-chip span {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-muted);
}
.geo-chip b { font-size: 0.9rem; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }

 
.climate tr.cm-now td {
  background: rgba(34, 211, 238, 0.055);
  color: var(--text);
}
.climate tr.cm-now td:first-child {
  box-shadow: inset 2px 0 0 var(--brand);
  font-weight: 600;
}

 
.cond-precip-bars.pb-dry .pb { height: 2px !important; opacity: 0.45; }

 
.climate table, .forecast-day, .h-slot { font-variant-numeric: tabular-nums; }


 
@media (max-width: 479px) {
  .hero { padding: 16px 18px 30px; gap: 10px; }
  .hero-temp { font-size: 2.7rem; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px 12px; }
  .hm-value { font-size: 0.9rem; }
}

 
.intro-lead { font-size: 0.92rem; color: var(--text-muted); margin: 2px 0 18px; }


 
.cond-waves { width: 84px; height: 84px; flex: none; }

 
.catalog-intro { font-size: 0.92rem; color: var(--text-muted); margin: 2px 0 20px; }
.catalog-section h2 .count, h1 .count { color: var(--text-muted); font-weight: 500; font-size: 0.85em; }


 
.vesi-table-wrap { overflow-x: auto; }
.vesi-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.vesi-table th {
  text-align: left; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted);
  padding: 8px 10px; border-bottom: 1px solid var(--border);
}
.vesi-table th:nth-child(n+2), .vesi-table td:nth-child(n+2) { text-align: right; }
.vesi-table td { padding: 9px 10px; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.vesi-table a { color: var(--text); text-decoration: none; font-weight: 600; }
.vesi-table a:hover { color: var(--accent); }
.vesi-type { font-size: 0.72rem; color: var(--text-muted); margin-left: 6px; }
.vesi-table .wt-t { color: var(--brand); font-weight: 600; }
.vesi-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 10px;
}


 
.widget-controls { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.widget-controls select {
  background: var(--bg2); color: var(--text);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 12px; font-size: 0.92rem; font-family: var(--font);
}
.widget-preview { padding: 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); display: inline-block; }
.widget-code {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; font-size: 0.78rem; line-height: 1.5;
  overflow-x: auto; white-space: pre; color: var(--text);
}
.widget-copy {
  margin-top: 8px; padding: 8px 18px;
  background: var(--brand); color: #08111f; font-weight: 700;
  border: none; border-radius: 999px; cursor: pointer; font-size: 0.88rem;
}
.widget-copy:hover { background: var(--brand-hover); }
.widget-faq details { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 8px; }


 
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 720px) { .rec-grid { grid-template-columns: repeat(2, 1fr); } }
.rec-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  display: flex; flex-direction: column; gap: 3px;
}
.rec-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.rec-card b { font-size: 1.5rem; font-weight: 700; color: var(--hero-temp); font-variant-numeric: tabular-nums; }
.rec-name { font-size: 0.8rem; color: var(--text-muted); }


 
.rec-alltime .climate-table-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px 16px 10px;
}
.rec-alltime table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.rec-alltime th, .rec-alltime td {
  padding: 9px 12px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.rec-alltime tbody tr:last-child td { border-bottom: none; }
.rec-alltime thead th {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.rec-alltime th:nth-child(2), .rec-alltime td:nth-child(2) { text-align: right; }
.rec-alltime td:nth-child(2) { color: var(--hero-temp); font-weight: 700; }


 
.site-footer p { margin: 3px 0; }
.footer-products a { font-weight: 600; }

 
:root {
  --bg: #0b1012;
  --bg2: #111a1e;
  --bg3: #162228;
  --text: #e6edef;
  --text-muted: #9db0b6;
  --accent: #22d3ee;
  --accent-hover: #67e8f9;
  --brand: #22d3ee;
  --brand-hover: #67e8f9;
  --border: rgba(157,176,182,.16);
  --hero-temp: #e6edef;
  --radius: 0;
  --font: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.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; }

 
.site-header {
  min-height: 70px; padding: 12px clamp(18px,3.6vw,40px);
  background: rgba(11,16,18,.92); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px;
}
.logo { color: var(--text); font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.logo-mark { width: 24px; height: 24px; }
.logo:hover { color: var(--text); }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.site-header .site-nav a {
  color: var(--text-muted); font-family: var(--mono); font-size: .68rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
}
.site-header .site-nav a:hover { color: var(--text); }
 
.site-header .site-nav a[aria-current] { color: var(--accent); }
.mobile-menu a[aria-current] { color: var(--accent); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
 
.header-brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.member-badge {
  display: inline-flex; align-items: baseline; gap: 6px; min-width: 0;
  font-family: var(--mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  text-decoration: none; transition: opacity .2s;
}
 
.member-badge .member-x { color: var(--text-muted); }
.member-badge > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-badge:hover { opacity: .72; }
.member-badge[hidden], .site-nav a[hidden], .mobile-menu a[hidden] { display: none; }
 
.auth-link {
  display: inline-flex; min-height: 44px; align-items: center; padding: 0 2px;
  color: var(--accent); text-decoration: none;
  font-family: var(--mono); font-weight: 500; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; transition: opacity .2s;
}
.auth-link:hover { opacity: .72; }
.header-map-cta {
  display: inline-flex; min-height: 44px; align-items: center; justify-content: center;
  padding: 0 16px; border: 1px solid var(--accent); color: var(--accent); text-decoration: none;
  font-family: var(--mono); font-weight: 500; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
}
.header-map-cta:hover { color: var(--bg); background: var(--accent); }

 
.fav-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 15px; cursor: pointer;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border);
  font-family: var(--mono); font-weight: 500; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s, border-color .2s;
}
.fav-toggle:hover { color: var(--accent); border-color: var(--accent); }
.fav-toggle .fav-star { width: 15px; height: 15px; flex: none; }
.fav-toggle.is-on { color: var(--accent); border-color: var(--accent); }
.fav-toggle.is-on .fav-star { fill: var(--accent); }
.fav-toggle:disabled { opacity: .6; cursor: progress; }
.fav-status {
  display: inline-block; font-family: var(--mono); font-size: .6rem;
  letter-spacing: .04em; color: var(--text-muted); margin-left: 10px;
}
.fav-status.is-error { color: #ff8b82; }
.lang-switch { position: static; display: inline-flex; gap: 4px; align-items: center; }
.lang-switch .lang-opt { border-radius: 0; color: var(--text-muted); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; }
.lang-switch .lang-opt.active { color: var(--accent); background: rgba(34,211,238,.12); }
.menu-toggle, .mobile-menu { display: none; }

main { max-width: 920px; padding: 46px clamp(18px,3.6vw,40px) 72px; }
main > h1, main > .crumbs + h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 400; letter-spacing: -.03em; margin-bottom: 10px; }
h2, main section > h2 { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; font-weight: 500; }
.intro-lead, .catalog-intro { max-width: 690px; font-size: 1rem; line-height: 1.65; margin-bottom: 30px; }
.crumbs { margin-top: 0; font-family: var(--mono); font-size: .63rem; letter-spacing: .04em; }
section { margin-bottom: 42px; }

 
.hero, .forecast-day, .h-slot, .geo-chip, .faq details, .widget-preview,
.widget-code, .widget-faq details, .rec-card, .rec-alltime .climate-table-wrap,
.trail-facts { border-radius: 0; }
.hero { background: var(--bg2); border-color: var(--border); padding: 24px 72px 32px 24px; }
.hero-temp { font-family: var(--mono); font-weight: 500; }
.hero-src { left: 24px; bottom: 11px; font-family: var(--mono); font-size: .62rem; letter-spacing: .04em; }
.btn-map { border-radius: 0; font-family: var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.btn-map.hero-map-btn { border-radius: 0; }
.forecast-day, .h-slot, .geo-chip, .cond-card, .rec-card { background: var(--bg2); border-color: var(--border); }
.forecast-day time, .hm-label, .geo-chip span, .rec-label { font-family: var(--mono); }
.nearby-list a, .widget-copy { border-radius: 0; }
.nearby-list a { background: var(--bg2); }
.climate th, .climate td { padding: 9px 11px; }

 
.catalog-tools { display: grid; gap: 7px; max-width: 640px; margin: 0 0 15px; }
.catalog-search {
  width: 100%; min-height: 48px; padding: 0 15px; color: var(--text); background: var(--bg2);
  border: 1px solid var(--border); border-radius: 0; font: .92rem var(--font);
}
.catalog-search::placeholder { color: var(--text-muted); }
.catalog-search:focus { border-color: var(--accent); outline: none; }
.catalog-result { min-height: 1.25em; color: var(--text-muted); font-family: var(--mono); font-size: .68rem; }
.catalog-jump { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.catalog-jump a { padding: 6px 9px; border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; font: .62rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.catalog-jump a:hover { color: var(--accent); border-color: var(--accent); }
.catalog-jump span { color: var(--accent); }
.catalog-section { margin-bottom: 18px; scroll-margin-top: 88px; }
.catalog-group { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.catalog-group summary { display: flex; justify-content: space-between; align-items: center; min-height: 52px; cursor: pointer; list-style: none; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.catalog-group summary::-webkit-details-marker { display: none; }
.catalog-group-toggle::before { content: '+'; color: var(--accent); font-size: 1rem; }
.catalog-group[open] .catalog-group-toggle::before { content: '−'; }
.catalog-grid { padding: 0 0 10px; }
.catalog-grid li { padding: 8px 0; }
.catalog-grid a { font-size: .9rem; }
.catalog-grid .county { font-family: var(--mono); font-size: .62rem; letter-spacing: .02em; }

 
.method-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 24px 0 34px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.method-nav > span { color: var(--text-muted); font: .62rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.method-nav a { color: var(--text); text-decoration: none; font-size: .82rem; }
.method-nav a:hover { color: var(--accent); }
.method-section { scroll-margin-top: 90px; }
.methodology p { max-width: 750px; font-size: 1rem; line-height: 1.72; }

 
.widget-gen { max-width: 760px; }
.widget-controls { margin-bottom: 20px; }
.widget-controls select { min-height: 44px; border-radius: 0; }
.widget-preview { min-width: 292px; border-radius: 0; }
.widget-preview-note { margin-top: 8px; color: var(--text-muted); font-size: .82rem; }
.widget-code { max-width: 100%; border-radius: 0; }
.widget-copy { min-height: 42px; border-radius: 0; }

.site-footer { background: var(--bg); border-color: var(--border); padding: 28px clamp(18px,3.6vw,40px); }
.site-footer, .site-footer a { font-family: var(--mono); font-size: .65rem; }
.site-footer a { text-decoration: none; }

 
.privacy-policy { max-width: 1100px; margin: 0 auto; padding: clamp(36px,7vw,96px) clamp(18px,3.6vw,40px) 80px; }
.privacy-hero { max-width: 850px; padding: clamp(24px,4vw,48px) 0 clamp(48px,7vw,88px); }
.privacy-kicker, .privacy-effective, .privacy-section-head > p, .privacy-contact > p { font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.privacy-kicker { color: var(--accent); font-size: .72rem; margin: 0 0 22px; }
.privacy-hero h1 { max-width: none; margin: 0 0 24px; font-family: var(--display); font-size: clamp(3.2rem,9vw,7.4rem); font-weight: 400; line-height: .88; letter-spacing: -.055em; }
.privacy-lead { max-width: 760px; color: var(--text); font-size: clamp(1.15rem,2.2vw,1.6rem); line-height: 1.5; }
.privacy-effective { margin-top: 28px; color: var(--text-muted); font-size: .68rem; }
.privacy-promises { padding: 42px 0 64px; border-top: 1px solid var(--border); }
.privacy-section-head { display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 14px; align-items: baseline; }
.privacy-section-head > p { margin: 0; color: var(--accent); font-size: .65rem; }
.privacy-section-head h2 { margin: 0; font-family: var(--display); font-size: clamp(1.8rem,3vw,2.7rem); font-weight: 400; letter-spacing: -.025em; }
.privacy-promise-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-top: 34px; border: 1px solid var(--border); }
.privacy-promise { min-height: 190px; padding: 22px; border-right: 1px solid var(--border); background: var(--bg2); }
.privacy-promise:last-child { border-right: 0; }
.privacy-promise > span { display: block; color: var(--accent); font-family: var(--mono); font-size: 1.35rem; }
.privacy-promise p { margin: 54px 0 0; font-size: .9rem; line-height: 1.5; }
.privacy-nav { display: grid; grid-template-columns: 180px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.privacy-nav strong { font-family: var(--mono); color: var(--text-muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.privacy-nav div { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.privacy-nav a { color: var(--text); font-size: .82rem; text-decoration-color: var(--border); text-underline-offset: 4px; }
.privacy-nav a:hover { color: var(--accent); }
.privacy-section { display: grid; grid-template-columns: minmax(240px,.72fr) minmax(0,1.28fr); gap: clamp(30px,7vw,96px); padding: clamp(48px,7vw,82px) 0; border-bottom: 1px solid var(--border); scroll-margin-top: 90px; }
.privacy-section-copy { max-width: 680px; }
.privacy-section-copy > :first-child { margin-top: 0; }
.privacy-section-copy p, .privacy-section-copy li { line-height: 1.72; }
.privacy-section-copy ul { margin: 24px 0 0; padding: 0; list-style: none; }
.privacy-section-copy li { position: relative; padding: 14px 0 14px 24px; border-top: 1px solid var(--border); }
.privacy-section-copy li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.privacy-contact { margin-top: 72px; padding: clamp(28px,5vw,54px); background: var(--accent); color: #071114; }
.privacy-contact > p { margin: 0 0 18px; font-size: .67rem; }
.privacy-contact h2 { max-width: 650px; margin: 0 0 32px; font-family: var(--display); font-size: clamp(2rem,4vw,3.8rem); font-weight: 400; line-height: 1; }
.privacy-contact a { color: #071114; font-family: var(--mono); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-underline-offset: 5px; }
@media (max-width: 880px) {
  .privacy-promise-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .privacy-promise { min-height: 150px; border-bottom: 1px solid var(--border); }
  .privacy-promise:nth-child(2n) { border-right: 0; }
  .privacy-promise:last-child { grid-column: 1/-1; border-bottom: 0; }
  .privacy-promise p { margin-top: 32px; }
}
@media (max-width: 640px) {
  .privacy-nav, .privacy-section { grid-template-columns: 1fr; }
  .privacy-nav { gap: 16px; }
  .privacy-section { gap: 26px; }
  .privacy-section-head { grid-template-columns: 38px minmax(0,1fr); }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; grid-template-columns: 1fr auto; gap: 12px; }
  .site-nav, .lang-switch { display: none; }
   
  .auth-link { display: none; }
  .member-badge { font-size: .6rem; letter-spacing: .06em; max-width: 34vw; }
  .header-actions { gap: 12px; }
  .menu-toggle {
    display: inline-flex; width: 44px; min-height: 44px; flex-direction: column; align-items: center; justify-content: center;
    padding: 0; border: 1px solid var(--border); background: var(--bg2); color: var(--accent); cursor: pointer;
  }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 18px; height: 2px; background: currentColor; transition: transform .18s, opacity .18s; }
  .menu-toggle span { margin: 4px 0; }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 99; top: 70px; right: clamp(18px,3.6vw,40px); width: min(260px, calc(100vw - 36px)); padding: 8px; border: 1px solid var(--border); background: rgba(17,26,30,.98); box-shadow: 0 18px 42px -20px #000; }
  .mobile-menu.is-open { display: block; }
  .mobile-menu > a { display: flex; align-items: center; min-height: 44px; padding: 0 12px; color: var(--text-muted); text-decoration: none; font: .68rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
  .mobile-menu > a:hover { color: var(--accent); background: var(--bg3); }
  .mobile-menu-language { display: flex; gap: 4px; padding: 8px 12px 2px; border-top: 1px solid var(--border); }
  .mobile-menu-language a { padding: 6px 7px; color: var(--text-muted); text-decoration: none; font: .62rem var(--mono); letter-spacing: .08em; }
  .mobile-menu-language a[aria-current="true"] { color: var(--accent); background: rgba(34,211,238,.12); }
  main { max-width: 680px; padding-top: 32px; }
  main > h1, main > .crumbs + h1 { font-size: clamp(1.8rem,9vw,2.4rem); }
  .hero { padding: 18px 18px 32px; }
  .hero-src { left: 18px; }
  .catalog-jump { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .catalog-jump a { white-space: nowrap; }
  .catalog-group summary { min-height: 56px; }
  .method-nav { flex-wrap: nowrap; overflow-x: auto; padding: 12px 0; }
  .method-nav > span, .method-nav a { white-space: nowrap; }
  .methodology p { font-size: .96rem; }
  .widget-preview { display: block; min-width: 0; overflow-x: auto; }
}


 
body { background: #0b1012; color: #e9f0f2; }
.site-header { min-height: 62px; padding-top: 8px; padding-bottom: 8px; background: rgba(11,16,18,.94); border-color: rgba(157,176,182,.16); }
 
main { max-width: clamp(960px, 66vw, 1280px); }
main > h1, main > .crumbs + h1 { max-width: 46em; color: #eef5f6; line-height: 1.06; }
.intro-lead, .catalog-intro, .location-info p, .beach-quality-note { color: #9db0b6; }
.hero { background: transparent; border-width: 1px 0; border-color: rgba(157,176,182,.28); padding: 24px 64px 34px 0; gap: 28px; }
.hero-temp { font-family: var(--mono); color: #f2fcff; font-size: clamp(2.7rem,7vw,4.2rem); }
.hero-metrics { gap: 18px 26px; }
.hero-metric { padding-top: 8px; border-top: 1px solid rgba(157,176,182,.16); }
.hm-label, main section > h2 { color: #8fa6ad; }
.hm-value { font-size: 1rem; }
.btn-map.hero-map-btn { top: 18px; right: 0; background: #22d3ee; }
.hero-src { left: 0; bottom: 10px; }
.conditions, .forecast-strip, .hourly, .location-info, .climate, .faq, .nearby, .sources, .beach-current-tests, .beach-quality { border-top: 1px solid rgba(157,176,182,.22); padding-top: 22px; }
.beach-current-tests, .beach-quality { background: transparent; border-radius: 0; padding: 22px 0 0; margin: 42px 0; }
.cond-grid { gap: 1px; background: rgba(157,176,182,.16); border-bottom: 1px solid rgba(157,176,182,.16); }
.cond-card { background: #0f171a; border: 0; border-radius: 0; min-height: 138px; }
.forecast-days { gap: 1px; background: rgba(157,176,182,.16); border-top: 1px solid rgba(157,176,182,.16); border-bottom: 1px solid rgba(157,176,182,.16); }
.forecast-day { background: #0f171a; border: 0; padding: 14px 7px; }
 
.hourly-scroll { --strip-bg: var(--bg); background-color: transparent; border-width: 1px 0; border-radius: 0; }
.geo-chip { background: transparent; border-width: 1px 0 0; padding: 10px 0; }
 
.geo-chips {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0 28px; margin-top: 12px;
}
.faq details { background: transparent; border-width: 1px 0 0; }
.quality-badge, .quality-history-year { border-radius: 0; }
@media (max-width: 760px) {
  .site-header { min-height: 62px; padding-left: 18px; padding-right: 18px; }
  .logo { font-size: 1.18rem; }
  .header-map-cta { min-height: 42px; padding: 0 13px; }
  .menu-toggle { min-height: 42px; width: 42px; background: transparent; }
  .mobile-menu { top: 62px; }
  main { padding: 28px 18px 56px; }
  main > h1, main > .crumbs + h1 { font-size: clamp(2rem,8.2vw,2.55rem); line-height: 1.08; margin-bottom: 18px; }
  .crumbs { margin-bottom: 20px; }
  .hero { padding: 22px 52px 36px 0; margin-bottom: 32px; }
  .hero-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 18px; }
  .hero-src { max-width: calc(100% - 4px); font-size: .58rem; }
  section { margin-bottom: 48px; }
  .cond-grid { grid-template-columns: 1fr; }
  .cond-card--wide { grid-column: span 1; }
  .forecast-days { overflow-x: auto; grid-template-columns: repeat(7,minmax(84px,1fr)); }
  .beach-current-tests, .beach-quality { margin: 48px 0; }
}


 

 
body { overflow-x: clip; }

.fieldwrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -46px;               
  margin-bottom: 10px;
  height: clamp(540px, 82vh, 780px);
  overflow: hidden;
  background: var(--bg);
}
.fieldwrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
 
.fieldwrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 16, 18, 0), var(--bg));
}

.loc-cartouche {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3.6vw, 40px);
  bottom: 44px;
   
  width: min(clamp(560px, 36vw, 720px), calc(100% - 2 * clamp(18px, 3.6vw, 40px)));
  background: rgba(17, 26, 30, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9);
}

 
.loc-cartouche .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.594rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #70868e;
}
.loc-cartouche .crumbs a { color: #70868e; }
.loc-cartouche .crumbs a:hover { color: var(--accent); }
.loc-cartouche .crumbs span[aria-current] { color: var(--text-muted); }

.loc-cartouche h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #eef5f6;
}

.lc-reading { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.lc-temp {
  font-family: var(--mono);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #f2fcff;
}
.lc-temp small {
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2px;
  color: var(--text-muted);
}
.lc-cond {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  color: var(--text);
}
.lc-cond .hero-cond-icon svg { width: 20px; height: 20px; display: block; color: var(--text-muted); }

.lc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 22px;
  margin-top: 18px;
}
.lc-metric { padding-top: 8px; border-top: 1px solid var(--border); }
.lc-metric[hidden] { display: none; }
.lc-metric > small {
  display: block;
  font-family: var(--mono);
  font-size: 0.594rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #70868e;
}
.lc-metric > b {
  font-size: 0.98rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
 
.lc-metric--quality { grid-column: 1 / -1; }
.lc-quality-val { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 2px; }

.lc-src {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  color: #70868e;
}

.lc-ctas { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.cta-solid {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--accent);
  color: #04141a;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.cta-solid:hover { background: var(--accent-hover); }
.cta-quiet {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #70868e;
  text-decoration: none;
}
.cta-quiet:hover { color: var(--accent); }

 
.marker {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.95), 0 0 0 2px rgba(34, 211, 238, 0.85);
  pointer-events: none;
}
.marker::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.2px solid rgba(34, 211, 238, 0.9);
  animation: mpulse 2.6s ease-out infinite;
}
@keyframes mpulse {
  0%        { transform: scale(1);   opacity: 0.95; }
  70%, 100% { transform: scale(3.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .marker::after { animation: none; } }

@media (max-width: 760px) {
  .fieldwrap { margin-top: -28px; height: min(88svh, 720px); }
  .loc-cartouche { left: 14px; right: 14px; bottom: 14px; width: auto; padding: 20px 18px 22px; }
  .lc-metrics { gap: 12px 14px; }
  .lc-ctas .cta-quiet { display: none; }
}

 
.method-refs { margin: 8px 0 30px; }
.method-refs h2 {
  font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--text-muted);
}
.method-refs ol {
  margin: 0; padding-left: 1.35em;
  color: var(--text-muted); font-size: 0.8125rem; line-height: 1.6;
}
.method-refs li { margin-bottom: 7px; }
.method-refs li::marker { color: var(--accent); }

 
.wd-arrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.95em;
  line-height: 1;
  transform: rotate(calc(var(--wd, 0deg) + 180deg));
}

 
.model-comparison { margin: 22px 0 34px; padding: 22px 0 18px; border-width: 1px 0; border-style: solid; border-color: rgba(137,159,166,.22); border-radius: 0; background: transparent; }
.mc-head { display: grid; grid-template-columns: minmax(280px,1fr) auto; align-items: start; gap: 26px; }
.mc-head h2 { margin: 0 0 7px; color: #8fa6ad; }
.mc-head p { margin: 0; max-width: 650px; color: #81949a; font-size: .6875rem; line-height: 1.55; }
.mc-controls { display: flex; flex-wrap: nowrap; justify-content: flex-end; white-space: nowrap; }
.mc-controls button { min-height: 32px; padding: 0 12px; border: 1px solid rgba(137,159,166,.22); border-right-width: 0; color: #8da0a6; background: #121716; font: .625rem var(--mono); cursor: pointer; }
.mc-controls button:last-child { border-right-width: 1px; }
.mc-controls button:hover, .mc-controls button.is-active { color: #061316; background: var(--accent); border-color: var(--accent); }
.mc-chart { overflow-x: auto; margin-top: 14px; min-height: 260px; }
.mc-chart svg { display: block; width: 100%; min-width: 620px; height: auto; }
.mc-grid { stroke: rgba(137,159,166,.12); stroke-width: 1; vector-effect: non-scaling-stroke; }
.mc-grid--day { stroke: rgba(137,159,166,.07); }
.mc-night { fill: rgba(3,8,11,.3); }
.mc-axis { fill: #70848b; font: 9px var(--mono); }
.mc-now { stroke: rgba(220,235,239,.46); stroke-width: 1; stroke-dasharray: 2 3; vector-effect: non-scaling-stroke; }
.mc-transition { stroke: rgba(245,158,11,.46); stroke-width: 1; stroke-dasharray: 3 4; vector-effect: non-scaling-stroke; }
.mc-note { fill: #81949a; font: 8px var(--mono); }
.mc-range { fill: rgba(54,126,190,.22); stroke: none; }
.mc-own, .mc-model { fill: none; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.mc-own { stroke: var(--accent); stroke-width: 2.2; }
.mc-model { stroke: var(--mc-color); stroke-width: 1; opacity: .64; }
.mc-legend { display: flex; gap: 20px; flex-wrap: wrap; color: var(--text-muted); font: .625rem var(--mono); }
.mc-legend span { display: inline-flex; gap: 7px; align-items: center; }
.mc-key { width: 20px; height: 3px; background: var(--accent); }
.mc-key--range { height: 9px; background: rgba(73,137,193,.35); }
.mc-key--model { height: 2px; background: var(--mc-color); }
.mc-source-note { margin: 9px 0 0; color: #647980; font: .5625rem/1.45 var(--mono); }
@media (max-width: 700px) {
  .model-comparison { padding: 16px 0; }
  .mc-head { display: block; }
  .mc-controls { justify-content: flex-start; margin-top: 14px; overflow-x: auto; }
}
