: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);
}

.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));
}

.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: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 > div:last-child {
  position: relative;
  padding: 27px 26px 29px;
}

.service-card > 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 {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.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 {
  min-height: 630px;
}

.district-hero-card {
  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;
}

.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 {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  gap: clamp(50px, 8vw, 100px);
}

.local-main > p {
  color: var(--muted);
  font-size: 17px;
}

.local-highlight {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 22px;
  margin-top: 30px;
  border-left: 4px solid var(--orange);
  background: var(--cream);
}

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

.local-highlight p {
  margin: 0;
  font-size: 14px;
}

.neighborhood-card {
  align-self: start;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--forest-50);
}

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

.neighborhood-card h3 {
  margin: 9px 0 20px;
  font-size: 24px;
}

.neighborhood-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.neighborhood-card > div span {
  padding: 7px 10px;
  border: 1px solid #cbded7;
  border-radius: 999px;
  background: var(--white);
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 750;
}

.neighborhood-card p {
  margin: 22px 0 17px;
  color: var(--muted);
  font-size: 12px;
}

.neighborhood-card > a {
  display: flex;
  justify-content: space-between;
  color: var(--forest-900);
  font-size: 13px;
  font-weight: 850;
}

.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;
}

.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-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-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;
}

.consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 150;
  width: min(430px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.consent p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
}

.consent div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.consent button {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.consent .consent-accept {
  border-color: var(--forest-900);
  background: var(--forest-900);
  color: var(--white);
}

.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) {
  .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,
  .district-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 45px;
  }

  .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) {
  :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;
  }

  .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 {
    grid-template-columns: 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;
  }

  .neighborhood-card {
    width: min(580px, 100%);
  }

  .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) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 66px;
    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;
  }

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

  .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;
  }

  .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;
  }

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

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

  .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;
  }

  .neighborhood-card {
    padding: 26px 21px;
  }

  .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: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 66px;
    background: var(--white);
    box-shadow: 0 -8px 25px rgba(8, 45, 41, 0.14);
  }

  .mobile-actions a {
    display: grid;
    place-content: center;
    padding: 8px 12px;
    color: var(--forest-900);
    line-height: 1.2;
    text-align: center;
  }

  .mobile-actions a + a {
    background: #1c9d57;
    color: var(--white);
  }

  .mobile-actions span {
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
  }

  .mobile-actions strong {
    font-size: 14px;
  }

  .consent {
    bottom: 80px;
  }
}

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

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