:root {
  --ink: #1a221a;
  --muted: #3a4538;
  --paper: #f4efe4;
  --card: #fffdf7;
  --line: #cfc6b6;
  --moss: #2a4730;
  --rust: #8a3f22;
  --go: #21562a;
  --maybe: #5c450c;
  --no: #6e2222;
  --shadow: 0 10px 30px rgba(28, 36, 28, 0.06);
  --tap: 44px;
  --pad: 1.15rem;
  --space-1: 0.4rem;
  --space-2: 0.75rem;
  --space-3: 1.15rem;
  --space-4: 1.75rem;
  --space-5: 2.5rem;
  --lh: 1.55;
  --text: 1.125rem;
  --text-sm: 1rem;
  --radius: 16px;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --map-salt: #2d7ec4;
  --map-river: #2e7a4a;
  --map-lake: #5ec8b4;
  --map-fresh: #2e7a4a;
  --map-shop: #5a67b5;
  --map-guide: #e36b2c;
  --map-parking: #2a9aad;
  --map-stay: #c43d8a;
  --map-ramp: #2d8f72;
  --map-permission: #e0b41c;
  --map-here: #1f5c55;
}

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

html {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-size: var(--text);
  line-height: var(--lh);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #e7efe4 0%, transparent 50%),
    var(--paper);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  padding-bottom: calc(5.25rem + var(--safe-b));
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--moss); }
a:hover { color: var(--rust); }

button,
select,
input,
.chip,
.ghost,
.nav-link,
.card-link,
.maps,
.btn,
.report-card {
  -webkit-tap-highlight-color: rgba(47, 74, 52, 0.16);
  touch-action: manipulation;
}

button, select, input {
  font-family: inherit;
  font-size: 16px; /* iOS will zoom the page if this is smaller */
}

:focus-visible {
  outline: 3px solid var(--moss);
  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;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: var(--pad);
  top: calc(var(--pad) + var(--safe-t));
  z-index: 40;
  background: var(--card);
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.wrap,
.site-head,
.site-foot,
main {
  width: min(920px, calc(100% - (var(--pad) * 2) - var(--safe-l) - var(--safe-r)));
  margin-left: auto;
  margin-right: auto;
}

.site-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  padding: calc(0.7rem + var(--safe-t)) 0 0.65rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
}

.mark {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  font-size: 1.28rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--tap);
}

.mark img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}

.desk-nav { display: none; gap: 0.5rem; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 0.25rem 0 var(--safe-b);
}
.dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 56px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.dock a.on { color: var(--moss); }
.dock-ico { font-size: 1.2rem; font-weight: 400; letter-spacing: 0; }

.dock-cta {
  position: sticky;
  bottom: calc(4.4rem + var(--safe-b));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.1rem 0 0.5rem;
  padding: 0.55rem 0;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  z-index: 8;
}
.dock-cta .maps,
.dock-cta .ghost { width: 100%; }

.from-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: end;
}
.from-field { display: block; position: relative; }
.suggest {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.3rem 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 16rem;
  overflow-y: auto;
}
.suggest mark {
  background: #f3e7c3;
  color: inherit;
  font-weight: 700;
  padding: 0;
}
.suggest li { margin: 0; border-bottom: 1px solid var(--line); }
.suggest li:last-child { border-bottom: 0; }
.suggest-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: var(--tap);
  padding: 0.6rem 0.85rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}
.suggest-item:hover { background: #e7efe4; }
.icon-btn {
  min-height: var(--tap);
  min-width: var(--tap);
  padding: 0 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--moss);
  background: var(--card);
  color: var(--moss);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.distance-slider {
  display: grid;
  gap: 0.35rem;
}
.distance-slider span {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.distance-slider #far-readout {
  text-transform: none;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  color: #2d7ec4;
}
.distance-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: var(--tap);
  margin: 0;
  background: transparent;
  cursor: pointer;
}
.distance-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(to right, #2d7ec4 0%, #7c4dbd 50%, #d64545 100%);
}
.distance-slider input[type="range"]::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(to right, #2d7ec4 0%, #7c4dbd 50%, #d64545 100%);
}
.distance-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -9px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--far-color, #2d7ec4);
  box-shadow: 0 1px 4px rgba(28, 36, 28, 0.35);
}
.distance-slider input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--far-color, #2d7ec4);
  box-shadow: 0 1px 4px rgba(28, 36, 28, 0.35);
}
fieldset.distance legend { grid-column: 1 / -1; }
fieldset.distance .chip { width: 100%; }

.map-wrap { margin: 1.1rem 0 1.5rem; }
.live-map {
  height: min(42vh, 320px);
  min-height: 220px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  z-index: 1;
}
.map-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}
.map-filters .chip {
  width: 100%;
  min-height: var(--tap);
  padding: 0.4rem 0.35rem;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: normal;
}
.map-filters .chip.on {
  background: var(--moss);
  color: #f4efe4;
  border-color: var(--moss);
}
.map-filters .chip:active {
  transform: scale(0.98);
}
@media (hover: hover) {
  .map-filters .chip:hover {
    border-color: var(--moss);
    background: #e7efe4;
    color: var(--moss);
  }
  .map-filters .chip.on:hover {
    background: #fff;
    color: var(--moss);
    border-color: var(--moss);
    box-shadow: inset 0 0 0 1px var(--moss);
  }
}
.map-key { display: flex; flex-wrap: wrap; gap: 0.85rem 1rem; align-items: center; margin: 0.55rem 0 0; font-size: var(--text-sm); }
.key {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin-right: 0.3rem;
  vertical-align: middle;
}
.key.salt { background: var(--map-salt); }
.key.river { background: var(--map-river); }
.key.lake { background: var(--map-lake); }
.key.fresh { background: var(--map-fresh); }
.key.shop { background: var(--map-shop); }
.key.guide { background: var(--map-guide); }
.key.parking { background: var(--map-parking); }
.key.stay { background: var(--map-stay); }
.key.ramp { background: var(--map-ramp); }
.key.permission {
  background: var(--map-permission);
  border-radius: 2px;
}
.pin { background: none !important; border: none !important; }
.pin-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--map-fresh);
  color: #f4efe4;
  font: 700 0.8rem/1 "Source Sans 3", sans-serif;
  box-shadow: 0 1px 4px rgba(28, 36, 28, 0.28);
  border: 2px solid #fffdf7;
}
.pin-dot.pin-salt { background: var(--map-salt); }
.pin-dot.pin-river { background: var(--map-river); }
.pin-dot.pin-lake { background: var(--map-lake); }
.pin-dot.pin-fresh { background: var(--map-fresh); }
.pin-dot.pin-shop { background: var(--map-shop); }
.pin-dot.pin-guide { background: var(--map-guide); }
.pin-dot.pin-parking { background: var(--map-parking); }
.pin-dot.pin-stay { background: var(--map-stay); }
.pin-dot.pin-ramp { background: var(--map-ramp); }
.pin-dot.pin-permission {
  background: var(--map-permission);
  color: #1a221a;
  border-radius: 4px;
  border-color: #1a221a;
}
.pin-dot.pin-here { background: var(--map-here); }
.leaflet-popup-content { font-size: 1rem; line-height: 1.45; margin: 0.8rem 0.95rem; }
.leaflet-control-attribution { font-size: 0.75rem; }

.hero.compact { padding: 0.55rem 0 0.15rem; }
.hero.compact h1 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.hero.compact .lede { margin-bottom: 0.35rem; }

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.on { color: var(--moss); border-color: var(--moss); }

.site-foot {
  padding: 2.75rem 0 calc(2.25rem + var(--safe-b));
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.site-foot p { margin: 0 0 0.85rem; }

.hero { padding: 1rem 0 0.35rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--rust);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

h1, h2, h3 { font-family: Fraunces, Georgia, serif; letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 6.4vw, 2.45rem); margin: 0 0 0.7rem; }
h2 { font-size: 1.4rem; margin: 1.75rem 0 0.7rem; }
h3 { font-size: 1.22rem; }
.lede, .lead { font-size: 1.12rem; max-width: 40rem; margin: 0 0 1rem; line-height: 1.55; }
.inline-link { white-space: nowrap; }
.muted { color: var(--muted); }

.planner {
  display: grid;
  gap: 0.7rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem 0.95rem;
  box-shadow: var(--shadow);
  margin: 0.75rem 0 0.7rem;
  position: relative;
  z-index: 16;
  overflow: visible;
}

.planner label span,
fieldset legend {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

textarea {
  width: 100%;
  min-height: 5.5rem;
  padding: 0.8rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  resize: vertical;
}

input[type="text"] {
  width: 100%;
  min-height: var(--tap);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

select {
  width: 100%;
  min-height: var(--tap);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--moss) 50%),
    linear-gradient(135deg, var(--moss) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.chip.on,
.chip:has(input:checked) {
  background: var(--moss);
  color: #f4efe4;
  border-color: var(--moss);
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ghost,
.maps,
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  width: 100%;
  font: inherit;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.ghost {
  border: 1px dashed var(--moss);
  background: transparent;
  color: var(--moss);
}

.maps,
.btn {
  border: 1px solid var(--moss);
  background: var(--moss);
  color: #f4efe4;
}

.maps:hover,
.btn:hover { color: #fff; }

.actions {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.4rem;
}

.dates {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 0 0.45rem;
  margin: 0.15rem 0 0;
}

.date-cell {
  flex: 0 0 4.85rem;
  width: 4.85rem;
  min-width: 4.85rem;
  min-height: var(--tap);
  padding: 0.45rem 0.3rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  text-align: center;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1.15;
  overflow: hidden;
}

.date-cell .dow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.date-cell .dom {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  white-space: nowrap;
}
.date-cell .wx {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.08rem;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.date-cell .wx-ico { font-size: 1.05rem; line-height: 1; }
.date-cell .astro {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  color: var(--muted);
}
@media (max-width: 640px) {
  .date-cell .astro { display: none; }
  .date-cell {
    flex-basis: 4.5rem;
    width: 4.5rem;
    min-width: 4.5rem;
    min-height: 4.5rem;
  }
}
.date-cell .sun-rise { text-align: right; }
.date-cell .sun-set { text-align: left; }
.date-cell .moon { font-size: 0.9rem; color: var(--ink); line-height: 1; }
.date-cell.on {
  background: #dcecdd;
  border-color: var(--moss);
  color: var(--ink);
}
.date-cell.start,
.date-cell.end,
.date-cell.start.end {
  background: var(--moss);
  border-color: var(--moss);
  color: #f4efe4;
}
.date-cell.start .dow,
.date-cell.end .dow,
.date-cell.start .astro,
.date-cell.end .astro { color: #e4f0e2; }
.date-cell.start .moon,
.date-cell.end .moon { color: #f4efe4; }
.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.range-row input[type="date"] {
  width: 100%;
  min-height: var(--tap);
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.report { margin: 1.15rem 0 1.6rem; }
.report .count { margin-bottom: 0.85rem; }
.report-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.report-card {
  display: block;
  padding: 1.05rem 1.1rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  min-height: var(--tap);
}
.report-card:hover { border-color: var(--moss); }
.report-card.static { box-shadow: none; }
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}
.report-day {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.report-wx {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 0.7rem;
}
.report-wx-main {
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.4;
}
.report-astro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.report-line {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
}

.cond { color: var(--moss); font-size: 1.02rem; margin: 0.4rem 0 0.3rem; line-height: 1.5; }
.cond-blurb {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  line-height: 1.5;
}
.cond-rows {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}
.cond-rows > div {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  background: color-mix(in srgb, var(--paper) 70%, #fff);
  border-radius: 10px;
}
.cond-rows dt {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.cond-rows dd {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}
.hour-winds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.as-of { color: var(--muted); font-size: var(--text-sm); margin: 0.45rem 0 1.4rem; line-height: 1.5; }
.count { color: var(--muted); margin: 0 0 1rem; font-size: var(--text-sm); line-height: 1.5; }

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-link {
  display: block;
  padding: 1.15rem 1.15rem 1.25rem;
  color: inherit;
  text-decoration: none;
  min-height: var(--tap);
}

.card h3 { margin: 0.5rem 0 0.35rem; font-size: 1.32rem; }
.where, .shop { color: var(--muted); font-size: 1rem; line-height: 1.45; }
.why { margin: 0.55rem 0; line-height: 1.55; }

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.kind {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
}

.light {
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  line-height: 1.25;
}

.light-go { background: #dcecdd; color: var(--go); }
.light-maybe { background: #f3e7c3; color: var(--maybe); }
.light-no { background: #f3d4d1; color: var(--no); }

.plain-list { list-style: none; padding: 0; margin: 0; }
.plain-list li { border-bottom: 1px solid var(--line); }
.plain-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-height: var(--tap);
  padding: 0.9rem 0.1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 650;
  font-size: 1.08rem;
}
.plain-list a:hover { color: var(--moss); }
.plain-list span { color: var(--muted); font-weight: 400; font-size: 1rem; line-height: 1.45; }

.door { margin: 2rem 0 0.5rem; }
.door a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  font-weight: 650;
  font-size: 1.05rem;
}

.missing, .empty, .caution {
  background: #f3e7c3;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.caution { background: #f3d4d1; }

.water header { margin-bottom: 1.15rem; }
.facts { display: grid; gap: 0.85rem; }
.facts > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.facts dt {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.facts dd { margin: 0.3rem 0 0; font-size: 1.05rem; line-height: 1.5; }

.shop-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  margin: 0.8rem 0;
}
.shop-card h2 { margin-top: 0; }
.speak-actions { grid-template-columns: 1fr 1fr 1fr; }
#speak-preview { margin-top: 0.85rem; }
#speak-takes { margin: 0.4rem 0 0; font-weight: 650; color: var(--moss); }
.log-card-actions { margin-top: 0.85rem; }

.shop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.shop-actions .ghost { width: 100%; }

.export-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  align-items: center;
  margin: 0.85rem 0 0;
}
.text-btn {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0;
  border: 0;
  background: none;
  color: var(--moss);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.text-btn:disabled,
.maps:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.crumb { margin: 0.5rem 0 1rem; }
.crumb a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-weight: 600;
  font-size: 1.02rem;
}

.steps { padding-left: 1.35rem; }
.steps li { margin-bottom: 1.7rem; }
.steps h2 { margin-top: 0.2rem; }

.about-logo {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  display: block;
  margin: 0 0 1.15rem;
  box-shadow: var(--shadow);
}

.prose { max-width: 40rem; }
.prose p { margin: 0 0 1.15rem; }

@media (min-width: 640px) {
  fieldset:not(.distance) {
    flex-direction: row;
    flex-wrap: wrap;
  }
  fieldset:not(.distance) .chip { width: auto; flex: 1 1 auto; }
  .ghost { width: auto; justify-self: start; }
  .maps, .btn { width: auto; }
  .actions { grid-template-columns: max-content; }
  .report-astro { gap: 0.4rem 1.35rem; }
}

@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  body { padding-bottom: 0; }
  .dock { display: none; }
  .desk-nav { display: flex; }
  .dock-cta {
    position: static;
    max-width: 22rem;
    background: transparent;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

@media (prefers-contrast: more) {
  :root {
    --ink: #101510;
    --muted: #2a3228;
    --line: #8d846f;
    --moss: #1c3a24;
  }
  .light-go, .light-maybe, .light-no { outline: 1px solid currentColor; }
}
