/* ============================================================
   Rodent Control Oregon — shared stylesheet
   Field-guide aesthetic. Deep forest green + warm cream.
   ============================================================ */

:root {
  /* Palette */
  --green-950: #0b2419;
  --green-900: #0f2e22;
  --green-800: #1f4d3a;
  --green-700: #2a6346;
  --green-600: #3a7d5a;
  --green-100: #d6e3da;
  --green-50:  #ebf1ec;

  --cream:     #f5f1e8;
  --paper:     #faf7f0;
  --paper-warm:#f0ead9;
  --rule:      #d8d1bc;
  --rule-soft: #e6dfca;

  --ink:       #14181a;
  --ink-2:     #2b3236;
  --ink-3:     #5a6469;
  --ink-4:     #8a9197;

  --ochre:     #b8854a;
  --ochre-dim: #8a6334;
  --rust:      #8b3a1e;
  --rust-dim:  #6b2a14;

  /* Phone-CTA gold — pulled from the Pendleton / Forest-Service end of ochre */
  --cta:       #d49528;
  --cta-deep:  #b27818;
  --cta-text:  #1a1208;

  /* Pressure colors (timeline) */
  --p0: #ece5d0;
  --p1: #c9d6b9;
  --p2: #8fb285;
  --p3: #4f8a5e;
  --p4: #1f4d3a;

  /* Typography */
  --sans: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Sizing */
  --maxw: 1240px;
  --maxw-narrow: 880px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--green-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-700); }
button { font: inherit; cursor: pointer; }

::selection { background: var(--green-800); color: var(--paper); }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-800); color: var(--paper);
  padding: 10px 14px; z-index: 1000;
}
.skip:focus { left: 8px; top: 8px; }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 28px; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.kicker.dark { color: rgba(255,255,255,0.75); }

.section-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ochre-dim);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.rule-double {
  border: 0;
  border-top: 3px double var(--rule);
  margin: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--green-950);
  color: var(--paper);
  position: sticky; top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--paper);
  line-height: 1.15;
  margin-right: auto;
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--green-600);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-900);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-100);
  letter-spacing: 0.04em;
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.brand-sub {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-100);
  opacity: 0.7;
  margin-top: 6px;
}
.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0.85;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { opacity: 1; border-bottom-color: var(--green-600); }
.nav a.active { opacity: 1; border-bottom-color: var(--ochre); }

/* About dropdown */
.nav .has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav .has-dropdown > a::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
  transition: transform 140ms ease;
}
.nav .has-dropdown:hover > a::after,
.nav .has-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(-2px);
}
.nav .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: var(--green-950);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 60;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav .dropdown::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.nav .dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: none !important;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav .dropdown a .sub {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.nav .dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  opacity: 1;
}

.phone-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cta);
  color: var(--cta-text);
  padding: 12px 18px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid var(--cta-deep);
  transition: background 120ms ease, transform 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.phone-btn:hover {
  background: var(--cta-deep);
  color: var(--cta-text);
  box-shadow: 0 2px 0 rgba(0,0,0,0.12);
}
.phone-btn .icon { width: 16px; height: 16px; }
.phone-btn.lg {
  padding: 16px 26px;
  font-size: 18px;
  border-radius: 10px;
}
.phone-btn.xl {
  padding: 20px 32px;
  font-size: 22px;
  border-radius: 10px;
  letter-spacing: -0.01em;
}

.mobile-toggle { display: none; }

@media (max-width: 860px) {
  .nav { display: none; }
  .phone-btn { padding: 10px 14px; font-size: 14px; }
  .phone-btn .phone-btn-lead { display: none; }
  .brand-sub { display: none; }

  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    margin-left: auto;
    margin-right: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    color: var(--paper);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 220ms ease, opacity 180ms ease;
  }
  .mobile-toggle.open { border-color: rgba(255,255,255,0.4); }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* Slide-down mobile menu (created at runtime by nav.js) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-height: 100vh;
  overflow-y: auto;
  background: var(--green-950);
  z-index: 90;
  padding: 92px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-105%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 18px 4px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 140ms ease;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--ochre); }
body.menu-open { overflow: hidden; }
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--green-950); /* dark fallback if photo 404s */
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,36,25,0.55) 0%, rgba(11,36,25,0.35) 40%, rgba(11,36,25,0.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.85 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero-inner {
  padding: 110px 0 96px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 16px 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero p.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 56ch;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  line-height: 1.5;
}
.hero-meta {
  display: flex; gap: 26px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 680px;
}
.hero-meta-item .label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.hero-meta-item .val {
  font-size: 15px;
  color: var(--paper);
  font-weight: 500;
}

/* breadcrumb on city pages */
.crumbs {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
}
.crumbs a { color: rgba(255,255,255,0.72); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; }
.crumbs a:hover { color: var(--paper); }
.crumbs .sep { margin: 0 10px; opacity: 0.5; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }

.section-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.section-head .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ochre-dim);
  letter-spacing: 0.06em;
  padding-top: 8px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 8px;
  text-wrap: balance;
}
.section-head p {
  margin: 0;
  color: var(--ink-3);
  max-width: 64ch;
  font-size: 17px;
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   Cities grid (home + city nav)
   ============================================================ */
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.city-card {
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: background 140ms ease;
  min-height: 320px;
}
.city-card:hover { background: var(--paper-warm); }
.city-card .photo {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--green-800);
}
.city-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,36,25,0) 50%, rgba(11,36,25,0.55) 100%);
}
.city-card .body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.city-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.city-card h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 600;
}
.city-card .pop {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}
.city-card .county {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre-dim);
}
.city-card .desc {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 4px 0 0;
}
.city-card .cta {
  margin-top: auto;
  font-size: 14px;
  color: var(--green-800);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.city-card .cta .arrow { transition: transform 160ms ease; }
.city-card:hover .cta .arrow { transform: translateX(4px); }

@media (max-width: 980px) { .cities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cities { grid-template-columns: 1fr; } }

/* ============================================================
   Long-form prose
   ============================================================ */
.prose {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 68ch;
}
.prose > * + * { margin-top: 1em; }
.prose p { margin: 0 0 1em; }
.prose h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 1.5em 0 0.4em;
  color: var(--ink);
}
.prose h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre-dim);
  margin: 1.8em 0 0.4em;
}
.prose ul {
  padding-left: 0;
  list-style: none;
}
.prose ul li {
  padding-left: 20px;
  position: relative;
  margin: 0.4em 0;
}
.prose ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--ochre);
  font-weight: 600;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose .pull {
  border-left: 3px solid var(--ochre);
  padding: 6px 0 6px 20px;
  margin: 1.4em 0;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
}

/* Two-column layout used on city long-form */
.split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
}
.split aside {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.aside-block { margin-bottom: 36px; }
.aside-block .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre-dim);
  margin-bottom: 10px;
}
.aside-block ul { list-style: none; padding: 0; margin: 0; }
.aside-block li {
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule);
  display: flex; justify-content: space-between;
  color: var(--ink-2);
}
.aside-block li:last-child { border-bottom: 0; }
.aside-block li .v { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split aside { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 32px; }
}

/* ============================================================
   Seasonal pressure timeline
   ============================================================ */
.timeline {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 28px 24px;
  border-radius: var(--r-md);
}
.timeline-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px; flex-wrap: wrap; gap: 12px;
}
.timeline-head h3 {
  font-size: 19px; margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.timeline-legend {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.timeline-legend .chip {
  display: inline-flex; gap: 2px;
}
.timeline-legend .chip span {
  width: 14px; height: 12px; display: inline-block;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 180px repeat(12, 1fr);
  gap: 3px;
  align-items: stretch;
}
.timeline-grid .h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
  padding: 6px 0;
}
.timeline-grid .h.species { text-align: left; padding-left: 0; color: var(--ink-3); }
.timeline-grid .species-name {
  font-size: 14px;
  color: var(--ink);
  padding: 8px 12px 8px 0;
  border-right: 1px solid var(--rule);
  font-weight: 500;
}
.timeline-grid .species-name em {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
  font-style: normal;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.cell { height: 32px; border-radius: 2px; }
.cell.p0 { background: var(--p0); }
.cell.p1 { background: var(--p1); }
.cell.p2 { background: var(--p2); }
.cell.p3 { background: var(--p3); }
.cell.p4 { background: var(--p4); }

@media (max-width: 720px) {
  .timeline-grid { grid-template-columns: 110px repeat(12, 1fr); }
  .timeline-grid .h { font-size: 9px; }
  .timeline-grid .species-name { font-size: 12px; padding-right: 8px; }
  .timeline-grid .species-name em { font-size: 9px; }
}

/* ============================================================
   Directory: ranked exterminator cards
   ============================================================ */
.directory-note {
  background: var(--paper-warm);
  border: 1px dashed var(--ochre);
  color: var(--ochre-dim);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.dir-list {
  display: grid;
  gap: 20px;
}
.dir-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 80px 1fr 220px;
  gap: 28px;
  align-items: start;
  position: relative;
}
.dir-rank {
  font-family: var(--mono);
  font-size: 56px;
  line-height: 1;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: -0.04em;
}
.dir-rank-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  margin-top: 6px;
}
.dir-body h3 {
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.015em;
  font-weight: 600;
}
.dir-body .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.dir-body .desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.dir-body ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.dir-body ul li {
  font-size: 13.5px;
  color: var(--ink-3);
  padding-left: 18px;
  position: relative;
}
.dir-body ul li::before {
  content: "+";
  position: absolute; left: 0; top: -1px;
  color: var(--green-700);
  font-weight: 700;
}
.dir-aside {
  border-left: 1px dashed var(--rule);
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.dir-aside .field {
  margin-bottom: 12px;
}
.dir-aside .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  margin-bottom: 2px;
}
.dir-aside .val { color: var(--ink); font-size: 14px; }

@media (max-width: 880px) {
  .dir-card { grid-template-columns: 60px 1fr; }
  .dir-aside { grid-column: 1 / -1; border-left: 0; border-top: 1px dashed var(--rule); padding-left: 0; padding-top: 18px; }
  .dir-rank { font-size: 40px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--green-800);
  line-height: 1;
  transition: transform 140ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq .answer {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 70ch;
}

/* ============================================================
   CTA band (phone)
   ============================================================ */
.cta-band {
  background: var(--green-950);
  color: var(--paper);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 30%, rgba(184,133,74,0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(31,77,58,0.6), transparent 60%);
  pointer-events: none;
}
.cta-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 8px 0;
  text-wrap: balance;
  max-width: 24ch;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 760px) {
  .cta-band .wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   Featured / Articles
   ============================================================ */
.featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.featured .img {
  height: 100%;
  min-height: 320px;
  background-color: var(--green-800); /* fallback if photo 404s */
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
}
.featured .body { padding: 8px 0; }
.featured .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  margin-bottom: 14px;
}
.featured h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 14px;
  text-wrap: balance;
}
.featured h3 a { color: var(--ink); text-decoration: none; }
.featured h3 a:hover { color: var(--green-800); }
.featured .dek {
  color: var(--ink-3);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 50ch;
}
.featured .byline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .featured { grid-template-columns: 1fr; }
  .featured .img { min-height: 220px; }
}

.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.article {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.article .thumb {
  height: 180px;
  background: var(--green-700);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.article .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  margin-bottom: 6px;
}
.article h4 {
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.article:hover h4 { color: var(--green-800); }
.article p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 880px) { .articles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .articles { grid-template-columns: 1fr; } }

/* Index list (encyclopedia style) */
.index-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.index-list li {
  border-bottom: 1px solid var(--rule);
}
.index-list a {
  display: grid;
  grid-template-columns: 80px 1fr 200px 60px;
  gap: 24px;
  padding: 22px 0;
  text-decoration: none;
  color: var(--ink);
  align-items: baseline;
  transition: padding 160ms ease;
}
.index-list a:hover {
  padding-left: 12px;
  background: var(--paper);
}
.index-list .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ochre-dim);
  letter-spacing: 0.08em;
}
.index-list .title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.index-list .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.index-list .arrow {
  text-align: right;
  font-family: var(--mono);
  color: var(--green-800);
  transition: transform 160ms ease;
}
.index-list a:hover .arrow { transform: translateX(4px); }

/* Queued / coming-soon entries */
.index-list .row {
  display: grid;
  grid-template-columns: 80px 1fr 200px 60px;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  color: var(--ink);
}
.index-list li.queued .row {
  cursor: default;
}
.index-list li.queued .num,
.index-list li.queued .tag {
  opacity: 0.5;
}
.index-list li.queued .title {
  color: var(--ink-3);
  font-weight: 500;
}
.index-list li.queued .soon {
  text-align: right;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  white-space: nowrap;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .index-list .row { grid-template-columns: 50px 1fr 30px; gap: 16px; }
  .index-list li.queued .tag { display: none; }
}
@media (max-width: 720px) {
  .index-list a { grid-template-columns: 50px 1fr 30px; }
  .index-list .tag { display: none; }
}

/* ============================================================
   Quick stats strip on city pages
   ============================================================ */
.stats-strip {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.stats-strip .stat {
  padding: 22px 26px;
  border-right: 1px solid var(--rule);
}
.stats-strip .stat:last-child { border-right: 0; }
.stats-strip .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  margin-bottom: 8px;
}
.stats-strip .val {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .stats-strip .stat:nth-child(2) { border-right: 0; }
  .stats-strip .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* ============================================================
   Why network section (intro)
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro-grid .lead p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
}
.intro-grid .lead p:first-of-type::first-letter {
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  font-weight: 600;
  padding: 6px 12px 0 0;
  color: var(--green-800);
  font-family: var(--sans);
}
.intro-grid .notes {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.intro-grid .note {
  margin-bottom: 28px;
}
.intro-grid .note .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre-dim);
  margin-bottom: 6px;
}
.intro-grid .note h4 {
  font-size: 17px;
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.intro-grid .note p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-grid .notes { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 32px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--green-950);
  color: var(--paper);
  padding: 64px 0 28px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14.5px;
}
.site-footer a:hover { color: var(--paper); text-decoration: underline; text-decoration-thickness: 1px; }
.site-footer .brand-block {
  max-width: 320px;
}
.site-footer .brand-block p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 14px;
}
.site-footer .legal {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  color: rgba(255,255,255,0.45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer .legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.site-footer .legal a:hover {
  color: var(--paper);
  border-bottom-color: var(--ochre);
}
@media (max-width: 760px) {
  .site-footer .grid { grid-template-columns: 1fr 1fr; }
  .site-footer .legal { flex-direction: column; gap: 8px; }
}

/* ============================================================
   Misc
   ============================================================ */
.eyebrow-divider {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.eyebrow-divider::after {
  content: "";
  flex: 1; height: 1px;
  background: var(--rule);
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
}
.neighborhood-grid .row {
  display: grid;
  grid-template-columns: 1fr 90px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  gap: 16px;
  align-items: baseline;
}
.neighborhood-grid .row:nth-child(2n) { border-right: 0; }
.neighborhood-grid .row .name { font-size: 15px; color: var(--ink); font-weight: 500; }
.neighborhood-grid .row .pressure {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}
.p-high { color: var(--rust); }
.p-med { color: var(--ochre-dim); }
.p-low { color: var(--green-700); }

@media (max-width: 720px) {
  .neighborhood-grid { grid-template-columns: 1fr; }
  .neighborhood-grid .row { border-right: 0; }
}

/* ============================================================
   Tweaks panel (deferred — for future)
   ============================================================ */
