:root {
  --ink: #1e2528;
  --stucco: #f5f0e8;
  --white: #ffffff;
  --blue: #1d7ea6;
  --red: #d94b35;
  --yellow: #e8c547;
  --steel: #8d999e;
  --line: #d8d0c5;
  --muted: #5b676b;
  --soft: #fffaf2;
  --shadow: 0 18px 42px rgba(30, 37, 40, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stucco);
  font-family: Inter, "Instrument Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
}

.topbar-inner,
.site-header-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar span {
  color: #f8eac1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.brand-mark svg,
.brand-mark img {
  width: 36px;
  height: 36px;
  display: block;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 750;
}

.mobile-menu {
  display: none;
}

.header-cta,
.cta-row,
.mobile-sticky,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 4px 4px 0 rgba(30, 37, 40, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(30, 37, 40, 0.22);
  color: var(--ink);
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn.primary:hover {
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
}

.btn.red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn.yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.btn svg,
.icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 54px 0 42px;
  background:
    linear-gradient(90deg, rgba(245, 240, 232, 1) 0%, rgba(245, 240, 232, 0.94) 47%, rgba(245, 240, 232, 0.18) 100%),
    var(--stucco);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 40px;
}

.hero-copy h1,
h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, "Space Grotesk", Inter, Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.85rem);
}

.hero-copy p {
  max-width: 700px;
  color: #384449;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-panel {
  position: relative;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.zip-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--red);
}

.zip-strip a {
  min-height: 66px;
  display: grid;
  align-content: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  font-weight: 850;
}

.zip-strip a:last-child {
  border-right: 0;
}

.zip-strip small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.section.white {
  background: var(--white);
}

.section.ink {
  background: var(--ink);
  color: var(--white);
}

.section.ink .muted,
.section.ink p,
.section.ink li {
  color: #dce5e7;
}

.section.ink .card,
.section.ink .card h3 {
  color: var(--ink);
}

.section.ink .card p,
.section.ink .card li {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h1,
.section-head h2,
.article h1 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

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

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

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

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

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

.card,
.lane,
.review,
.faq-item,
.source-item,
.city-row,
.service-row,
.cost-table,
.answer-box,
.cta-band,
.breadcrumb,
.author-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card,
.lane,
.review,
.faq-item,
.source-item,
.city-row,
.service-row,
.answer-box,
.author-box {
  padding: 20px;
}

.lane {
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(30, 37, 40, 0.13);
}

.lane .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.lane:nth-child(2) .icon,
.accent-red {
  background: var(--red);
}

.lane:nth-child(3) .icon,
.accent-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.card h3,
.lane h3,
.review h3,
.faq-item h3,
.source-item h3,
.city-row h3,
.service-row h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.card p,
.lane p,
.review p,
.faq-item p,
.source-item p,
.city-row p,
.service-row p {
  margin: 0;
  color: var(--muted);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.symptom {
  min-height: 170px;
  padding: 18px;
  background: var(--soft);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.symptom b {
  display: block;
  margin-bottom: 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.05rem;
}

.process {
  counter-reset: steps;
}

.process .card {
  position: relative;
  padding-top: 54px;
}

.process .card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.media-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.media-band img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
}

.content {
  width: 100%;
  max-width: 900px;
  min-width: 0;
}

.section-inner,
.split-page > *,
.grid > * {
  min-width: 0;
}

.split-page .content {
  max-width: 100%;
}

.content > *:first-child {
  margin-top: 0;
}

.content h2 {
  margin-top: 34px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.content h3 {
  margin-top: 26px;
  font-size: 1.45rem;
}

.content a {
  color: var(--blue);
  font-weight: 800;
}

.content ul,
.content ol {
  padding-left: 1.25rem;
}

.answer-box {
  margin: 24px 0;
  background: #f0f8fb;
  border-left: 6px solid var(--blue);
}

.answer-box strong {
  display: block;
  margin-bottom: 6px;
  font-family: Sora, Inter, sans-serif;
}

.cost-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.cost-table th,
.cost-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cost-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.cost-table tr:last-child td {
  border-bottom: 0;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 750;
}

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

.review blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.06rem;
}

.review cite {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.cta-band {
  margin: 34px 0;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 6px 6px 0 rgba(30, 37, 40, 0.18);
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 8px;
}

.split-page {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  gap: 34px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.sidebar .card {
  border: 2px solid var(--ink);
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 780;
}

.link-list a:hover {
  border-color: var(--blue);
}

.city-row,
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.city-row strong,
.service-row strong {
  color: var(--ink);
}

.article {
  padding: 54px 0;
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 22px 0;
  background: var(--soft);
}

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Sora, Inter, sans-serif;
  font-weight: 900;
}

.footer {
  padding: 58px 0 92px;
  background: var(--ink);
  color: var(--white);
}

.footer a:hover {
  color: var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
}

.footer .muted {
  color: #c8d2d5;
}

.footer .muted a {
  color: var(--yellow);
}

.footer .link-list a {
  color: var(--ink);
}

.footer .btn.secondary {
  color: var(--ink);
}

.mobile-sticky {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 80;
  justify-content: center;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

body:has(.mobile-menu[open]) .mobile-sticky {
  display: none;
}

.mobile-sticky .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 10px;
  font-size: 0.92rem;
}

.muted {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.page-hero {
  padding: 48px 0 26px;
  background: var(--stucco);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

.page-hero p {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.18rem;
}

.not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

@media (max-width: 980px) {
  .topbar {
    font-size: 0.72rem;
  }

  .topbar-inner {
    min-height: 28px;
    padding: 6px 0;
    display: block;
  }

  .topbar-inner div:last-child {
    display: none;
  }

  .site-header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    gap: 12px;
    padding: 10px 0;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
    line-height: 1.08;
  }

  .brand small {
    max-width: 190px;
    margin-top: 1px;
    font-size: 0.58rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    box-shadow: 4px 4px 0 var(--yellow);
  }

  .brand-mark svg,
  .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    list-style: none;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 4px 4px 0 rgba(30, 37, 40, 0.18);
    font-weight: 850;
    cursor: pointer;
  }

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

  .mobile-menu summary svg {
    width: 18px;
    height: 18px;
  }

  .mobile-menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    z-index: 80;
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu-panel nav,
  .mobile-menu-hubs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mobile-menu-panel a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-menu-hubs {
    margin: 12px 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-hubs strong {
    grid-column: 1 / -1;
    font-family: Sora, Inter, sans-serif;
  }

  .mobile-menu .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 34px 0;
  }

  .hero-grid,
  .section-head,
  .media-band,
  .split-page,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.8rem);
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .reviews-grid,
  .symptom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar {
    position: static;
  }

  .mobile-sticky {
    display: flex;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .topbar-inner,
  .site-header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .mobile-menu-panel nav,
  .mobile-menu-hubs {
    grid-template-columns: 1fr;
  }

  .mobile-menu-panel {
    padding: 12px;
  }

  .hero-panel img {
    aspect-ratio: 1.18 / 1;
  }

  .zip-strip,
  .grid.three,
  .grid.four,
  .grid.two,
  .reviews-grid,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .city-row,
  .service-row,
  .author-box {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .btn {
    width: 100%;
  }

  .cta-row .btn,
  .button-row .btn {
    width: auto;
    flex: 1 1 220px;
  }

  .mobile-menu .button-row .btn {
    width: 100%;
  }
}
