:root {
  --forest-950: #082d29;
  --forest-900: #103f38;
  --forest-800: #15554b;
  --forest-100: #dfece7;
  --forest-50: #eff6f3;
  --orange: #d95c32;
  --orange-dark: #b84725;
  --cream: #f7f3eb;
  --paper: #fffefa;
  --ink: #16211f;
  --muted: #64716d;
  --line: #dbe2de;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(13, 47, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(8, 45, 41, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --max-width: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 82px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.7vw, 60px);
}

h3 {
  font-size: 22px;
}

:focus-visible {
  outline: 3px solid #f29a6f;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.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: 20px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  color: var(--forest-900);
  font-weight: 800;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(219, 226, 222, 0.78);
  background: rgba(255, 254, 250, 0.96);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(8, 45, 41, 0.09);
}

.header-inner {
  display: grid;
  grid-template-columns: 212px 1fr auto;
  gap: 34px;
  align-items: center;
  width: min(var(--max-width), calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  width: 196px;
  height: 70px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav > a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: none;
  transition: color 0.2s ease;
}

.site-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--orange-dark);
}

.site-nav > a:hover::after,
.nav-dropdown > button:hover::after,
.nav-dropdown.is-open > button::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.region-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(720px, calc(100vw - 40px));
  max-height: 65vh;
  padding: 28px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.is-open .region-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-region {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 3px 18px;
}

.nav-region strong {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-region a {
  padding: 5px 0;
  color: #3e4c48;
  font-size: 13px;
  font-weight: 650;
}

.nav-region a:hover {
  color: var(--orange-dark);
}

.header-phone {
  display: grid;
  min-width: 176px;
  padding: 10px 17px;
  border-radius: var(--radius-sm);
  background: var(--forest-900);
  color: var(--white);
  line-height: 1.25;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-phone:hover {
  background: var(--forest-800);
  transform: translateY(-1px);
}

.header-phone span {
  opacity: 0.72;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--forest-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.local-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f6b292;
}

.eyebrow i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(246, 178, 146, 0.16);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(217, 92, 50, 0.25);
}

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

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.13);
}

.button-whatsapp {
  background: #1c9d57;
  color: var(--white);
}

.button-whatsapp:hover {
  background: #148349;
}

.button-white {
  background: var(--white);
  color: var(--forest-950);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(76, 151, 132, 0.21), transparent 32%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900));
  color: var(--white);
}

.hero-slideshow {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  animation: hero-slide-cycle 12s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-1 {
  background-image: url("/district-hero-generated.jpg?v=20260725-2");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("/district-hero-generated-2.jpg?v=20260725-2");
  animation-delay: -8s;
}

.hero-slide-3 {
  background-image: url("/district-hero-generated-3.jpg?v=20260725-2");
  animation-delay: -4s;
}

@keyframes hero-slide-cycle {
  0%,
  25% {
    opacity: 1;
    transform: scale(1.015);
  }

  33.333%,
  91.666% {
    opacity: 0;
    transform: scale(1.055);
  }

  100% {
    opacity: 1;
    transform: scale(1.015);
  }
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 39, 35, 0.96) 0%, rgba(5, 47, 42, 0.82) 45%, rgba(5, 47, 42, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 39, 35, 0.05), rgba(4, 39, 35, 0.56));
}

.hero-slide-status {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  bottom: 24px;
  display: flex;
  gap: 7px;
}

.hero-slide-status i {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  animation: hero-dot-cycle 12s ease-in-out infinite;
}

.hero-slide-status i.is-active {
  width: 25px;
}

.hero-slide-status i:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide-status i:nth-child(2) {
  animation-delay: -8s;
}

.hero-slide-status i:nth-child(3) {
  animation-delay: -4s;
}

@keyframes hero-dot-cycle {
  0%,
  25% {
    width: 45px;
    background: #f2a17c;
  }

  33.333%,
  91.666% {
    width: 25px;
    background: rgba(255, 255, 255, 0.35);
  }

  100% {
    width: 45px;
    background: #f2a17c;
  }
}

.home-hero,
.district-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  min-height: 680px;
  padding: clamp(72px, 8vw, 112px) max(24px, calc((100% - var(--max-width)) / 2));
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 720px;
  isolation: isolate;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(790px, 61vw);
  min-height: 500px;
}

.home-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 6.5vw, 88px);
}

.home-hero-copy > p {
  max-width: 620px;
}

.home-hero-copy .hero-points {
  width: fit-content;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(4, 39, 35, 0.44);
  backdrop-filter: blur(8px);
}

.home-hero-service-card {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  bottom: 62px;
  display: grid;
  width: min(370px, 31vw);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.93);
  color: var(--forest-950);
  box-shadow: 0 24px 60px rgba(1, 29, 26, 0.24);
  backdrop-filter: blur(14px);
}

.home-hero-service-card > span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-hero-service-card > strong {
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.08;
}

.home-hero-flow {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 17px 0;
  margin-top: 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-hero-flow small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.3;
}

.home-hero-flow b {
  color: var(--orange-dark);
}

.home-hero-service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 850;
}

.home-hero-service-card > a b {
  color: var(--orange-dark);
  font-size: 18px;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
}

.hero h1 em {
  color: #f2a17c;
  font-style: italic;
}

.hero-copy-wrap > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 650;
}

.hero-points span,
.district-hero-card li span {
  color: #f3ab88;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-image-frame {
  position: absolute;
  inset: 0 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 45% 45% var(--radius-lg) var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.hero-note {
  position: absolute;
  right: -20px;
  bottom: 32px;
  display: grid;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.hero-note span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 16px;
}

.hero-stamp {
  position: absolute;
  left: -38px;
  top: 36px;
  display: grid;
  place-content: center;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  background: rgba(8, 45, 41, 0.86);
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-stamp b {
  color: #f2a17c;
  font-family: Georgia, serif;
  font-size: 35px;
  line-height: 1;
}

.hero-stamp span {
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max-width), calc(100% - 40px));
  margin: -28px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-strip > div {
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
}

.trust-strip > div + div {
  border-left: 1px solid var(--line);
}

.trust-strip > div > span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 27px;
}

.trust-strip p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  padding-block: clamp(80px, 9vw, 126px);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-image {
  height: 240px;
  overflow: hidden;
  background: var(--forest-50);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.service-card > a > div:last-child {
  position: relative;
  padding: 27px 26px 29px;
}

.service-card > a > div > span {
  position: absolute;
  right: 23px;
  top: 22px;
  color: #c9d3cf;
  font-family: Georgia, serif;
  font-size: 24px;
}

.service-card h3 {
  padding-right: 35px;
  margin-bottom: 11px;
}

.service-card p {
  display: -webkit-box;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card b {
  color: var(--orange-dark);
  font-size: 12px;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 8vw, 112px);
  align-items: center;
  padding-top: 40px;
}

.quality-visual {
  position: relative;
  min-height: 600px;
}

.quality-visual > img {
  width: calc(100% - 45px);
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.quality-visual > div {
  position: absolute;
  right: 0;
  bottom: 45px;
  display: grid;
  max-width: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.quality-visual > div span {
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.82;
}

.quality-content > p {
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 17px;
}

.quality-content ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quality-content li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 19px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.quality-content li > span {
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 25px;
}

.quality-content li strong {
  font-size: 17px;
}

.quality-content li p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
  padding: clamp(80px, 9vw, 120px) max(24px, calc((100% - var(--max-width)) / 2));
  background: var(--forest-950);
  color: var(--white);
}

.process-intro p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f4a680;
  font-family: Georgia, serif;
  font-size: 21px;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}

.quote-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
}

.quote-facts {
  display: flex;
  gap: 48px;
  margin-top: 35px;
}

.quote-facts > div {
  display: grid;
}

.quote-facts strong {
  color: var(--forest-900);
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.quote-facts span {
  color: var(--muted);
  font-size: 12px;
}

.quote-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-card h2 {
  font-size: clamp(34px, 4vw, 45px);
}

.quote-card > p {
  color: var(--muted);
  font-size: 14px;
}

.quote-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 24px;
}

.quote-card label {
  display: grid;
  gap: 7px;
  color: #52605c;
  font-size: 12px;
  font-weight: 800;
}

.quote-card select,
.quote-card input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--paper);
}

.quote-card select:focus,
.quote-card input:focus {
  border-color: var(--forest-800);
  box-shadow: 0 0 0 3px rgba(21, 85, 75, 0.11);
}

.quote-card .button,
.quote-phone {
  grid-column: 1 / -1;
}

.quote-phone {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.quote-phone strong {
  color: var(--forest-900);
}

.areas-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - var(--max-width)) / 2));
  background: var(--cream);
}

.areas-heading {
  grid-template-columns: 1fr auto;
}

.area-search {
  position: relative;
  display: block;
  width: min(320px, 100%);
}

.area-search input {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 17px;
  border: 1px solid #d8d5cd;
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--white);
}

.area-search input:focus {
  border-color: var(--forest-800);
}

.area-search > span:last-child {
  position: absolute;
  right: 17px;
  top: 10px;
  color: var(--forest-800);
  font-size: 25px;
}

.area-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.area-groups h3 {
  padding-bottom: 15px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--forest-900);
  color: var(--forest-900);
  font-size: 18px;
}

.area-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.area-links a {
  position: relative;
  display: grid;
  padding: 13px 30px 13px 0;
  border-bottom: 1px solid #d8d5cd;
  transition: color 0.2s ease, padding 0.2s ease;
}

.area-links a:nth-child(odd) {
  margin-right: 18px;
}

.area-links a:hover,
.area-links a[aria-current="page"] {
  padding-left: 7px;
  color: var(--orange-dark);
}

.area-links a[aria-current="page"] {
  background: rgba(217, 92, 50, 0.08);
}

.area-links span {
  font-size: 14px;
  font-weight: 800;
}

.area-links small {
  color: var(--muted);
  font-size: 10px;
}

.area-links b {
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--orange);
}

.empty-search {
  padding: 25px;
  border: 1px dashed #c7c2b7;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro p {
  color: var(--muted);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary b {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest-50);
  color: var(--forest-800);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 50px 22px 0;
  margin: 0;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(var(--max-width), calc(100% - 40px));
  padding: 18px 0;
  margin-inline: auto;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--orange-dark);
}

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

.district-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 6vw, 76px);
  align-items: start;
  min-height: 630px;
}

.district-hero > .hero-slideshow {
  bottom: auto;
  height: 650px;
}

.district-hero .hero-copy-wrap {
  width: min(760px, 58vw);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.district-hero .hero-copy-wrap > p {
  max-width: 610px;
}

.district-breadcrumbs {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: max(24px, calc((100% - var(--max-width)) / 2));
  width: auto;
  max-width: calc(100% - 48px);
  padding: 10px 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 47, 42, 0.48);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(1, 29, 26, 0.16);
  backdrop-filter: blur(8px);
}

.district-breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
}

.district-breadcrumbs a:hover,
.district-breadcrumbs strong {
  color: var(--white);
}

.district-hero-card {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.card-kicker {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.district-hero-card h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4vw, 48px);
}

.district-hero-card > p {
  color: var(--muted);
  font-size: 14px;
}

.district-hero-card ul {
  display: grid;
  gap: 9px;
  padding: 19px 0;
  margin: 0 0 19px;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.district-hero-card li {
  display: flex;
  gap: 10px;
}

.district-hero-card small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  text-align: center;
}

.district-hero-card small a {
  color: var(--forest-800);
  font-weight: 800;
}

.district-neighborhoods-card {
  display: block;
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.hero-neighborhoods-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.district-neighborhoods-card h2 {
  margin: 8px 0 0;
  color: var(--forest-900);
  font-size: clamp(30px, 3.2vw, 42px);
}

.hero-neighborhood-count {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--forest-50);
  color: var(--forest-800);
  font-size: 11px;
  font-weight: 850;
}

.district-neighborhoods-card > p {
  margin: 15px 0 17px;
  font-size: 13px;
  line-height: 1.55;
}

.district-neighborhoods-card .hero-neighborhood-list {
  display: grid;
  padding: 4px 0;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: 8px;
  border: 0;
  list-style: none;
}

.district-neighborhoods-card .hero-neighborhood-item {
  display: block;
  min-width: 0;
  padding: 10px 9px;
  border: 1px solid #e1dfd5;
  border-radius: 11px;
  background: var(--cream);
  color: var(--forest-900);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-neighborhood-cta {
  display: flex;
  padding: 13px 3px 0;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--forest-900);
  font-size: 13px;
  font-weight: 850;
}

.hero-neighborhood-cta b {
  color: var(--orange-dark);
  font-size: 18px;
}

.local-neighborhoods {
  padding: 19px 0 0;
  margin-top: 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.local-neighborhoods strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.local-neighborhoods p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.local-content {
  position: relative;
  display: block;
  padding: clamp(42px, 5vw, 68px);
  margin-block: clamp(54px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid #d6e6df;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 10%, rgba(217, 92, 50, 0.13), transparent 27%),
    linear-gradient(135deg, #eff8f4 0%, #fffaf4 100%);
  box-shadow: 0 24px 60px rgba(16, 63, 56, 0.09);
}

.local-content::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(28, 123, 105, 0.08);
  border-radius: 50%;
  content: "";
}

.local-main {
  position: relative;
  z-index: 1;
}

.local-main h2 {
  max-width: 900px;
  color: var(--forest-950);
}

.local-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: 30px;
}

.local-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.local-feature-grid article {
  display: grid;
  min-height: 150px;
  padding: 21px;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  border: 1px solid rgba(16, 63, 56, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(16, 63, 56, 0.06);
}

.local-feature-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.local-feature-grid strong {
  display: block;
  margin: 3px 0 8px;
  color: var(--forest-900);
  font-size: 14px;
  line-height: 1.3;
}

.local-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.local-highlight {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 24px;
  margin-top: 18px;
  border-left: 5px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: var(--forest-900);
}

.local-highlight span {
  color: #ffb08b;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.local-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.local-detail-button {
  gap: 22px;
  min-width: min(100%, 320px);
  margin-top: 22px;
}

.local-detail-button span {
  font-size: 20px;
  line-height: 1;
}

.district-page .services-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - var(--max-width)) / 2));
  background: #f5f7f5;
}

.district-quote {
  padding-top: 90px;
}

.phone-panel {
  display: grid;
  margin-top: 30px;
}

.phone-panel span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-panel a {
  color: var(--forest-900);
  font-family: Georgia, serif;
  font-size: 36px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
  min-height: 660px;
  padding: clamp(72px, 8vw, 112px) max(24px, calc((100% - var(--max-width)) / 2));
}

.service-hero h1 {
  font-size: clamp(46px, 5.5vw, 72px);
}

.service-hero-visual {
  position: relative;
  min-height: 510px;
}

.service-hero-visual > img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-hero-visual > div {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: grid;
  max-width: 290px;
  padding: 19px 21px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.service-hero-visual span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-hero-visual strong {
  margin-top: 4px;
  font-size: 14px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.service-detail-intro h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.service-detail-intro p,
.service-pricing > div > p {
  color: var(--muted);
  font-size: 16px;
}

.service-check-grid {
  display: grid;
  gap: 14px;
}

.service-check {
  position: relative;
  padding: 25px 25px 25px 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-check > span {
  position: absolute;
  left: 24px;
  top: 24px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 24px;
}

.service-check h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.service-check p,
.service-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-steps {
  padding: clamp(80px, 9vw, 125px) max(20px, calc((100% - var(--max-width)) / 2));
  background: var(--forest-950);
  color: var(--white);
}

.service-steps-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 120px);
}

.service-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.service-step {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.service-step > span {
  color: #f4a680;
  font-family: Georgia, serif;
  font-size: 25px;
}

.service-step h3 {
  margin: 13px 0 8px;
  font-size: 19px;
}

.service-step p {
  color: rgba(255, 255, 255, 0.64);
}

.service-pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(250px, 0.62fr) minmax(310px, 0.58fr);
  gap: clamp(35px, 6vw, 75px);
  align-items: center;
}

.service-pricing ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-pricing li {
  display: flex;
  gap: 11px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.service-pricing li span {
  color: var(--orange);
}

.service-pricing aside {
  padding: 29px;
  border-radius: var(--radius);
  background: var(--forest-50);
}

.service-pricing aside strong {
  font-size: 19px;
}

.service-pricing aside p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.service-quote {
  padding-top: 25px;
}

.info-hero {
  padding: clamp(90px, 10vw, 145px) max(24px, calc((100% - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 85% 20%, rgba(76, 151, 132, 0.22), transparent 30%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900));
  color: var(--white);
}

.info-hero h1 {
  max-width: 970px;
  font-size: clamp(46px, 6vw, 76px);
}

.info-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.info-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 120px);
}

.prose p,
.contact-details > div > p {
  color: var(--muted);
  font-size: 17px;
}

.value-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 10px;
}

.value-grid article,
.contact-grid article {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-grid article > span,
.contact-grid article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-grid h2,
.contact-grid h2 {
  margin: 13px 0;
  font-size: 31px;
}

.value-grid p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-grid {
  padding-top: clamp(75px, 8vw, 105px);
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: end;
  padding-block: clamp(70px, 8vw, 105px);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  top: 50%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-hero > * {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  max-width: 820px;
  margin: 13px 0 22px;
}

.contact-hero-copy > p {
  max-width: 680px;
}

.contact-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.contact-hero-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 750;
}

.contact-hero-card {
  display: grid;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 60px rgba(1, 29, 26, 0.2);
  backdrop-filter: blur(12px);
}

.contact-hero-card > span {
  color: #f2a17c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-hero-card > strong {
  margin: 11px 0 23px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.18;
}

.contact-channels {
  padding-top: clamp(75px, 8vw, 110px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.contact-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
  margin-bottom: 38px;
}

.contact-section-heading h2 {
  max-width: 760px;
  margin: 12px 0 0;
}

.contact-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.contact-channel-card {
  display: flex;
  min-width: 0;
  min-height: 335px;
  padding: clamp(25px, 3vw, 34px);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-channel-primary {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 90% 10%, rgba(76, 151, 132, 0.24), transparent 34%),
    var(--forest-950);
  color: var(--white);
}

.contact-channel-secondary {
  background:
    radial-gradient(circle at 90% 10%, rgba(226, 86, 42, 0.1), transparent 34%),
    var(--cream);
  color: var(--forest-950);
}

.contact-channel-whatsapp {
  border-color: #c7e7d4;
  background:
    radial-gradient(circle at 90% 10%, rgba(28, 157, 87, 0.16), transparent 35%),
    #edf8f1;
  color: var(--forest-950);
}

.contact-channel-kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-channel-primary .contact-channel-kicker {
  color: #f2a17c;
}

.contact-channel-secondary .contact-channel-kicker {
  color: var(--orange-dark);
}

.contact-channel-whatsapp .contact-channel-kicker {
  color: #147843;
}

.contact-channel-number {
  display: block;
  margin-top: 18px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.5vw, 37px);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-channel-card > p {
  margin: 18px 0 24px;
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-channel-primary > p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-channel-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--white);
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 850;
}

.contact-channel-secondary .contact-channel-button {
  background: var(--orange);
  color: var(--white);
}

.contact-channel-whatsapp .contact-channel-button {
  background: #1c9d57;
  color: var(--white);
}

.contact-channel-button b {
  font-size: 18px;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
  padding-bottom: clamp(80px, 9vw, 125px);
}

.contact-support-grid > article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.contact-support-grid h2 {
  max-width: 550px;
  margin: 13px 0 25px;
  color: var(--forest-950);
  font-size: clamp(29px, 3.4vw, 43px);
}

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

.contact-region-list > span {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--forest-50);
  color: var(--muted);
  font-size: 13px;
}

.contact-region-list b {
  color: var(--forest-900);
  font-size: 14px;
}

.contact-email-link {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--forest-900);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-email-link b {
  flex: 0 0 auto;
  color: var(--orange-dark);
}

.contact-support-grid > article > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-grid-simple {
  padding-bottom: clamp(80px, 9vw, 125px);
}

.contact-grid-simple article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.contact-grid-simple .contact-value {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-grid-simple a.contact-value:hover {
  color: var(--orange-dark);
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 120px);
  padding-top: 20px;
}

.contact-details dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-details dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.legal-content {
  max-width: 880px;
}

.legal-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 13px;
  color: var(--forest-900);
  font-size: 29px;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--orange-dark);
  font-weight: 800;
}

.legal-note {
  padding: 19px;
  margin-top: 30px !important;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  font-size: 13px;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 65px max(24px, calc((100% - var(--max-width)) / 2));
  background: var(--orange);
  color: var(--white);
}

.closing-cta h2 {
  max-width: 750px;
  margin-bottom: 12px;
  font-size: clamp(36px, 4.2vw, 54px);
}

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

.closing-actions {
  display: flex;
  gap: 10px;
}

.closing-actions .button-whatsapp {
  background: var(--forest-900);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: clamp(35px, 7vw, 85px);
  padding: 65px max(24px, calc((100% - var(--max-width)) / 2));
  background: var(--forest-950);
  color: var(--white);
}

.footer-brand {
  display: block;
  width: 190px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.footer-main p {
  max-width: 310px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-business-name {
  display: block;
  margin-top: 17px;
  font-size: 14px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #f1a37f;
  font-size: 13px;
  font-weight: 800;
}

.site-footer > div:not(.footer-main) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer > div > strong {
  margin-bottom: 8px;
  color: #f1a37f;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer > div > a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

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

.footer-preference {
  width: max-content;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: left;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px max(24px, calc((100% - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.mobile-actions {
  display: none;
}

.not-found {
  display: grid;
  justify-items: center;
  min-height: 62vh;
  padding: 110px 20px;
  background: var(--cream);
  text-align: center;
}

.not-found > span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.not-found h1 {
  margin: 18px 0;
  color: var(--forest-900);
}

.not-found p {
  max-width: 600px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .district-hero .hero-copy-wrap {
    width: min(760px, 100%);
    margin-inline: auto;
    text-align: center;
  }

  .district-hero .hero-copy-wrap > p {
    margin-inline: auto;
  }

  .district-hero .hero-actions {
    justify-content: center;
  }

  .district-hero .local-neighborhoods {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .district-neighborhoods-card .hero-neighborhood-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-phone {
    min-width: 154px;
  }

  .header-phone strong {
    font-size: 14px;
  }

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

  .home-hero-copy {
    width: min(720px, 64vw);
  }

  .home-hero-service-card {
    width: min(330px, 31vw);
    padding: 21px;
  }

  .hero-note {
    right: 0;
  }

  .trust-strip > div {
    padding: 17px 14px;
  }

  .trust-strip > div > span {
    font-size: 22px;
  }

  .trust-strip strong {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .district-hero > .hero-slideshow {
    height: 760px;
  }

  .hero-slide {
    background-position: 70% center;
  }

  .hero-slideshow::after {
    background:
      linear-gradient(180deg, rgba(5, 47, 42, 0.56) 0%, rgba(5, 47, 42, 0.73) 62%, rgba(5, 47, 42, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 47, 42, 0.58), rgba(5, 47, 42, 0.18));
  }

  .district-hero .hero-copy-wrap {
    min-height: 0;
    margin-inline: 0;
    text-align: left;
  }

  .district-hero .hero-copy-wrap > p {
    margin-inline: 0;
  }

  .district-hero .hero-actions {
    justify-content: flex-start;
  }

  .district-hero .local-neighborhoods {
    width: 100%;
    margin-inline: 0;
  }

  .district-breadcrumbs {
    top: 18px;
    left: 20px;
    max-width: calc(100% - 40px);
    padding: 8px 11px;
    border-radius: 12px;
    font-size: 10px;
  }

  .district-neighborhoods-card .hero-neighborhood-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    width: 174px;
    height: 62px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .header-phone {
    grid-column: 2;
    grid-row: 1;
    min-width: 145px;
    padding: 8px 13px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-height) - 20px);
    padding: 10px 16px 18px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-9px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-dropdown > button {
    width: 100%;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .region-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .region-menu {
    display: grid;
    transform: none;
  }

  .home-hero,
  .district-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero-copy {
    width: min(720px, 100%);
    min-height: 0;
  }

  .home-hero-service-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
  }

  .hero-copy-wrap {
    max-width: 720px;
  }

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

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip > div:nth-child(3) {
    border-left: 0;
  }

  .trust-strip > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .quality-section,
  .process-section,
  .quote-section,
  .faq-section,
  .local-content,
  .service-hero,
  .service-detail,
  .service-steps-inner,
  .service-pricing,
  .info-columns,
  .contact-details,
  .contact-hero,
  .contact-section-heading,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    align-items: start;
  }

  .contact-hero-card {
    width: min(560px, 100%);
  }

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

  .contact-channel-whatsapp {
    grid-column: 1 / -1;
    min-height: 285px;
  }

  .service-hero-visual {
    width: min(620px, 100%);
  }

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

  .quality-visual {
    min-height: 520px;
  }

  .quality-visual > img {
    min-height: 520px;
  }

  .process-section {
    gap: 35px;
  }

  .quote-copy {
    max-width: 680px;
  }

  .quote-card {
    width: min(600px, 100%);
  }

  .area-groups {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    max-width: 620px;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

@media (max-width: 640px) {
  .district-neighborhoods-card {
    padding: 24px 20px;
  }

  .district-neighborhoods-card .hero-neighborhood-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-neighborhoods-heading {
    gap: 12px;
  }

  .district-neighborhoods-card h2 {
    font-size: 29px;
  }

  .hero-neighborhood-count {
    padding: 6px 9px;
    font-size: 10px;
  }

  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 92px;
    font-size: 15px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 24px);
  }

  .brand {
    width: 145px;
    height: 54px;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 46px;
    margin-left: auto;
  }

  .local-bar {
    padding: 6px 12px;
    font-size: 9px;
  }

  .home-hero,
  .district-hero {
    gap: 42px;
    padding: 64px 20px 70px;
  }

  .home-hero {
    padding-top: 72px;
  }

  .home-hero-copy h1 {
    font-size: clamp(45px, 13vw, 60px);
  }

  .home-hero-copy .hero-points {
    width: 100%;
  }

  .home-hero-service-card {
    padding: 21px 19px;
    border-radius: 18px;
  }

  .home-hero-service-card > strong {
    font-size: 27px;
  }

  .hero-slide-status {
    right: 20px;
    bottom: 18px;
  }

  .hero-slide-status i {
    width: 18px;
  }

  .hero-slide-status i.is-active {
    width: 34px;
  }

  .district-hero {
    padding-top: 82px;
  }

  .hero-copy-wrap > p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-image-frame {
    left: 0;
    border-radius: 42% 42% var(--radius) var(--radius);
  }

  .hero-stamp {
    left: -8px;
    top: 18px;
    width: 96px;
    height: 96px;
  }

  .hero-note {
    right: 5px;
    bottom: 18px;
    padding: 12px 14px;
  }

  .home-hero-flow {
    align-items: flex-start;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .trust-strip > div {
    min-height: 76px;
  }

  .trust-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    width: calc(100% - 36px);
    padding-block: 76px;
  }

  .local-content {
    padding: 30px 20px;
    margin-block: 42px;
    border-radius: 24px;
  }

  .local-copy,
  .local-feature-grid {
    grid-template-columns: 1fr;
  }

  .local-feature-grid article {
    min-height: auto;
  }

  .local-detail-button {
    width: 100%;
    min-width: 0;
  }

  .section-heading,
  .areas-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-hero {
    gap: 44px;
    padding: 64px 20px 76px;
  }

  .service-hero-visual,
  .service-hero-visual > img {
    min-height: 380px;
    height: 380px;
  }

  .service-hero-visual > div {
    right: 8px;
    bottom: 18px;
  }

  .service-step-grid,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-steps {
    padding: 75px 20px;
  }

  .service-pricing aside {
    padding: 25px 21px;
  }

  .info-hero {
    padding: 78px 20px;
  }

  .info-hero p {
    font-size: 17px;
  }

  .contact-details dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-hero {
    gap: 34px;
    padding-block: 64px 72px;
  }

  .contact-hero::before {
    right: -140px;
    width: 300px;
    height: 300px;
  }

  .contact-hero h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .contact-hero-card {
    padding: 23px 20px;
    border-radius: 19px;
  }

  .contact-hero-card > strong {
    font-size: 24px;
  }

  .contact-channels {
    padding-top: 68px;
  }

  .contact-section-heading {
    gap: 20px;
    margin-bottom: 28px;
  }

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

  .contact-channel-whatsapp {
    grid-column: auto;
  }

  .contact-channel-card {
    min-height: 290px;
    padding: 25px 22px;
    border-radius: 19px;
  }

  .contact-support-grid > article {
    padding: 27px 22px;
    border-radius: 19px;
  }

  .service-image {
    height: 220px;
  }

  .quality-section {
    padding-top: 15px;
  }

  .quality-visual,
  .quality-visual > img {
    min-height: 390px;
  }

  .quality-visual > img {
    width: calc(100% - 18px);
  }

  .quality-visual > div {
    right: 0;
    bottom: 18px;
  }

  .process-section {
    padding: 75px 20px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .process-list li > span {
    width: 42px;
    height: 42px;
  }

  .quote-section {
    width: calc(100% - 36px);
  }

  .quote-facts {
    gap: 30px;
  }

  .quote-card form {
    grid-template-columns: 1fr;
  }

  .quote-card .button,
  .quote-phone {
    grid-column: auto;
  }

  .areas-section,
  .district-page .services-section {
    width: 100%;
    padding-inline: 18px;
  }

  .area-search {
    width: 100%;
  }

  .area-links {
    grid-template-columns: 1fr;
  }

  .area-links a:nth-child(odd) {
    margin-right: 0;
  }

  .breadcrumbs {
    width: calc(100% - 32px);
    overflow: hidden;
    white-space: nowrap;
  }

  .district-hero-card {
    padding: 27px 21px;
  }

  .local-highlight {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phone-panel a {
    font-size: 30px;
  }

  .closing-cta {
    padding: 60px 20px;
  }

  .closing-actions {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
    padding: 55px 20px;
  }

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

  .site-footer > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    padding: 17px 20px;
  }

  .mobile-actions {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .mobile-actions .mobile-action {
    display: grid;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    place-items: center;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 10px 26px rgba(4, 39, 35, 0.3);
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-actions .mobile-action:active {
    transform: translateY(2px) scale(0.97);
  }

  .mobile-action-phone-primary {
    background: var(--orange);
  }

  .mobile-action-phone-secondary {
    background: #68706d;
  }

  .mobile-actions .mobile-action-whatsapp {
    background: #1c9d57;
  }

  .mobile-action-symbol {
    display: grid;
    place-items: center;
  }

  .mobile-action-icon {
    width: 29px;
    height: 29px;
    fill: currentColor;
  }

  .mobile-action-whatsapp-icon {
    width: 31px;
    height: 31px;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slide {
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
    transform: scale(1.015);
  }
}
