:root {
  --accent: #1769aa;
  --accent-dark: #0d4f83;
  --accent-green: #16a36f;
  --accent-green-dark: #0d6f4d;
  --ink: #111c27;
  --muted: #596775;
  --line: #d8e2ea;
  --surface: #f4f8fb;
  --surface-strong: #eaf3f8;
  --white: #ffffff;
  --warning: #fff8df;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 28, 39, 0.18);
  --shadow-soft: 0 14px 34px rgba(17, 28, 39, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: #fbfdff;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow-x: hidden;
}

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

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

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

.demo-banner {
  background: #f9fbfc;
  border-bottom: 1px solid #e6edf3;
  color: #647383;
  font-size: 0.74rem;
  font-weight: 750;
  padding: 0.28rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(17, 28, 39, 0.07);
}

.top-bar,
.nav,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  color: #405163;
  font-size: 0.85rem;
  font-weight: 700;
}

.top-bar a {
  color: var(--accent-dark);
  font-weight: 800;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(23, 105, 170, 0.24);
}

.brand-logo {
  width: auto;
  max-width: 118px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  flex: 0 0 auto;
}

.brand-logo-square {
  width: 50px;
  max-width: 50px;
}

.brand-logo-horizontal {
  max-width: 140px;
}

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

.brand > span:last-child {
  min-width: 0;
}

.brand strong {
  max-width: 300px;
  font-size: 0.98rem;
  line-height: 1.12;
}

.brand small {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: #3e4d5c;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta,
.button {
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.86rem 1.18rem;
  font-weight: 900;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 111, 77, 0.25);
}

.nav-cta {
  min-height: 48px;
  padding-inline: 1.25rem;
}

.button.secondary {
  border: 1px solid #c5d8e8;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(17, 28, 39, 0.06);
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 44px;
  height: 42px;
  padding: 0;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: 88px 0;
}

.compact {
  padding: 34px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(120deg, rgba(240, 248, 252, 0.98), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 86% 18%, rgba(18, 120, 185, 0.18), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(22, 163, 111, 0.11), transparent 32%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62));
}

.hero > * {
  position: relative;
  z-index: 1;
}

body[data-hero-background="bold"] .hero {
  background:
    linear-gradient(125deg, rgba(235, 248, 252, 0.98), rgba(255, 255, 255, 0.84) 48%, rgba(238, 249, 243, 0.92)),
    radial-gradient(circle at 82% 16%, rgba(18, 120, 185, 0.26), transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(22, 163, 111, 0.18), transparent 34%);
}

body[data-hero-layout="split-image"] .hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
}

body[data-hero-layout="logo-forward"] .hero,
body[data-hero-layout="bold-service"] .hero {
  min-height: min(820px, calc(100vh - 118px));
}

body[data-hero-layout="logo-forward"] h1,
body[data-hero-layout="bold-service"] h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 6.3vw, 5.8rem);
}

body[data-hero-layout="bold-service"] .hero-text {
  max-width: 710px;
  font-size: 1.16rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 1.2rem;
}

.hero-brand[hidden] {
  display: none;
}

.hero-brand-card {
  border: 1px solid rgba(216, 226, 234, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 28, 39, 0.12);
  padding: 0.7rem 0.9rem;
}

.hero-brand-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.hero-brand-logo-square {
  width: 86px;
  max-width: 86px;
  height: 86px;
}

.hero-brand-logo-horizontal {
  max-width: 220px;
}

.hero-brand-large .hero-brand-logo-square {
  width: 116px;
  max-width: 116px;
  height: 116px;
}

.hero-brand-large .hero-brand-logo-horizontal {
  max-width: 300px;
  height: 92px;
}

.hero-brand-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-badges[hidden] {
  display: none;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(197, 216, 232, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #344555;
  box-shadow: 0 8px 20px rgba(17, 28, 39, 0.06);
  padding: 0.4rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-badges strong {
  color: var(--accent-dark);
  font-weight: 950;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  max-width: 720px;
  font-size: clamp(2.85rem, 5.6vw, 5.35rem);
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.95rem, 3.5vw, 3.15rem);
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.45rem 0 1.85rem;
}

.hero-actions .button {
  min-height: 58px;
  min-width: 190px;
  font-size: 1.02rem;
}

body[data-hero-layout="bold-service"] .hero-actions .button.primary,
body[data-hero-layout="logo-forward"] .hero-actions .button.primary {
  min-width: 210px;
  box-shadow: 0 18px 38px rgba(13, 111, 77, 0.29);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 2rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(17, 28, 39, 0.1);
  overflow: hidden;
}

.trust-strip div {
  padding: 1rem 0.9rem;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  color: var(--accent-dark);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 42%;
  height: 42%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  opacity: 0.95;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 34%;
  height: 34%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.05 / 1;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

body[data-hero-layout="bold-service"] .hero-media img,
body[data-hero-layout="logo-forward"] .hero-media img {
  aspect-ratio: 0.96 / 1;
}

.estimate-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(310px, calc(100% - 48px));
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 226, 234, 0.82);
  padding: 1.15rem;
  border-top: 4px solid var(--accent-green);
}

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

.estimate-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.conversion-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #ffffff, #f1f8f5);
}

.conversion-band div {
  border-left: 4px solid var(--accent-green);
  padding: 0.45rem 1rem;
}

.conversion-band strong,
.conversion-band span {
  display: block;
}

.conversion-band strong {
  font-size: 1rem;
  font-weight: 950;
}

.conversion-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 3rem;
}

.section-heading {
  max-width: 720px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid #d7e5ee;
  border-radius: var(--radius);
  padding: 1.45rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-green));
}

.service-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

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

.why,
.service-area {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #eef7fb, #ffffff);
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.proof-list,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 920px;
}

.gallery,
.reviews,
.faq {
  position: relative;
}

.gallery {
  background: #ffffff;
}

.reviews {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, #f3f9f7, #ffffff),
    radial-gradient(circle at 92% 12%, rgba(22, 163, 111, 0.11), transparent 34%);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.04rem;
}

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

.proof-list article,
.review-grid blockquote {
  position: relative;
  margin: 0;
  border: 1px solid #d7e5ee;
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.review-grid blockquote {
  display: grid;
  align-content: space-between;
  min-height: 315px;
  padding: 1.8rem;
  border-top: 4px solid var(--accent-green);
}

.review-grid blockquote:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 0;
  background: linear-gradient(135deg, #ffffff, #f4fbf8);
}

.review-grid blockquote::before {
  content: "5.0 Google review";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #eef8f3;
  color: var(--accent-green-dark);
  padding: 0.32rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.proof-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.04rem;
}

.proof-list p,
.review-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.review-grid p {
  font-size: 1.04rem;
}

.review-grid cite {
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 900;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.9fr;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
}

.gallery-grid img,
.comparison-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(17, 28, 39, 0.11);
  border: 1px solid #d7e5ee;
}

.gallery-standard .gallery-item:first-child {
  grid-row: span 2;
  height: 100%;
}

.gallery-standard .gallery-item:first-child img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 430px;
}

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

.comparison-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  border: 1px solid #d7e5ee;
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.comparison-figure {
  position: relative;
  margin: 0;
}

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

.comparison-figure figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(17, 28, 39, 0.78);
  color: var(--white);
  padding: 0.32rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: stretch;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid #cbdad3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 111, 77, 0.86), rgba(13, 79, 131, 0.74)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card-overlay {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(13, 31, 43, 0.86), rgba(13, 79, 131, 0.72));
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.map-card span {
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.map-card small {
  font-size: 1rem;
  font-weight: 800;
}

.area-panel ul {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.25rem;
  list-style: none;
  box-shadow: var(--shadow-soft);
}

.area-panel li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  font-weight: 900;
}

.area-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 4rem;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, #0f1d2a, #102f42 58%, #0d352d);
  color: var(--white);
}

.contact .eyebrow,
.contact-copy p {
  color: #bbd7ea;
}

.business-info {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
  color: #d9e8f2;
  font-weight: 800;
}

.business-info a {
  color: var(--white);
  width: fit-content;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-green), var(--accent));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  padding: 0.82rem 1rem;
  font-size: 1.35rem;
  font-weight: 950;
}

#business-info-details {
  display: grid;
  gap: 0.55rem;
  max-width: 680px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#business-info-details li {
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5dc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.14);
  outline: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: #167a5b;
}

.form-status.error {
  color: #b84c2f;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 1rem;
  border-top: 0;
  color: #d0d9e3;
  background: #0f1d2a;
  padding: 2rem max(16px, calc((100% - 1180px) / 2)) 6rem;
  font-size: 0.92rem;
}

.footer strong {
  color: var(--white);
}

.mobile-conversion-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  border-top: 1px solid rgba(216, 226, 234, 0.9);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -16px 34px rgba(17, 28, 39, 0.14);
  padding: 0.7rem max(12px, env(safe-area-inset-left)) calc(0.7rem + env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-right));
  backdrop-filter: blur(12px);
}

.mobile-conversion-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0.72rem 0.85rem;
  text-align: center;
  font-weight: 950;
}

.mobile-bar-call {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-dark));
  color: var(--white);
}

.mobile-bar-estimate {
  border: 1px solid #c5d8e8;
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .nav {
    min-height: 64px;
    position: relative;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links .nav-cta {
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .conversion-band,
  .split,
  .contact,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    padding-top: 34px;
    min-height: auto;
  }

  body[data-hero-layout="split-image"] .hero,
  body[data-hero-layout="logo-forward"] .hero,
  body[data-hero-layout="bold-service"] .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body[data-hero-layout="logo-forward"] h1,
  body[data-hero-layout="bold-service"] h1 {
    font-size: clamp(2.55rem, 10vw, 3.45rem);
  }

  .conversion-band {
    gap: 0.8rem;
  }

  .hero-media {
    order: 0;
  }

  .hero-brand {
    margin-bottom: 0.9rem;
  }

  .hero-brand-large .hero-brand-logo-square {
    width: 86px;
    max-width: 86px;
    height: 86px;
  }

  .hero-brand-large .hero-brand-logo-horizontal {
    max-width: 230px;
    height: 76px;
  }

  .hero-badges {
    margin-top: 1rem;
  }

  .trust-strip,
  .service-grid,
  .proof-list,
  .review-grid,
  .gallery-grid,
  .gallery-comparison,
  .comparison-card {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .gallery-standard .gallery-item:first-child img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 320px;
  }

  .section {
    padding: 56px 0;
  }

  .compact {
    padding: 28px 0;
  }

  .why,
  .service-area,
  .contact,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer {
    display: grid;
    padding-bottom: 7.5rem;
  }

  .contact {
    padding-bottom: 8.5rem;
  }

  .mobile-conversion-bar {
    display: grid;
  }

  .hero-actions #secondary-cta {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .top-bar,
  .nav,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    max-width: 96px;
    height: 42px;
  }

  .brand-logo-square {
    width: 42px;
    max-width: 42px;
  }

  .brand strong {
    max-width: 142px;
    font-size: 0.88rem;
  }

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

  .hero-actions {
    margin-top: 1.15rem;
  }

  .hero-badges span {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .hero-media img,
  body[data-hero-layout="bold-service"] .hero-media img,
  body[data-hero-layout="logo-forward"] .hero-media img {
    aspect-ratio: 1.16 / 1;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.4rem;
  }

  .trust-strip div {
    border-right: 1px solid var(--line);
  }

  .trust-strip div:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-strip div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .estimate-card {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .gallery-standard .gallery-item:first-child img {
    min-height: 260px;
  }

  .comparison-figure img {
    min-height: 220px;
  }

  .service-card,
  .proof-list article,
  .review-grid blockquote,
  .lead-form {
    padding: 1.1rem;
  }

  .contact {
    padding-bottom: 9rem;
  }
}
