:root {
  --black: #090909;
  --charcoal: #151515;
  --charcoal-2: #202020;
  --red-brand: #c91f1f;
  --red-dark: #8f1414;
  --red-hover: #e0362f;
  --amber-warn: #f5a524;
  --white: #ffffff;
  --off-white: #f5f2ee;
  --paper: #fbfaf8;
  --text-dark: #171717;
  --text-mid: #505050;
  --text-light: #767676;
  --border: #ded8d0;
  --dark-border: rgba(255, 255, 255, 0.14);
  --star-gold: #f5c542;
  --safe-green: #167a3e;
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.14);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.62;
  padding-bottom: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible {
  outline: 3px solid rgba(245, 165, 36, 0.7);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.announce {
  position: relative;
  z-index: 70;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 24%, rgba(0, 0, 0, 0.22)),
    var(--red-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 48px;
  font-size: 14px;
}
.announce-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.announce a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.announce button,
.close-menu {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}
.announce button {
  position: absolute;
  right: 16px;
  top: 8px;
  font-size: 18px;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 15, 15, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.topnav.scrolled { box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32); }
.nav-inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.shield { width: 31px; height: 36px; fill: var(--red-brand); flex: 0 0 auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--red-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.phone {
  color: var(--amber-warn);
  font-weight: 900;
  white-space: nowrap;
}
.hamb {
  display: none;
  position: relative;
  z-index: 1000;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0;
  cursor: pointer;
}
.hamb::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 13px;
  height: 14px;
  background:
    linear-gradient(#fff, #fff) 0 0 / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 6px / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 12px / 100% 2px no-repeat;
}
.mobile-call {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #fff;
  background: var(--red-brand);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-content: center;
  gap: 18px;
  text-align: center;
  background: rgba(10, 10, 10, 0.98);
  color: #fff;
}
.mobile-menu.open { display: grid; }
.mobile-menu a {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 700;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red-hover), var(--red-brand));
  box-shadow: 0 14px 28px rgba(201, 31, 31, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f04439, #b81818);
  box-shadow: 0 18px 34px rgba(201, 31, 31, 0.34);
}
.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); }
.btn-light {
  color: var(--red-dark);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.btn-small { min-height: 44px; padding: 12px 18px; font-size: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: calc(100svh - 132px);
  display: grid;
  align-items: center;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.82) 48%, rgba(9, 9, 9, 0.62) 100%),
    url("../assets/home/hero.png") center right / cover,
    linear-gradient(135deg, #0a0a0a 0%, #171717 48%, #090909 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: center;
  padding: 58px 0 64px;
}
.hero-copy { max-width: 660px; }
.hero .quote-card { justify-self: stretch; }
.hero-copy,
.quote-card,
.hero-media { min-width: 0; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-warn);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3, .h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(50px, 6vw, 78px);
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
}
h3 {
  margin: 0 0 12px;
  font-size: 24px;
}
p { margin: 0 0 16px; }
.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.58;
}
.rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}
.stars, .star { color: var(--star-gold); font-weight: 900; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.cta-row.center { justify-content: center; }
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 630px;
}
.trust-badges span {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 13px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}
.trust-badges span::before,
.check li::before,
.footer-trust li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-brand);
  box-shadow: 0 0 0 4px rgba(201, 31, 31, 0.16);
}
.trust-badges span::before { left: 14px; top: 18px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}
.hero-proof span {
  display: grid;
  gap: 3px;
  min-height: 76px;
  align-content: center;
  padding: 14px 16px;
  background: rgba(12, 12, 12, 0.48);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}
.hero-proof strong {
  display: block;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 1;
}
.ticker {
  min-height: 30px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.quote-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--text-dark);
  padding: 28px;
  box-shadow: var(--shadow-dark);
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--red-brand), var(--amber-warn));
}
.quote-card h2 { margin-bottom: 8px; font-size: 31px; }
.quote-card p { color: var(--text-mid); font-size: 14px; }
.form-kicker {
  margin-top: 2px;
  color: var(--red-brand) !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
label { display: block; }
label span {
  display: block;
  margin-bottom: 6px;
  color: #303030;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  margin: 0 0 12px;
  padding: 13px 14px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea { min-height: 104px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--red-brand);
  box-shadow: 0 0 0 4px rgba(201, 31, 31, 0.11);
  outline: 0;
}
.btn-submit { width: 100%; margin-top: 2px; }
.form-note {
  margin: 12px 0 0 !important;
  color: var(--text-mid);
  text-align: center;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.success {
  display: none;
  margin-top: 12px;
  padding: 14px;
  color: #0f5127;
  background: #e8f7ee;
  border: 1px solid var(--safe-green);
  border-radius: var(--radius);
  font-weight: 800;
}

.urgent {
  padding: 18px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--red-dark), var(--red-brand));
}
.urgent-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.2s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

section { padding: 96px 0; }
.dark {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, #171717, #101010),
    var(--charcoal);
}
.black, .final-cta {
  color: #fff;
  background: var(--black);
}
.off { background: var(--off-white); }
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}
.section-head p,
.section-copy {
  color: var(--text-mid);
  font-size: 18px;
}
.dark .section-head p { color: rgba(255, 255, 255, 0.72); }
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.05);
}
.dark .card, .black .card {
  color: #fff;
  background: linear-gradient(180deg, #202020, #171717);
  border-color: var(--dark-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.service-grid { align-items: stretch; }
.service-card {
  position: relative;
  display: flex;
  min-height: 318px;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red-brand), rgba(245, 165, 36, 0.85));
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 31, 31, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(201, 31, 31, 0.94);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--red-brand), var(--red-dark));
  border-radius: var(--radius);
  flex: 0 0 auto;
}
.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card > .icon:first-child {
  margin-top: 44px;
}
.service-card p { color: rgba(255, 255, 255, 0.7); }
.price {
  margin-top: auto;
  color: var(--amber-warn) !important;
  font-weight: 900;
}
.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-hover);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.mini-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  text-align: center;
}
.section-cta p { margin: 0; color: rgba(255, 255, 255, 0.72); font-weight: 700; }
.off .section-cta p, .stats-section .section-cta p { color: var(--text-mid); }

.stats-section {
  padding: 64px 0;
  background: #fff;
}
.stats {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stat {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--red-brand);
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  line-height: 1;
}
.stat span:last-child {
  margin-top: 8px;
  color: var(--text-mid);
  font-weight: 900;
}

.why-section { background: #fff; }
.check {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}
.check li {
  position: relative;
  padding-left: 34px;
  color: var(--text-dark);
  font-weight: 800;
}
.check li::before { left: 4px; top: 8px; }
.image-card {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.image-card::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 30px;
  bottom: 30px;
  width: 6px;
  border-radius: 999px;
  background: var(--red-brand);
}
.photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-card:not(.service-image) .photo {
  aspect-ratio: 3 / 2;
  min-height: 0;
}
.service-image {
  width: 100%;
  max-width: 540px;
  justify-self: stretch;
}
.service-image .photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
}
.image-card figcaption {
  padding: 12px 4px 2px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 800;
}

.process-grid { align-items: stretch; }
.process-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  border-color: #d9d0c5;
}
.step-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius);
  font-family: "Oswald", sans-serif;
  font-size: 24px;
}
.process-card p { color: var(--text-mid); }

.testimonials { background: linear-gradient(180deg, #181818, #0c0c0c); }
.testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.testimonial-card p:not(.stars) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}
.testimonial-card b { margin-top: auto; }
.testimonial-card span {
  color: var(--amber-warn);
  font-weight: 800;
}
.trust-line {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-weight: 900;
}

.season-section { background: #fff; }
.season {
  padding: 34px;
  border-left: 6px solid var(--red-brand);
  box-shadow: var(--shadow);
}
.season-grid {
  position: relative;
  margin: 28px 0 24px;
}
.season-grid > div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}
.season-grid h3 { color: var(--red-brand); }
.season-grid p { color: var(--text-mid); }

.service-area .section-head { margin-bottom: 30px; }
.location-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.location-chips span {
  padding: 10px 14px;
  border: 1px solid #d8cec2;
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 900;
}
.map-card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.map {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
}

.guarantee {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #7f1010, var(--red-brand) 54%, #9a1515);
}
.guarantee::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.45) 12px 13px);
}
.guarantee-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 40px;
  align-items: center;
}
.guarantee p { max-width: 700px; color: rgba(255, 255, 255, 0.86); font-size: 18px; }
.guarantee .eyebrow { color: #fff; }
.guarantee-mark {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.guarantee-mark svg {
  width: 112px;
  height: 130px;
  fill: none;
  stroke: #fff;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-wrap { max-width: 900px; }
.faq-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  transition: background 0.2s ease;
}
.faq-q:hover { background: var(--paper); }
.faq-q span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--red-brand);
  border-radius: 50%;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-mid);
}
.faq-item.open .faq-a { max-height: 240px; }

.final-cta {
  padding: 92px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(201, 31, 31, 0.24), transparent 34%),
    #0a0a0a;
}
.final-cta-inner { max-width: 860px; }
.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.footer {
  padding: 0 0 28px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0, rgba(201, 31, 31, 0.14), transparent 34%),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(150px, 0.78fr) minmax(150px, 0.72fr) minmax(230px, 1fr);
  gap: 56px;
  align-items: start;
  padding: 64px 0 42px;
}
.footer section {
  padding: 0;
}
.footer-brand,
.footer-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}
.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}
.footer a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-col a {
  display: inline-flex;
  margin-bottom: 10px;
  font-weight: 800;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer h4 {
  min-height: 28px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--red-brand);
}
.footer a.footer-logo {
  margin-bottom: 20px;
  color: #fff;
  font-size: 29px;
}
.footer-logo .shield {
  width: 31px;
  height: 36px;
}
.footer-brand p {
  max-width: 345px;
  margin-bottom: 18px;
}
.footer-brand-contact {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}
.footer-brand-contact a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}
.footer-brand-contact a:first-child {
  color: var(--amber-warn);
  font-size: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(201, 31, 31, 0.72);
  background: var(--red-brand);
  transform: translateY(-2px);
}
.footer-social span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-business p {
  margin: 0 0 12px;
}
.footer-business strong {
  color: #fff;
  font-weight: 900;
}
.footer .phone { color: var(--amber-warn); }
.footer-trust {
  display: grid;
  gap: 7px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.footer-trust li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 800;
}
.footer-trust li::before {
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
}
.footer-credit {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.footer-credit a {
  display: inline;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}
.footer-credit a:hover {
  color: var(--amber-warn);
}

.bottom-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.bottom-cta a {
  padding: 14px 12px;
  color: #fff;
  background: var(--red-brand);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
}
.page-hero {
  min-height: 440px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 31, 31, 0.28), transparent 30%),
    linear-gradient(rgba(13, 13, 13, 0.76), rgba(13, 13, 13, 0.88)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&auto=format&fit=crop&q=80") center / cover;
}
.page-hero-inner {
  max-width: 850px;
  padding: 72px 0;
}
.page-hero h1 { font-size: clamp(46px, 6vw, 76px); }
.services-page .page-hero {
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 31, 31, 0.28), transparent 30%),
    linear-gradient(rgba(13, 13, 13, 0.74), rgba(13, 13, 13, 0.88)),
    url("../assets/home/hero.png") center right / cover;
}
.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.service-detail { background: #fff; }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail .split.flip .image-card { order: -1; }
.pricing-grid { align-items: stretch; }
.pricing-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}
.pricing-card h2 { color: var(--red-brand); font-size: 46px; }
.pricing-card .btn { margin-top: auto; }
.pricing-card.popular {
  border: 3px solid var(--amber-warn);
  box-shadow: var(--shadow);
}
.value-card,
.team-card,
.review-card {
  display: flex;
  flex-direction: column;
}
.value-card { min-height: 245px; }
.team-card { overflow: hidden; padding: 0; }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card h3,
.team-card p { padding-inline: 24px; }
.team-card h3 { padding-top: 22px; }
.team-card p { padding-bottom: 24px; color: var(--text-mid); }
.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.cert-row.align-left { justify-content: flex-start; }
.cert-row span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 900;
}
blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 5px solid var(--red-brand);
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 800;
}
.review-grid .review-card {
  min-height: 292px;
}
.review-card b { margin-top: auto; }
.review-card span {
  color: var(--red-brand);
  font-weight: 900;
}
.review-card small {
  margin-top: 8px;
  color: var(--text-light);
  font-weight: 800;
}
.proof-grid .card {
  min-height: 220px;
}
.about-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 34%, rgba(201, 31, 31, 0.22), transparent 34%),
    linear-gradient(90deg, #090909 0%, #111 50%, #191919 100%);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.78fr);
  gap: 64px;
  align-items: center;
  min-height: min(760px, calc(100svh - 132px));
  padding: 72px 0 88px;
}
.about-hero-copy {
  min-width: 0;
}
.about-hero-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}
.about-proof {
  max-width: 680px;
}
.founder-portrait,
.founder-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #181818;
  box-shadow: var(--shadow-dark);
}
.founder-portrait::before,
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  pointer-events: none;
}
.founder-portrait img,
.founder-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}
.founder-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 3px;
}
.founder-portrait figcaption strong {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1;
}
.founder-portrait figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}
.story-section {
  background: #fff;
}
.story-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--red-brand);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.story-card h3 {
  font-size: clamp(30px, 3vw, 42px);
}
.trust-section .value-card {
  min-height: 315px;
}
.meet-section {
  background: var(--off-white);
}
.meet-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.founder-card {
  border-color: var(--border);
  background: #fff;
}
.founder-card img {
  height: 720px;
  object-position: center;
}
.meet-copy blockquote {
  margin-top: 30px;
  background: #fff;
}
.philosophy-section {
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
}
.philosophy-section .container {
  position: relative;
  z-index: 1;
}
.philosophy-section p {
  color: rgba(255, 255, 255, 0.75);
}
.philosophy-list {
  display: grid;
  gap: 16px;
}
.philosophy-list article {
  padding: 24px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #202020, #151515);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}
.philosophy-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--red-brand);
  border-radius: var(--radius);
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.local-section {
  background: #fff;
}
.local-grid .card {
  min-height: 230px;
  border-top: 4px solid var(--red-brand);
}
.local-grid p {
  color: var(--text-mid);
}
.about-locations {
  margin-top: 32px;
  margin-bottom: 0;
}
.about-testimonials .section-head p {
  color: rgba(255, 255, 255, 0.72);
}
.gallery { grid-template-columns: repeat(3, 1fr); }
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
}
.contact-hero {
  min-height: 390px;
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 31, 31, 0.28), transparent 30%),
    linear-gradient(rgba(13, 13, 13, 0.74), rgba(13, 13, 13, 0.88)),
    url("../assets/home/hero.png") center right / cover;
}
.contact-alert { padding: 64px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: start;
}
.contact-panel {
  min-width: 0;
}
.contact-methods {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}
.contact-methods a,
.contact-methods div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.05);
}
.contact-methods .icon {
  grid-row: span 2;
  margin: 0;
}
.contact-methods strong {
  color: var(--text-dark);
  font-size: 18px;
}
.contact-methods small {
  color: var(--text-mid);
  font-weight: 700;
}
.contact-form-card {
  position: sticky;
  top: 112px;
}

.blog-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.76)),
    url("../assets/home/hero.png") center / cover;
}
.blog-hero::before,
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
}
.blog-hero .container,
.article-hero .container {
  position: relative;
  z-index: 1;
}
.blog-hero-inner,
.article-hero-inner {
  max-width: 840px;
  padding: 104px 0;
}
.blog-hero h1,
.article-hero h1 {
  max-width: 820px;
}
.blog-hero .lead,
.article-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}
.read-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-index {
  background: var(--off-white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.blog-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 31, 31, 0.36);
  box-shadow: var(--shadow);
}
.blog-card-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--red-dark);
  background: rgba(201, 31, 31, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card-title {
  color: var(--text-dark);
  font-size: 30px;
  line-height: 1.06;
}
.blog-card-excerpt {
  color: var(--text-mid);
  font-size: 16px;
}
.blog-card .btn {
  width: fit-content;
  margin-top: auto;
}
.article-wrap {
  background: var(--paper);
  padding: 72px 0 88px;
}
.article-content {
  max-width: 820px;
  margin-inline: auto;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(20, 20, 20, 0.08);
}
.article-content p,
.article-content li {
  color: #333;
  font-size: 18px;
  line-height: 1.78;
}
.article-content h2 {
  margin-top: 44px;
  padding-top: 8px;
  color: var(--text-dark);
  font-size: clamp(30px, 3vw, 42px);
}
.article-content h3 {
  margin-top: 28px;
}
.article-content ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding-left: 22px;
}
.article-content a:not(.btn) {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
}
.article-cta {
  margin: 44px 0;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 31, 31, 0.98), rgba(143, 20, 20, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 13px);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(143, 20, 20, 0.22);
}
.article-cta h2,
.article-cta p {
  color: #fff;
}
.article-cta h2 {
  margin-top: 0;
  padding-top: 0;
}
.article-cta .cta-row {
  margin-top: 18px;
}
.related-posts {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.related-posts h2 {
  margin-top: 0;
  padding-top: 0;
}
.related-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.related-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none !important;
}
.related-list a:hover {
  border-color: rgba(201, 31, 31, 0.45);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .nav-links { gap: 16px; }
  .nav-actions .btn { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 72px 0 88px;
  }
  .quote-card { max-width: 720px; }
  .hero-media { max-width: 720px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 290px; }
}

@media (max-width: 900px) {
  body { padding-bottom: 74px; }
  .nav-links, .nav-actions { display: none; }
  .mobile-call { display: inline-flex; margin-left: auto; }
  .hamb { display: inline-grid; place-items: center; }
  .nav-inner { min-height: 72px; }
  section { padding: 64px 0; }
  .split,
  .about-hero-grid,
  .meet-grid,
  .guarantee-inner,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 48px;
  }
  .about-hero-grid {
    min-height: auto;
    padding: 64px 0;
    gap: 34px;
  }
  .founder-portrait,
  .founder-card {
    max-width: 620px;
  }
  .founder-portrait img,
  .founder-card img {
    height: 520px;
  }
  .service-detail .split.flip .image-card { order: 0; }
  .contact-form-card { position: static; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n + 2) { border-bottom: 0; }
  .guarantee-mark { justify-self: start; width: 150px; height: 150px; }
  .guarantee-mark svg { width: 92px; }
  .bottom-cta { display: grid; }
  .home-page .bottom-cta { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .about-page .container {
    width: min(var(--max), calc(100% - 44px));
  }
  .about-page .split > *,
  .about-hero-copy,
  .meet-copy,
  .story-card,
  .philosophy-list,
  .founder-portrait,
  .founder-card {
    min-width: 0;
  }
  .about-page h2,
  .about-page h3,
  .about-page p,
  .about-page li,
  .about-page a {
    overflow-wrap: break-word;
  }
  .topnav .container {
    width: calc(100vw - 84px);
    margin-left: 16px;
    margin-right: 16px;
  }
  .home-page .hero .container {
    width: calc(100vw - 64px);
    margin-left: 16px;
    margin-right: 48px;
  }
  .announce { padding: 10px 42px 10px 16px; }
  .announce-inner { display: block; }
  .home-page .announce a { display: none; }
  .announce a { display: block; margin-top: 2px; }
  .logo { font-size: 25px; }
  .mobile-call { display: none; }
  .hamb {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    margin-left: auto;
    transform: none;
    background: var(--red-brand);
    border-color: var(--red-brand);
  }
  .nav-inner { padding-right: 0; }
  .hero { min-height: auto; align-items: start; }
  .hero-grid { padding: 28px 0 10px; gap: 16px; }
  h1 { font-size: clamp(40px, 13vw, 54px); }
  h2 {
    max-width: 100%;
    font-size: clamp(30px, 9.6vw, 40px);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .lead { font-size: 17px; line-height: 1.5; }
  .cta-row { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .trust-badges,
  .form-row,
  .grid-4,
  .stats,
  .gallery { grid-template-columns: 1fr; }
  .hero-copy .cta-row,
  .hero-proof { display: none; }
  .quote-card { padding: 20px 18px; }
  .quote-card h2 { font-size: 28px; }
  .hero .quote-card p:not(.form-note) { display: none; }
  .hero .quote-card label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .hero .quote-card input,
  .hero .quote-card select {
    min-height: 44px;
    margin-bottom: 10px;
  }
  .hero .quote-card .form-kicker { display: block; margin-bottom: 8px; }
  .hero .quote-card .btn-submit { min-height: 48px; }
  .hero .quote-card .form-note { display: none; }
  .about-hero-grid { padding: 48px 0 56px; }
  .about-hero h1 {
    max-width: 11ch;
    font-size: clamp(40px, 12vw, 56px);
    text-wrap: balance;
  }
  .about-hero-copy .lead {
    max-width: 30ch;
  }
  .about-proof { display: none; }
  .founder-portrait img,
  .founder-card img {
    height: auto;
    aspect-ratio: 1 / 1.05;
  }
  .story-card { padding: 24px 18px; }
  .story-section .split,
  .meet-grid,
  .philosophy-section .split {
    gap: 28px;
  }
  .story-section h2,
  .meet-section h2,
  .philosophy-section h2,
  .local-section h2,
  .about-testimonials h2 {
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 0.98;
  }
  .story-card h3 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.05;
  }
  .trust-section .value-card,
  .local-grid .card { min-height: auto; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0 28px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-brand p {
    max-width: 34ch;
    margin-inline: auto;
  }
  .footer-col {
    align-items: flex-start;
    text-align: left;
  }
  .footer h4 {
    min-height: 0;
    margin-bottom: 14px;
  }
  .footer-col a {
    margin-bottom: 8px;
  }
  .footer-credit {
    padding-top: 18px;
  }
  .page-hero { min-height: 360px; }
  .page-hero-inner { padding: 56px 0; }
  .page-hero h1 { font-size: clamp(38px, 11.5vw, 54px); overflow-wrap: break-word; }
  .services-page .page-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(36px, 10vw, 48px);
    text-wrap: balance;
  }
  .contact-hero h1 { font-size: clamp(44px, 13vw, 56px); }
  .contact-alert h2 { font-size: clamp(34px, 10vw, 42px); overflow-wrap: anywhere; }
  .contact-alert h2 a { display: block; word-break: break-word; }
  .hero-photo { min-height: 260px; }
  .media-proof {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .urgent-inner { display: grid; justify-items: center; }
  section { padding: 56px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head h2 {
    max-width: 16ch;
    margin-right: auto;
    margin-left: auto;
  }
  .section-head.align-left h2 { margin-left: 0; }
  .section-head p {
    max-width: 34ch;
    margin-right: auto;
    margin-left: auto;
  }
  .service-card, .process-card, .testimonial-card { min-height: auto; }
  .stats { border-radius: var(--radius); }
  .stat, .stat:nth-child(odd) {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child { border-bottom: 0; }
  .season { padding: 24px 18px; }
  .location-chips { justify-content: flex-start; }
  .map { height: 300px; }
  .gallery img { height: 220px; }
  .team-card img { height: 250px; }
  .cert-row { justify-content: flex-start; }
  .contact-methods a,
  .contact-methods div { grid-template-columns: 44px 1fr; padding: 14px; }
  .blog-hero-inner,
  .article-hero-inner { padding: 64px 0; }
  .blog-hero h1,
  .article-hero h1 {
    max-width: 10ch;
    font-size: clamp(40px, 11.5vw, 52px);
    overflow-wrap: break-word;
    text-wrap: balance;
  }
  .blog-hero .lead,
  .article-hero .lead {
    max-width: 34ch;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: auto; padding: 24px; }
  .blog-card .btn { width: 100%; }
  .article-wrap { padding: 56px 0; }
  .article-content { padding: 26px 18px; }
  .article-content p,
  .article-content li { font-size: 17px; line-height: 1.72; }
  .article-content h2 { margin-top: 34px; }
  .article-cta { padding: 24px 18px; }
  .related-list a { display: block; }
  .faq-q { min-height: 68px; padding: 18px; }
  .faq-a p { padding: 0 18px 20px; }
  .final-cta { padding: 64px 0; }
}

@media (max-width: 430px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-inner { gap: 10px; }
  .logo { font-size: 23px; }
  .shield { width: 28px; height: 32px; }
  .hamb { width: 38px; min-width: 38px; height: 38px; }
  .hamb::before { left: 10px; right: 10px; top: 11px; }
  h1 { font-size: clamp(40px, 14vw, 54px); }
  .lead { font-size: 17px; overflow-wrap: anywhere; }
  .ticker { overflow-wrap: anywhere; }
}
