/* Bike the Katy — single stylesheet for all pages.
   NOTE: visual design is intentionally simple; a full design pass (Claude design)
   is planned. Keep all styling here so the reskin is one file. No navy. */

:root {
  --bg: #f6f3ec;
  --panel: #fffdf8;
  --ink: #22281f;
  --soft: #5c665a;
  --line: #e3ddcf;
  --green: #2e6b47;
  --green-soft: #e6efe7;
  --rust: #b0532f;
  --rust-soft: #f3e3da;
  --amber: #b9862e;
  --amber-soft: #f4ead2;
  --river: #2c7da0;
  --river-soft: #e0edf3;
  --radius: 14px;
  --maxw: 1120px;
  --display: "Bitter", Georgia, serif;
  --ui: "Inter", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--green); }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(34px, 5.5vw, 58px); }
h2 { font-size: clamp(24px, 3.2vw, 34px); }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.kicker {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 10px;
}
.muted { color: var(--soft); }
.small { font-size: 13px; }

/* Header */
.site-header {
  background: var(--panel); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; gap: 22px; height: 58px;
}
.brand { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.brand span { color: var(--rust); }
.nav { display: flex; gap: 18px; margin-left: auto; flex-wrap: wrap; }
.nav a { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--rust); }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,18,.25), rgba(20,24,18,.72)); }
.hero .wrap { position: relative; padding: 96px 20px 56px; }
.hero p.lede { max-width: 640px; font-size: 18px; }
.btn {
  display: inline-block; padding: 11px 20px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid transparent;
}
.btn-primary { background: var(--rust); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); }
.btn-quiet { background: var(--panel); color: var(--ink); border-color: var(--line); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* Live conditions strip (hero + pages) */
.cond-strip {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-top: 26px; font-size: 14px;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px; padding: 6px 13px; color: #fff;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #9ab89a; flex: none; }
.dot.good { background: #6fbf7e; }
.dot.soft { background: #e4b74d; }
.dot.muddy { background: #e07a52; }
.dot.flood { background: #d64d4d; }

/* Bands */
.band { padding: 56px 0; }
.band.alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-head { max-width: 720px; margin-bottom: 28px; }

/* Cards */
.grid { display: grid; gap: 16px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px;
}
.card h3 { margin-bottom: 6px; }
.card .meta { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 8px; }
.card.img { padding: 0; overflow: hidden; }
.card.img img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card.img .pad { padding: 16px 20px 20px; }

/* Status pills (conditions) */
.status { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 5px 13px; font-weight: 600; font-size: 13.5px; }
.status.good { background: var(--green-soft); color: var(--green); }
.status.soft { background: var(--amber-soft); color: var(--amber); }
.status.muddy { background: var(--rust-soft); color: var(--rust); }
.status.flood { background: #f6dede; color: #a33; }

/* Tables */
table.data { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 14.5px; }
table.data th, table.data td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data th { background: #f1ede2; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--soft); }
table.data tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* 360 embed */
.embed-360 { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #000; }
.embed-360 iframe { width: 100%; height: 520px; border: 0; display: block; }
@media (max-width: 700px) { .embed-360 iframe { height: 380px; } }

/* Video */
video.reel { width: 100%; border-radius: var(--radius); background: #000; display: block; }

/* Prose pages */
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; }
.prose figure { margin: 24px 0; }
.prose figcaption { font-size: 13px; color: var(--soft); margin-top: 8px; }

/* Section blocks (trail guide) */
.section-block { border-top: 1px solid var(--line); padding: 34px 0; }
.section-block .span { font-size: 13px; color: var(--soft); font-weight: 600; letter-spacing: .05em; }

/* Footer */
.site-footer { background: #26301f; color: #dfe5d8; margin-top: 72px; }
.site-footer a { color: #fff; }
.site-footer .wrap { padding: 40px 20px; display: grid; gap: 26px; grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr; } }
.site-footer h4 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: #aebba3; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 7px; font-size: 14.5px; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.14); font-size: 13px; color: #aebba3; }
.site-footer .bottom .wrap { display: block; padding: 16px 20px; }
