:root {
  --ink: #17212b;
  --ink-soft: #243444;
  --paper: #ffffff;
  --surface: #f5f7f8;
  --surface-strong: #eef2f2;
  --line: #dfe6e8;
  --muted: #64727e;
  --red: #c52b31;
  --red-dark: #8f1f25;
  --teal: #0c7774;
  --teal-dark: #084f4d;
  --amber: #e9ad2f;
  --blue: #22577a;
  --green: #1f9d67;
  --shadow: 0 18px 60px rgba(23, 33, 43, 0.14);
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
video,
iframe,
svg {
  display: block;
}

img,
picture,
video,
iframe {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(12, 119, 116, 0.35);
  outline-offset: 3px;
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--paper);
  background: rgba(23, 33, 43, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(23, 33, 43, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-logo {
  width: auto;
  height: 66px;
  max-width: min(150px, 38vw);
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand .brand-logo {
  height: 88px;
  max-width: 180px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--red) 0 48%, var(--teal) 48% 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-size: 1.04rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-line {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
  border-color: var(--amber);
}

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

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

.header-tel-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--red), #9f1e24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.94rem;
  font-weight: 950;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.header-call-btn {
  position: relative;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  color: var(--paper);
  background: var(--red);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.header-call-btn:hover {
  transform: translateY(-1px) scale(1.04);
  background: #a91f24;
}

.header-tel-link:hover {
  color: var(--paper);
  transform: translateY(-1px) scale(1.03);
}

.pulse-ring {
  display: none;
}

@keyframes pulse-header {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes header-call-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(197, 43, 49, 0);
  }
  45% {
    box-shadow: 0 0 0 8px rgba(197, 43, 49, 0.16);
  }
}

.cta-call::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 2px solid rgba(197, 43, 49, 0.75);
  border-radius: inherit;
  pointer-events: none;
  animation: call-visible-ring 1.7s ease-out infinite;
}

.cta-call::after {
  border-color: rgba(197, 43, 49, 0.84);
}

@keyframes call-visible-ring {
  0% {
    opacity: 0.95;
    transform: scale(0.96);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@keyframes call-visible-flash {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.22);
  }
}

@keyframes call-visible-shake {
  0%,
  74%,
  100% {
    transform: translateX(0) scale(1);
  }
  78% {
    transform: translateX(-4px) rotate(-1deg) scale(1.02);
  }
  82% {
    transform: translateX(4px) rotate(1deg) scale(1.02);
  }
  86% {
    transform: translateX(-3px) scale(1.01);
  }
  90% {
    transform: translateX(3px) scale(1.01);
  }
  94% {
    transform: translateX(0) scale(1);
  }
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.text-btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.text-btn svg,
.icon-btn svg,
.header-tel-link svg,
.header-call-btn svg,
.contact-card svg,
.mobile-quick-actions svg,
.cta-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.text-btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

.text-btn-primary {
  position: relative;
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
  isolation: isolate;
  overflow: visible;
}

.text-btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.text-btn-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.text-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.text-btn-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.text-btn-xl {
  min-height: 58px;
  padding: 15px 24px;
  font-size: 1.02rem;
}

.icon-btn {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  min-height: 82svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 76px) 0 74px;
  color: var(--paper);
  background: var(--ink);
}

.hero-media,
.hero-shade,
.subpage-media,
.subpage-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-media img {
  object-position: 70% center;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade,
.subpage-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 18, 26, 0.88), rgba(10, 18, 26, 0.58) 48%, rgba(10, 18, 26, 0.2)),
    linear-gradient(180deg, rgba(10, 18, 26, 0.46), rgba(10, 18, 26, 0.72));
}

.hero-inner {
  max-width: 1140px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 42px;
  align-items: end;
}

.hero-content {
  min-width: 0;
}

.hero-service-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.panel-kicker {
  width: fit-content;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-service-panel strong {
  font-size: 1.3rem;
  line-height: 1.25;
}

.hero-panel-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-panel-list div {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel-list dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-panel-list dd {
  margin: 0;
  color: var(--paper);
  font-weight: 900;
  line-height: 1.3;
}

.hero-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.hero-badge-grid span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.subpage-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.h1-accent {
  display: block;
  margin-top: 4px;
  font-size: 0.65em;
  font-weight: 650;
  opacity: 0.78;
}

.hero-lead,
.subpage-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-campaign {
  width: min(100%, 620px);
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding: 16px 18px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(197, 43, 49, 0.94), rgba(12, 119, 116, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hero-campaign strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-campaign span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.service-fee-card {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff8e6;
  border: 1px solid rgba(205, 157, 74, 0.42);
  border-radius: 8px;
}

.service-fee-card strong {
  font-size: 0.96rem;
}

.service-fee-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 850px;
  margin-top: 26px;
}

.trust-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 750;
}

.signal-strip {
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-grid > div {
  display: grid;
  gap: 3px;
  min-height: 112px;
  align-content: center;
  padding: 20px 24px;
  background: var(--ink);
}

.signal-number {
  color: var(--amber);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.signal-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.problem-fast-section {
  padding: 54px 0;
  background: var(--surface);
}

.problem-fast-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.problem-fast-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.95rem;
  line-height: 1.12;
}

.problem-fast-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.problem-fast-grid a {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.problem-fast-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 43, 49, 0.32);
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.09);
}

.problem-fast-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.problem-fast-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.24;
}

.problem-fast-grid em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.35;
}

.problem-fast-call {
  justify-self: end;
  white-space: nowrap;
}

.priority-section {
  padding: 58px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}

.priority-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.priority-copy h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.12;
}

.priority-copy p {
  color: var(--muted);
}

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

.priority-card {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.priority-card.hot {
  border-left-color: var(--red);
}

.priority-card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 119, 116, 0.38);
  box-shadow: 0 16px 38px rgba(23, 33, 43, 0.1);
}

.priority-card strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.priority-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.conversion-proof {
  padding: 64px 0;
  background: var(--paper);
}

.conversion-proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr) minmax(260px, 0.5fr);
  gap: 28px;
  align-items: center;
}

.proof-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1.12;
}

.proof-copy p {
  color: var(--muted);
}

.proof-cards {
  display: grid;
  gap: 12px;
}

.proof-cards div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.proof-cards div:nth-child(2) {
  border-left-color: var(--teal);
}

.proof-cards div:nth-child(3) {
  border-left-color: var(--amber);
}

.proof-cards strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.proof-cards span {
  color: var(--muted);
  line-height: 1.42;
}

.proof-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.proof-photos img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(23, 33, 43, 0.12);
}

.proof-photos img:nth-child(2) {
  margin-top: 42px;
}

.trust-proof-section {
  color: var(--paper);
  background: var(--ink);
}

.trust-proof-section .section-head h2,
.trust-proof-section .section-head p {
  color: var(--paper);
}

.trust-proof-section .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-proof-grid div {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.trust-proof-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 950;
}

.trust-proof-grid h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.18rem;
}

.trust-proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.guide-section {
  background: var(--surface);
}

.seo-landing-hub,
.ad-landing-section {
  background: var(--surface);
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card-grid a {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.guide-card-grid a:nth-child(2) {
  border-top-color: var(--red);
}

.guide-card-grid a:nth-child(3) {
  border-top-color: var(--amber);
}

.guide-card-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 119, 116, 0.36);
  box-shadow: 0 16px 38px rgba(23, 33, 43, 0.1);
}

.guide-card-grid strong {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.22;
}

.guide-card-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.guide-card-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 8px;
}

.summer-maintenance-section {
  background: var(--paper);
}

.summer-maintenance-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.summer-benefits,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.summer-benefits div,
.review-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summer-benefits div {
  border-left: 4px solid var(--teal);
}

.summer-benefits div:nth-child(2) {
  border-left-color: var(--red);
}

.summer-benefits div:nth-child(3) {
  border-left-color: var(--amber);
}

.summer-benefits strong,
.review-card strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.summer-benefits span,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-section {
  background: var(--paper);
}

.review-card {
  min-height: 224px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.06);
}

.stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-map-cta {
  margin-top: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.review-map-cta div {
  display: grid;
  gap: 4px;
}

.review-map-cta strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.review-map-cta span {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.intro-section,
.areas-section,
.faq-section {
  background: var(--surface);
}

.seo-matrix-section {
  background: var(--paper);
}

.split-grid,
.process-wrap,
.faq-wrap,
.contact-grid,
.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.cta-band h2,
.contact-copy h2,
.seo-main h2,
.related-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.section-copy p,
.section-head p,
.contact-copy p,
.seo-main p,
.seo-aside p {
  color: var(--muted);
}

.section-copy p:last-child,
.section-head p:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 680px;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption,
.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(23, 33, 43, 0.78);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.photo-card-large {
  position: absolute;
  inset: 0 88px 64px 0;
}

.photo-card-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 0.78;
  border: 6px solid var(--paper);
}

.services-section {
  background: var(--paper);
}

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

.service-card {
  min-height: 248px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:nth-child(2n) {
  border-top-color: var(--red);
}

.service-card:nth-child(3n) {
  border-top-color: var(--blue);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 119, 116, 0.34);
  box-shadow: 0 18px 44px rgba(23, 33, 43, 0.11);
}

.service-card a {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 11px;
  padding: 24px;
}

.service-code {
  color: var(--red);
  font-weight: 950;
  font-size: 0.84rem;
}

.service-card h3,
.reason-item h3,
.process-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.25;
}

.service-card p,
.reason-item p,
.process-item p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  color: var(--teal);
  font-weight: 900;
}

.cta-band {
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--red-dark), var(--red) 52%, var(--teal-dark));
  padding: 44px 0;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: var(--paper);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-band h2 {
  max-width: 770px;
  font-size: 2rem;
}

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

.seo-rich-section {
  background: var(--surface);
}

.symptom-grid,
.brand-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.symptom-card {
  min-height: 216px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.symptom-card span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.symptom-card:nth-child(2n) span {
  background: var(--red);
}

.symptom-card:nth-child(3n) span {
  background: var(--blue);
}

.symptom-card h3,
.brand-support h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.25;
}

.symptom-card p {
  margin: 0;
  color: var(--muted);
}

.brand-support {
  margin-top: 28px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-support p {
  color: var(--muted);
}

.brand-chip-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.brand-chip-grid span,
.brand-chip-grid a {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.reason-item {
  min-height: 226px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reason-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.reason-item:nth-child(2) .reason-icon,
.reason-item:nth-child(5) .reason-icon {
  background: var(--teal);
}

.reason-item:nth-child(3) .reason-icon,
.reason-item:nth-child(6) .reason-icon {
  background: var(--red);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.focus-area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.focus-area-strip a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: var(--paper);
  border: 1px solid rgba(12, 119, 116, 0.24);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.06);
}

.focus-area-strip a:hover {
  color: var(--red);
  border-color: rgba(197, 43, 49, 0.32);
}

.area-link {
  min-height: 112px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.area-link:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 43, 49, 0.32);
  box-shadow: 0 14px 36px rgba(23, 33, 43, 0.1);
}

.area-link strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.area-link span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.matrix-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.matrix-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.matrix-links {
  display: grid;
  gap: 8px;
}

.matrix-links a {
  display: block;
  padding: 8px 10px;
  color: var(--teal-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.28;
}

.matrix-links a:hover {
  color: var(--red);
  border-color: rgba(197, 43, 49, 0.32);
}

.process-section {
  background: var(--paper);
}

.process-wrap {
  grid-template-columns: 0.78fr 1fr;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-item span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 950;
}

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

.gallery-section .section-head h2,
.gallery-section .section-head p {
  color: var(--paper);
}

.gallery-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0d151d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item video {
  background: #0d151d;
}

.faq-wrap {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-section {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.96), rgba(23, 33, 43, 0.84)),
    url("gorselvideo/5.jpeg") center / cover;
  padding: 76px 0;
}

.contact-grid {
  grid-template-columns: 1fr 0.8fr;
}

.contact-copy h2,
.contact-copy p {
  color: var(--paper);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-card {
  min-height: 108px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.contact-card span {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.contact-card svg {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  color: var(--amber);
}

.contact-card strong {
  grid-column: 2;
  font-size: 1.45rem;
}

.contact-card.accent {
  background: var(--teal);
  border-color: var(--teal);
}

.contact-card.accent svg {
  color: var(--paper);
}

.map-embed {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #101820;
  padding: 54px 0 28px;
}

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

.footer-brand {
  color: var(--paper);
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  max-width: 360px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom span {
  margin: 0;
}

.mobile-quick-actions {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: none;
  padding: 10px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 8px;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.avail-text {
  color: #15803d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-btns {
  display: flex;
  gap: 10px;
}

.cta-btn {
  position: relative;
  min-height: 56px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  color: var(--paper);
  border-radius: 12px;
  text-decoration: none;
  overflow: visible;
  transition: transform 150ms ease, opacity 150ms ease;
}

.cta-btn:active {
  transform: scale(0.96);
  opacity: 0.92;
}

.cta-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.16;
}

.cta-main {
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 950;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
}

.cta-call {
  position: relative;
  flex: 1.3;
  min-height: 68px;
  background: linear-gradient(135deg, var(--red), #9f1e24);
  box-shadow: 0 6px 20px rgba(197, 43, 49, 0.34);
  isolation: isolate;
  animation: call-visible-shake 3.2s ease-in-out infinite, call-visible-flash 1.6s ease-in-out infinite;
}

.sticky-cta .cta-call {
  width: 100%;
}

.sticky-cta .cta-call svg {
  width: 22px;
  height: 22px;
}

.sticky-cta .cta-main {
  font-size: 1.08rem;
}

.sticky-cta .cta-sub {
  font-size: 0.78rem;
}

.cta-wa {
  background: linear-gradient(135deg, #25d366, #169f4e);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}

.cta-pulse-ring {
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(197, 43, 49, 0.92);
  border-radius: 15px;
  pointer-events: none;
  animation: cta-pulse 3s ease-out infinite;
}

@keyframes cta-pulse {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  60%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-4px) rotate(-1deg);
  }
  30% {
    transform: translateX(4px) rotate(1deg);
  }
  45% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
}

.cta-btn.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes call-glow {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(197, 43, 49, 0.24);
  }
  50% {
    box-shadow: 0 18px 42px rgba(197, 43, 49, 0.44);
  }
}

@keyframes call-attention {
  0%,
  82%,
  100% {
    transform: translateX(0);
  }
  86% {
    transform: translateX(-3px) rotate(-1deg);
  }
  90% {
    transform: translateX(3px) rotate(1deg);
  }
  94% {
    transform: translateX(-2px);
  }
}

@keyframes sticky-cta-enter {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (min-width: 641px) {
  .sticky-cta {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(360px, calc(100% - 32px));
    display: block;
    border: 1px solid var(--line);
    border-radius: 14px;
    transform: translateY(0);
  }
}

/* STICKY WHATSAPP BUTTON - DESKTOP */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}

.whatsapp-sticky .whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #ffffff;
  background: #25D366;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-sticky .whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky .whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.whatsapp-sticky .whatsapp-btn span {
  display: inline;
}

/* Hide desktop sticky on mobile */
@media (max-width: 768px) {
  .whatsapp-sticky {
    display: none;
  }
}

.subpage-hero {
  min-height: 540px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 70px) 0 64px;
  color: var(--paper);
  background: var(--ink);
}

.subpage-media img {
  object-position: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--paper);
  font-weight: 800;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.42);
}

.seo-section {
  background: var(--paper);
}

.seo-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.seo-main {
  min-width: 0;
}

.seo-main h2 + p {
  margin-top: 18px;
}

.seo-main h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.24;
}

.seo-main ul,
.seo-main ol {
  padding-left: 20px;
  color: var(--muted);
}

.seo-main li + li {
  margin-top: 8px;
}

.seo-aside {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-aside h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.2rem;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

.info-list div {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.related-section {
  background: var(--surface);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.related-card {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.09);
}

.related-card strong {
  color: var(--ink);
  line-height: 1.2;
}

.related-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.mini-cta {
  margin-top: 34px;
  padding: 26px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.mini-cta h3,
.mini-cta p {
  color: var(--paper);
}

.mini-cta h3 {
  margin-top: 0;
}

.mini-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.mini-cta .hero-actions {
  margin-top: 18px;
}

.seo-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.brand-keyword-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 34px;
}

.brand-keyword-card {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-keyword-card h3 {
  margin: 0 0 10px;
}

.brand-keyword-card p {
  margin: 0 0 12px;
}

.brand-keyword-card ul {
  margin: 0;
  padding-left: 18px;
}

.brand-keyword-card.brand-article {
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 247, 248, 0.98)),
    var(--surface);
}

.brand-keyword-card.brand-article.compact {
  gap: 10px;
}

.brand-keyword-card.brand-article h3,
.brand-keyword-card.brand-article p {
  margin: 0;
}

.brand-tag {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: var(--paper);
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.neighborhood-link-grid,
.brand-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0 34px;
}

.brand-directory-grid {
  margin: 20px 0 0;
}

.neighborhood-link-grid a,
.brand-directory-grid a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.neighborhood-link-grid a:hover,
.brand-directory-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 119, 116, 0.45);
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.1);
}

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

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.coverage-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coverage-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.coverage-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.coverage-links {
  max-height: 340px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  overflow: auto;
  padding-right: 6px;
}

.coverage-links a {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.visual-archive {
  overflow: hidden;
  background: var(--ink);
}

.visual-archive .section-head h2,
.visual-archive .section-head p,
.visual-archive .eyebrow {
  color: var(--paper);
}

.visual-archive .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.archive-rail {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: archive-slide 36s linear infinite;
}

.archive-rail:hover {
  animation-play-state: paused;
}

.archive-item {
  width: clamp(210px, 20vw, 300px);
  aspect-ratio: 0.82;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--ink-soft);
}

.archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.archive-item:hover img {
  transform: scale(1.06);
}

.archive-item figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(23, 33, 43, 0.74);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.seo-note {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-note h3 {
  margin-top: 0;
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07) translateX(-1.5%);
  }
}

@keyframes archive-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 13px;
  }

  .header-actions .icon-btn span {
    display: none;
  }

  .service-grid,
  .reason-grid,
  .symptom-grid,
  .priority-grid,
  .trust-proof-grid,
  .guide-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid,
  .related-grid,
  .brand-chip-grid,
  .neighborhood-link-grid,
  .brand-directory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .wrap {
    width: min(100% - 32px, 1140px);
  }

  .header-inner {
    gap: 12px;
  }

  .header-actions {
    margin-left: auto;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

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

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--red);
    border-color: var(--line);
  }

  .header-actions .text-btn {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding: calc(var(--header-h) + 60px) 0 52px;
  }

  .hero-inner,
  .priority-inner,
  .conversion-proof-inner {
    grid-template-columns: 1fr;
  }

  .problem-fast-inner {
    grid-template-columns: 1fr;
  }

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

  .problem-fast-call {
    justify-self: stretch;
    justify-content: center;
    white-space: normal;
  }

  .summer-maintenance-inner {
    grid-template-columns: 1fr;
  }

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

  .proof-photos {
    max-width: 520px;
  }

  .hero-service-panel {
    max-width: 560px;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 3rem;
  }

  .hero-lead,
  .subpage-lead {
    font-size: 1.05rem;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid > div {
    min-height: 92px;
  }

  .split-grid,
  .process-wrap,
  .faq-wrap,
  .contact-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 560px;
  }

  .photo-card-large {
    inset: 0 60px 72px 0;
  }

  .photo-card-small {
    width: 48%;
  }

  .section-copy h2,
  .section-head h2,
  .cta-band h2,
  .contact-copy h2,
  .seo-main h2,
  .related-section h2 {
    font-size: 2.05rem;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-grid,
  .related-grid,
  .matrix-grid,
  .coverage-grid,
  .priority-grid,
  .trust-proof-grid,
  .guide-card-grid,
  .summer-benefits,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .seo-aside {
    position: static;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 112px;
  }

  .wrap {
    width: min(100% - 28px, 1140px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-logo {
    height: 58px;
    max-width: 132px;
  }

  .brand-line {
    font-size: 0.72rem;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .hero {
    min-height: 76svh;
    padding: calc(var(--header-h) + 48px) 0 116px;
  }

  .subpage-hero {
    padding-bottom: 112px;
  }

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

  .hero-shade,
  .subpage-shade {
    background:
      linear-gradient(180deg, rgba(10, 18, 26, 0.56), rgba(10, 18, 26, 0.9)),
      linear-gradient(90deg, rgba(10, 18, 26, 0.82), rgba(10, 18, 26, 0.42));
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-btn,
  .trust-row span {
    width: 100%;
  }

  .hero > .wrap .hero-actions .text-btn-ghost {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .photo-card-large,
  .photo-card-small {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 0.82;
    border: 0;
  }

  .service-grid,
  .reason-grid,
  .area-grid,
  .problem-fast-grid,
  .related-grid,
  .symptom-grid,
  .brand-keyword-grid,
  .matrix-grid,
  .coverage-grid,
  .priority-grid,
  .trust-proof-grid,
  .guide-card-grid,
  .summer-benefits,
  .review-grid,
  .neighborhood-link-grid,
  .brand-directory-grid,
  .district-brand-links {
    grid-template-columns: 1fr;
  }

  .conversion-proof {
    padding: 48px 0;
  }

  .proof-copy h2 {
    font-size: 1.78rem;
  }

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

  .proof-photos img:nth-child(2) {
    margin-top: 20px;
  }

  .priority-section {
    padding: 44px 0;
  }

  .priority-copy h2 {
    font-size: 1.85rem;
  }

  .hero-service-panel {
    padding: 18px;
  }

  .hero-badge-grid {
    grid-template-columns: 1fr;
  }

  .brand-chip-grid,
  .seo-note-grid,
  .coverage-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .reason-item {
    min-height: auto;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .process-item span {
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .contact-card strong {
    font-size: 1.22rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-cta {
    display: block;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    animation: sticky-cta-enter 520ms cubic-bezier(0.34, 1.56, 0.64, 1) 900ms both;
  }
}

@media (max-width: 390px) {
  .brand-line {
    display: none;
  }

  .brand-logo {
    height: 52px;
    max-width: 116px;
  }

  .brand-keyword-grid {
    grid-template-columns: 1fr;
  }

  .problem-fast-section {
    padding: 38px 0;
  }

  .problem-fast-grid a {
    min-height: 72px;
  }

  .coverage-links,
  .brand-chip-grid,
  .seo-note-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 2.05rem;
  }

  .section-copy h2,
  .section-head h2,
  .cta-band h2,
  .contact-copy h2,
  .seo-main h2,
  .related-section h2 {
    font-size: 1.78rem;
  }
}

@media (max-width: 640px) {
  .review-map-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .review-map-cta .text-btn {
    width: 100%;
    justify-content: center;
  }
}

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