/* ================================================================
   ELITE CATASTROPHE — Black + Orange Design System
   Black-dominant, orange-as-accent. All color pairings WCAG-verified
   (scratchpad/contrast.mjs). See docs/superpowers/specs/black-orange-playbook.md
   ================================================================ */

:root {
  --ink: #0d0d0f;        /* near-black base */
  --ink-2: #141417;      /* elevated dark surface / cards on dark */
  --ink-3: #24242a;      /* hairline borders on dark */
  --orange: #ff6a00;     /* ON DARK ONLY: accents, icons, rule-lines; + CTA fill w/ ink text */
  --orange-ink: #c2410c; /* ON WHITE: orange text, links, UI borders (5.18:1) */
  --orange-hi: #ff8f52;  /* hover/active on dark (8.6:1) */
  --orange-lo: #a8360b;  /* hover/active for orange text on white (6.57:1) */
  --paper: #faf8f5;      /* light section base */
  --white: #ffffff;
  --on-dark: #f4f2ef;    /* body on ink (17.4:1) */
  --on-dark-mut: #b4b1ac;/* muted on ink (9.1:1) */
  --on-light: #0d0d0f;   /* body on paper */
  --on-light-mut: #45433f;/* muted on paper (9.3:1) */
  --gray-1: #f2f0ec;
  --gray-2: #e4e0da;
  --gray-3: #cbc6bf;
  --gray-4: #8a867f;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
  --maxw: 1160px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 22px 60px -22px rgba(13, 13, 15, .30);
  --shadow-card: 0 12px 34px -16px rgba(13, 13, 15, .20);
  --tr: .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-ink); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--orange-lo); }
ul { list-style: none; }
main { position: relative; z-index: 2; }

h1, h2, h3, h4 { font-weight: 300; line-height: 1.16; color: var(--ink); letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 200; letter-spacing: .01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.22rem; font-weight: 500; }
h1 strong, h2 strong { font-weight: 600; color: inherit; }
/* orange highlight word — bright on dark anchors, deep on light */
.hl { color: var(--orange-ink); font-weight: 600; }
p + p { margin-top: 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 88px 0; }

/* small-caps kicker — editorial signature */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .73rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--orange-ink); margin-bottom: 18px;
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--orange-ink); }

.display { font-weight: 200; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Logo lockup ---------- */
/* header/footer logo = their real logo (phone cropped, recolored light for dark bg) */
.logo { display: block; width: 128px; height: 50px; padding: 0;
  background: url(../img/logo-header.png) left center / contain no-repeat; }
.logo span { display: none; }
.logo .l1 { font-weight: 500; letter-spacing: .2em; font-size: 1.05rem; }
.logo .l2 { font-weight: 300; letter-spacing: .3em; color: var(--orange); font-size: .8rem; text-transform: uppercase; }

/* ---------- Dark-context helpers (header, hero, bands, page-hero, footer) ---------- */
.section-dark, .header, .hero, .band, .page-hero, .footer, .article-hero { color: var(--on-dark); }
.header, .hero, .page-hero, .article-hero, .footer { background: var(--ink); }
.hero .kicker, .band .kicker, .page-hero .kicker, .article-hero .kicker { color: var(--orange); }
.hero .kicker::before, .band .kicker::before, .page-hero .kicker::before, .article-hero .kicker::before { background: var(--orange); }
.hero h1, .hero h2, .band h2, .page-hero h1, .page-hero h2, .article-hero h1 { color: var(--on-dark); }
.hero h1 strong, .band h2 strong, .page-hero h1 strong, .article-hero h1 strong, .hero .hl, .band .hl, .page-hero .hl, .article-hero .hl { color: var(--orange); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 13, 15, .90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.header.scrolled { border-bottom-color: var(--ink-3); box-shadow: 0 8px 30px -20px rgba(0,0,0,.8); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.header .logo .l1 { color: var(--white); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .86rem; font-weight: 500; color: var(--on-dark);
  letter-spacing: .04em; position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width var(--tr);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--white); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font); font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr), border-color var(--tr);
}
.btn:active { transform: translateY(1px); }
/* primary = orange fill, INK text (6.76:1) — the one CTA color */
.btn-primary { background: var(--orange); color: var(--ink); }
.btn-primary:hover { background: var(--orange-hi); color: var(--ink); box-shadow: 0 12px 28px -10px rgba(255, 106, 0, .5); }
/* error state = deep red fill, white text (6.54:1). Set by JS only when a submit fails,
   so the visitor is told to call instead of being left thinking the form went through. */
.btn-error, .btn-error:hover { background: #a4231a; border-color: #a4231a; color: #fff; box-shadow: none; }
/* ghost on light = ink outline */
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
/* ghost on dark = white outline (hero/band/page-hero) */
.hero .btn-ghost, .band .btn-ghost, .page-hero .btn-ghost, .notfound .btn-ghost {
  border-color: rgba(244, 242, 239, .4); color: var(--on-dark); background: transparent;
}
.hero .btn-ghost:hover, .band .btn-ghost:hover, .page-hero .btn-ghost:hover, .notfound .btn-ghost:hover {
  background: var(--white); color: var(--ink); border-color: var(--white);
}
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #000; color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--orange); color: var(--ink); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: transform var(--tr), opacity var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; z-index: 70;
  background: var(--ink-2); border-left: 1px solid var(--ink-3);
  display: flex; flex-direction: column; gap: 6px; padding: 96px 30px 30px;
  transition: right var(--tr);
}
.mobile-nav.active { right: 0; }
.mobile-nav a { font-size: 1.02rem; font-weight: 500; color: var(--on-dark); padding: 12px 0; border-bottom: 1px solid var(--ink-3); }
.mobile-nav a.active { color: var(--orange); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; transition: opacity var(--tr); z-index: 65; }
.mobile-overlay.active { opacity: 1; pointer-events: auto; }

/* ---------- Emergency ribbon ---------- */
.ribbon {
  background: #000; color: var(--on-dark);
  font-size: .8rem; letter-spacing: .05em;
  text-align: center; padding: 9px 16px;
  position: relative; z-index: 61;
  border-bottom: 1px solid var(--ink-3);
}
.ribbon a { color: var(--orange); font-weight: 600; }
.ribbon a:hover { color: var(--white); }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-right: 8px; animation: pulse 2s infinite; vertical-align: middle; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,106,0,.6); } 70% { box-shadow: 0 0 0 8px rgba(255,106,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); } }

/* ---------- Hero (dark) ---------- */
.hero { padding: 100px 0 112px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.hero .lede { font-size: 1.08rem; color: var(--on-dark-mut); max-width: 52ch; margin: 24px 0 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-media { position: relative; }
.hero-media img {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); aspect-ratio: 4/4.6; object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}
/* offset orange frame behind the photo (E-frame motif) */
.hero-media::before {
  content: ''; position: absolute; left: -18px; top: -18px; right: 30px; bottom: 30px;
  border: 2px solid var(--orange); border-radius: var(--radius-lg); z-index: 0; pointer-events: none;
}
/* dark scrim so the badge + lower edge sit on the photo */
.hero-media::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); z-index: 2; pointer-events: none;
  background: linear-gradient(0deg, rgba(13,13,15,.86) 0%, rgba(13,13,15,.12) 42%, transparent 70%);
}
.badge-card {
  position: absolute; left: 18px; bottom: 20px; z-index: 3;
  background: var(--white); border-radius: var(--radius);
  padding: 13px 18px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
}
.badge-card .stars { color: var(--orange-ink); letter-spacing: 2px; font-size: .95rem; }
.badge-card .txt { font-size: .84rem; font-weight: 600; color: var(--ink); }
.badge-card .sub { display: block; font-size: .72rem; font-weight: 400; color: var(--gray-4); }
/* faint concentric rings behind hero */
.hero::before {
  content: ''; position: absolute; right: -160px; top: -80px; width: 560px; height: 560px;
  border-radius: 50%; border: 1px solid var(--ink-3); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -60px; top: 30px; width: 440px; height: 440px;
  border: 1px solid rgba(255,106,0,.14); border-radius: 50%; pointer-events: none;
}

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head p { color: var(--on-light-mut); margin-top: 14px; }

/* ---------- Service cards (on light) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg); padding: 34px 28px 30px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex; flex-direction: column; gap: 12px; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--orange); transition: width var(--tr);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--gray-3); }
.card:hover::before { width: 100%; }
.card .num { font-weight: 200; font-size: 2rem; letter-spacing: .06em; color: var(--gray-3); line-height: 1; }
.card h3 a { color: var(--ink); }
.card h3 a::after { content: ''; position: absolute; inset: 0; }
.card p { font-size: .92rem; color: var(--on-light-mut); flex: 1; }
.card .more { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-ink); }
.card.storm { background: #fdf1e8; border-color: #f6dcc8; }
.lane-chip {
  align-self: flex-start; font-size: .64rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.lane-chip.tree { background: var(--ink); color: var(--white); }
.lane-chip.storm { background: var(--orange); color: var(--ink); }

/* ---------- Dark band ---------- */
.band { background: var(--ink); color: var(--on-dark-mut); border-radius: var(--radius-lg); padding: 62px 56px; position: relative; overflow: hidden; }
.band h2 { color: var(--white); }
.band::before {
  content: ''; position: absolute; right: -90px; bottom: -130px; width: 340px; height: 340px;
  border: 1.5px solid rgba(255,106,0,.30); border-radius: 50%;
}
.band::after {
  content: ''; position: absolute; right: 30px; bottom: -70px; width: 260px; height: 260px;
  border: 1px solid rgba(255,255,255,.10); border-radius: 50%;
}
.band-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.band .phone-big { font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 600; color: var(--orange); letter-spacing: .03em; }
.band .phone-big:hover { color: var(--orange-hi); }

/* ---------- City index strip ---------- */
.city-index { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-2); border: 1px solid var(--gray-2); border-radius: var(--radius-lg); overflow: hidden; }
.city-index a {
  background: var(--white); padding: 22px 24px; color: var(--ink);
  font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background var(--tr);
}
.city-index a span { font-size: .72rem; color: var(--gray-4); font-weight: 400; text-align: right; }
.city-index a:hover { background: var(--ink); color: var(--white); }
.city-index a:hover span { color: var(--orange); }
/* mobile: stack city over county so the county label never overflows the tile */
@media (max-width: 680px) {
  .city-index a { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 3px; padding: 16px 18px; }
  .city-index a span { text-align: left; }
}

/* ---------- Feature / why rows ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature .fnum { font-weight: 200; font-size: 2.7rem; color: var(--orange-ink); letter-spacing: .04em; line-height: 1; }
.feature h3 { margin: 14px 0 8px; }
.feature p { font-size: .92rem; color: var(--on-light-mut); }

/* ---------- Content pages ---------- */
.page-hero { padding: 68px 0 60px; }
.page-hero .lede { font-size: 1.05rem; color: var(--on-dark-mut); max-width: 62ch; margin-top: 18px; }
.breadcrumbs { font-size: .78rem; letter-spacing: .05em; color: var(--on-dark-mut); margin-bottom: 22px; }
.breadcrumbs a { color: var(--on-dark-mut); }
.breadcrumbs a:hover { color: var(--orange); }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; padding: 66px 0 92px; }
.prose { font-size: 1.04rem; line-height: 1.75; }
.prose p, .prose li { color: #33322f; }
.prose h2 {
  margin: 52px 0 18px; padding-top: 22px; font-size: 1.62rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.25; position: relative;
}
.prose h2::before { content: ''; position: absolute; top: 0; left: 0; width: 42px; height: 3px; border-radius: 2px; background: var(--orange-ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 32px 0 10px; font-size: 1.24rem; font-weight: 600; color: var(--ink); }
.prose ul { list-style: none; margin: 18px 0; display: grid; gap: 11px; }
.prose ul li { padding-left: 28px; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .7em; width: 15px; height: 2px; background: var(--orange-ink); }
.prose ul li a { font-weight: 500; }
.prose img { border-radius: var(--radius-lg); margin: 28px 0; }
.sidebar { position: sticky; top: 100px; display: grid; gap: 20px; }
.side-card { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius-lg); padding: 26px; }
.side-card h3 { font-size: 1rem; margin-bottom: 12px; }
.side-card ul { display: grid; gap: 8px; }
.side-card ul a { font-size: .9rem; color: var(--on-light); }
.side-card ul a:hover { color: var(--orange-ink); }
.side-card.cta { background: var(--ink); border-color: var(--ink); }
.side-card.cta h3 { color: var(--white); }
.side-card.cta p { color: var(--on-dark-mut); font-size: .88rem; margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 780px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); overflow: hidden; transition: border-color var(--tr); }
.faq-item.active { border-color: var(--orange); }
.faq-question {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: .98rem; font-weight: 500; color: var(--ink);
  padding: 18px 52px 18px 22px; position: relative;
}
.faq-question::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; font-weight: 300; color: var(--orange-ink); transition: transform var(--tr);
}
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--tr); }
.faq-answer p { padding: 0 22px 20px; font-size: .92rem; color: var(--on-light-mut); }

/* ---------- Blog ---------- */
.post-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.post-card img { aspect-ratio: 16/9.5; object-fit: cover; }
.post-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.05rem; line-height: 1.35; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a::after { content: ''; position: absolute; inset: 0; }
.post-card p { font-size: .88rem; color: var(--on-light-mut); flex: 1; }
.post-meta { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-4); font-weight: 600; }
.post-meta .cat { color: var(--orange-ink); }

/* article hero (dark, with treated cover) */
.article-hero { padding: 60px 24px 0; }
.article-hero > * { max-width: 820px; margin-left: auto; margin-right: auto; }
.article-hero img { display: block; width: 100%; border-radius: var(--radius-lg); margin-top: 36px; aspect-ratio: 21/9; object-fit: cover; filter: saturate(.92) contrast(1.04); }
.article-hero h1 { margin-top: 10px; }
.article-hero .post-meta { color: var(--on-dark-mut); }
.article-hero .post-meta .cat { color: var(--orange); }
.article { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.article .prose { font-size: 1.06rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 66px 0 92px; align-items: start; }
.form { display: grid; gap: 16px; }
.form label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--font); font-size: .95rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--gray-3); border-radius: var(--radius);
  padding: 13px 16px; margin-top: 6px; transition: border-color var(--tr), box-shadow var(--tr);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--orange-ink); box-shadow: 0 0 0 3px rgba(194,65,12,.16);
}
.contact-info { display: grid; gap: 26px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ico { width: 42px; height: 42px; border: 2px solid var(--orange-ink); border-radius: 50%; display: grid; place-items: center; color: var(--orange-ink); flex-shrink: 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--on-dark-mut); margin-top: 40px; border-top: 3px solid var(--orange); }
.footer a { color: var(--on-dark); }
.footer a:hover { color: var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px; padding: 64px 0 44px; }
.footer .logo .l1 { color: var(--white); }
.footer .logo .l2 { color: var(--orange); }
.footer h3 { color: var(--white); font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { display: grid; gap: 9px; font-size: .9rem; }
.footer .tagline { font-size: .9rem; margin-top: 16px; max-width: 30ch; color: var(--on-dark-mut); }
.footer-bottom { border-top: 1px solid var(--ink-3); padding: 22px 0; font-size: .78rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- 404 ---------- */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 90px 24px; background: var(--ink); color: var(--on-dark); }
.notfound h1 { color: var(--on-dark); }
.notfound h1 strong { color: var(--orange); }
.notfound .lede { color: var(--on-dark-mut); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .band-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .feature-grid, .post-cards { grid-template-columns: repeat(2, 1fr); }
  .city-index { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 66px 0 76px; }
  .hero-media { max-width: 520px; margin-top: 12px; }
}
/* 6-item nav needs room; tablets use the hamburger */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-inner > .btn-primary { display: none; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .cards, .feature-grid, .post-cards { grid-template-columns: 1fr; }
  section { padding: 62px 0; }
  .band { padding: 42px 26px; }
  .header-inner > .btn-primary { display: none; }
  h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
