/* ==========================================================================
   Utah Water Damage Restoration Pros - variant 1 "Emergency"
   charcoal #111827 + blue #1D4ED8, red #DC2626 CTA, light sticky header,
   split hero, sharp 4px corners, tight 56px section rhythm.
   Mobile-first. System font stack only, no external fonts or images.
   ========================================================================== */

:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --ink-3: #374151;
  --accent: #1d4ed8;
  --accent-dark: #1e3a8a;
  --accent-soft: #eff6ff;
  --cta: #dc2626;
  --cta-dark: #b91c1c;
  --cta-soft: #fef2f2;
  --body: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --radius: 4px;
  --radius-pill: 4px;
  --wrap: 1140px;
  --gutter: 18px;
  --section: 56px;
  --shadow-flat: 0 0 0 1px var(--line);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 1.85rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--cta-dark);
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

li {
  margin-bottom: 0.4em;
}

strong {
  color: var(--ink);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2em 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.btn-lg {
  padding: 15px 22px;
  font-size: 1.02rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-cta {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta-dark);
}

.btn-cta:hover,
.btn-cta:focus {
  background: var(--cta-dark);
  color: #fff;
}

.btn-panel {
  background: var(--cta);
  color: #fff;
}

.btn-panel:hover,
.btn-panel:focus {
  background: var(--cta-dark);
  color: #fff;
}

.btn-invert {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-invert:hover,
.btn-invert:focus {
  background: var(--cta-soft);
  color: var(--cta-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-3);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent);
}

.btn-outline-invert {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-invert:hover,
.btn-outline-invert:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.inline-cta,
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 1.25em;
}

/* -------------------------------------------------------------- alert strip */

.alert-strip {
  background: var(--ink);
  color: #e5e7eb;
  font-size: 0.86rem;
}

.alert-strip .wrap {
  padding-top: 8px;
  padding-bottom: 8px;
}

.alert-strip p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  align-items: baseline;
}

.alert-strip strong {
  color: #fff;
}

.alert-strip span {
  color: #9ca3af;
}

.alert-strip a {
  color: #fca5a5;
  font-weight: 700;
  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;
}

.alert-strip a:hover {
  color: #fff;
  text-decoration: underline;
}

/* -------------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line-strong);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
  min-width: 0;
}

.brand-drop {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand-text span {
  display: none;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0;
  color: var(--muted);
}

.brand:hover {
  color: var(--accent-dark);
}

.btn-header {
  padding: 10px 14px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-header-full {
  display: none;
}

.btn-header-short {
  display: inline;
}

.site-nav {
  display: none;
}

.nav-strip {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-strip::-webkit-scrollbar {
  display: none;
}

.nav-strip ul {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 5px var(--gutter);
  list-style: none;
  width: max-content;
}

.nav-strip li {
  margin: 0;
}

.nav-strip a {
  display: block;
  padding: 6px 8px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-3);
  white-space: nowrap;
}

.nav-strip a:hover,
.nav-strip a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* ------------------------------------------------------------------ breadcrumbs */

.breadcrumbs {
  padding-top: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 0.6em;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.6em;
  color: var(--line-strong);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ------------------------------------------------------------------ hero */

.hero-split {
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 82%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7em;
  padding: 4px 10px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.45em;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 60ch;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hero-points li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0;
  font-size: 0.94rem;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--accent);
}

.hero-panel {
  background: linear-gradient(160deg, var(--ink) 0%, var(--accent-dark) 100%);
  color: #e5e7eb;
  border-radius: var(--radius);
  padding: 22px 20px;
}

.hero-panel h2 {
  color: #fff;
  font-size: 1.15rem;
}

.hero-panel p {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.panel-list {
  list-style: none;
  margin: 0 0 1.1em;
  padding: 0;
  display: grid;
  gap: 8px;
}

.panel-list li {
  margin: 0;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #fca5a5;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: #e2e8f0;
}

.hero-stats {
  background: var(--ink);
  color: #e5e7eb;
}

.hero-stats .wrap {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* ------------------------------------------------------------------ stat row */

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: #9ca3af;
}

.stat-row li {
  margin: 0;
}

.stat-row strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.section .stat-row,
.section-alt .stat-row {
  color: var(--muted);
  margin-bottom: 1.5em;
}

.section .stat-row strong,
.section-alt .stat-row strong {
  color: var(--accent-dark);
}

/* --------------------------------------------------------------- trust strip */

.trust-strip {
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
}

.trust-strip ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 18px 0;
}

.trust-strip li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  font-size: 0.87rem;
  color: var(--ink-3);
}

.trust-strip svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}

.trust-strip strong {
  display: block;
  font-size: 0.93rem;
  color: var(--ink);
}

/* -------------------------------------------------------------- page hero */

.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent-dark) 100%);
  color: #e5e7eb;
  padding: 32px 0 30px;
  overflow: hidden;
}

.page-hero h1 {
  color: #fff;
  font-size: 1.75rem;
}

.page-hero p {
  color: #cbd5e1;
  max-width: 68ch;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
}

.hero-edge {
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cta) 0%, var(--accent) 55%, #60a5fa 100%);
}

/* ------------------------------------------------------------------ sections */

.section {
  padding: var(--section) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.5em;
  max-width: 72ch;
}

.section-head h2 {
  font-size: 1.5rem;
}

.section-head p {
  color: var(--muted);
  margin-bottom: 0;
}

.prose {
  max-width: 74ch;
}

.prose h2:not(:first-child),
.prose h3:not(:first-child) {
  margin-top: 1.6em;
}

.lede {
  font-size: 1.02rem;
  color: var(--ink-3);
  max-width: 74ch;
}

.note {
  margin-top: 1.2em;
  padding: 14px 16px;
  background: var(--cta-soft);
  border-left: 3px solid var(--cta);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* ------------------------------------------------------------------- cards */

.grid {
  display: grid;
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 18px 6px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35em;
}

.card h3 a {
  text-decoration: none;
  color: var(--ink);
}

.card h3 a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.card p {
  font-size: 0.93rem;
  color: var(--body);
}

/* ------------------------------------------------------------------ steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.steps li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 6px 60px;
  margin: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
}

.steps h3 {
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.steps p {
  font-size: 0.93rem;
}

/* --------------------------------------------------------------- benefits */

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}

.benefits li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--cta);
  border-radius: 2px;
  transform: rotate(45deg);
}

.two-col {
  display: grid;
  gap: 20px;
}

/* --------------------------------------------------------------- city grid */

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0 0 1.4em;
  padding: 0;
}

.city-grid li {
  margin: 0;
}

.city-grid a {
  display: block;
  padding: 9px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-3);
}

.city-grid a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.section-alt .city-grid a {
  background: #fff;
}

.alpha-group {
  margin-bottom: 1.6em;
}

.alpha-group h2 {
  font-size: 1.1rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 0.7em;
}

.alpha-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpha-group li {
  margin: 0;
}

.alpha-group a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent-dark);
}

.alpha-group a:hover {
  text-decoration: underline;
  color: var(--cta-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0 0 1.6em;
  padding: 0;
}

.tag-list li {
  margin: 0;
}

.tag-list a,
.tag-list li {
  font-size: 0.85rem;
}

.tag-list a {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 700;
}

.toc {
  margin: 1.6em 0;
}

.toc h2 {
  font-size: 1.05rem;
}

.toc .tag-list li {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------- FAQ */

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  padding: 14px 44px 14px 16px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
  position: relative;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cta);
  line-height: 1;
}

.faq details[open] summary::after {
  content: "\2013";
}

.faq details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq details p {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.94rem;
}

/* ---------------------------------------------------------------- post list */

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.post-list li {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--cta);
  border-radius: var(--radius);
}

.post-list h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3em;
}

.post-list h3 a {
  text-decoration: none;
  color: var(--ink);
}

.post-list h3 a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.post-list p {
  font-size: 0.93rem;
  margin-bottom: 0.4em;
}

.post-meta {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.takeaways {
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px 4px;
  margin: 0 0 1.6em;
}

.takeaways h2 {
  font-size: 1.05rem;
}

.takeaways ul {
  padding-left: 1.15em;
}

.takeaways li {
  font-size: 0.93rem;
}

/* -------------------------------------------------------------------- table */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.2em 0;
  background: #fff;
}

caption {
  text-align: left;
}

th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tbody tr:nth-child(even) {
  background: var(--bg-alt);
}

/* ----------------------------------------------------------------- cta band */

.cta-band {
  background: linear-gradient(135deg, var(--cta-dark) 0%, var(--cta) 60%, #f97316 100%);
  color: #fff;
  padding: 32px 0;
}

.cta-band h2 {
  color: #fff;
  font-size: 1.4rem;
}

.cta-band p {
  color: #fee2e2;
  max-width: 68ch;
}

/* ------------------------------------------------------------------ footer */

.site-footer {
  background: var(--ink);
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 34px 0 90px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.6em;
}

.site-footer p {
  margin-bottom: 0.7em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.35em;
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-phone {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff !important;
}

.footer-disclaimers {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #374151;
  font-size: 0.79rem;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #374151;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
  font-size: 0.79rem;
}

/* ----------------------------------------------------------------- call bar */

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--cta);
  border-top: 1px solid var(--cta-dark);
}

.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}

.call-bar svg {
  width: 18px;
  height: 18px;
}

.call-bar a:hover {
  background: var(--cta-dark);
  color: #fff;
}

/* ------------------------------------------------------------------- 404 */

.error-code {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin: 0;
}

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.84rem;
  }

  .brand-drop {
    width: 30px;
    height: 30px;
  }

  .alert-strip {
    font-size: 0.82rem;
  }
}

@media (min-width: 600px) {
  h1 {
    font-size: 2.1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

  .brand-text {
    font-size: 1.02rem;
  }

  .brand-text span {
    display: block;
  }

  .btn-header-full {
    display: inline;
  }

  .btn-header-short {
    display: none;
  }

  .btn-header {
    padding: 11px 18px;
    font-size: 0.95rem;
  }

  .grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .alpha-group ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  :root {
    --gutter: 24px;
    --section: 64px;
  }

  body {
    font-size: 17.5px;
  }

  .site-nav {
    display: block;
    margin-right: 8px;
  }

  .site-nav ul {
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-nav li {
    margin: 0;
  }

  .site-nav a {
    display: block;
    padding: 8px 11px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-3);
    text-decoration: none;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: var(--accent-soft);
    color: var(--accent-dark);
  }

  .nav-strip {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 36px;
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-panel {
    padding: 26px 24px;
  }

  .grid,
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .city-grid,
  .alpha-group ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .call-bar {
    display: none;
  }

  .cta-band {
    padding: 44px 0;
  }

  .page-hero {
    padding: 46px 0 42px;
  }

  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .section-head h2 {
    font-size: 1.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  .call-bar,
  .alert-strip,
  .site-nav,
  .nav-strip {
    display: none;
  }
}
