:root {
  --ink: #111111;
  --muted: #6d706b;
  --line: #dfded8;
  --paper: #f6f3ed;
  --panel: #ffffff;
  --brand: #1b3428;
  --brand-dark: #0e1512;
  --accent: #c8874a;
  --accent-soft: #f0dfcc;
  --steel: #ebe9e3;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

main {
  overflow: hidden;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
}

.brand-logo img {
  width: 142px;
  height: auto;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-button span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.service-menu {
  min-width: 292px;
  padding: 10px 0;
  background: #000;
  border-color: #000;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 12px 14px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.94rem;
}

.service-menu a {
  display: block;
  padding: 14px 28px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.dropdown-menu a:hover {
  background: var(--paper);
}

.service-menu a:hover,
.submenu:hover > a,
.submenu:focus-within > a {
  background: #000;
  color: var(--accent);
}

.submenu {
  position: relative;
}

.submenu > a {
  position: relative;
  padding-right: 42px;
}

.submenu > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.submenu-menu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 300px;
  display: grid;
  padding: 10px 0;
  background: #000;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.submenu:hover .submenu-menu,
.submenu:focus-within .submenu-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  border: 0;
}

.phone-link {
  background: var(--brand-dark);
}

.nav-links .phone-link {
  color: #fff;
}

.button.secondary {
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-inner,
.section,
.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 118px 0 82px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--accent);
}

.eyebrow.dark {
  color: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 18px;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.65rem);
  font-weight: 800;
  text-transform: capitalize;
}

h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.75rem);
  font-weight: 800;
  text-transform: capitalize;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 700px;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  color: rgba(255, 255, 255, 0.84);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  width: min(980px, 100%);
  margin-top: 34px;
}

.trust-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.elementor-style-hero {
  position: relative;
  min-height: 760px;
  background: url("/assets/hero-home.webp") center / cover;
  color: #fff;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
}

.hero-layout {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  gap: 58px;
  align-items: center;
  padding: 80px 0;
}

.hero-copy {
  padding-top: 28px;
}

.hero-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hero-form-layout .hero-copy {
  padding-top: 0;
}

.estimate-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.lead-form-panel {
  padding: 0;
  overflow: hidden;
}

.lead-form-panel iframe {
  display: block;
  width: 100%;
  min-height: 735px;
  border: 0;
  background: #fff;
}

.estimate-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  text-align: center;
  text-transform: none;
}

.estimate-panel p {
  color: var(--muted);
  margin-top: 0;
  text-align: center;
}

.estimate-panel form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.estimate-panel input,
.estimate-panel select,
.estimate-panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--line);
  border-radius: 0;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.estimate-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.estimate-panel input:focus,
.estimate-panel select:focus,
.estimate-panel textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.panel-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.section {
  padding: 92px 0;
}

.section-head {
  padding-bottom: 30px;
}

.section-head > p:not(.eyebrow),
.section-head.compact > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head.compact {
  padding-bottom: 34px;
}

.section.tight {
  padding: 42px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.credibility-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.credibility-bar div {
  padding: 10px 26px;
  border-left: 1px solid var(--line);
}

.credibility-bar div:first-child {
  border-left: 0;
}

.credibility-bar span,
.process-cards span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.credibility-bar strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.credibility-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.intro-heading {
  text-align: center;
  max-width: 900px;
}

.intro-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-heading.compact {
  padding-bottom: 38px;
}

.intro-strip div {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.intro-strip strong,
.principles strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
}

.intro-strip span,
.principles span {
  color: var(--muted);
}

.steel-band {
  background: var(--steel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(23, 33, 27, 0.06);
}

a.card {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.service-feature-list {
  display: grid;
  gap: 0;
  padding-top: 0;
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}

.service-image-grid .image-card {
  grid-column: span 2;
}

.service-image-grid .image-card:nth-child(1),
.service-image-grid .image-card:nth-child(2) {
  grid-column: span 3;
}

.image-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #000;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

.image-card span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 28px;
  font-size: 1.45rem;
  font-weight: 800;
}

.image-card:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

.dark-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brand-dark);
  color: #fff;
}

.dark-split__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.dark-split__content {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}

.dark-split__content p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.78);
}

.text-link-light {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-weight: 800;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.2fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-feature:last-child {
  border-bottom: 1px solid var(--line);
}

.service-feature h3 {
  max-width: 390px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

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

.service-feature > a {
  white-space: nowrap;
  font-weight: 750;
}

.service-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.city-list a,
.pill {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.city-list a span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.service-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.info-panel {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.principles {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.principles div {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.principles div:last-child {
  border-bottom: 0;
}

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

.stat-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-list strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.info-panel p,
.info-panel li {
  color: rgba(255, 255, 255, 0.86);
}

.checklist {
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 9px;
}

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

.process-step {
  counter-increment: process;
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.process-cards article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 220px;
}

.process-cards p {
  color: var(--muted);
}

.process-step::before {
  content: counter(process);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

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

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--brand-dark);
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

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

.page-hero .section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.page-hero .hero-copy p {
  max-width: 850px;
  font-size: 1.12rem;
}

.cta {
  background: var(--brand);
  color: #fff;
}

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

.cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
}

.cta p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
}

.service-area-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-area-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 54px;
  align-items: center;
  background: #fff;
}

.service-area-section p:not(.eyebrow) {
  color: var(--muted);
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-pills li {
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 800;
}

.area-pills a {
  color: var(--ink);
  text-decoration: none;
}

.town-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48)),
    url("/assets/hero-home.webp") center / cover;
  color: #fff;
}

.town-hero .section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.town-hero .hero-copy p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.areas-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48)),
    url("/assets/area-noco.webp") center / cover;
  color: #fff;
}

.areas-hero .section {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 92px;
}

.areas-hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 4.45rem);
  line-height: 1.05;
  text-transform: none;
}

.areas-hero .hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

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

.area-image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.area-image-card.featured {
  grid-column: span 2;
  min-height: 360px;
}

.area-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.area-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
}

.area-image-card span {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  font-weight: 900;
}

.area-image-card:hover img,
.area-image-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.86;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.service-strip a {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.service-strip a:hover,
.service-strip a:focus-visible {
  background: #111;
  color: #fff;
}

.compact-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section.tight .compact-links,
.split .compact-links {
  margin-top: 22px;
}

.area-circle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 70px;
  column-gap: 72px;
  align-items: start;
}

.area-circle-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  text-align: center;
  background: transparent;
}

.area-circle-card::after {
  display: none;
}

.area-circle-card img {
  position: static;
  order: 4;
  width: min(300px, 84%);
  aspect-ratio: 1;
  height: auto;
  margin-top: 30px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.area-circle-card strong {
  order: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
}

.area-circle-card span {
  order: 2;
  position: static;
  z-index: auto;
  max-width: 360px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
}

.area-circle-card em {
  order: 3;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.area-circle-card:hover img,
.area-circle-card:focus-visible img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.area-circle-card:hover em,
.area-circle-card:focus-visible em {
  background: #111;
  color: #fff;
}

.expect-section {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.72)),
    url("/assets/service-bathroom.webp") center / cover;
  color: #fff;
}

.expect-section h2 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-transform: none;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.expect-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.expect-card span {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #ff8908;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.expect-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.expect-card p {
  max-width: 340px;
  margin: 0;
  color: #111;
  font-size: 1.02rem;
}

.expect-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.town-services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.town-services a {
  display: block;
  min-height: 100%;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 800;
}

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

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nearby-links a {
  padding: 10px 13px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}

.final-cta {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  padding: 56px;
  background: var(--brand);
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.readable {
  max-width: 860px;
}

.blog-content {
  margin-top: 28px;
  font-size: 1.08rem;
}

.blog-content p {
  margin-bottom: 18px;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  background: #0b0d0c;
  color: #fff;
  padding: 44px 0 0;
}

.footer-rich {
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer a {
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav {
    min-height: 64px;
    align-items: center;
    padding: 10px 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand-logo img {
    width: 118px;
  }

  .nav-toggle-button {
    display: inline-grid;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0 12px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links > a,
  .dropdown-toggle {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .nav-links .phone-link {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: #fff;
  }

  .elementor-style-hero,
  .hero-layout {
    min-height: auto;
  }

  .split,
  .grid,
  .grid.two,
  .footer-inner,
  .numbered-process,
  .trust-row,
  .intro-strip,
  .service-feature,
  .area-list,
  .hero-layout,
  .hero-form-layout,
  .credibility-bar,
  .service-image-grid,
  .dark-split,
  .process-cards,
  .service-area-section,
  .town-services,
  .area-card-grid,
  .service-strip,
  .expect-grid {
    grid-template-columns: 1fr;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 6px;
    border: 0;
    background: #111;
  }

  .dropdown-menu a {
    color: #fff;
  }

  .dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .service-menu {
    padding: 6px 0;
  }

  .submenu-menu {
    position: static;
    min-width: 100%;
    padding: 0 0 0 16px;
    border-left: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu > a::after {
    display: none;
  }

  .service-image-grid .image-card,
  .service-image-grid .image-card:nth-child(1),
  .service-image-grid .image-card:nth-child(2),
  .area-image-card.featured {
    grid-column: auto;
  }

  .areas-hero {
    min-height: auto;
  }

  .areas-hero .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .hero-layout {
    padding: 58px 0;
    gap: 30px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .estimate-panel {
    width: 100%;
    max-width: none;
  }

  .lead-form-panel > div,
  .lead-form-panel iframe {
    max-width: none !important;
  }

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

  .credibility-bar div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .credibility-bar div:first-child {
    border-top: 0;
  }

  .dark-split__image img {
    min-height: 360px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px;
  }

  .service-feature {
    gap: 14px;
  }

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

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

@media (max-width: 520px) {
  body {
    font-size: 0.98rem;
  }

  .hero-inner,
  .section,
  .footer-inner,
  .footer-bottom,
  .hero-layout {
    width: min(100% - 24px, 1240px);
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .lead {
    font-size: 1rem;
  }

  .elementor-style-hero {
    background-position: center top;
  }

  .hero-layout {
    padding: 42px 0 48px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button,
  .phone-link {
    width: 100%;
  }

  .lead-form-panel > div {
    min-height: 650px !important;
  }

  .lead-form-panel iframe {
    min-height: 650px !important;
  }

  .areas-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .home-hero__content,
  .hero-inner {
    padding-top: 70px;
  }

  .image-card {
    min-height: 260px;
  }

  .area-image-card,
  .area-image-card.featured {
    min-height: 240px;
  }

  .area-circle-grid {
    row-gap: 44px;
  }

  .area-circle-card img {
    width: min(250px, 82%);
    margin-top: 22px;
  }

  .service-strip a {
    min-height: 64px;
  }

  .expect-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .dark-split__content {
    padding: 38px 20px;
  }

  .dark-split__image img {
    min-height: 260px;
  }

  .city-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-logo {
    width: 126px;
  }
}
