
:root {
  --accent: #c8841d;
  --accent-dark: #9a6110;
  --accent-soft: #fff4e2;
  --accent-line: #f0d4a6;
  --ink: #0b0d10;
  --ink-soft: #272b31;
  --charcoal: #171a1f;
  --charcoal-2: #22262d;
  --muted: #626a75;
  --line: #dedede;
  --surface: #f5f5f4;
  --surface-dark: #ececea;
  --white: #ffffff;
  --black: #040506;
  --shadow: 0 18px 45px rgba(11, 13, 16, .16);
  --shadow-soft: 0 10px 28px rgba(11, 13, 16, .10);
  --radius: 8px;
  --header-height: 84px;
}

* { 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.6;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f6 42%, #ffffff 100%);
}
body.menu-open { overflow: hidden; }
img, video, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: 0; color: var(--ink); }
h1 { font-size: 3rem; max-width: 1000px; }
h2 { font-size: 2.65rem; }
h3 { font-size: 1.08rem; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(11, 13, 16, .13);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--white);
}
.brand img,
.footer-brand img {
  width: 92px;
  height: 62px;
  object-fit: contain;
  background: rgba(255, 255, 255, .94);
  border-radius: var(--radius);
  padding: 4px;
}
.brand span { font-size: 1.05rem; max-width: 178px; line-height: 1.1; }
.site-header.is-scrolled .brand,
.site-header.menu-active .brand,
.site-header.is-scrolled .desktop-nav,
.site-header.menu-active .desktop-nav,
.site-header.is-scrolled .nav-phone,
.site-header.menu-active .nav-phone,
.site-header.is-scrolled .menu-toggle,
.site-header.menu-active .menu-toggle { color: var(--ink); }
.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .96);
}
.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .95rem;
  font-weight: 760;
  cursor: pointer;
  padding: 9px 9px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.desktop-nav > a:hover,
.nav-dropdown > button:hover { background: rgba(255, 255, 255, .13); }
.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover { background: var(--surface-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown button { display: flex; align-items: center; gap: 5px; }
.nav-dropdown .icon { width: 16px; height: 16px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 290px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-weight: 760;
}
.dropdown-menu a:hover { color: var(--accent-dark); background: var(--accent-soft); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .96);
  font-size: .95rem;
  font-weight: 850;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 15px 23px;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-small { padding: 10px 12px; font-size: .88rem; white-space: nowrap; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .82); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-outline-dark { color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--accent-dark); border-color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .13);
  color: var(--white);
  cursor: pointer;
}
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-hero { min-height: 58vh; padding-top: var(--header-height); }
.hero-media,
.hero-media img,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img,
.hero-media video {
  object-fit: cover;
  object-position: center;
}
.hero-media img { z-index: 0; }
.hero-media video { z-index: 1; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 6, .86) 0%, rgba(4, 5, 6, .64) 48%, rgba(4, 5, 6, .38) 100%),
    linear-gradient(0deg, rgba(4, 5, 6, .34), rgba(4, 5, 6, .08));
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 20px;
  color: var(--white);
}
.inner-content { padding: 92px 0 70px; }
.hero h1 {
  margin-top: 12px;
  text-wrap: balance;
  color: #fff7e8;
  background: linear-gradient(92deg, #ffffff 0%, #fff2d2 38%, #e0a340 73%, #c8841d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 34px rgba(200, 132, 29, .18);
}
.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.05rem;
  margin-top: 16px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 7px 13px;
  font-size: .82rem;
  font-weight: 900;
}
.eyebrow.light {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}
.hero-actions,
.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-actions { margin-top: 24px; }
.button-row { margin-top: 28px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}
.hero-stats div { padding: 10px 14px; }
.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 760;
}

.contact-strip {
  background: var(--accent);
  color: var(--white);
}
.strip-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 820;
}
.strip-inner a,
.strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.strip-inner a:hover { color: #fff7eb; }

.section { padding: 90px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin-top: 13px; text-wrap: balance; }
.section-heading p {
  max-width: 700px;
  margin-top: 16px;
  font-size: 1.08rem;
}
.section-heading-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading-center p { margin-left: auto; margin-right: auto; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 58px;
  align-items: center;
}
.reverse .split-grid { grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr); }
.check-list { display: grid; gap: 18px; margin: 28px 0; }
.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
}
.check-list .icon { color: var(--accent); margin-top: 3px; }
.check-list h3 { margin-bottom: 5px; }
.check-list p { margin: 0; }
.check-list.compact { margin-bottom: 0; }
.image-stack {
  position: relative;
  min-height: 420px;
}
.image-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  border-left: 5px solid var(--accent);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}
.image-badge strong,
.image-badge span { display: block; }
.image-badge span { color: var(--muted); font-size: .9rem; font-weight: 760; }

.services-overview,
.quote-section,
.faq-section,
.why-section { background: var(--surface); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.service-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 230px 1fr;
}
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.service-card-content { padding: 24px; }
.service-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--accent);
  background: var(--accent-soft);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { margin-top: 12px; }
.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}
.service-card:hover { transform: translateY(-3px); transition: transform .18s ease; }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.reason-card div {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.reason-card p { margin-bottom: 0; }

.process-section { background: var(--charcoal); }
.process-section h2,
.process-section h3,
.process-section .section-heading p { color: var(--white); }
.process-section .eyebrow { background: rgba(255,255,255,.1); color: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}
.process-grid li {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 24px;
}
.process-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-grid p { color: rgba(255, 255, 255, .76); margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  background: var(--charcoal);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .2s ease;
}
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 16px 14px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 820;
  background: linear-gradient(180deg, rgba(4,5,6,0), rgba(4,5,6,.82));
}

.review-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 260px;
}
.review-widget iframe { display: block; min-height: 260px; }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: 54px;
}
.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  display: grid;
  place-items: center;
  transition: transform .18s ease;
}
.faq-item[open] summary span { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 22px; margin: 0; }

.cta-band {
  background:
    linear-gradient(90deg, rgba(11,13,16,.94), rgba(11,13,16,.82)),
    url("/assets/images/wide-concrete-driveway-lawrenceville-ga-installation.webp") center/cover;
  color: var(--white);
}
.cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.cta-wrap h2,
.cta-wrap p { color: var(--white); }
.cta-wrap p { max-width: 720px; color: rgba(255,255,255,.82); margin: 14px 0 0; }

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 28px;
  align-items: start;
}
.quote-frame {
  min-height: 760px;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.quote-form-iframe {
  display: block;
  width: 100%;
  height: 681px;
  min-height: 681px;
  background: var(--white);
}
.quote-frame .ep-iFrameContainer,
.quote-frame .ep-wrapper,
.quote-frame iframe.quote-form-iframe {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.form-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px;
  color: var(--accent-dark);
  font-weight: 900;
}
.quote-details,
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.quote-details ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 26px;
}
.quote-details .btn {
  width: 100%;
  margin-top: 10px;
}
.quote-details li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: var(--ink-soft);
}
.quote-details .icon { color: var(--accent); margin-top: 2px; }

.included-section { background: var(--surface); }
.service-area-section { background: var(--white); }
.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 28px;
  align-items: start;
}
.area-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.area-card {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.area-card:hover,
.area-card.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.area-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}
.area-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.45;
}
.area-map-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.area-map-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}
.area-map-caption {
  padding: 22px;
}
.area-map-caption p { margin: 10px 0 16px; }
.area-map-caption a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}
.included-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.included-grid h2 { margin-top: 12px; }
.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.included-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  font-weight: 800;
}
.included-list .icon { color: var(--accent); margin-top: 2px; }

.about-callout {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
}
.about-callout p { margin-bottom: 0; }
.dark-feature {
  background: var(--ink);
  color: var(--white);
}
.dark-feature h2,
.dark-feature p { color: var(--white); }
.dark-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-list span {
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 10px 12px;
  font-weight: 820;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 40px;
  align-items: start;
}
.contact-methods {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-methods a,
.contact-methods > span {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.contact-methods .icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: var(--radius);
  color: var(--accent);
  background: var(--accent-soft);
}
.contact-methods strong,
.contact-methods small { display: block; }
.contact-methods small { color: var(--muted); font-weight: 760; }
.map-frame,
.map-frame iframe {
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: var(--radius);
}
.map-frame { overflow: hidden; box-shadow: var(--shadow-soft); background: var(--surface); }
.contact-form-panel h3 { margin-bottom: 18px; }
.contact-quote { height: 760px; box-shadow: none; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 62px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) .75fr .65fr 1fr;
  gap: 34px;
  padding-bottom: 44px;
}
.footer-brand { color: var(--white); align-items: center; }
.footer-brand span { line-height: 1.15; }
.site-footer p,
.site-footer a,
.site-footer li { color: rgba(255,255,255,.75); }
.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--white); }
.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact .icon { color: var(--accent); margin-top: 2px; }
.footer-areas { margin-top: 18px; font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
}
.footer-bottom p { margin: 0; font-size: .9rem; text-align: center; }

@media (max-width: 1050px) {
  .desktop-nav,
  .nav-phone,
  .nav-actions .btn-small { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px 20px 22px;
  }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a {
    color: var(--ink);
    font-weight: 850;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .service-grid,
  .reason-grid,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-area-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-grid,
  .reverse .split-grid,
  .faq-grid,
  .included-grid,
  .quote-grid,
  .contact-grid,
  .dark-grid,
  .cta-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  :root { --header-height: 76px; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.02rem; }
  .container { width: min(100% - 28px, 1180px); }
  .brand img { width: 68px; height: 48px; }
  .brand span { font-size: .95rem; max-width: 160px; }
  .hero { min-height: 86vh; }
  .inner-hero { min-height: 52vh; }
  .hero-content { padding: 116px 0 54px; }
  .inner-content { padding: 70px 0 50px; }
  .hero p { font-size: 1rem; }
  .hero-actions,
  .button-row,
  .cta-actions { align-items: stretch; }
  .hero-actions .btn,
  .button-row .btn,
  .cta-actions .btn { width: 100%; }
  .hero-stats {
    display: none;
  }
  .strip-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
  .section { padding: 64px 0; }
  .image-main { height: 390px; }
  .image-stack { min-height: 390px; }
  .service-grid,
  .reason-grid,
  .gallery-grid,
  .included-list,
  .process-grid { grid-template-columns: 1fr; }
  .service-card a { grid-template-rows: 210px 1fr; }
  .service-card img { height: 210px; }
  .gallery-grid figure,
  .gallery-grid img { min-height: 230px; }
  .faq-item summary { padding: 18px; }
  .faq-item p { padding: 0 18px 18px; }
  .quote-frame,
  .contact-quote { min-height: 760px; }
  .area-selector { grid-template-columns: 1fr; }
  .area-card { min-height: auto; }
  .area-map-panel {
    position: static;
  }
  .area-map-panel iframe { height: 330px; }
  .quote-details,
  .contact-form-panel { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-media video { display: none; }
  .hero-fallback { z-index: 0; }
}
