:root {
  --blue: #26347c;
  --blue-dark: #101941;
  --blue-soft: #eef2ff;
  --red: #ef3340;
  --red-dark: #c91d2e;
  --ink: #111827;
  --muted: #5f6675;
  --surface: #f5f7fb;
  --border: #dfe4ee;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  --body-font: "Manrope", Arial, Helvetica, sans-serif;
  --heading-font: "Montserrat", "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body-font);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  display: block;
  height: auto;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: 2.65rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.15rem;
}

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  width: min(850px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 99999;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 300px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.16);
}

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

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-nav > a,
.dropdown > button,
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--heading-font);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
  padding: 10px 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header.scrolled .desktop-nav > a,
.site-header.scrolled .dropdown > button,
.site-header.scrolled .nav-phone,
.site-header.menu-open .desktop-nav > a,
.site-header.menu-open .dropdown > button,
.site-header.menu-open .nav-phone {
  color: var(--blue-dark);
  text-shadow: none;
}

.desktop-nav > a.active,
.desktop-nav > a:hover,
.dropdown > button:hover,
.nav-phone:hover {
  color: var(--red);
}

.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
}

.dropdown-panel a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  color: var(--blue);
  border-color: var(--border);
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 0 0 18px;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: var(--blue-dark);
  font-weight: 700;
  border-top: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

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

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline-dark {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline-dark:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button-row.left {
  justify-content: flex-start;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon.fill {
  fill: currentColor;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.home-hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 128px 0 76px;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 126px 0 70px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blue-dark);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 25, 65, 0.86), rgba(16, 25, 65, 0.48) 52%, rgba(239, 51, 64, 0.32));
}

.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.home-hero-content {
  max-width: 840px;
  text-align: center;
}

.home-hero-content > span,
.page-hero-content > span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.83rem;
  font-weight: 800;
}

.home-hero-content > span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero h1 {
  max-width: 940px;
  margin: 0 auto;
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.3), 0 10px 32px rgba(16, 25, 65, 0.7);
}

.page-hero h1 {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.24), 0 8px 30px rgba(16, 25, 65, 0.68);
}

.home-hero p,
.page-hero p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.page-hero-content {
  max-width: 780px;
}

.page-hero-content p {
  margin-left: 0;
}

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

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(620px, 100%);
  margin: 44px auto 0;
}

.hero-stats div,
.stats-grid div {
  text-align: center;
}

.hero-stats strong,
.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: 2.15rem;
  line-height: 1;
}

.hero-stats span,
.stats-grid span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
}

.info-strip {
  background: var(--red);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  font-weight: 800;
  font-size: 0.94rem;
}

.strip-grid span,
.strip-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
  text-align: center;
}

.section {
  padding: 84px 0;
}

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

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-blue .section-heading span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.section-blue .section-heading h2,
.section-blue .section-heading p {
  color: var(--white);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-center {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--blue-dark);
  text-shadow: 0 0 20px rgba(38, 52, 124, 0.12);
}

.section-heading p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.reverse > :first-child {
  order: 2;
}

.split p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.media-panel img,
.service-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}

.media-panel {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 800;
}

.check-list .icon {
  margin-top: 4px;
  color: var(--red);
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.service-card img {
  height: 220px;
  border-radius: 0;
}

.service-card div {
  padding: 24px;
}

.service-card h3,
.feature-cards h3,
.value-grid h3,
.process-grid h3,
.contact-card h3,
.hours-card h2,
.hours-card h3,
.service-note h3 {
  color: var(--blue-dark);
}

.service-card p,
.feature-cards p,
.value-grid p,
.process-grid p,
.contact-card p,
.service-note p,
.related-services p {
  color: var(--muted);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--red);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.feature-cards,
.value-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-cards article,
.value-grid article,
.process-grid article,
.hours-card,
.contact-card,
.service-note {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.process-grid article {
  background: rgba(255, 255, 255, 0.98);
}

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.home-process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 58%, #3548a1 100%);
}

.home-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 44% 46%, transparent 46% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.home-process .container {
  position: relative;
  z-index: 1;
}

.premium-process {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.premium-process::before {
  display: none;
}

.premium-process article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.premium-process article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--white), var(--blue-soft));
}

.premium-process strong {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff6b75);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 28px rgba(239, 51, 64, 0.62);
}

.premium-process h3 {
  color: var(--white);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.premium-process p {
  color: rgba(255, 255, 255, 0.82);
}

.service-area-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.area-map-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: stretch;
}

.area-panel,
.map-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.09);
}

.area-panel {
  padding: 28px;
}

.area-panel h3,
.map-copy h3 {
  color: var(--blue-dark);
}

.area-panel p,
.map-copy p {
  color: var(--muted);
}

.area-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.area-button {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--surface);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.area-button:hover,
.area-button.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(38, 52, 124, 0.2);
  transform: translateY(-2px);
}

.map-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.map-copy {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--border);
}

.map-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.before-after-section {
  background: linear-gradient(180deg, var(--surface), var(--white));
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  justify-items: center;
  gap: 28px;
  align-items: start;
}

.result-card {
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.1);
}

.result-media {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(360px, 44vw, 560px);
  background: #f0f3f8;
  overflow: hidden;
}

.result-media img,
.result-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.result-media video {
  background: #10131f;
}

.result-card-after .result-media {
  background: #10131f;
}

.result-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.22);
}

.result-copy {
  padding: 24px;
}

.result-copy h3 {
  color: var(--blue-dark);
}

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

.result-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.result-link:hover {
  background: var(--blue-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
}

.reviews-widget {
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question .icon {
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer > p {
  overflow: hidden;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}

.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.cta-inner {
  max-width: 780px;
}

.cta-inner p {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.quote-grid,
.contact-layout,
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 30px;
  align-items: start;
}

.quote-grid > *,
.contact-layout > *,
.service-detail-grid > * {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.quote-form-wrap {
  width: 100%;
  min-width: 0;
  min-height: 681px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.quote-form-wrap iframe,
.quote-form-wrap .ep-iFrameContainer,
.quote-form-wrap .ep-wrapper {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.detail-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.detail-list li,
.detail-list a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-list .icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  color: var(--red);
  background: #fff0f2;
  border-radius: 8px;
}

.detail-list strong,
.detail-list small {
  display: block;
}

.detail-list small {
  color: var(--muted);
}

.large .icon {
  width: 48px;
  height: 48px;
}

.stats-band {
  background: var(--blue);
}

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

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-pills span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 800;
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.hours-card dt {
  color: var(--blue-dark);
  font-weight: 800;
}

.hours-card dd {
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.service-note {
  background: var(--blue);
  color: var(--white);
}

.service-note h3,
.service-note p {
  color: var(--white);
}

.related-services {
  text-align: center;
}

.related-services > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.related-services a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 800;
  background: var(--white);
}

.site-footer {
  background: var(--blue-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1.2fr;
  gap: 34px;
  padding: 58px 0 44px;
}

.footer-brand {
  display: block;
  width: 250px;
  max-width: 100%;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-areas {
  margin-top: 18px;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  h1 {
    font-size: 4.15rem;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

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

  .site-header.menu-open .mobile-nav {
    display: block;
  }

  .brand {
    width: 230px;
  }

  .services-grid,
  .feature-grid,
  .split,
  .before-after-grid,
  .quote-grid,
  .contact-layout,
  .service-detail-grid,
  .area-map-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .reverse > :first-child {
    order: 0;
  }

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

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .home-hero {
    min-height: 82vh;
    padding-top: 112px;
  }

  .page-hero {
    min-height: 390px;
  }

  .brand {
    width: 200px;
  }

  .strip-grid,
  .hero-stats,
  .stats-grid,
  .feature-cards,
  .value-grid,
  .process-grid,
  .premium-process,
  .area-buttons,
  .two-column {
    grid-template-columns: 1fr;
  }

  .premium-process::before {
    display: none;
  }

  .premium-process article {
    min-height: auto;
  }

  .map-panel iframe {
    min-height: 330px;
  }

  .strip-grid {
    gap: 8px;
  }

  .section {
    padding: 62px 0;
  }

  .result-media {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

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

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .quote-form-wrap {
    min-height: 720px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 170px;
  }

  h1 {
    font-size: 2rem;
  }

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