:root {
  --bg: #f6f8f7;
  --panel: #ffffff;
  --panel-alt: #f9fcfa;
  --text: #1b2420;
  --text-soft: #43544c;
  --brand: #2ad17d;
  --brand-dark: #1b8d56;
  --border: #d8e3db;
  --shadow: 0 10px 24px rgba(18, 38, 28, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--text);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1;
  text-decoration: none;
}

.logo-image {
  display: block;
  width: auto;
  height: 44px;
}

.logo-image-short {
  display: none;
}

.logo-image-long {
  height: 40px;
  margin-top: 5px;
  margin-left: 2px;
}

.logo-image-mark {
  flex: 0 0 auto;
  height: 44px;
}

.site-nav {
  display: flex;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #c6d8cb;
  border-radius: 8px;
  background: #ffffff;
  color: #133625;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 10px;
  border-radius: 0;
  transition: color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

/* Underline matches .hero .btn-ghost: #1b8d56 bar, short when active, grows on hover */
.site-nav a:not(.btn-primary) {
  background-image: linear-gradient(#1b8d56, #1b8d56);
  background-repeat: no-repeat;
  background-position: center calc(100% - 6px);
  background-size: 0% 3px;
  transition: background-size 0.22s ease, color 0.2s ease;
}

.site-nav a:not(.btn-primary).active {
  color: #123624;
  background-size: 42% 3px;
}

.site-nav a:not(.btn-primary):hover {
  color: #123624;
  background-size: 86% 3px;
}

.site-nav a:not(.btn-primary):focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 4px;
}

.site-nav a.btn-primary {
  color: #f4fff8;
  background: linear-gradient(120deg, #125737, #166f43, var(--brand-dark), #166f43, #125737, var(--brand));
  background-size: 260% 260%;
  animation: buttonGradientFlow 8.5s linear infinite;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55), 0 0 8px rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 4px;
}

.site-nav a.btn-primary::after {
  display: none;
}

.site-nav a.btn-primary:hover {
  color: #f4fff8;
  animation-play-state: paused;
  filter: brightness(1.08);
}

.site-nav a.btn-primary:focus-visible {
  outline: 2px solid #f4fff8;
  outline-offset: 2px;
}

.site-nav a.btn-primary.active {
  filter: brightness(1.05);
  box-shadow: 0 0 0 2px rgba(27, 141, 86, 0.45);
}

.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: hidden;
  padding: 0;
  background: radial-gradient(circle at top right, #183623 0%, #070a08 44%);
  color: #f2f6f3;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(270px, 1.3fr);
  gap: clamp(24px, 3vw, 32px);
  align-items: stretch;
  min-height: min(60vh, 600px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: max(4vw, calc((100vw - min(1120px, 92vw)) / 2));
  padding-right: 0;
}

.hero-sheen-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    rgba(15, 75, 49, 0.23) 0%,
    rgba(38, 159, 102, 0.115) 55%,
    rgba(22, 120, 78, 0.185) 100%
  );
  animation: heroMediaSheenPulse 14s ease-in-out infinite;
}

.hero-sheen-layer::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 58%;
  background: linear-gradient(
    180deg,
    rgba(38, 159, 102, 0) 0%,
    rgba(38, 159, 102, 0.36) 42%,
    rgba(38, 159, 102, 0.15) 58%,
    rgba(38, 159, 102, 0) 100%
  );
  transform: skewX(-8deg) translateX(0);
  animation: heroImageSheenSweep 15s ease-in-out infinite;
  opacity: 0.95;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.hero-small {
  padding-bottom: 44px;
}

/* Compact hero: no extra bottom padding; main `.section` below supplies vertical spacing */
.hero.hero-compact.hero-small {
  padding-bottom: 0;
}

.hero.hero-compact .hero-shell {
  min-height: min(42vh, 380px);
}

.hero.hero-compact .hero-copy {
  padding: 36px 0;
}

.hero.hero-compact .hero-media {
  min-height: min(42vh, 380px);
}

.hero.hero-compact .hero-image-frame {
  min-height: min(42vh, 380px);
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.12fr);
  align-items: center;
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.hero .eyebrow {
  color: var(--brand);
}

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

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0.25px currentColor;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  -webkit-text-stroke: 0.2px currentColor;
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 800;
}

.card h3,
.service-card h3,
.main-service-card h3,
.before-after-card h3,
.review-card h3 {
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  margin-bottom: 0;
}

.card h3 + p,
.service-card h3 + p,
.main-service-card h3 + p,
.before-after-card h3 + p,
.review-card h3 + p {
  margin-top: calc(0.35rem + 2px);
}

.lead {
  color: var(--text-soft);
  max-width: 62ch;
}

.why-section-heading {
  flex: 1 1 100%;
  min-width: 0;
}

.lead.why-intro {
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 87.5%;
}

.hero .lead {
  color: #c5d3ca;
  font-size: 1rem;
}

.hero .lead a {
  color: var(--brand);
  font-weight: 600;
}

.hero-card,
.card,
.service-card {
  background: linear-gradient(160deg, var(--panel-alt), var(--panel));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 12px;
}

.hero-card ul {
  margin: 0;
  padding-left: 20px;
  color: #d3ddd6;
}

.hero-card {
  background: linear-gradient(160deg, #121915, #0c130f);
  border-color: #2b3b31;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: 100%;
  min-height: min(60vh, 600px);
  display: flex;
  flex-direction: column;
}

.hero-image-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: min(60vh, 600px);
  height: 100%;
}

.hero-image-frame-primary {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  border: none;
  border-left: 1px solid rgba(120, 160, 140, 0.25);
  clip-path: polygon(9% 0%, 100% 0%, 91% 100%, 0% 100%);
  -webkit-clip-path: polygon(9% 0%, 100% 0%, 91% 100%, 0% 100%);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.hero-image-kenburns-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene-building {
  z-index: 1;
  animation: heroSceneBuildingVis 26s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-scene-truck {
  z-index: 2;
  animation: heroSceneTruckVis 26s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-scene .hero-image {
  position: absolute;
  width: 118%;
  height: 118%;
  left: -9%;
  top: -9%;
  object-fit: cover;
  transform-origin: 50% 45%;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-scene-building .hero-image {
  object-position: 48% 40%;
  animation: heroKenBuilding 26s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hero-scene-truck .hero-image {
  object-position: 42% center;
  animation: heroKenTruck 26s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

/* Static hero image (e.g. Services): same frame shape as homepage, no Ken Burns */
.hero-image-frame--static {
  position: relative;
}

.hero-image-frame--static .hero-image--static {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  display: block;
  transform: none;
  animation: none;
}

.hero-image-frame--static .hero-image--static-truck {
  object-position: 42% center;
}

.hero-image-frame--static .hero-image--static-services {
  object-position: 48% 42%;
}

/* Compact (non-home) heroes: left-edge green accent in ::after (above photo). */
.hero.hero-compact .hero-image-frame-primary.hero-image-frame--static .hero-image--static {
  z-index: 0;
}

.hero.hero-compact .hero-image-frame-primary.hero-image-frame--static::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    122deg,
    rgba(55, 220, 120, 0.28) 0%,
    rgba(90, 255, 165, 0.52) 4%,
    rgba(55, 220, 120, 0.45) 10%,
    rgba(55, 220, 120, 0.28) 26%,
    rgba(55, 220, 120, 0.4) 100%
  );
}

.hero-image-placeholder {
  min-height: 250px;
  border-radius: 12px;
  border: 1px dashed #486353;
  background: linear-gradient(145deg, #15241b, #0d1611);
  color: #c7d4cc;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  font-weight: 700;
}

.hero-image-placeholder.small {
  min-height: 130px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 11px 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.btn-primary {
  gap: 11px;
  background: linear-gradient(120deg, #125737, #166f43, var(--brand-dark), #166f43, #125737, var(--brand));
  background-size: 260% 260%;
  animation: buttonGradientFlow 8.5s linear infinite;
  color: #f4fff8;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55), 0 0 8px rgba(0, 0, 0, 0.35);
}

.btn-primary::after {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 6px;
  background-color: rgba(4, 42, 24, 0.38);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23f4fff8' stroke-width='2.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16.5px 16.5px;
  border: 1px solid rgba(0, 26, 14, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
  animation-play-state: paused;
  filter: brightness(1.08);
}

.btn-primary:hover::after {
  transform: translate(3px, 0);
  background-color: rgba(4, 42, 24, 0.5);
  border-color: rgba(0, 26, 14, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-soft {
  gap: 6px;
  background: linear-gradient(165deg, #f3faf6, #e2f0e8);
  border: 2px solid rgba(27, 141, 86, 0.5);
  color: #135a38;
  box-shadow: 0 4px 14px rgba(18, 60, 40, 0.07);
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-soft-arrow {
  display: block;
  flex-shrink: 0;
  width: 1.35em;
  min-width: 1.35em;
  height: 1.35em;
  min-height: 1.35em;
  align-self: center;
  opacity: 0.95;
  overflow: visible;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-soft:hover {
  border-color: rgba(27, 141, 86, 1);
  color: #0d4028;
  background: linear-gradient(165deg, #eaf6f0, #d4e9dc);
  box-shadow: 0 6px 20px rgba(18, 60, 40, 0.11);
  transform: translateY(-1px);
}

.btn-soft:hover .btn-soft-arrow {
  transform: translateX(2px);
}

.btn-soft:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(18, 60, 40, 0.08);
}

.btn-soft:focus-visible {
  outline: 2px solid rgba(27, 141, 86, 0.55);
  outline-offset: 2px;
}

.what-we-handle-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

@keyframes buttonGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ctaDoorSweep {
  0% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.2;
  }
  32% {
    transform: skewX(-8deg) translateX(140%);
    opacity: 1;
  }
  45%,
  55% {
    transform: skewX(-8deg) translateX(165%);
    opacity: 1;
  }
  100% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.2;
  }
}

@keyframes heroDoorSweep {
  0% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.14;
  }
  32% {
    transform: skewX(-8deg) translateX(148%);
    opacity: 0.75;
  }
  45%,
  55% {
    transform: skewX(-8deg) translateX(170%);
    opacity: 0.8;
  }
  100% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.14;
  }
}

@keyframes heroSceneBuildingVis {
  0%,
  41% {
    opacity: 1;
  }
  48%,
  92% {
    opacity: 0;
  }
  95%,
  100% {
    opacity: 1;
  }
}

@keyframes heroSceneTruckVis {
  0%,
  41% {
    opacity: 0;
  }
  48%,
  92% {
    opacity: 1;
  }
  95%,
  100% {
    opacity: 0;
  }
}

@keyframes heroKenBuilding {
  0% {
    transform: scale(1.08) translate(0%, 0%);
  }
  38% {
    transform: scale(1.2) translate(-2.6%, 1.6%);
  }
  48% {
    transform: scale(1.2) translate(-2.6%, 1.6%);
  }
  50%,
  100% {
    transform: scale(1.08) translate(0%, 0%);
  }
}

@keyframes heroKenTruck {
  0%,
  48% {
    transform: scale(1.08) translate(0%, 0%);
  }
  89% {
    transform: scale(1.2) translate(-2.2%, 1.2%);
  }
  94% {
    transform: scale(1.2) translate(-2.2%, 1.2%);
  }
  96%,
  100% {
    transform: scale(1.08) translate(0%, 0%);
  }
}

@keyframes heroMediaSheenPulse {
  0% {
    opacity: 0.95;
  }
  22% {
    opacity: 0.78;
  }
  48%,
  52% {
    opacity: 1;
  }
  78% {
    opacity: 0.78;
  }
  100% {
    opacity: 0.95;
  }
}

@keyframes heroImageSheenSweep {
  0% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.35;
  }
  18% {
    transform: skewX(-8deg) translateX(220%);
    opacity: 1;
  }
  26% {
    transform: skewX(-8deg) translateX(220%);
    opacity: 1;
  }
  44% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.35;
  }
  100% {
    transform: skewX(-8deg) translateX(0);
    opacity: 0.35;
  }
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: #ffffff;
  background-image: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero .btn-ghost {
  background-image: linear-gradient(#1b8d56, #1b8d56);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 42% 4px;
  transition: background-size 0.22s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--text);
}

.hero .btn-ghost:hover {
  background-size: 86% 4px;
}

.section {
  padding: 52px 0;
}

#main-services {
  scroll-margin-top: 80px;
}

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

.section-accent {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1f3528;
  border-bottom: 1px solid #1f3528;
  background: linear-gradient(160deg, #0d1510, #111c14);
  color: #ecf2ee;
  padding: 20px 0;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 48%;
  background: linear-gradient(
    180deg,
    rgba(42, 209, 125, 0) 0%,
    rgba(42, 209, 125, 0.08) 38%,
    rgba(42, 209, 125, 0.16) 50%,
    rgba(42, 209, 125, 0.08) 62%,
    rgba(42, 209, 125, 0) 100%
  );
  transform: skewX(-8deg) translateX(0);
  animation: ctaDoorSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.section-accent .container {
  position: relative;
  z-index: 1;
}

.section-accent p {
  color: #d4e1da;
  margin-bottom: 0;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-accent .split {
  padding: 28px 0;
  gap: 32px;
}

.section-accent .split > div {
  max-width: 760px;
}

.section-accent h2 {
  margin-bottom: 10px;
}

.section-accent .btn {
  align-self: center;
  white-space: nowrap;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}

.review-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-links.subtle-links {
  gap: 36px;
}

.external-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1c7a49;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.external-icon {
  display: inline-grid;
  place-items: center;
  width: 1.08em;
  height: 1.08em;
  border-radius: 0.15em;
  border: 2px solid currentColor;
  background: transparent;
  margin-left: 1px;
  overflow: visible;
}

.external-icon-arrow {
  display: inline-block;
  position: relative;
  color: currentColor;
  width: 0.9em;
  height: 0.9em;
  transform: translate(0, 0);
  transition: transform 0.2s ease;
  will-change: transform;
}

.external-icon-arrow svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: opacity 0.16s ease;
}

.external-icon-arrow .arrow-default {
  opacity: 1;
}

.external-icon-arrow .arrow-hover {
  opacity: 0;
}

.external-text-link:hover {
  color: #135f38;
}

.external-text-link:hover .external-icon-arrow {
  transform: translate(9px, -9px);
}

.external-text-link:hover .external-icon-arrow .arrow-default {
  opacity: 0;
}

.external-text-link:hover .external-icon-arrow .arrow-hover {
  opacity: 1;
}

.review-links-bottom {
  margin-top: 26px;
  justify-content: flex-end;
  width: 100%;
}

.testimonials-footer {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.testimonials-footer .review-links-bottom {
  margin-top: 0;
  width: auto;
  flex: 0 1 auto;
  justify-content: flex-end;
}

@media (max-width: 520px) {
  .testimonials-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonials-footer .review-links-bottom {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.review-links.stack {
  margin-top: 14px;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials-fade-wrap {
  position: relative;
}

.testimonials-fade-wrap::before,
.testimonials-fade-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52px;
  pointer-events: none;
  z-index: 2;
}

.testimonials-fade-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(246, 248, 247, 0) 100%);
}

.testimonials-fade-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(246, 248, 247, 0) 100%);
}

.testimonials-row {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scroll-padding-left: 2px;
  padding-bottom: 0;
  user-select: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-row .review-card {
  flex: 0 0 clamp(280px, 32vw, 360px);
}

.testimonials-row::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.stars {
  margin: 0 0 10px;
  color: #1f9f60;
  letter-spacing: 0.1em;
}

.reviewer {
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 0;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #d7ebdf;
  color: #1f2522;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-source-google {
  border: 1px solid #b9d8c7;
}

.review-source-yelp {
  border: 1px solid #e0c2c2;
  background: #f3dddd;
  color: #1f2522;
}

.source-logo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  color: #ffffff;
}

.review-source-google .source-logo {
  background: #2f7de0;
}

.review-source-yelp .source-logo {
  background: #d14848;
}

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

.service-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.main-services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.main-service-card {
  background: linear-gradient(160deg, var(--panel-alt), var(--panel));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.main-service-card-media {
  flex-shrink: 0;
  /* Was 16/9; 25% shorter height keeps all main-service media (placeholders + photos) the same size */
  aspect-ratio: 16 / 6.75;
  /* Top / sides only; bottom flush to divider */
  padding: 22px 22px 0 22px;
  margin: 0;
  background: linear-gradient(160deg, #f3f7f5, #eef5f1);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
}

/* Portrait storefront photo: keep entry centered in the wide frame */
.main-service-card--commercial .main-service-card-image {
  object-position: center center;
}

/* Operator / hardware detail: favor upper area with controls and drum */
.main-service-card--repair .main-service-card-image {
  object-position: center 35%;
}

/* Portrait industrial lift: keep structure centered */
.main-service-card--fence-gate .main-service-card-image {
  object-position: center center;
}

/* Glass sectional install; cover crop trims screenshot chrome */
.main-service-card--preventative .main-service-card-image {
  object-position: center center;
}

/* Low-angle dock opening: keep door and mid-ground in frame */
.main-service-card--dock .main-service-card-image {
  object-position: center 38%;
}

/* Crop like a “cut” above the driveway: anchor to top of photo */
.main-service-card--residential .main-service-card-image {
  margin: 0;
  object-position: center top;
}

.main-service-card-placeholder {
  flex: 1;
  min-height: 0;
  border-radius: 10px 10px 0 0;
  border: 1px dashed #b8ccc0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(249, 252, 250, 0.95));
  color: #5f7468;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 12px;
}

.main-service-card-image {
  flex: 1;
  min-height: 0;
  width: 100%;
  margin: 0;
  border-radius: 10px 10px 0 0;
  border: 1px solid #c9d8ce;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.main-service-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.main-service-card p {
  color: var(--text-soft);
  margin-top: 0;
}

.main-service-card ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--text-soft);
}

.service-cta {
  margin-top: auto;
  padding-top: 14px;
  align-self: flex-start;
}

/* Soft CTAs in service cards: shared height + same colors as .btn-soft */
.main-service-card .btn-soft,
.other-services-actions .btn-soft.other-services-contact-btn {
  min-height: 44px;
  padding-top: 9px;
  padding-bottom: 9px;
  box-sizing: border-box;
  line-height: 1.25;
  gap: 6px;
  border-color: rgba(27, 141, 86, 0.5);
  background: linear-gradient(165deg, #f3faf6, #e2f0e8);
  color: #135a38;
}

.main-service-card .btn-soft:hover,
.other-services-actions .btn-soft.other-services-contact-btn:hover {
  border-color: var(--brand-dark);
}

.graphic-placeholder {
  min-height: 115px;
  border-radius: 10px;
  border: 1px dashed #b8ccc0;
  background: linear-gradient(145deg, #eef5f1, #f9fcfa);
  color: #5f7468;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding: 10px;
}

.graphic-placeholder-tall {
  min-height: 180px;
}

.graphic-placeholder + h3 {
  margin-top: 16px;
}

.what-we-handle-grid .card h3 {
  margin-top: 24px;
}

.what-we-handle-card-media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: #e8f0eb;
}

.what-we-handle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #d7f0e2, #eef8f2);
  border: 1px solid #b7d7c4;
  margin-bottom: 16px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: #1fbe70;
  stroke: #0b120d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-icon + h3 {
  margin-top: 16px;
}

.other-services p {
  color: var(--text-soft);
  margin-top: 0;
}

.other-services-list {
  columns: 2;
  column-gap: 24px;
}

.other-services-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.other-services-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px 32px;
}

@media (min-width: 901px) {
  .other-services-actions .btn-primary {
    min-height: 44px;
    padding-top: 9px;
    padding-bottom: 9px;
    box-sizing: border-box;
  }
}

.other-services-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: min(100%, 52rem);
  text-align: left;
}

.other-services-contact-label {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

/* Match .contact-form .btn-primary; same vertical size as soft CTA beside it */
.other-services .btn-primary {
  min-height: 44px;
  padding-top: 9px;
  padding-bottom: 9px;
  box-sizing: border-box;
  animation: none;
  text-shadow: none;
  background: linear-gradient(120deg, #125737, var(--brand-dark));
}

.other-services .btn-primary::after {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-size: 14px 14px;
}

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

.before-after-card {
  background: linear-gradient(160deg, var(--panel-alt), var(--panel));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.before-after-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.photo-block .tag {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.before-after-images .photo-block:first-child .tag {
  background: #eef2ef;
  border-color: #cfd9d2;
  color: #5b6b63;
}

.before-after-images .photo-block:last-child .tag {
  background: #dff4e7;
  border-color: #95d2ad;
  color: #1f7f4f;
}

.photo-placeholder {
  min-height: 182px;
  border-radius: 10px;
  border: 1px dashed #b5c7bb;
  background: #f3f8f5;
  display: grid;
  place-items: center;
  text-align: center;
  color: #93a497;
  padding: 10px;
  font-weight: 600;
  margin-bottom: 16px;
}

.photo-placeholder-after {
  border-color: #4bb47a;
  color: #247a4d;
}

.before-after-photo {
  width: 100%;
  height: 182px;
  border-radius: 10px;
  border: 1px dashed #b5c7bb;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.before-after-photo-after {
  border-color: #4bb47a;
}

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

.contact-card-photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: #e8f0eb;
}

.contact-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  display: block;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form .btn {
  justify-self: start;
  width: auto;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

.contact-form .btn:disabled {
  cursor: not-allowed;
}

.contact-form .btn-primary {
  animation: none;
  text-shadow: none;
  background: linear-gradient(120deg, #125737, var(--brand-dark));
}

.form-captcha {
  margin-top: 4px;
}

.form-status {
  min-height: 1.25em;
  margin: 2px 0 4px;
  font-size: 0.9rem;
  color: #43544c;
}

.form-status.is-error {
  color: #9c2d2d;
}

.form-status.is-success {
  color: #1b8d56;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfd0c4;
  background: #ffffff;
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2321342A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  padding-right: 38px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(42, 209, 125, 0.55);
  border-color: var(--brand);
}

.estimate-fields {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #c9d8ce;
  border-radius: 10px;
  background: #f5faf7;
}

.estimate-fields-ghost {
  border-color: transparent;
  background: transparent;
}

.estimate-form-wrap {
  max-width: none;
  margin: 0;
}

.estimate-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 14px;
}

.estimate-form-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.estimate-form-full {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid #1f3528;
  padding: 24px 0 28px;
  background: #0a120d;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #c8d4cb;
  font-size: 0.95rem;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-block > p {
  margin: 0;
}

.footer-note {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #9daa9e;
}

.footer-wrap > p {
  margin: 0;
}

.footer-tagline {
  margin: 0;
  max-width: 26rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #9daa9e;
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .section-accent::before {
    animation: none;
    opacity: 0.2;
  }

  .hero-sheen-layer {
    animation: none;
    opacity: 0.75;
  }

  .hero-sheen-layer::after {
    animation: none;
    opacity: 0.55;
    transform: skewX(-8deg) translateX(40%);
  }

  .hero-scene-building,
  .hero-scene-truck {
    animation: none;
  }

  .hero-scene-building {
    opacity: 1;
  }

  .hero-scene-truck {
    opacity: 0;
  }

  .hero-scene-building .hero-image,
  .hero-scene-truck .hero-image {
    animation: none;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header,
  .nav-wrap {
    overflow: visible;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-left: max(4vw, calc((100vw - min(1120px, 92vw)) / 2));
    padding-right: max(4vw, calc((100vw - min(1120px, 92vw)) / 2));
  }

  .hero-copy {
    padding: 52px 0;
  }

  .hero.hero-compact .hero-copy {
    padding: 32px 0;
  }

  /* Text-only heroes on small screens: hide right-column imagery; homepage sheen layer stays (sibling of .hero-media). */
  .hero-media {
    display: none;
  }

  .hero.hero-compact .hero-shell {
    min-height: 0;
  }

  .lead.why-intro {
    max-width: none;
  }

  .hero .cta-row .btn {
    min-height: 50px;
    align-items: center;
  }

  .hero-grid,
  .cards,
  .service-grid,
  .main-services-grid,
  .before-after-grid,
  .before-after-images,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .estimate-form {
    grid-template-columns: 1fr;
  }

  .logo-image-long {
    display: none;
  }

  .logo-image-short {
    display: block;
    height: 26px;
    margin-top: 5px;
  }

  .logo-image-mark {
    height: 36px;
  }

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

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

  .site-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 8px;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.24s ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 340px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav.nav-open {
    max-height: 340px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    text-align: center;
  }

  .site-nav a.btn-primary {
    margin-left: 0;
    text-align: center;
    font-size: 1rem;
    justify-content: center;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-row {
    gap: 12px;
  }

  .testimonials-row .review-card {
    flex-basis: min(86vw, 330px);
  }

  .testimonials-fade-wrap::before,
  .testimonials-fade-wrap::after {
    width: 28px;
  }

  .section-heading,
  .split,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-tagline {
    text-align: left;
    max-width: none;
  }

  .section-accent .split {
    padding: 16px 0;
    gap: 16px;
  }

  .section-accent .btn {
    align-self: flex-start;
  }

  .other-services-list {
    columns: 1;
  }

  .other-services-contact-label {
    white-space: normal;
  }

  .btn-soft.other-services-contact-btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
    padding: 0 !important;
    min-height: 0 !important;
    line-height: 1.45;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1c7a49;
    background: none !important;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
    transform: none !important;
    gap: 0;
  }

  .btn-soft.other-services-contact-btn:hover {
    color: #135f38;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    filter: none;
  }

  .btn-soft.other-services-contact-btn:active {
    transform: none !important;
  }

  .other-services-contact-label {
    display: inline;
    flex: none;
  }

  .btn-soft.other-services-contact-btn .btn-soft-arrow {
    display: inline-block;
    width: 1.05em;
    min-width: 1.05em;
    height: 1.05em;
    min-height: 1.05em;
    margin-left: 0.3em;
    vertical-align: -0.14em;
  }

  .btn-soft.other-services-contact-btn:hover .btn-soft-arrow {
    transform: translateX(2px);
  }
}

@media (max-width: 650px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .nav-wrap {
    min-height: 58px;
    align-items: center;
    padding: 8px 0;
  }
}
