:root {
  --ink: #0f2438;
  --ink-soft: #18354f;
  --teal: #11757b;
  --teal-dark: #0a5960;
  --wine: #8b3341;
  --wine-dark: #6f2935;
  --gold: #bd925a;
  --paper: #f7f8f6;
  --mist: #edf4f2;
  --slate: #5f7184;
  --line: #dbe4e2;
  --white: #ffffff;
  --shadow: 0 18px 54px rgba(15, 36, 56, 0.14);
  --shadow-soft: 0 10px 26px rgba(15, 36, 56, 0.07);
  --radius: 7px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  margin: 0;
  overflow-x: hidden;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  background: var(--white);
  border: 1px solid var(--line);
  left: 16px;
  padding: 8px 12px;
  position: absolute;
  top: -48px;
  z-index: 1000;
}

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

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

.top-bar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.top-bar__inner,
.site-header__inner,
.section__inner,
.footer__inner {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.top-bar__inner {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 36px;
}

.top-bar__inner span:nth-child(2) {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(15, 36, 56, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 74px;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  height: 48px;
  width: 48px;
}

.brand__name {
  color: var(--ink);
  display: block;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.05;
}

.brand__sub {
  color: var(--slate);
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  margin-top: 3px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 2px;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav a {
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 8px 9px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--mist);
  color: var(--teal-dark);
}

.site-nav a[aria-current="page"] {
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(15, 36, 56, 0.13);
  color: var(--white);
}

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

.menu-toggle {
  align-items: center;
  background: #f7fbfb;
  border: 1px solid #cbdadc;
  border-radius: 999px;
  color: var(--ink);
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 18px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  align-items: center;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 950;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  white-space: normal;
}

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

.button--primary {
  background: var(--wine);
  box-shadow: 0 10px 22px rgba(139, 51, 65, 0.16);
  color: var(--white);
}

.button--primary:hover {
  background: var(--wine-dark);
}

.button--secondary {
  background: var(--teal);
  color: var(--white);
}

.button--secondary:hover {
  background: var(--teal-dark);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

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

.hero {
  background-image:
    linear-gradient(90deg, rgba(8, 24, 39, 0.91) 0%, rgba(8, 24, 39, 0.8) 48%, rgba(8, 24, 39, 0.32) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: 660px;
  position: relative;
}

.hero--overview {
  background-image:
    linear-gradient(90deg, rgba(9, 30, 45, 0.92) 0%, rgba(9, 30, 45, 0.82) 52%, rgba(9, 30, 45, 0.3) 100%),
    var(--hero-image);
  background-position: center;
}

.hero--service {
  background-image:
    linear-gradient(112deg, rgba(15, 36, 56, 0.94) 0%, rgba(15, 36, 56, 0.82) 50%, rgba(17, 117, 123, 0.24) 100%),
    var(--hero-image);
  background-position: center;
}

.hero--emergency {
  background-image:
    linear-gradient(112deg, rgba(92, 24, 35, 0.94) 0%, rgba(15, 36, 56, 0.84) 52%, rgba(15, 36, 56, 0.34) 100%),
    var(--hero-image);
}

.hero--hvac,
.hero--city,
.hero--area,
.hero--contact,
.hero--simple {
  background-image:
    linear-gradient(100deg, rgba(7, 25, 39, 0.92) 0%, rgba(7, 25, 39, 0.8) 54%, rgba(17, 117, 123, 0.18) 100%),
    var(--hero-image);
}

.hero--area {
  background-position: center right;
}

.hero--contact {
  background-position: center;
}

.hero::after {
  background: rgba(255, 255, 255, 0.08);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero--compact {
  min-height: 500px;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 390px;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 660px;
  padding: 68px 28px;
}

.hero--compact .hero__inner {
  min-height: 500px;
  padding-bottom: 58px;
  padding-top: 58px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 4.25rem;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 720px;
  overflow-wrap: break-word;
}

.hero--compact h1 {
  font-size: 3.35rem;
}

.hero__copy {
  max-width: 790px;
  min-width: 0;
}

.hero__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  margin-bottom: 24px;
  max-width: 650px;
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 680px;
}

.hero__proof span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 2px;
  padding: 11px 12px;
}

.hero__proof strong {
  color: var(--white);
  font-size: 0.98rem;
}

.hero--compact .hero__proof {
  display: none;
}

.estimate-panel {
  align-self: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
}

.page-hero__panel {
  align-self: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
}

.page-hero__media {
  aspect-ratio: 16 / 9;
  background: var(--mist);
  overflow: hidden;
}

.page-hero__media picture,
.card__media picture,
.split__media picture {
  height: 100%;
  width: 100%;
}

.page-hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.page-hero__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.panel-eyebrow {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.page-hero__body h2 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.16;
  margin: 0;
}

.page-hero__body p {
  color: var(--slate);
  margin: 0;
}

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

.hero-list li {
  background: #f8fbfa;
  border: 1px solid #d9e7e5;
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 9px 11px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-chips span {
  background: #f6f1eb;
  border: 1px solid #e7d9c5;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 7px 10px;
}

.estimate-panel__top {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 13px 22px;
}

.estimate-panel__top a {
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.form-heading span {
  color: var(--teal);
  display: block;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-heading h2,
.estimate-panel h2 {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.12;
  margin-bottom: 8px;
}

.form-heading p,
.estimate-panel p {
  color: var(--slate);
  margin-bottom: 0;
}

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

.field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
}

input,
select,
textarea {
  background: #fdfefe;
  border: 1px solid #cbd9dd;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(17, 117, 123, 0.14);
  outline: 0;
}

textarea {
  min-height: 98px;
  resize: vertical;
}

.form-note {
  color: var(--slate);
  font-size: 0.84rem;
  margin: 0;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 900;
}

.section {
  padding: 76px 0;
}

.page-marker {
  background: #fdfefe;
  border-bottom: 1px solid var(--line);
}

.page-marker__inner {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 14px;
  padding-top: 14px;
}

.page-marker span {
  color: var(--teal-dark);
  display: block;
  font-size: 0.75rem;
  font-weight: 950;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.page-marker strong {
  color: var(--ink);
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.page-marker p {
  color: var(--slate);
  font-size: 0.86rem;
  margin: 5px 0 0;
}

.page-marker__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.page-marker__links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 7px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.page-marker__links a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.section--tight {
  padding: 34px 0;
}

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

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

.section--ink p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.5fr);
  margin-bottom: 30px;
}

.section-heading > *,
.split > *,
.footer__grid > * {
  min-width: 0;
}

.section-heading h2 {
  color: var(--ink);
  font-size: 2.55rem;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

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

.section-heading p {
  color: var(--slate);
  margin: 0;
}

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

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

.trust-item {
  border-left: 1px solid var(--line);
  padding: 18px 20px;
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  color: var(--ink);
  display: block;
  font-size: 0.96rem;
  margin-bottom: 3px;
}

.trust-item span {
  color: var(--slate);
  display: block;
  font-size: 0.84rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-soft);
}

.card__media {
  aspect-ratio: 16 / 10;
  background: var(--mist);
  overflow: hidden;
}

.card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.card:hover .card__media img {
  transform: scale(1.035);
}

.card__body {
  padding: 22px;
}

.card__index {
  color: var(--gold);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.card p {
  color: var(--slate);
  margin-bottom: 18px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 950;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: var(--shadow-soft);
}

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

.blog-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.035);
}

.blog-card__body {
  padding: 22px;
}

.blog-card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 10px 0;
}

.blog-card h3 a {
  text-decoration: none;
}

.blog-card p {
  color: var(--slate);
  margin: 0 0 18px;
}

.article-meta {
  color: var(--teal-dark);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-meta span + span::before {
  color: var(--gold);
  content: "/";
  margin-right: 8px;
}

.article-shell {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.article-main {
  padding: 0;
}

.article-deck {
  color: var(--ink-soft);
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.45;
  margin: 14px 0 30px;
}

.article-section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.article-section + .article-section {
  margin-top: 30px;
}

.article-section h2,
.related-links h2 {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.16;
  margin: 0 0 14px;
}

.article-section p {
  color: var(--slate);
  margin: 0 0 16px;
}

.article-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.article-list li {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 850;
  padding: 11px 13px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  position: static;
}

.related-links {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.related-links div {
  display: grid;
  gap: 9px;
}

.related-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 9px 11px;
  text-decoration: none;
}

.related-links a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.brand-strip {
  background: #102c3f;
  color: var(--white);
}

.brand-strip__inner {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 0.7fr));
}

.brand-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-strip strong {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 18px;
}

.feature-story {
  background: var(--paper);
}

.split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.64fr);
}

.split--wide {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
}

.split__media {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.split__media::after {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.split__media img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-card {
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--white);
  padding: 30px;
}

.contact-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 14px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.technical-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.technical-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.technical-item strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.technical-item p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0;
}

.warning-layout {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
}

.warning-layout h2 {
  color: var(--white);
  font-size: 2.55rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

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

.warning-list div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  padding: 14px 16px;
}

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

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  padding: 21px;
}

.feature strong {
  color: var(--ink);
  display: block;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

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

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

.audience-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.audience-grid span {
  background: var(--gold);
  display: block;
  height: 3px;
  margin-bottom: 22px;
  width: 46px;
}

.audience-grid h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.audience-grid p {
  color: var(--slate);
  margin: 0;
}

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

.check-list li {
  border-left: 3px solid var(--teal);
  color: var(--ink);
  font-weight: 800;
  padding: 2px 0 2px 13px;
}

.process {
  counter-reset: process;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process__step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  padding: 22px;
}

.process__step::before {
  color: var(--teal-dark);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 20px;
}

.process__step h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.city-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.city-link {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-weight: 950;
  min-height: 52px;
  padding: 13px;
  text-align: center;
  text-decoration: none;
}

.city-link:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 20px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.faq p {
  color: var(--slate);
  margin: 12px 0 0;
}

.cta-band {
  background: var(--wine);
  color: var(--white);
}

.cta-band .section__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-band h2 {
  font-size: 2.45rem;
  line-height: 1.08;
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.footer {
  background: #071927;
  color: rgba(255, 255, 255, 0.76);
  padding: 50px 0 30px;
}

.footer__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.15fr 0.7fr 0.7fr 0.9fr;
}

.footer h2,
.footer h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

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

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  margin-top: 38px;
  padding-top: 22px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 12px;
  }

  .brand__sub {
    display: none;
  }

  .site-nav a {
    font-size: 0.8rem;
    padding: 8px 7px;
  }

  .header-actions .button {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1180px) {
  .top-bar__inner span:nth-child(2) {
    display: none;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 250px;
    padding: 8px;
    position: absolute;
    right: 28px;
    top: calc(100% + 8px);
    z-index: 120;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 5px;
    padding: 11px 13px;
  }

  .header-actions .button {
    display: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.25rem;
  }

  .hero--compact h1 {
    font-size: 2.95rem;
  }

  .hero,
  .hero__inner,
  .hero--compact,
  .hero--compact .hero__inner {
    min-height: auto;
  }

  .hero__inner,
  .hero--compact .hero__inner,
  .section-heading,
  .page-marker__inner,
  .split,
  .article-shell,
  .warning-layout,
  .cta-band .section__inner {
    grid-template-columns: 1fr;
  }

  .estimate-panel,
  .page-hero__panel {
    max-width: 560px;
  }

  .page-marker__links {
    justify-content: flex-start;
  }

  .section-heading h2,
  .warning-layout h2,
  .cta-band h2 {
    font-size: 2.25rem;
  }

  .cards,
  .blog-grid,
  .feature-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    grid-template-columns: 1fr;
    position: static;
  }

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

  .brand-strip span {
    grid-column: 1 / -1;
  }

  .brand-strip strong {
    border-left: 0;
    padding-left: 0;
  }

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

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

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

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 72px;
  }

  .top-bar {
    font-size: 0.78rem;
  }

  .top-bar__inner,
  .site-header__inner,
  .section__inner,
  .footer__inner {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-bar__inner {
    align-items: center;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    min-height: 32px;
    padding-bottom: 7px;
    padding-top: 7px;
  }

  .top-bar__inner span:first-child,
  .top-bar__inner span:nth-child(2) {
    display: none;
  }

  .top-bar a {
    font-size: 0.84rem;
    text-align: center;
  }

  .site-header__inner {
    gap: 10px;
    min-height: 62px;
  }

  .site-nav {
    align-items: stretch;
    gap: 0;
    left: 18px;
    min-width: 0;
    padding: 6px;
    right: 18px;
    top: calc(100% + 6px);
  }

  .site-nav a {
    font-size: 0.92rem;
    padding: 10px 12px;
    text-align: left;
    width: 100%;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: none;
  }

  .menu-toggle {
    background: var(--white);
    height: 40px;
    width: 40px;
  }

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

  .brand__name {
    font-size: 1rem;
  }

  .brand__sub {
    display: none;
  }

  h1,
  .hero--compact h1 {
    font-size: 2.12rem;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero__copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    margin-bottom: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .hero__inner,
  .hero--compact .hero__inner {
    gap: 22px;
    max-width: 100%;
    padding: 36px 18px 42px;
  }

  .hero__copy,
  .estimate-panel,
  .lead-form {
    max-width: 100%;
    min-width: 0;
  }

  .estimate-panel {
    width: 100%;
  }

  .hero__actions .button,
  .inline-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .hero__actions,
  .inline-actions {
    gap: 10px;
  }

  .hero__proof,
  .form-grid,
  .cards,
  .blog-grid,
  .feature-grid,
  .technical-grid,
  .process,
  .trust-strip__grid,
  .audience-grid,
  .city-grid,
  .footer__grid,
  .brand-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero__proof,
  .page-hero__panel {
    display: none;
  }

  .lead-form {
    gap: 12px;
    padding: 18px;
  }

  .article-main {
    padding: 0;
  }

  .article-deck {
    font-size: 1.05rem;
  }

  .article-section h2,
  .related-links h2 {
    font-size: 1.35rem;
  }

  .hero--contact .estimate-panel {
    border-color: #e0e9e8;
    box-shadow: none;
    margin-top: 4px;
  }

  .hero--contact .estimate-panel__top {
    display: none;
  }

  .form-heading h2,
  .estimate-panel h2 {
    font-size: 1.34rem;
    line-height: 1.16;
  }

  .form-heading p,
  .estimate-panel p {
    font-size: 0.92rem;
  }

  input,
  select,
  textarea {
    min-height: 44px;
  }

  textarea {
    min-height: 84px;
  }

  .page-hero__body,
  .contact-card {
    padding: 20px;
  }

  .page-marker__inner {
    gap: 14px;
  }

  .page-marker__links a {
    white-space: normal;
  }

  .page-marker {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .split {
    gap: 30px;
  }

  .section--tight {
    padding: 28px 0;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .warning-layout h2,
  .cta-band h2 {
    font-size: 1.9rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .trust-item {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 16px 18px;
  }

  .trust-item:last-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .city-link {
    min-height: 50px;
    padding: 13px;
  }

  .mobile-cta {
    background: var(--white);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    left: 0;
    padding: 9px;
    position: fixed;
    right: 0;
    box-shadow: 0 -8px 24px rgba(15, 36, 56, 0.1);
    z-index: 200;
  }

  .mobile-cta .button {
    font-size: 0.95rem;
    min-height: 48px;
    min-width: 0;
    padding: 10px;
  }
}
