@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --ink: #17212b;
  --slate: #2d3a43;
  --muted: #5c6770;
  --copper: #c75b32;
  --copper-hover: #a94727;
  --surface: #f3efe7;
  --border: #d9d5cd;
  --forest: #315c45;
  --max: 1200px;
  --read: 760px;
  --radius: 16px;
  --header-h: 76px;
  --sticky-h: 64px;
  --shadow: 0 10px 30px rgba(23, 33, 43, 0.08);
  --linen: #f3efe7;
  --section-y: 3.15rem;
  --gutter: clamp(1rem, 4.2vw, 1.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: #fff;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}

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

iframe,
embed,
object {
  max-width: 100%;
}

a {
  color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0.75rem;
}

.wrap {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.read {
  max-width: var(--read);
}

.utility {
  background: var(--ink);
  color: #ece8e1;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.utility .wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-row {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.brand img,
.brand svg {
  width: 40px;
  height: 40px;
}

.brand span {
  font-size: 1.05rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 1.35rem;
  min-width: 0;
}

.nav a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: var(--copper-hover);
  color: #fff;
}

.header-cta-text {
  white-space: nowrap;
  flex: none;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

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

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.7rem 0.72rem 1.15rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
  background: linear-gradient(180deg, #d86a3f 0%, var(--copper) 48%, #b34b26 100%);
  box-shadow:
    0 10px 22px rgba(199, 91, 50, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-premium:hover,
.btn-premium:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #c75b32 0%, var(--copper-hover) 100%);
  box-shadow:
    0 12px 26px rgba(169, 71, 39, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-premium svg {
  flex: none;
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.btn-premium-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 0 8px 20px rgba(23, 33, 43, 0.06);
}

.btn-premium-outline:hover,
.btn-premium-outline:focus-visible {
  background: var(--ink);
  color: #fff;
  filter: none;
  box-shadow: 0 12px 24px rgba(23, 33, 43, 0.18);
}

.btn-premium-outline svg {
  background: rgba(23, 33, 43, 0.08);
}

.btn-premium-outline:hover svg,
.btn-premium-outline:focus-visible svg {
  background: rgba(255, 255, 255, 0.14);
}

.icon-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 43, 0.88) 0%, rgba(23, 33, 43, 0.62) 46%, rgba(23, 33, 43, 0.18) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.15rem 0 2.55rem;
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  max-width: 720px;
  margin-left: max(var(--gutter), calc((100% - var(--max)) / 2));
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0c3b0;
  margin-bottom: 0.85rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero p,
.lede {
  font-size: 1.12rem;
  color: #e8e4dc;
  max-width: 42rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
  margin-top: 1.15rem;
}

.hero-cta .btn-premium {
  width: auto;
  min-width: 16.5rem;
}

.page-hero .hero-inner {
  max-width: 46rem;
}

.phone-text {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.support {
  margin-top: 0.85rem;
  color: #d9d4cb;
  font-size: 0.98rem;
}

.proof {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
    var(--ink);
  color: #ece8e1;
  border-bottom: 0;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--forest));
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 1.15rem 0;
}

.proof-item {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 600;
  padding: 0.35rem 1.6rem;
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
}

.proof-item + .proof-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(236, 232, 225, 0.22), transparent);
}

.proof-icon,
.proof-item > svg {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0;
  color: #f0c3b0;
  border: 1px solid rgba(240, 195, 176, 0.32);
  border-radius: 50%;
  background: rgba(199, 91, 50, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.proof-icon svg {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.proof-icon svg circle {
  fill: transparent;
}

.proof-icon svg path {
  stroke: currentColor;
}

.proof-item > svg {
  width: 48px;
  height: 48px;
  padding: 13px;
  box-sizing: border-box;
}

.proof-item > svg circle {
  fill: transparent;
}

.proof-item > svg path {
  stroke: currentColor;
}

.proof-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.proof-label {
  color: #f0c3b0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-title,
.proof-item > span:not(.proof-icon):not(.proof-copy) {
  color: #ece8e1;
  font-size: 1.02rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.stats {
  padding: 1.35rem 0 1.6rem;
  background: var(--linen);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.stat {
  padding: 1.45rem 1.25rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.05);
}

.stat-value {
  display: block;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

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

.alt {
  background: var(--surface);
}

.section-kicker {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--slate);
}

.prose p + p {
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 1.75rem 2.25rem;
  align-items: stretch;
}

.split-reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.05fr);
}

.split-copy {
  align-self: center;
}

.split-reverse .split-media::after {
  inset: auto auto -12px -12px;
}

.split-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin: 1.15rem 0 0;
}

.split-cta .btn-premium {
  width: auto;
  min-width: 16.5rem;
}

.split-media {
  margin: 0;
  position: relative;
  align-self: stretch;
  min-height: clamp(240px, 22vw, 360px);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto -12px -12px auto;
  width: 42%;
  height: 42%;
  border-radius: var(--radius);
  background: var(--forest);
  z-index: 0;
}

.split-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grid-3,
.grid-2,
.cards {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--slate);
  margin: 0 0 0.9rem;
}

.card a {
  font-weight: 700;
  text-decoration: none;
}

.alt.services-premium,
.services-premium,
.areas-premium {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%),
    var(--ink);
  color: #ece8e1;
  overflow: hidden;
}

.services-premium::before,
.areas-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--forest));
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.25rem 2.5rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.services-head h2,
.services-head.wide h2 {
  margin: 0;
  max-width: 18ch;
  color: #fff;
}

.services-premium .section-kicker {
  color: #f0c3b0;
}

.services-head-copy {
  color: #d7d2c9;
}

.services-head-copy p {
  margin: 0;
  max-width: 38rem;
}

.services-head-copy p + p {
  margin-top: 0.7rem;
}

.services-head-copy a {
  color: #f0c3b0;
}

.services-head-cta {
  margin: 1rem 0 0;
}

.services-head-cta .btn-premium,
.services-premium .services-foot .btn-premium {
  width: auto;
  min-width: 15.5rem;
}

.services-premium .cards {
  gap: 1.2rem;
}

.card.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  display: none;
}

.service-card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #101820;
}

.service-card-media a {
  display: block;
  height: 100%;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.service-card-index {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(23, 33, 43, 0.78);
  color: #f0c3b0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.15rem;
}

.service-card h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card p {
  flex: 1;
  margin: 0 0 1rem;
  color: var(--slate);
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  margin-top: auto;
  color: var(--copper);
  font-weight: 700;
  text-decoration: none;
}

.service-card-cta svg {
  width: 18px;
  height: 18px;
}

.service-card .btn-premium {
  margin-top: auto;
}

.services-premium .area-list {
  margin: 1.4rem 0 0;
}

.services-premium .area-list a {
  color: #ece8e1;
  border-color: rgba(236, 232, 225, 0.22);
}

.services-premium .area-list a:hover,
.services-premium .area-list a:focus-visible {
  color: #fff;
  border-color: var(--copper);
}

.area-groups {
  display: grid;
  gap: 1.7rem;
}

.area-group h3 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-premium .cards + .area-group,
.services-premium .cards + .area-groups {
  margin-top: 1.7rem;
}

.area-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-tile a {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 11.5rem;
  padding: 1.15rem 1.2rem 1.2rem;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.area-tile-index {
  display: inline-flex;
  margin: 0 0 0.7rem;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.area-tile strong {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.area-tile-copy {
  flex: 1;
  margin: 0 0 1rem;
  color: var(--slate);
}

.area-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  margin-top: auto;
  color: var(--copper);
  font-weight: 700;
}

.area-tile-cta svg {
  width: 18px;
  height: 18px;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 195, 176, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  }

  .service-card:hover .service-card-media img {
    transform: scale(1.06);
  }

  .service-card:hover .service-card-cta,
  .service-card-cta:hover {
    color: var(--copper-hover);
  }

  .area-tile a:hover,
  .area-tile a:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(240, 195, 176, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  }

  .area-tile a:hover .area-tile-cta,
  .area-tile a:focus-visible .area-tile-cta {
    color: var(--copper-hover);
  }

  .btn-premium:hover {
    transform: translateY(-1px);
  }
}

.services-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: 0;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.call-steps {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.call-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.95rem 1.1rem;
  padding: 0 0 1.4rem;
}

.call-step:last-child {
  padding-bottom: 0;
}

.call-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--copper), var(--border));
}

.call-step-num {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper);
  background: #fff;
  border: 1px solid rgba(199, 91, 50, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 18px rgba(23, 33, 43, 0.06);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.call-step h3 {
  margin: 0.2rem 0 0.3rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.call-step p {
  margin: 0;
  color: var(--slate);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
}

.area-list,
.symptom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.5rem;
  padding: 0;
  list-style: none;
}

.area-list a,
.symptom-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
  display: block;
}

.area-list a:hover,
.symptom-list a:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.faq button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 52px;
  padding: 0.85rem 1.05rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
  overflow-wrap: break-word;
}

.faq-item + .faq-item {
  margin-top: 0.7rem;
}

.faq-panel {
  display: none;
  padding: 0.85rem 0.2rem 0.4rem;
  color: var(--slate);
}

.faq-item.open .faq-panel {
  display: block;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 1.85rem 1.9rem 1.7rem;
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.16);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--forest));
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  color: #d7d2c9;
  max-width: 40rem;
}

.cta-panel .btn-premium,
.cta-panel .btn {
  width: auto;
  min-width: 16.5rem;
  margin-top: 0.35rem;
}

.hero-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  color: rgba(232, 228, 220, 0.7);
}

.hero-crumbs a {
  color: #ece8e1;
  text-decoration: none;
}

.hero-crumbs a:hover,
.hero-crumbs a:focus-visible {
  color: #fff;
}

.hero-crumbs span[aria-current="page"] {
  color: #f0c3b0;
}

.cover-list,
.symptom-board {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 900px) {
  .cover-list {
    grid-template-columns: 1fr 1fr;
  }
}

.cover-list li,
.symptom-board li {
  position: relative;
  padding: 0.72rem 0.95rem 0.72rem 2.55rem;
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 14px;
  color: var(--slate);
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.045);
}

.cover-list li::before,
.symptom-board li::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.15rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(199, 91, 50, 0.12);
}

.symptom-board strong {
  color: var(--ink);
}

.services-premium .prose {
  margin: 0;
}

.related-head {
  margin-bottom: 1.2rem;
}

.related-head h2 {
  margin: 0;
}

.region-cities {
  margin-top: 1.35rem;
}

.faq-head {
  margin-bottom: 1.05rem;
}

.faq-head h2 {
  margin: 0;
}

.faq button {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq button:hover,
.faq-item.open button {
  border-color: rgba(199, 91, 50, 0.35);
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.06);
}

.breadcrumbs {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 1rem 0 0;
}

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

.page-hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: end;
  color: #fff;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1c2833 0%, var(--ink) 42%);
  color: #d7d2c9;
  padding: 0;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--forest));
}

.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.35fr) minmax(20rem, 1.7fr) minmax(12rem, 1fr);
  gap: 2.75rem 2.5rem;
  align-items: start;
  padding: 3.35rem 0 2.7rem;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.site-footer .footer-logo:hover,
.site-footer .footer-logo:focus-visible {
  color: #fff;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(236, 232, 225, 0.18);
}

.footer-brand p {
  margin: 0.85rem 0 0;
  max-width: 22rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #c4bfb6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}

.footer-heading {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

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

.footer-col li + li {
  margin-top: 0.35rem;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.95rem;
}

.footer-contact {
  min-width: 0;
}

.footer-contact-meta {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  color: #c4bfb6;
}

.site-footer .footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer .footer-phone:hover,
.site-footer .footer-phone:focus-visible {
  color: #fff;
}

.footer-phone svg {
  flex: none;
  color: #e08a62;
}

.footer-base {
  border-top: 1px solid rgba(236, 232, 225, 0.12);
  background: #121920;
  padding: 1.15rem 0 1.3rem;
}

.footer-base-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 2rem;
}

.disclosure {
  margin: 0;
  max-width: 48rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #b7b2aa;
}

.footer-legal {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  font-size: 0.82rem;
}

.site-footer .footer-legal a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d7d2c9;
}

.sticky-call {
  display: none;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.related a {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.calc-workspace {
  --calc-ticket: #1c2730;
  background:
    linear-gradient(180deg, rgba(243, 239, 231, 0.92), #f3efe7 18%),
    var(--surface);
  padding: 3.4rem 0 3.8rem;
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

.calc-head {
  max-width: 40rem;
  margin-bottom: 1.85rem;
}

.calc-head h2 {
  margin: 0.35rem 0 0.7rem;
}

.calc-intro {
  margin: 0;
  color: var(--slate);
}

.calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: 1.5rem;
  align-items: start;
}

.calc-form,
.calc-output {
  border-radius: 20px;
  min-height: 28rem;
}

.calc-form {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.08);
  padding: 1.45rem 1.45rem 1.6rem;
  display: grid;
  gap: 1.15rem;
}

.calc-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.calc-group legend {
  padding: 0;
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}

.calc-fields {
  display: grid;
  gap: 0.95rem;
}

.calc-field {
  display: grid;
  gap: 0.38rem;
}

.calc-field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.calc-field input,
.calc-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  appearance: none;
}

.calc-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(199, 91, 50, 0.16);
}

.calc-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.calc-error {
  margin: 0;
  color: #8a2a16;
  font-weight: 700;
}

.calc-form .btn-premium,
.calc-output .btn-premium {
  width: 100%;
  font: inherit;
  font-weight: 700;
}

.calc-output {
  background: var(--calc-ticket);
  color: #ece8e1;
  padding: 1.55rem 1.5rem 1.7rem;
  box-shadow: 0 22px 44px rgba(23, 33, 43, 0.18);
  position: sticky;
  top: calc(var(--header-h) + 0.85rem);
}

.calc-empty {
  min-height: 22rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: #c9c3ba;
}

.calc-empty p {
  margin: 0;
  max-width: 18rem;
}

.calc-ticket-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e3b39a;
}

.calc-ticket h3 {
  margin: 0.35rem 0 0.7rem;
  color: #fff;
  font-size: 1.45rem;
}

.calc-ticket h3:focus {
  outline: none;
}

.calc-ticket h3:focus-visible {
  outline: 3px solid #e3b39a;
  outline-offset: 4px;
}

.calc-ticket-place {
  margin: 0 0 1.1rem;
  color: #c9c3ba;
}

.calc-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.calc-figures > div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(236, 232, 225, 0.12);
  border-radius: 14px;
  padding: 0.9rem 0.85rem 1rem;
}

.calc-figure-label {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c9c3ba;
}

.calc-figure-value {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}

.calc-rec {
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 600;
}

.calc-disclaimer {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: #c9c3ba;
}

.calc-ticket.is-shown {
  animation: calc-reveal 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes calc-reveal {
  from {
    opacity: 0.35;
    transform: translateY(10px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.prose-article h2 {
  margin-top: 1.45rem;
}

.prose-article ul {
  padding-left: 1.2rem;
}

.map-note,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.map-section .map-copy {
  max-width: 42rem;
  margin: 0 0 1.35rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--ink);
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
  display: block;
}

.map-section .split-cta {
  margin-top: 1.35rem;
}

.error-page {
  min-height: 60vh;
  padding: 5rem 0;
}

@media (max-width: 1200px) {
  .header-row {
    gap: 0.75rem;
  }

  .nav {
    gap: 0.85rem;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .footer-inner,
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2.25rem 2rem;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .header-row {
    gap: 0.7rem;
    position: static;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 70;
    flex: none;
    width: 100%;
    max-height: min(70dvh, calc(100dvh - var(--header-h) - env(safe-area-inset-bottom, 0px)));
    overflow: auto;
    overscroll-behavior: contain;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem max(var(--gutter), env(safe-area-inset-right, 0px)) 0.9rem max(var(--gutter), env(safe-area-inset-left, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 18px 36px rgba(23, 33, 43, 0.12);
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  #nav-toggle {
    display: inline-flex;
  }

  .header-cta-text {
    padding-inline: 0.9rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .grid-3,
  .cards,
  .compare {
    grid-template-columns: 1fr 1fr;
  }

  .calc-layout {
    grid-template-columns: 1fr;
  }

  .calc-output {
    position: static;
  }

  .calc-form,
  .calc-output,
  .calc-empty {
    min-height: 0;
  }

  .split {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    align-items: start;
  }

  .services-head h2,
  .services-head.wide h2 {
    max-width: none;
  }

  .split-copy {
    align-self: stretch;
  }

  .split-reverse .split-media {
    order: 2;
  }

  .split-media {
    min-height: 0;
    height: auto;
  }

  .split-media::after {
    display: none;
  }

  .split-media img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 260px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .split-cta {
    margin-top: 1.25rem;
  }

  .split-cta .btn,
  .split-cta .btn-premium {
    width: 100%;
    min-width: 0;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    padding: 0.95rem 0;
  }

  .proof-item + .proof-item::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 232, 225, 0.18), transparent);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 17px;
  }

  section {
    padding: 2.2rem 0;
  }

  .stats {
    padding: 1.1rem 0 1.35rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .wrap,
  .hero-inner {
    width: min(var(--max), calc(100% - (2 * var(--gutter))));
  }

  .hero-inner {
    margin-inline: auto;
    max-width: none;
    padding: 2.15rem 0 1.85rem;
  }

  .utility {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .utility .wrap {
    min-height: 0;
    padding: 0.5rem 0;
  }

  .header-row {
    min-height: var(--header-h);
    gap: 0.5rem;
  }

  .header-cta-text {
    display: none;
  }

  .header-actions a.icon-btn {
    display: inline-flex;
  }

  .proof-row,
  .grid-3,
  .grid-2,
  .cards,
  .compare,
  .area-list,
  .area-tiles,
  .symptom-list,
  .split,
  .calc-layout,
  .calc-figures {
    grid-template-columns: 1fr;
  }

  .area-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .blog-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--gutter));
    padding: 0.15rem var(--gutter) 0.35rem;
  }

  .blog-filter::-webkit-scrollbar {
    display: none;
  }

  .blog-filter-btn {
    flex: none;
    white-space: nowrap;
  }

  .area-tile a {
    min-height: 0;
    padding: 1rem 1.05rem;
  }

  .proof-row {
    padding: 0.45rem 0 0.85rem;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    padding: 0.75rem 0;
  }

  .proof-icon,
  .proof-item > svg {
    width: 40px;
    height: 40px;
  }

  .proof-title,
  .proof-item > span:not(.proof-icon):not(.proof-copy) {
    font-size: 0.98rem;
  }

  .split-media img {
    max-height: 220px;
    height: auto;
  }

  .services-head {
    margin-bottom: 1.5rem;
  }

  .services-head h2 {
    max-width: none;
  }

  .services-premium .cards {
    gap: 1rem;
  }

  .card.service-card {
    padding: 0;
  }

  .services-foot,
  .split-cta {
    margin-top: 1.15rem;
  }

  .services-foot .btn-premium,
  .services-head-cta .btn-premium,
  .split-cta .btn,
  .split-cta .btn-premium,
  .hero-cta .btn,
  .hero-cta .btn-premium,
  .cta-panel .btn,
  .cta-panel .btn-premium,
  .dense-cta .btn,
  .dense-cta .btn-premium,
  .error-page .btn {
    width: 100%;
    min-width: 0;
  }

  .cta-panel {
    padding: 1.85rem 1.35rem 1.6rem;
  }

  .hero,
  .page-hero {
    min-height: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.4rem);
  }

  .hero p,
  .lede {
    font-size: 1.02rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.2rem;
  }

  .hero .phone-text {
    display: none;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(23, 33, 43, 0.28) 0%, rgba(23, 33, 43, 0.9) 68%);
  }

  .call-step {
    grid-template-columns: 40px 1fr;
    gap: 0.7rem 0.85rem;
    padding-bottom: 1.1rem;
  }

  .call-step-num {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }

  .call-step:not(:last-child)::before {
    left: 19px;
    top: 40px;
  }

  .cta-panel {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }

  .map-frame {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .area-list a,
  .symptom-list a,
  .related a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .faq button {
    font-size: 1rem;
  }

  .sticky-call {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--copper);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .sticky-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--sticky-h);
    padding: 0 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
  }

  .site-footer {
    padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.35rem 0 1.85rem;
  }

  .footer-brand {
    order: 1;
  }

  .footer-contact {
    order: 2;
  }

  .footer-links {
    order: 3;
    grid-column: auto;
    gap: 1.5rem 1.25rem;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-col a {
    min-height: 44px;
  }

  .footer-phone {
    width: 100%;
  }

  .footer-base-inner {
    flex-direction: column;
    gap: 0.65rem;
  }

  main {
    padding-bottom: 0.5rem;
  }

  .brand span {
    max-width: min(11rem, 42vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .breadcrumbs {
    padding-top: 0.75rem;
  }
}

.dense-section .dense-head {
  margin: 0 0 1.15rem;
  max-width: 46rem;
}

.dense-section .dense-head h2 {
  margin: 0 0 0.55rem;
}

.dense-section .dense-intro {
  margin: 0;
  color: var(--slate);
}

.topic-grid,
.factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.topic-card,
.factor-card {
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 16px;
  padding: 1.05rem 1.1rem 1rem;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.045);
}

.topic-card h3,
.factor-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}

.topic-card p,
.factor-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.5;
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.compare-board article {
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.05rem;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.045);
}

.compare-board h3 {
  margin: 0 0 0.7rem;
}

.compare-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.compare-board li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--slate);
}

.compare-board li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.9rem;
}

.check-grid li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.2rem;
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 12px;
  color: var(--slate);
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
}

.dense-cta {
  margin: 1.1rem 0 0;
}

.dense-cta .btn,
.dense-cta .btn-premium {
  width: auto;
  min-width: min(16.5rem, 100%);
}

.keyword-band {
  position: relative;
  background: var(--ink);
  color: #ece8e1;
  overflow: hidden;
}

.dense-section.keyword-band .dense-head h2,
.keyword-band .dense-head h2,
.keyword-band .services-head h2 {
  color: #fff;
}

.dense-section.keyword-band .dense-intro,
.keyword-band .dense-intro,
.keyword-band .services-head-copy p {
  color: #d7d2c9;
}

.dense-section.keyword-band .section-kicker,
.keyword-band .section-kicker {
  color: #f0c3b0;
}

.keyword-band-light {
  background:
    linear-gradient(180deg, rgba(23, 33, 43, 0.03), transparent 42%),
    var(--surface);
  color: var(--ink);
}

.keyword-band-light::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--forest));
}

.keyword-band-light .section-kicker {
  color: var(--copper);
}

.keyword-band-light .services-head h2,
.keyword-band-light .dense-head h2 {
  color: var(--ink);
}

.keyword-band-light .services-head-copy p,
.keyword-band-light .dense-intro {
  color: var(--slate);
}

.keyword-band-light .services-head-copy a {
  color: var(--copper);
}

.keyword-band-light .area-tile a {
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
  border-color: rgba(23, 33, 43, 0.08);
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.keyword-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(23, 33, 43, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.keyword-chips a:hover,
.keyword-chips a:focus-visible {
  color: #fff;
  background: var(--copper);
  border-color: var(--copper);
}

.blog-article-head {
  padding: var(--section-y) 0 0.5rem;
}

.blog-article-head h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.blog-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-byline-author {
  color: var(--ink);
  font-weight: 700;
}

.blog-hero-img {
  margin: 1.4rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, var(--read));
  gap: 2.5rem;
  align-items: start;
}

.blog-toc {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.045);
}

.blog-toc-title {
  margin: 0 0 0.55rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}

.blog-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.blog-toc a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
}

.blog-toc a:hover,
.blog-toc a:focus-visible {
  color: var(--copper);
}

.blog-body {
  max-width: var(--read);
  margin-inline: auto;
  min-width: 0;
}

.blog-lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.2rem;
}

.blog-article-grid .prose h2 {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

.blog-listing {
  padding-top: 1rem;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 1.5rem;
}

.blog-filter-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--slate);
  border-radius: 999px;
  min-height: 44px;
  padding: 0.45rem 1rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn:focus-visible {
  border-color: var(--copper);
  color: var(--copper);
}

.blog-filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.blog-grid {
  gap: 1.5rem;
}

.card.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(23, 33, 43, 0.12);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-card-cat {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.blog-card h3 {
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

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

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  color: var(--copper);
}

.blog-card p {
  flex: 1;
  margin: 0 0 1rem;
  color: var(--slate);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.08);
}

.blog-featured-media {
  display: block;
  overflow: hidden;
  background: var(--surface);
}

.blog-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.2rem;
}

.blog-featured-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 0.7rem;
}

.blog-featured-body h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-featured-body h2 a:hover,
.blog-featured-body h2 a:focus-visible {
  color: var(--copper);
}

.blog-featured-copy {
  margin: 0 0 1.2rem;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .blog-article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-toc {
    position: static;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .blog-byline {
    font-size: 0.88rem;
    gap: 0.4rem;
  }

  .blog-featured-body {
    padding: 1.4rem 1.3rem;
  }
}

@media (max-width: 1024px) {
  .topic-grid,
  .factor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topic-grid,
  .factor-grid,
  .compare-board,
  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .brand {
    gap: 0.45rem;
  }

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

  .header-actions {
    gap: 0.4rem;
  }
}

@media (max-width: 560px) {
  .area-tiles {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 1.6rem 0 1.35rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .hero p,
  .lede {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) and (max-height: 700px) {
  .utility .wrap {
    padding: 0.35rem 0;
  }

  .hero-inner {
    padding: 1.35rem 0 1.15rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .utility {
    display: none;
  }

  .hero-inner {
    padding: 1.1rem 0 1rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.45rem, 4.2vw, 2rem);
    margin-bottom: 0.55rem;
  }

  .hero p,
  .lede {
    font-size: 0.98rem;
    line-height: 1.45;
    margin: 0;
  }

  .hero-cta {
    margin-top: 0.75rem;
  }

  .sticky-call {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--copper);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .sticky-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
  }

  .site-footer {
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
  }
}

@media (pointer: coarse) {
  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .related a,
  .keyword-chips a,
  .area-list a,
  .symptom-list a {
    min-height: 44px;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .calc-fields {
    grid-template-columns: 1fr 1fr;
  }

  .calc-fields .calc-field:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1280px) {
  :root {
    --section-y: 3.5rem;
  }
}

.utility,
.site-header,
.sticky-call {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.hero-media img {
  object-position: 62% center;
}

@media (max-width: 768px) {
  .hero-media img {
    object-position: 70% center;
  }
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(23, 33, 43, 0.42);
}

body.nav-open .site-header {
  z-index: 80;
}

body.nav-open .sticky-call {
  visibility: hidden;
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
