:root {
  --ink: #17212b;
  --muted: #5a6570;
  --line: #d8e0e6;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --blue: #1f5fbf;
  --blue-dark: #173d56;
  --red: #d71920;
  --green: #2e7d32;
  --focus: #ffbf47;
  --shadow: 0 16px 42px rgba(23, 33, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.quick-card span,
.service-card p,
.review-card p,
.value-card span,
.contact-card p,
.zone-list p,
.zone-list li,
.faq-teaser p,
.faq-card p,
.highlight-inner span,
.service-area-banner span,
.note-section p,
.legal-content p {
  font-size: 1.055em;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:focus,
label:focus {
  outline: 4px solid var(--focus);
  outline-offset: 3px;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 12px 4vw;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 24px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: var(--blue);
}

.main-nav .theme-toggle-mobile {
  display: none;
}

.faq-label-short {
  display: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 72px;
  height: 40px;
  padding: 5px 8px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(23, 33, 43, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle[aria-pressed="true"]::before {
  transform: translateX(32px);
}

.theme-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.theme-sun {
  display: grid;
  place-items: center;
  color: #f4b400;
  font-size: 18px;
  line-height: 1;
}

.theme-moon {
  display: grid;
  place-items: center;
  color: #173d56;
  font-size: 19px;
  line-height: 1;
}

.theme-dark {
  --ink: #f2f6f8;
  --muted: #c2cbd3;
  --line: #314455;
  --paper: #101820;
  --soft: #182430;
  --blue: #66a2ff;
  --blue-dark: #0f2a3b;
  --green: #55a861;
  background: var(--paper);
}

.theme-dark .site-header {
  background: rgba(16, 24, 32, 0.97);
}

.theme-dark .brand,
.theme-dark .main-nav a,
.theme-dark .contact-strip a,
.theme-dark .contact-strip span,
.theme-dark .maps-link {
  color: var(--ink);
}

.theme-dark .main-nav a:hover,
.theme-dark .main-nav a.active {
  color: #fff;
  background: #275fae;
}

.theme-dark .main-nav {
  background: transparent;
}

.theme-dark .quick-card,
.theme-dark .service-card,
.theme-dark .review-card,
.theme-dark .value-card,
.theme-dark .contact-card,
.theme-dark .faq-card,
.theme-dark .editorial-gallery figure,
.theme-dark .review-pill,
.theme-dark .google-rating,
.theme-dark .partner-panel img,
.theme-dark .maps-link,
.theme-dark .review-cta-button {
  background: #14202a;
  border-color: var(--line);
}

.theme-dark .partner-panel,
.theme-dark .contact-strip div,
.theme-dark .cta-section,
.theme-dark .note-section p,
.theme-dark .page-hero,
.theme-dark .zone-section,
.theme-dark .service-area-banner {
  background: var(--soft);
}

.theme-dark .reviews-band {
  background: var(--paper);
}

.theme-dark .theme-toggle::before {
  background: #223243;
}

.theme-dark .menu-button {
  border-color: var(--line);
  background: var(--soft);
}

.theme-dark .menu-button span {
  background: var(--ink);
}

.theme-dark .contact-card.large {
  color: var(--ink);
  background: #1c2a35;
  border-color: #455d6f;
}

.theme-dark .contact-card.large h2,
.theme-dark .contact-card.large p {
  color: var(--ink);
}

.theme-dark .contact-card.large .big-contact {
  color: #ff5960;
}

.theme-dark .contact-card.large a:not(.big-contact) {
  color: #8fbdff;
}

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 26, 0.88), rgba(7, 16, 26, 0.5), rgba(7, 16, 26, 0.18));
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 78px 5vw;
}

.hero-content p {
  max-width: 720px;
  font-size: 22px;
}

.eyebrow {
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcdcf;
}

.hero-actions,
.quick-grid,
.service-grid,
.review-grid,
.values-grid,
.contact-page-grid,
.zone-layout,
.split-section,
.highlight-inner,
.site-footer {
  display: grid;
  gap: 22px;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(220px, max-content));
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 24px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.hero-call-mobile {
  display: none;
}

.button.primary {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.button.secondary {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.green {
  margin-top: 12px;
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

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

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.contact-strip div {
  min-height: 112px;
  padding: 24px 5vw;
  background: var(--soft);
}

.contact-strip strong,
.contact-strip a,
.contact-strip span {
  display: block;
}

.contact-strip strong {
  color: var(--muted);
  font-size: 15px;
  text-transform: uppercase;
}

.contact-strip a,
.contact-strip span {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.service-area-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 5vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-area-banner div {
  max-width: 760px;
}

.service-area-banner strong,
.service-area-banner span {
  display: block;
}

.service-area-banner strong {
  margin-bottom: 4px;
  font-size: 24px;
}

.service-area-banner span {
  color: var(--muted);
}

.section {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.quick-grid,
.service-grid,
.review-grid,
.values-grid,
.contact-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-card,
.service-card,
.review-card,
.value-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.06);
}

.quick-card {
  min-height: 164px;
  padding: 30px;
  color: var(--ink);
  text-decoration: none;
}

.quick-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.quick-card span {
  color: var(--muted);
}

.quick-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.trust-section {
  padding-top: 0;
}

.split-section {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-section.reverse img {
  order: -1;
}

.partner-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.partner-panel img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.text-link {
  font-weight: 900;
}

.highlight-band {
  padding: 34px 5vw;
  color: #fff;
  background: var(--blue-dark);
}

.reviews-band {
  overflow: visible;
  padding: 56px 0 62px;
  border-block: 1px solid var(--line);
  background: #fff;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, 90vw);
  margin: 0 auto 26px;
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.google-rating img {
  width: 108px;
  height: auto;
}

.review-cta {
  display: grid;
  gap: 8px;
  min-width: 210px;
}

.review-cta span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.review-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.review-cta-button:hover {
  color: #fff;
  background: var(--blue);
}

.review-cta-mobile {
  display: none;
}

.stars {
  color: #f4b400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
}

.review-cta-mobile {
  position: relative;
  z-index: 3;
}

.reviews-band.reviews-touch-drag .reviews-marquee {
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 18px;
  padding-inline: 5vw;
  animation: reviews-scroll 150s linear infinite;
  will-change: transform;
}

.reviews-band.reviews-touch-drag .reviews-track {
  animation: none;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.reviews-band.reviews-touch-drag.is-dragging .reviews-track {
  cursor: grabbing;
}

@media (hover: hover) and (pointer: fine) {
  .reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
  }
}

.review-pill {
  flex: 0 0 350px;
  min-height: 250px;
  max-height: 250px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.08);
}

.review-pill div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.review-pill strong {
  font-size: 19px;
}

.review-pill p {
  margin-bottom: 8px;
}

.review-text {
  display: -webkit-box;
  min-height: 4.8em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-pill.is-expanded {
  max-height: none;
  min-height: 250px;
  overflow: visible;
  z-index: 2;
}

.review-pill.is-expanded .review-text {
  display: block;
  min-height: 0;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.review-toggle {
  display: inline;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .review-pill.is-expanded .review-toggle {
    display: none;
  }
}

.reviews-band.reviews-mobile-paused .reviews-track {
  animation-play-state: paused;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.google-word,
.maps-word {
  display: inline-flex;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.google-word span:nth-child(1),
.google-word span:nth-child(4) {
  color: #4285f4;
}

.google-word span:nth-child(2),
.google-word span:nth-child(6) {
  color: #db4437;
}

.google-word span:nth-child(3) {
  color: #f4b400;
}

.google-word span:nth-child(5) {
  color: #0f9d58;
}

.maps-word {
  color: #5f6368;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

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

.highlight-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.highlight-inner div {
  padding: 20px;
  border-left: 4px solid #bce8c0;
}

.highlight-inner strong,
.highlight-inner span {
  display: block;
}

.highlight-inner strong {
  font-size: 26px;
}

.highlight-inner span {
  color: #dbe8ef;
}

.zone-section {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.highlight-band + .zone-section {
  border-top: 1px solid var(--line);
}

.zone-section .section-heading,
.zone-layout {
  width: min(1160px, 90vw);
  margin-inline: auto;
}

.zone-section .section-heading {
  max-width: none;
}

.zone-layout {
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.72fr);
  align-items: center;
}

.zone-layout-centered {
  display: flex;
  justify-content: center;
}

.zone-layout-centered .zone-map {
  width: min(100%, 860px);
}

.zone-map,
.content-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo {
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.zone-list ul {
  padding-left: 24px;
  font-weight: 900;
}

.page-hero {
  padding: 84px 5vw 72px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), #245f76);
}

.page-hero.compact {
  padding-block: 60px;
}

.page-hero p {
  max-width: 780px;
  font-size: 21px;
}

.page-hero .eyebrow {
  color: #bce8c0;
}

.service-card,
.review-card,
.contact-card {
  padding: 28px;
}

.card-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.service-card h2,
.review-card h2,
.contact-card h2 {
  font-size: 25px;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 28px;
}

.gallery-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

.editorial-gallery figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.08);
}

.editorial-gallery .gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 660px;
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 16, 26, 0), rgba(7, 16, 26, 0.86));
}

.editorial-gallery figcaption strong,
.editorial-gallery figcaption span {
  display: block;
}

.editorial-gallery figcaption strong {
  font-size: 21px;
  line-height: 1.2;
}

.editorial-gallery figcaption span {
  color: #eef3f6;
  font-size: 16px;
  line-height: 1.35;
}

.cta-section {
  padding: 34px;
  border-radius: 8px;
  background: var(--soft);
}

.note-section {
  padding-top: 0;
  color: #4d5964;
  font-size: 17px;
}

.note-section p {
  margin-bottom: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--line);
  background: var(--soft);
}

.simple-list {
  margin: 18px 0;
  padding-left: 24px;
  font-weight: 800;
}

.simple-list li + li {
  margin-top: 8px;
}

.contact-prep {
  max-width: 860px;
  padding-top: 0;
  padding-bottom: 48px;
  color: var(--muted);
}

.contact-prep h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 26px;
}

.contact-prep p {
  margin-bottom: 8px;
}

.contact-prep p:last-child {
  margin-bottom: 0;
}

.faq-section {
  padding-top: 68px;
}

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

.faq-page {
  display: block;
  columns: 2 340px;
  column-gap: 18px;
}

.faq-card {
  break-inside: avoid;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.06);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.faq-card h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.25;
}

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

.faq-card p + p {
  margin-top: 10px;
}

.faq-teaser {
  width: 100%;
  margin-top: 0;
  padding-inline: 5vw;
  border-radius: 0;
}

.faq-teaser h2,
.faq-teaser p,
.faq-teaser .button {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.faq-teaser .button {
  width: max-content;
  display: flex;
}

.faq-teaser {
  text-align: center;
}

.condensation-simple {
  padding-bottom: 26px;
}

.condensation-simple .section-heading {
  margin-bottom: 0;
}

.condensation-points {
  padding-top: 0;
  padding-bottom: 38px;
}

.condensation-points .service-card {
  padding: 24px;
}

.condensation-fit {
  margin-top: 0;
  margin-bottom: 38px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.condensation-fit p:last-child {
  margin-bottom: 0;
}

.condensation-details-intro {
  padding-top: 18px;
  padding-bottom: 14px;
  border-top: 1px solid var(--line);
}

.condensation-details-intro .section-heading {
  margin-bottom: 0;
}

.value-card {
  min-height: 132px;
  padding: 26px;
}

.value-card strong,
.value-card span {
  display: block;
}

.value-card strong {
  color: var(--green);
  font-size: 24px;
}

.contact-card.large {
  background: #fef7f7;
  border-color: #f0b6b9;
}

.big-contact {
  display: inline-block;
  overflow-wrap: anywhere;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
}

.contact-note {
  margin-top: 16px;
}

.contact-map-link {
  margin-top: 12px;
}

.date {
  color: var(--muted);
  font-weight: 900;
}

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

.legal-content h2 {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-call {
  display: none;
}

.site-footer {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 38px 5vw;
  color: #fff;
  background: #17212b;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer p {
  margin-bottom: 0;
  color: #d7dde2;
}

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

@media (max-width: 1100px) {
  .faq-label-full {
    display: none;
  }

  .faq-label-short {
    display: inline;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 880px) {
  body {
    padding-bottom: 76px;
  }

  h1 {
    font-size: 40px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 84px;
    align-items: center;
    transition: box-shadow 0.22s ease;
  }

  .brand {
    min-width: 0;
  }

  .header-call {
    display: none;
  }

  .site-header > .theme-toggle:not(.theme-toggle-mobile) {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    width: 58px;
    height: 58px;
    place-content: center;
    border: 2px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--ink);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .main-nav {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    justify-self: stretch;
    margin-inline: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    align-items: stretch;
    justify-items: stretch;
    background: #fff;
    border-top: 0 solid transparent;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.24s ease, padding 0.24s ease, border-color 0.24s ease;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: stretch;
    width: 100%;
    min-height: 56px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    box-sizing: border-box;
    font-size: 20px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: #fff;
    background: var(--blue);
  }

  .main-nav .theme-toggle-mobile {
    display: inline-flex;
    justify-self: start;
    margin-top: 4px;
  }

  .theme-dark .main-nav {
    background: var(--paper);
  }

  .nav-toggle:checked ~ .main-nav {
    max-height: 640px;
    padding: 12px 0 8px;
    border-top: 1px solid var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .contact-strip,
  .quick-grid,
  .service-grid,
  .review-grid,
  .values-grid,
  .contact-page-grid,
  .faq-grid,
  .faq-page,
  .gallery-intro,
  .editorial-gallery,
  .split-section,
  .split-section.reverse,
  .zone-layout,
  .highlight-inner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    display: grid;
    align-items: start;
  }

  .review-cta-desktop {
    display: none;
  }

  .review-cta-mobile {
    display: grid;
    width: min(100% - 32px, 420px);
    margin: 22px auto 0;
  }

  .editorial-gallery .gallery-feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .google-rating {
    width: max-content;
  }

  .split-section.reverse img {
    order: 0;
  }

  .mobile-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    box-shadow: 0 12px 30px rgba(23, 33, 43, 0.25);
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-call.mobile-call-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero::after {
    background: rgba(7, 16, 26, 0.76);
  }

  .hero-content {
    padding: 54px 24px;
  }

  .hero-content p,
  .page-hero p {
    font-size: 19px;
  }

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

  .hero-call-desktop {
    display: none;
  }

  .hero-call-mobile {
    display: inline-flex;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, 1160px);
    padding: 52px 0;
  }

  .contact-strip div {
    padding-inline: 24px;
  }

  .service-area-banner {
    display: grid;
    padding: 24px;
  }

  .service-area-banner .button {
    width: 100%;
  }

  .partner-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-inline: 24px;
  }

  .big-contact {
    font-size: 24px;
  }

  .reviews-band {
    padding-block: 44px;
  }

  .reviews-heading {
    width: min(100% - 32px, 1160px);
  }

  .editorial-gallery figure,
  .editorial-gallery .gallery-feature {
    min-height: 360px;
  }

  .google-rating {
    width: 100%;
    flex-wrap: wrap;
  }

  .review-pill {
    flex-basis: 292px;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .cta-section {
    padding: 26px 20px;
  }

  .faq-section {
    padding-top: 52px;
  }

  .faq-page {
    columns: auto;
  }

  .faq-teaser .button {
    width: 100%;
  }

  .faq-card {
    padding: 22px;
  }
}

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

  .reviews-track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

.theme-dark .menu-button,
.theme-dark .theme-toggle,
.theme-dark .theme-toggle-mobile,
.theme-dark .contact-strip div,
.theme-dark .service-area-banner,
.theme-dark .quick-card,
.theme-dark .service-card,
.theme-dark .value-card,
.theme-dark .contact-card,
.theme-dark .faq-card,
.theme-dark .review-pill,
.theme-dark .google-rating,
.theme-dark .review-cta-button,
.theme-dark .partner-panel,
.theme-dark .partner-panel img,
.theme-dark .cta-section,
.theme-dark .note-section p,
.theme-dark .editorial-gallery figure,
.theme-dark .maps-link {
  background-color: var(--soft);
  border-color: var(--line);
}

.theme-dark .contact-card.large {
  background-color: #1c2a35;
  border-color: #455d6f;
}

.theme-dark .reviews-band,
.theme-dark .faq-teaser {
  background-color: var(--paper);
}

.theme-dark .zone-section,
.theme-dark .page-hero {
  background-color: var(--soft);
}

.theme-dark .menu-button span {
  background-color: var(--ink);
}

.theme-dark .main-nav a,
.theme-dark .contact-card h2,
.theme-dark .contact-card p,
.theme-dark .faq-card h2,
.theme-dark .service-card h2,
.theme-dark .value-card strong,
.theme-dark .quick-card strong {
  color: var(--ink);
}

.theme-dark .quick-card span,
.theme-dark .service-card p,
.theme-dark .value-card span,
.theme-dark .contact-card p,
.theme-dark .faq-card p,
.theme-dark .gallery-intro p:last-child,
.theme-dark .note-section,
.theme-dark .maps-word {
  color: var(--muted);
}

.theme-dark .theme-moon {
  color: #b7cdf0;
}

.theme-dark .main-nav a:hover,
.theme-dark .main-nav a.active {
  color: #fff;
  background-color: #275fae;
}
