:root {
  --ink: #102226;
  --muted: #5d6f73;
  --paper: #f7faf8;
  --panel: #ffffff;
  --line: #dce8e2;
  --deep: #0c2a2f;
  --green: #37a46f;
  --green-dark: #167149;
  --blue: #2f80b7;
  --amber: #f2b84b;
  --shadow: 0 22px 60px rgba(16, 34, 38, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 248, 0.92);
  border-bottom: 1px solid rgba(220, 232, 226, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 48px;
  flex: 0 0 68px;
  border-radius: var(--radius);
  background: #fff;
  color: #fff;
  overflow: hidden;
  font-weight: 800;
  font-size: 0.8rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

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

.brand strong {
  color: var(--deep);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #263c40;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.nav-cta {
  padding: 10px 14px !important;
  border-radius: var(--radius);
  background: var(--deep);
  color: #fff !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--deep);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 132px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 25, 28, 0.9) 0%, rgba(7, 25, 28, 0.72) 39%, rgba(7, 25, 28, 0.16) 76%),
    linear-gradient(0deg, rgba(7, 25, 28, 0.2), rgba(7, 25, 28, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff0b7;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 5.4vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-copy {
  max-width: 56ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #062116;
}

.button.primary:hover {
  background: #69c990;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button.wide {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(580px, 100%);
  gap: 12px;
  margin: 48px 0 0;
}

.trust-row div {
  border-left: 3px solid var(--amber);
  padding-left: 12px;
}

.trust-row dt {
  font-weight: 900;
  font-size: 1.05rem;
}

.trust-row dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.intro-band {
  background: var(--deep);
  color: #fff;
  padding: 18px clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid > div {
  padding: 12px 0;
}

.mini-label {
  display: block;
  margin-bottom: 4px;
  color: #9eddbb;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section,
.quote-section {
  padding: clamp(68px, 10vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto 40px;
  align-items: end;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  text-align: center;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 244px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(16, 34, 38, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: #e5f6ec;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card p,
.steps p,
.result-copy p,
.quote-copy p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.service-card p {
  margin: 14px 0 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 9px 12px;
  border: 1px solid #cfe0d8;
  border-radius: var(--radius);
  background: #fff;
  color: #244246;
  font-weight: 850;
  font-size: 0.92rem;
}

.areas {
  background: #fff;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.area-grid a {
  min-height: 78px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7faf8;
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(16, 34, 38, 0.05);
}

.area-grid a:hover {
  border-color: #a7d8bf;
  color: var(--green-dark);
}

.area-link {
  margin-top: 18px;
}

.process {
  background: #eaf4f0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 26px;
  border-top: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.74);
}

.steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 950;
  font-size: 1.5rem;
}

.steps p {
  margin: 12px 0 0;
}

.results {
  background: #fff;
}

.reviews-social {
  background: #f1f7f4;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.social-card {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 34, 38, 0.07);
}

.social-card.featured {
  background: var(--deep);
  color: #fff;
}

.social-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}

.social-card span {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card.featured span {
  color: #8ff0b7;
}

.social-card strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.social-card small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.social-card.featured small {
  color: rgba(255, 255, 255, 0.74);
}

.photo-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.result-pair {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 34, 38, 0.08);
}

.result-pair h3 {
  padding: 18px 18px 0;
  font-size: 1.2rem;
}

.comparison-slider {
  position: relative;
  margin: 18px;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce8e2;
  touch-action: pan-y;
}

.comparison-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.before-img {
  display: block;
}

.after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.after-layer .comparison-img {
  width: 100%;
}

.comparison-label {
  position: absolute;
  top: 10px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(12, 42, 47, 0.9);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  pointer-events: none;
}

.before-label {
  right: 10px;
}

.after-label {
  left: 10px;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 2;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(12, 42, 47, 0.25);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.comparison-slider:focus-within .comparison-handle::after {
  outline: 3px solid rgba(55, 164, 111, 0.45);
  outline-offset: 3px;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.comparison-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.comparison.before {
  background:
    linear-gradient(rgba(18, 36, 39, 0.24), rgba(18, 36, 39, 0.24)),
    repeating-linear-gradient(40deg, #55615e 0 16px, #6a756e 16px 32px);
}

.comparison.after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(40deg, #cbd7d1 0 16px, #e3ece6 16px 32px);
}

.comparison span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(12, 42, 47, 0.88);
  color: #fff;
  font-weight: 900;
}

.result-copy h3 {
  max-width: 15ch;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.result-copy p {
  margin: 22px 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: var(--deep);
  color: #fff;
}

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

.quote-copy .eyebrow {
  color: #8ff0b7;
}

.quote-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.quote-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quote-notes li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.quote-form {
  padding: clamp(18px, 4vw, 30px);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 850;
}

.label-with-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: max-content;
  max-width: 100%;
}

.field-help {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1px solid #b9cfc5;
  border-radius: 50%;
  background: #f4faf7;
  color: var(--green-dark);
  cursor: help;
  font-size: 0.68rem;
  font-weight: 950;
}

.field-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 5;
  display: grid;
  gap: 6px;
  width: min(280px, calc(100vw - 42px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.field-tooltip span {
  color: var(--muted);
  font-weight: 650;
}

.field-help:hover .field-tooltip,
.field-help:focus .field-tooltip,
.field-help:focus-visible .field-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.optional-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfe0d8;
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(55, 164, 111, 0.26);
  border-color: var(--green);
}

.estimate {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 20px 0;
  padding: 16px;
  border-radius: var(--radius);
  background: #edf8f1;
}

.estimate span {
  color: var(--muted);
  font-weight: 850;
}

.estimate strong {
  color: var(--green-dark);
  font-size: 1.6rem;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.photo-guidance {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #cfe0d8;
  border-radius: var(--radius);
  background: #f4faf7;
}

.photo-guidance p {
  margin: 0;
  color: var(--muted);
}

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

.photo-guidance a {
  justify-self: start;
  color: var(--green-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 38px auto 0;
}

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

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: #07191c;
  color: #fff;
}

.site-footer > * {
  min-width: 0;
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.footer-socials img {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  font-weight: 850;
}

.footer-links a {
  overflow-wrap: anywhere;
}

.mobile-contact-bar {
  display: none;
}

.simple-header {
  position: static;
}

.locations-page {
  min-height: calc(100vh - 76px);
}

.locations-page h1 {
  max-width: 13ch;
}

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

.location-list a {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 34, 38, 0.08);
}

.location-list strong,
.location-list span {
  display: block;
}

.location-list strong {
  font-size: 1.1rem;
}

.location-list span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.locations-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius);
  background: #07191c;
  color: #fff;
}

.locations-cta p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.area-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(7, 25, 28, 0.9), rgba(7, 25, 28, 0.55)),
    url("assets/hero-driveway-clean.jpg") center / cover;
  color: #fff;
}

.area-hero {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 100vh;
  width: min(860px, 100%);
  padding: clamp(34px, 7vw, 88px);
}

.area-hero h1 {
  max-width: 12ch;
}

.area-hero p:not(.eyebrow) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.button.ghost.dark {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: min(690px, calc(100svh - 116px));
  }

  .hero img {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 25, 28, 0.92) 0%, rgba(7, 25, 28, 0.76) 58%, rgba(7, 25, 28, 0.36) 100%),
      linear-gradient(0deg, rgba(7, 25, 28, 0.28), rgba(7, 25, 28, 0.08));
  }

  .intro-grid,
  .section-heading,
  .service-grid,
  .area-grid,
  .location-list,
  .steps,
  .result-layout,
  .photo-results,
  .social-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .service-card,
  .steps li {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

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

  .locations-cta {
    display: grid;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-actions {
    justify-items: start;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 54px;
    height: 38px;
    flex-basis: 54px;
  }

  .site-nav {
    inset: 68px 12px auto;
  }

  .hero {
    min-height: min(680px, calc(100svh - 108px));
    padding-top: 44px;
    padding-bottom: 48px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    gap: 8px;
  }

  .trust-row div {
    padding-left: 8px;
  }

  .trust-row dt,
  .trust-row dd {
    font-size: 0.9rem;
  }

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

  .intro-grid {
    gap: 0;
  }

  .service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

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

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

  .area-grid a {
    min-height: 58px;
    padding: 14px;
  }

  .service-list li {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .comparison-slider {
    margin: 12px;
    min-height: 260px;
  }

  .comparison-img {
    min-height: 260px;
  }

  .comparison-handle::after {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .result-pair h3 {
    padding: 14px 12px 0;
  }

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

  .comparison,
  .comparison-card {
    min-height: 260px;
  }

  .estimate {
    display: grid;
  }

  .social-grid {
    gap: 10px;
  }

  .social-card {
    min-height: 116px;
    padding: 14px;
  }

  .social-card span {
    margin-bottom: 10px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(7, 25, 28, 0.94);
    box-shadow: 0 14px 40px rgba(7, 25, 28, 0.24);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: var(--radius);
    background: #fff;
    color: var(--deep);
    font-weight: 900;
  }

  .mobile-contact-bar a:first-child {
    background: var(--green);
  }
}
