:root {
  --forest: #173c2a;
  --forest-2: #235f3b;
  --pine: #2f7d4a;
  --sky: #d8eef8;
  --sky-2: #77c7e5;
  --ink: #101713;
  --muted: #5f6b64;
  --line: #dce4df;
  --surface: #f5f8f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 23, 19, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: 0; color: var(--ink); }
h1 { font-size: 3.75rem; }
h2 { font-size: 2.45rem; }
h3 { font-size: 1.1rem; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 860px; }
.center { text-align: center; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10001;
  padding: 10px 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(16, 23, 19, .96);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.brand-name {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
  text-shadow: 0 2px 10px rgba(0,0,0,.36);
}
.desktop-nav, .nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav > a, .nav-dropdown > button {
  padding: 10px 13px;
  color: rgba(255,255,255,.9);
  font-size: .94rem;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.desktop-nav a:hover, .nav-dropdown button:hover { color: var(--white); }
.desktop-nav [aria-current="page"] { color: var(--sky); }
.nav-dropdown { position: relative; }
.nav-dropdown button {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
}
.dropdown-menu a:hover {
  background: var(--surface);
  color: var(--forest-2);
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .92rem;
}
.phone-link svg, .btn svg, .info-strip svg, .contact-list svg, .check-list svg, .reason-item svg, .feature-card svg, .value-card svg, .map-placeholder svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--forest-2);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(35,95,59,.26);
}
.btn-primary:hover { background: var(--forest); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-outline.dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline.dark:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: .9rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}
.mobile-nav {
  display: none;
  padding: 0 18px 18px;
  background: rgba(16, 23, 19, .98);
}
.mobile-nav a {
  display: block;
  padding: 11px 0;
  color: var(--white);
  font-weight: 800;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
}
.interior-hero {
  min-height: 430px;
}
.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .hero-img { object-position: center; }
.interior-hero .hero-img { object-position: center; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(16,23,19,.82), rgba(16,23,19,.52)), rgba(0,0,0,.16);
}
.home-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(16,23,19,.72), rgba(16,23,19,.48) 48%, rgba(16,23,19,.74)), rgba(0,0,0,.16);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0;
  max-width: 760px;
}
.hero-content.center {
  max-width: 930px;
}
.hero-pill, .section-heading span, .service-card-body span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: .76rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-pill {
  background: rgba(216,238,248,.16);
  color: var(--white);
  border: 1px solid rgba(216,238,248,.32);
}
.hero h1, .hero p { color: var(--white); }
.hero h1 { max-width: 920px; margin: 0 auto; text-shadow: 0 4px 22px rgba(0,0,0,.35); }
.interior-hero h1 { margin: 0; max-width: 820px; }
.hero p {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 1.2rem;
  color: rgba(255,255,255,.86);
}
.interior-hero p { margin-left: 0; }
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.center .cta-row { justify-content: center; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 740px;
  margin: 58px auto 0;
}
.hero-stats div {
  padding: 18px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1.1;
}
.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
}
.breadcrumbs {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.breadcrumbs a:hover, .breadcrumbs strong { color: var(--white); }

.info-strip {
  background: var(--forest-2);
  color: var(--white);
}
.strip-grid {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 18px;
}
.strip-grid > div, .strip-grid > a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: .94rem;
}
.strip-grid svg { color: var(--sky); }

.section { padding: 88px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading.center {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading span {
  background: var(--sky);
  color: var(--forest);
}
.section-heading p {
  margin: 16px auto 0;
  font-size: 1.05rem;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}
.split-section p {
  font-size: 1.05rem;
}
.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.split-img, .full-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.primary-img {
  aspect-ratio: 4 / 5;
  height: auto;
}
.secondary-img {
  aspect-ratio: 1 / 1;
  height: auto;
  margin-top: 80px;
}
.feature-photo .full-img {
  aspect-ratio: 4 / 3;
  height: auto;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}
.check-list p {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 800;
}
.check-list svg, .reason-item svg, .feature-card svg, .value-card svg {
  color: var(--pine);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest-2);
  font-weight: 900;
}
.text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.services-section, .quote-section, .faq-section, .values-section, .gallery-section {
  background: var(--surface);
}
.quick-services-section {
  background: var(--white);
}
.service-region-note {
  max-width: 760px;
  margin: -8px auto 24px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}
.service-region-note strong {
  color: var(--forest);
  font-size: 1.02rem;
}
.service-region-note span {
  color: var(--muted);
  font-weight: 800;
}
.quick-service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.quick-service-grid strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--forest);
  font-size: .92rem;
  font-weight: 900;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,23,19,.08);
}
.service-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}
.service-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.service-card-body span {
  width: fit-content;
  margin-bottom: 12px;
  background: var(--sky);
  color: var(--forest);
}
.service-card-body h3 {
  min-height: 64px;
}
.service-card-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
}
.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.service-card-list svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--pine);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.service-card-body strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--forest-2);
}
.service-card-body strong svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.reasons-section {
  background: var(--white);
}
.sump-feature-section {
  background: var(--white);
}
.sump-photo-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 14px;
  align-items: stretch;
}
.sump-photo-grid .full-img {
  height: 100%;
  min-height: 280px;
}
.compact-check-list {
  margin-bottom: 26px;
}
.reason-panel {
  padding: 10px 0;
}
.reason-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.reason-item h3 { margin-bottom: 6px; }
.reason-item p { margin: 0; }

.reviews-section {
  background: var(--forest);
}
.reviews-section h2, .reviews-section .section-heading p {
  color: var(--white);
}
.reviews-section .section-heading span {
  background: rgba(216,238,248,.14);
  color: var(--sky);
  border: 1px solid rgba(216,238,248,.3);
}
.reviews-widget {
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.reviews-widget iframe {
  min-height: 300px;
}

.service-area-section {
  background: var(--white);
}
.area-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 22px;
  align-items: stretch;
}
.service-area-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16,23,19,.07);
}
.area-panel-heading {
  margin-bottom: 20px;
}
.area-panel-heading h3 {
  margin-bottom: 10px;
}
.area-panel-heading p {
  color: var(--muted);
}
.area-state-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.area-state {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.area-state h3 {
  margin-bottom: 16px;
}
.area-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--forest);
  font-size: .9rem;
  font-weight: 800;
}
.map-embed-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16,23,19,.08);
}
.google-map-embed {
  width: 100%;
  min-height: 430px;
  flex: 1;
  border: 0;
}
.map-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.map-embed-footer h3 {
  margin-bottom: 4px;
}
.map-embed-footer p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 26px;
  box-shadow: 0 10px 30px rgba(16,23,19,.07);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}
.faq-list p {
  padding-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-card {
  margin: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(16,23,19,.06);
}
.gallery-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  background: #101713;
}
.gallery-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}
.gallery-card figcaption {
  padding: 10px 12px;
  min-height: 58px;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--muted);
}

.final-cta {
  background: var(--forest-2);
  color: var(--white);
}
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta p {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
}
.final-cta .btn-primary {
  background: var(--white);
  color: var(--forest);
}
.final-cta .btn-primary:hover {
  background: var(--sky);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: start;
}
.embed-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16,23,19,.08);
  overflow: hidden;
}
.form-shell {
  height: 745px;
}
.contact-card, .related-card, .map-placeholder {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(16,23,19,.08);
}
.contact-card h3, .related-card h3, .map-placeholder h3 {
  margin-bottom: 8px;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}
.contact-list a, .contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-list svg {
  margin-top: 4px;
  color: var(--forest-2);
}
.contact-list strong {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.area-line {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.area-line p { font-size: .93rem; margin: 5px 0 0; }

.features-section { background: var(--surface); }
.feature-grid, .value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card, .value-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 230px;
}
.feature-card svg, .value-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
}
.feature-card h3, .value-card h3 {
  margin-bottom: 10px;
}
.feature-card p, .value-card p { margin: 0; }

.process-section {
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  padding: 24px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.process-step span, .number-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest-2);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 10px; }
.number-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.number-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 850;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.number-list span {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.related-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.related-links a {
  padding: 12px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest-2);
  font-weight: 900;
}

.contact-map-section {
  background: var(--white);
}
.map-placeholder {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--sky), var(--white));
}
.map-placeholder svg {
  width: 44px;
  height: 44px;
  color: var(--forest-2);
  margin-bottom: 14px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 58px 0;
}
.footer-brand {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 950;
}
.site-footer p, .site-footer li, .site-footer a {
  color: rgba(255,255,255,.74);
}
.site-footer h3 {
  color: var(--sky);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.site-footer a:hover { color: var(--white); }
.footer-map {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
}
.service-areas { font-size: .9rem; margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: .86rem; }

@media (max-width: 1050px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.05rem; }
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .mobile-nav { display: block; }
  .services-grid, .feature-grid, .value-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-map-grid { grid-template-columns: 1fr; }
  .google-map-embed { min-height: 380px; }
  .quote-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .sump-photo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.75rem; }
  .container { width: min(100% - 24px, 1180px); }
  .nav-wrap { height: 68px; }
  .brand { min-width: 0; gap: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 29px; height: 29px; }
  .brand-name { font-size: 1rem; }
  .hero { padding-top: 68px; min-height: 760px; }
  .home-hero {
    background: var(--ink);
    min-height: 820px;
  }
  .home-hero .hero-media {
    background: var(--ink);
  }
  .home-hero .hero-img {
    object-fit: contain;
    object-position: center top;
    opacity: .78;
  }
  .home-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(16,23,19,.12), rgba(16,23,19,.72) 36%, rgba(16,23,19,.96) 70%);
  }
  .interior-hero { min-height: 480px; }
  .hero-content { padding: 70px 0; }
  .home-hero .hero-content {
    padding-top: 310px;
    padding-bottom: 44px;
  }
  .hero p { font-size: 1.03rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .center .cta-row { align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 34px; }
  .strip-grid { grid-template-columns: 1fr; padding: 14px 0; gap: 10px; }
  .section { padding: 64px 0; }
  .split-grid, .quote-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .feature-grid, .value-grid, .process-grid, .gallery-grid { grid-template-columns: 1fr; }
  .image-stack { grid-template-columns: 1fr; }
  .secondary-img { margin-top: 0; }
  .service-card-body h3 { min-height: auto; }
  .form-shell { height: 780px; }
  .service-area-panel { padding: 18px; }
  .service-region-note { flex-direction: column; align-items: stretch; gap: 4px; }
  .quick-service-grid { justify-content: flex-start; }
  .quick-service-grid strong { width: 100%; justify-content: center; }
  .map-embed-footer { flex-direction: column; align-items: stretch; }
  .google-map-embed { min-height: 320px; }
  .gallery-card figcaption { min-height: auto; }
}