/* NationalParkDrift — site styles
   Palette: deep forest green, canyon red, slate blue, sun-bleached cream.
   Type: Roboto Slab (display) + Inter (body).
*/
:root {
  --bg: #f5f1e8;
  --bg-soft: #ece5d3;
  --bg-deep: #1a2418;
  --paper: #ffffff;
  --ink: #14211a;
  --ink-2: #2f3d34;
  --muted: #6b7770;
  --line: #ddd5c1;
  --line-2: #c9bfa6;

  /* Deep forest greens */
  --forest: #0d3320;
  --forest-2: #1a4a30;
  --forest-3: #2c6444;
  --forest-soft: #d6e0d2;

  /* Canyon reds */
  --canyon: #a8442a;
  --canyon-2: #c25738;
  --canyon-soft: #f0d4c5;
  --canyon-deep: #7a2f1e;

  /* Slate blues */
  --slate: #3b556e;
  --slate-2: #5a7993;
  --slate-soft: #d6dee7;

  /* Warm accents */
  --sand: #d4a76a;
  --cream: #f0c987;

  --shadow: 0 1px 2px rgba(13,30,20,0.05), 0 8px 28px rgba(13,30,20,0.08);
  --shadow-lg: 0 4px 8px rgba(13,30,20,0.06), 0 20px 50px rgba(13,30,20,0.12);
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--canyon); text-decoration: none; transition: color .15s; }
a:hover { color: var(--canyon-deep); }
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', 'Zilla Slab', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); margin-top: 1.6em; font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canyon);
  margin: 0 0 0.7em;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: white; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  background: var(--forest);
  color: rgba(255,255,255,0.92);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--canyon);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; font-weight: 700; }
.brand-mark { display: inline-flex; }
.brand-text {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: white;
}
.brand-text span { color: var(--cream); }
.brand.small .brand-text { font-size: 1.15rem; }

.primary-nav { display: flex; gap: 28px; align-items: center; }
.primary-nav a {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.primary-nav a:hover { color: var(--cream); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 4px 0; border-radius: 2px; }

.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem;
  padding: 12px 24px 14px;
  background: var(--forest-2);
  color: rgba(255,255,255,0.7);
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--cream); }
.breadcrumbs .sep { opacity: 0.5; }

/* Search bar */
.searchbar {
  background: var(--forest-2);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.searchbar form {
  display: flex; gap: 8px;
  max-width: var(--max); margin: 0 auto;
  align-items: center;
}
.searchbar input[type=search] {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
}
.searchbar input::placeholder { color: rgba(255,255,255,0.5); }
.searchbar input:focus { outline: none; border-color: var(--cream); background: rgba(255,255,255,0.14); }
.searchbar button {
  padding: 11px 20px; border: 0;
  background: var(--canyon);
  color: white; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: var(--radius); cursor: pointer;
}
.searchbar button:hover { background: var(--canyon-2); }

/* Region quick-nav strip */
.region-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.region-strip .container {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  align-items: center;
}
.region-strip .label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-2); margin-right: 8px;
}
.region-strip a {
  padding: 7px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.88rem; font-weight: 600;
  border: 1px solid var(--line);
}
.region-strip a:hover { background: var(--forest); color: white; border-color: var(--forest); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  color: white;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-grad {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(13,51,32,0.20) 0%, rgba(13,51,32,0.65) 60%, rgba(13,51,32,0.92) 100%),
    radial-gradient(at 25% 35%, rgba(168,68,42,0.28) 0%, transparent 60%);
}
.hero-inner { padding: 100px 24px 100px; max-width: 920px; }
.hero h1 { color: white; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 900; line-height: 1.05; }
.hero h1 .accent { color: var(--cream); font-weight: 600; font-style: normal; display: block; margin-top: 0.2em; font-size: 0.7em; }
.hero .lede { font-size: 1.22rem; max-width: 660px; color: rgba(255,255,255,0.9); }
.hero .eyebrow { color: var(--cream); }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-search {
  margin-top: 36px; max-width: 600px;
  display: flex; gap: 8px; background: rgba(255,255,255,0.08);
  padding: 6px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-search input {
  flex: 1; padding: 14px 18px; border: 0; background: transparent;
  color: white; font-family: inherit; font-size: 1rem;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.6); }
.hero-search input:focus { outline: none; }
.hero-search button {
  padding: 14px 24px; background: var(--canyon); color: white;
  border: 0; border-radius: var(--radius);
  font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.88rem;
}
.hero-search button:hover { background: var(--canyon-2); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius); font-weight: 700;
  font-size: 0.9rem; transition: all .18s; border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.btn.primary { background: var(--canyon); color: white; border-color: var(--canyon); }
.btn.primary:hover { background: var(--canyon-2); border-color: var(--canyon-2); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn.ghost:hover { background: white; color: var(--forest); border-color: white; }
.btn.outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn.outline:hover { background: var(--forest); color: white; }

/* Sections */
.section { padding: 80px 24px; }
.section-head { margin-bottom: 40px; max-width: 760px; }
.section-head h2 { margin-top: 0; }
.section-head .muted { font-size: 1.05rem; }

/* Featured parks card grid */
.grid { display: grid; gap: 28px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--canyon); }
.card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: linear-gradient(135deg, var(--forest-3), var(--forest)); }
.card-img-fallback svg { width: 56px; opacity: 0.7; }
.card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,30,20,0.35));
  pointer-events: none;
}
.card-body { padding: 22px 22px 26px; flex: 1; }
.card-meta {
  font-size: 0.72rem; color: var(--canyon); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px; font-weight: 700;
}
.card h3 {
  font-size: 1.3rem; margin: 0 0 10px;
  font-family: 'Roboto Slab', serif; color: var(--ink);
}
.card p { font-size: 0.94rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* Regions section */
.regions-section { background: var(--forest); color: white; padding: 90px 24px; }
.regions-section h2 { color: white; }
.regions-section .muted { color: rgba(255,255,255,0.7); }
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.region-tile {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px; border-radius: var(--radius);
  background: var(--forest-2); color: white;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .2s;
}
.region-tile:hover { background: var(--canyon); border-color: var(--canyon-2); transform: translateY(-3px); color: white; }
.region-tile .rname {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem; font-weight: 700; color: white;
}
.region-tile .rdesc { color: rgba(255,255,255,0.78); font-size: 0.94rem; line-height: 1.5; }
.region-tile .rcount { font-size: 0.78rem; color: var(--cream); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* Strip section (categories) */
.strip { background: var(--slate); color: white; padding: 90px 24px; margin: 0; }
.strip h2 { color: white; }
.strip .muted { color: rgba(255,255,255,0.75); }
.strip-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-grid.large { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cat-tile {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: white; transition: all .2s;
}
.cat-tile:hover { background: var(--canyon); border-color: var(--canyon-2); color: white; transform: translateX(4px); }
.cat-title { font-family: 'Roboto Slab', serif; font-size: 1.1rem; font-weight: 700; }
.cat-arrow { font-weight: 700; opacity: 0.7; }

.cat-tile.big { flex-direction: column; align-items: flex-start; gap: 10px; padding: 28px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.cat-tile.big:hover { color: var(--ink); background: white; border-color: var(--canyon); transform: translateY(-3px); }
.cat-tile.big .cat-title { font-size: 1.6rem; }
.cat-tile.big .cat-desc { color: var(--muted); font-size: 0.95rem; }
.cat-tile.big .cat-arrow { color: var(--canyon); }

/* Quote band */
.quote-band { padding: 90px 24px; background: var(--bg-soft); }
.quote-band blockquote {
  margin: 0; max-width: 820px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.4;
  border-left: 5px solid var(--canyon);
  padding: 8px 0 8px 32px;
}

/* Page head (non-hero pages) */
.page-head {
  padding: 70px 24px 30px;
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-2) 100%);
  color: white;
  border-bottom: 4px solid var(--canyon);
}
.page-head h1 { margin: 0 0 14px; color: white; }
.page-head .lede { color: rgba(255,255,255,0.85); font-size: 1.18rem; max-width: 760px; }
.page-head .eyebrow { color: var(--cream); }

/* Park hero */
.park-hero {
  position: relative;
  background-color: var(--forest-2);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 0;
  min-height: 58vh;
  display: flex; align-items: flex-end;
  border-bottom: 4px solid var(--canyon);
}
.park-hero.compact { min-height: 42vh; padding-top: 80px; }
.park-hero h1 { color: white; max-width: 900px; }
.park-hero .eyebrow { color: var(--cream); }
.park-tabs {
  display: flex; gap: 4px; margin-top: 32px; padding: 0;
  overflow-x: auto;
}
.park-tabs a {
  padding: 14px 22px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.park-tabs a:hover { color: white; }
.park-tabs a.active { color: white; border-bottom-color: var(--canyon); }

/* Park body layout */
.park-body { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; padding: 60px 24px 80px; max-width: var(--max); margin: 0 auto; }
.prose { max-width: 760px; }
.prose.narrow { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 1.06rem; color: var(--ink-2); }
.prose h2 { margin-top: 1.6em; font-size: 1.55rem; color: var(--forest); }
.prose h2::before {
  content: ""; display: inline-block; width: 28px; height: 3px;
  background: var(--canyon); vertical-align: middle; margin-right: 14px;
  position: relative; top: -4px;
}
.prose ul, .prose ol { padding-left: 1.2em; color: var(--ink-2); }
.prose li { margin-bottom: 0.4em; }
.link-list { list-style: none; padding: 0; }
.link-list li {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--canyon);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 10px;
}
.link-list li:hover { border-color: var(--canyon); background: #fffaf3; }

/* Inline editorial recommendation (PBN inline link) */
.inline-rec {
  display: block;
  background: #fffaf3;
  border-left: 3px solid var(--canyon);
  padding: 14px 18px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.97rem;
  color: var(--ink-2);
  font-style: italic;
}
.inline-rec strong { color: var(--canyon); font-style: normal; font-weight: 700; }
.inline-rec a { color: var(--canyon-deep); border-bottom: 1px dotted var(--canyon); font-style: normal; }
.inline-rec a:hover { color: var(--canyon); border-bottom-color: var(--canyon-deep); }

/* Logistics / facts table styling */
.logistics-table {
  width: 100%; border-collapse: collapse; margin: 24px 0 28px;
  background: var(--paper); border: 1px solid var(--line);
}
.logistics-table th, .logistics-table td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.logistics-table th {
  background: var(--bg-soft); font-weight: 700;
  color: var(--ink); width: 38%;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem;
}
.logistics-table tr:last-child td, .logistics-table tr:last-child th { border-bottom: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.chip {
  padding: 6px 12px; border-radius: var(--radius);
  background: var(--forest-soft); color: var(--forest);
  font-size: 0.85rem; border: 1px solid var(--forest-3); font-weight: 600;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.card-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card-box.featured { border-top: 4px solid var(--canyon); }
.card-box h3 {
  margin: 0 0 14px; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--canyon); font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.facts { margin: 0; }
.facts dt { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 14px; }
.facts dt:first-child { margin-top: 0; }
.facts dd { margin: 4px 0 0; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { border-bottom: 1px solid var(--line); }
.related-list li:last-child { border-bottom: 0; }
.related-list a { display: flex; flex-direction: column; padding: 12px 0; color: var(--ink); }
.related-list .rel-name { font-weight: 700; font-size: 0.98rem; font-family: 'Roboto Slab', serif; }
.related-list .rel-meta { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* Editorial recommendations sidebar block (PBN) */
.editorial-recs { list-style: none; padding: 0; margin: 0; }
.editorial-recs li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.editorial-recs li:last-child { border-bottom: 0; }
.editorial-recs li { display: block; color: var(--ink); font-weight: 600; font-size: 0.95rem; line-height: 1.4; }
.editorial-recs .rec-tag { display: block; font-size: 0.7rem; color: var(--canyon); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 2px; }

/* State / category indexes */
.state-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.state-tile {
  display: flex; flex-direction: column; padding: 18px 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); transition: all .2s;
  border-left: 3px solid var(--forest);
}
.state-tile:hover { border-left-color: var(--canyon); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.state-name { font-family: 'Roboto Slab', serif; font-size: 1.05rem; font-weight: 700; }
.state-count { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.strip-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.strip-card {
  background: var(--canyon); color: white;
  padding: 28px; border-radius: var(--radius); display: block;
}
.strip-card:hover { background: var(--canyon-deep); color: white; }
.strip-card h3 { color: white; margin: 0 0 6px; }
.strip-card p { color: rgba(255,255,255,0.85); margin: 0; }

/* Pager */
.pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin: 48px 0 24px; }
.pager .page { padding: 8px 14px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); color: var(--ink-2); font-weight: 600; min-width: 40px; text-align: center; }
.pager .page:hover { border-color: var(--canyon); color: var(--canyon); }
.pager .page.current { background: var(--forest); color: white; border-color: var(--forest); }

/* Footer */
.site-footer { background: var(--bg-deep); color: rgba(255,255,255,0.78); padding: 70px 24px 28px; margin-top: 64px; border-top: 4px solid var(--canyon); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 {
  color: white; font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.site-footer a:hover { color: var(--cream); }
.site-footer .brand-text { color: white; }
.site-footer .muted { color: rgba(255,255,255,0.55); margin-top: 12px; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* Footer recommended block (PBN) */
.footer-recs { display: flex; flex-direction: column; gap: 4px; }
.footer-recs .rec { display: block; padding: 4px 0; }
.footer-recs .rec-tag {
  display: inline-block; font-size: 0.65rem;
  color: var(--cream); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-right: 6px;
}

/* Mobile */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-recs { grid-column: span 4; flex-direction: row; gap: 16px; flex-wrap: wrap; }
}
@media (max-width: 920px) {
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: 1fr; gap: 30px; }
  .park-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .state-grid { grid-template-columns: repeat(3, 1fr); }
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .footer-recs { grid-column: span 2; }
}
@media (max-width: 700px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .primary-nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--forest); border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
  }
  body.nav-open .primary-nav a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  body.nav-open .primary-nav a:last-child { border-bottom: 0; }
  .hero { min-height: 70vh; }
  .hero-inner { padding: 64px 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero .lede { font-size: 1.05rem; }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; gap: 20px; }
  .cat-grid, .cat-grid.large { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .strip-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-recs { grid-column: auto; flex-direction: column; }
  .state-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 24px; }
  .strip, .regions-section { padding: 56px 24px; }
  .park-hero { padding-top: 80px; min-height: 46vh; }
  .park-hero.compact { min-height: 32vh; padding-top: 60px; }
  .page-head { padding: 44px 24px 18px; }
  .quote-band { padding: 56px 24px; }
  .quote-band blockquote { padding-left: 22px; border-left-width: 4px; }
  .region-strip .container { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .region-strip a { white-space: nowrap; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .park-tabs a { padding: 12px 14px; font-size: 0.85rem; }
}
