@font-face {
  font-family: "Times Ten Bold";
  src: url("../fonts/TimesTenBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-green-900: #173c29;
  --color-green-800: #245238;
  --color-green-700: #2f6847;
  --color-green-100: #e6f0e8;
  --color-green-50: #f3f8f2;
  --color-earth: #7b6547;
  --color-tan: #efe7d6;
  --color-cream: #fbfaf5;
  --color-white: #ffffff;
  --color-text: #1e2a22;
  --color-muted: #5f6b62;
  --color-border: #d9e1d8;
  --shadow-soft: 0 12px 30px rgba(23, 60, 41, 0.11);
  --page-bg: var(--color-cream);
  --page-bg-transparent: rgba(251, 250, 245, 0);
  --hero-image: url("../images/herobkd.png");
  --hero-overlay: linear-gradient(90deg, rgba(8, 45, 28, 0.72) 0%, rgba(12, 55, 32, 0.66) 52%, rgba(12, 55, 32, 0.58) 100%);
  --hero-bg-position: center top;
  --hero-bg-size: auto var(--hero-height);

  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: "Times Ten Bold", Georgia, "Times New Roman", serif;
  --max-width: 1120px;
  --section-padding: clamp(3rem, 7vw, 6rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --radius: 8px;
  --radius-small: 4px;
  --header-height: 72px;
  --hero-visible-height: 100svh;
  --hero-height: var(--hero-visible-height);
  --grass-height: 86px;
  --grass-sticky-top: var(--header-height);
  --top-mask-height: calc(var(--grass-sticky-top) + var(--grass-height));
  --content-fade-height: clamp(1.75rem, 4vh, 3rem);
  --grass-tile-width: 340px;
  --grass-mask-color: var(--page-bg);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-mask-height) + var(--content-fade-height) + 1rem);
}

html.smooth-scroll-enhanced {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--top-mask-height);
  pointer-events: none;
  background-image: var(--hero-overlay), var(--hero-image);
  background-position: var(--hero-bg-position), var(--hero-bg-position);
  background-size: var(--hero-bg-size), var(--hero-bg-size);
  background-repeat: no-repeat;
  opacity: 0;
}

body.grass-mask-active::before {
  opacity: 1;
}

body.grass-over-dark-section {
  --grass-mask-color: var(--color-green-900);
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-green-700);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #9dbb50;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--color-green-900);
  line-height: 1.12;
}

h1 {
  max-width: 13ch;
  margin-bottom: var(--space-4);
  font-size: clamp(2.45rem, 11vw, 4.75rem);
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.85rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: var(--space-2);
  font-size: 1.18rem;
}

p {
  color: var(--color-muted);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 100;
  padding: var(--space-2) var(--space-3);
  background: var(--color-green-900);
  color: var(--color-white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  position: relative;
  z-index: 110;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  min-width: 0;
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.brand:hover {
  color: var(--color-white);
}

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.menu-toggle {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-green-900);
  font: inherit;
  font-weight: 700;
}

.menu-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.menu-toggle-line {
  position: relative;
}

.menu-toggle-line::before,
.menu-toggle-line::after {
  position: absolute;
  left: 0;
}

.menu-toggle-line::before {
  top: -6px;
}

.menu-toggle-line::after {
  top: 6px;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 1rem auto;
  z-index: 120;
  display: none;
  padding: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.primary-nav.is-open {
  display: grid;
  gap: var(--space-2);
}

.primary-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  color: var(--color-green-900);
  font-weight: 700;
  text-decoration: none;
}

.primary-nav .button {
  color: var(--color-white);
  box-shadow: none;
  text-shadow: none;
}

.sticky-grass-wrap {
  position: sticky;
  top: var(--grass-sticky-top);
  z-index: 80;
  height: var(--grass-height);
  overflow: visible;
  background: transparent;
  pointer-events: none;
}

.sticky-grass-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--grass-height);
  height: var(--content-fade-height);
  background-color: var(--grass-mask-color);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: background-color 180ms ease, opacity 180ms ease;
}

body.grass-mask-active .sticky-grass-wrap::after {
  opacity: 1;
}

.grass-divider {
  height: var(--grass-height);
  display: flex;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.grass-tile {
  width: var(--grass-tile-width);
  height: var(--grass-height);
  flex: 0 0 var(--grass-tile-width);
  background: var(--grass-mask-color);
  -webkit-mask-image: url("../images/grass.png");
  mask-image: url("../images/grass.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: auto var(--grass-height);
  mask-size: auto var(--grass-height);
  transition: background-color 180ms ease;
}

.grass-tile-flipped {
  transform: scaleX(-1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--color-green-800);
  border-radius: var(--radius-small);
  background: var(--color-green-800);
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--color-green-900);
  border-color: var(--color-green-900);
  color: var(--color-white);
}

.button-secondary {
  background: transparent;
  color: var(--color-green-900);
}

.button-secondary:hover {
  background: var(--color-green-100);
  border-color: var(--color-green-900);
  color: var(--color-green-900);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
}

.section {
  padding-block: var(--section-padding);
  scroll-margin-top: calc(var(--top-mask-height) + var(--content-fade-height) + 1rem);
}

.section-muted {
  background: var(--color-green-50);
  border-block: 1px solid var(--color-border);
}

.eyebrow {
  margin-bottom: var(--space-3);
  color: var(--color-earth);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: sticky;
  top: 0;
  isolation: isolate;
  z-index: 1;
  min-height: 0;
  height: var(--hero-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: var(--grass-height);
  background-image:
    var(--hero-overlay),
    var(--hero-image);
  background-position: var(--hero-bg-position), var(--hero-bg-position);
  background-size: var(--hero-bg-size), var(--hero-bg-size);
  background-repeat: no-repeat;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  max-width: none;
  margin-bottom: var(--space-3);
  font-size: clamp(2.85rem, 5.4vw, 5.15rem);
  line-height: 1.07;
  text-shadow: 0 2px 18px rgba(5, 28, 18, 0.28);
  white-space: nowrap;
}

.hero-subheadline {
  max-width: none;
  margin: 0 auto var(--space-4);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.25vw, 1.8rem);
  font-weight: 600;
  line-height: 1.22;
}

.hero-copy {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.hero-content {
  width: min(100%, 1180px);
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.hero-grid {
  justify-items: center;
  align-items: center;
  display: grid;
  transform: translateY(clamp(0.35rem, 1.2vh, 0.9rem));
}

.hero .hero-grid {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: clamp(1.25rem, 5vw, 5rem);
}

.content-layer {
  position: relative;
  margin-top: calc(var(--grass-height) * -1);
  background: transparent;
}

.sections-layer {
  position: relative;
  z-index: 20;
  background: var(--page-bg);
}

.sections-layer > .section:not(.section-muted) {
  position: relative;
  z-index: 1;
  background: var(--page-bg);
}

.hero-actions {
  display: grid;
  gap: var(--space-3);
  justify-content: center;
  margin: var(--space-4) auto 0;
}

.hero .button {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-green-900);
}

.hero .button:hover {
  border-color: var(--color-cream);
  background: var(--color-cream);
  color: var(--color-green-900);
}

.hero .button-secondary {
  background: transparent;
  color: var(--color-white);
}

.hero .button-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.trust-line {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.section-heading:not(.section-heading-left) {
  margin-inline: auto;
  text-align: left;
}

.service-list {
  display: grid;
  gap: var(--space-3);
}

.service-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-item img {
  width: clamp(44px, 12vw, 56px);
  height: clamp(44px, 12vw, 56px);
  flex: 0 0 auto;
  object-fit: contain;
}

.service-item h3 {
  margin-bottom: 0;
  font-size: clamp(1rem, 3.8vw, 1.1rem);
}

.comparison-section {
  background: var(--color-green-900);
}

.sections-layer > .section.comparison-section:not(.section-muted) {
  background: var(--color-green-900);
}

.comparison-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-section h2 {
  color: var(--color-white);
}

.comparison-section p {
  color: rgba(255, 255, 255, 0.84);
}

.comparison-layout {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.comparison-copy {
  max-width: 620px;
}

.comparison-copy p {
  max-width: 62ch;
}

.comparison-note {
  margin-top: var(--space-4);
  color: var(--color-white);
  font-weight: 800;
}

.before-after {
  width: min(100%, 520px);
  justify-self: center;
}

.before-after-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 4px solid rgba(251, 250, 245, 0.86);
  border-radius: var(--radius);
  background: var(--color-cream);
  aspect-ratio: 5 / 6;
  cursor: ew-resize;
  touch-action: none;
}

.before-after-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.before-after-after {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: var(--position);
  overflow: hidden;
}

.before-after-after .before-after-image {
  width: calc(100% / (var(--position-value, 50) / 100));
  height: auto;
  max-width: none;
}

.before-after-label {
  position: absolute;
  top: var(--space-3);
  z-index: 3;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-small);
  background: rgba(23, 60, 41, 0.86);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.before-after-label-before {
  left: var(--space-3);
}

.before-after-label-after {
  right: var(--space-3);
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: ew-resize;
  transform: translateX(-50%);
}

.before-after-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--color-white);
  box-shadow: 0 0 0 1px rgba(23, 60, 41, 0.22);
  transform: translateX(-50%);
}

.before-after-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-green-800);
  box-shadow: 0 6px 18px rgba(23, 60, 41, 0.22);
  transform: translate(-50%, -50%);
}

.before-after-handle span::before,
.before-after-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.before-after-handle span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.before-after-handle span::after {
  right: 10px;
  transform: translateY(-50%) rotate(135deg);
}

.split {
  display: grid;
  gap: var(--space-6);
}

.split p {
  max-width: 66ch;
}

.service-area-layout {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.service-area-visual {
  display: flex;
  justify-content: center;
}

.service-area-visual img {
  width: min(100%, 380px);
  max-height: 360px;
  object-fit: contain;
}

.service-area-content p {
  max-width: 66ch;
}

.area-check-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0;
  padding: 0;
  list-style: none;
}

.area-check-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-green-900);
  font-weight: 800;
}

.area-check-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  color: var(--color-green-700);
}

.project-gallery {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--page-bg);
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  width: max-content;
  display: flex;
  animation: gallery-scroll 92s linear infinite;
  will-change: transform;
}

.gallery-sequence {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(0.55rem, 1vw, 0.9rem);
  padding-right: clamp(0.55rem, 1vw, 0.9rem);
}

.gallery-pack {
  width: clamp(430px, 112vw, 620px);
  height: clamp(260px, 64vw, 330px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: clamp(0.45rem, 1vw, 0.75rem);
  flex: 0 0 auto;
}

.gallery-pack-b,
.gallery-pack-d {
  width: clamp(500px, 124vw, 720px);
}

.gallery-frame {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-green-100);
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  dynamic-range-limit: standard;
}

.gallery-photo[src$="image12.png"] {
  transform: scale(2.55);
  transform-origin: center center;
}

.gallery-photo[src$="image12.png"] {
  object-position: center 50%;
}

.gallery-pack-a .gallery-frame:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
}

.gallery-pack-a .gallery-frame:nth-child(2) {
  grid-column: 3 / 7;
  grid-row: 1 / 4;
}

.gallery-pack-a .gallery-frame:nth-child(3) {
  grid-column: 7 / 13;
  grid-row: 1 / 4;
}

.gallery-pack-a .gallery-frame:nth-child(4) {
  grid-column: 1 / 7;
  grid-row: 4 / 7;
}

.gallery-pack-a .gallery-frame:nth-child(5) {
  grid-column: 7 / 13;
  grid-row: 4 / 7;
}

.gallery-pack-b .gallery-frame:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 7;
}

.gallery-pack-b .gallery-frame:nth-child(3) {
  grid-column: 7 / 10;
  grid-row: 1 / 4;
}

.gallery-pack-b .gallery-frame:nth-child(2) {
  grid-column: 10 / 13;
  grid-row: 1 / 4;
}

.gallery-pack-b .gallery-frame:nth-child(4) {
  grid-column: 7 / 11;
  grid-row: 4 / 7;
}

.gallery-pack-b .gallery-frame:nth-child(5) {
  grid-column: 11 / 13;
  grid-row: 4 / 7;
}

.gallery-pack-c .gallery-frame:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
}

.gallery-pack-c .gallery-frame:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
}

.gallery-pack-c .gallery-frame:nth-child(3) {
  grid-column: 7 / 13;
  grid-row: 1 / 7;
}

.gallery-pack-c .gallery-frame:nth-child(4) {
  grid-column: 4 / 7;
  grid-row: 4 / 7;
}

.gallery-pack-c .gallery-frame:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 4 / 7;
}

.gallery-pack-d .gallery-frame:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
}

.gallery-pack-d .gallery-frame:nth-child(2) {
  grid-column: 5 / 8;
  grid-row: 1 / 7;
}

.gallery-pack-d .gallery-frame:nth-child(3) {
  grid-column: 8 / 10;
  grid-row: 1 / 7;
}

.gallery-pack-d .gallery-frame:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 4 / 7;
}

.gallery-pack-d .gallery-frame:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 1 / 7;
}

.gallery-pack-e .gallery-frame:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 7;
}

.gallery-pack-e .gallery-frame:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 4;
}

.gallery-pack-e .gallery-frame:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
}

.gallery-pack-e .gallery-frame:nth-child(4) {
  grid-column: 6 / 9;
  grid-row: 4 / 7;
}

.gallery-pack-e .gallery-frame:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 4 / 7;
}

@keyframes gallery-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.about-section {
  overflow: hidden;
  background: var(--page-bg);
}

.about-reference {
  width: min(calc(100% - 2rem), 1500px);
  margin-inline: auto;
  display: grid;
  grid-template-areas:
    "heading"
    "truck"
    "trust";
  gap: clamp(1.5rem, 5vw, 2.75rem);
}

.about-reference-heading {
  grid-area: heading;
}

.about-reference-heading h2 {
  display: grid;
  margin-bottom: 0;
  color: var(--color-green-900);
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 10vw, 4.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-reference-heading h2 span:first-child {
  white-space: nowrap;
}

.about-reference-trust {
  grid-area: trust;
  position: relative;
  padding-right: clamp(0.85rem, 2vw, 1.15rem);
  color: var(--color-green-900);
  font-size: clamp(1.55rem, 6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
}

.about-reference-trust::after {
  content: "";
  position: absolute;
  top: 0.08em;
  right: 0;
  bottom: 0.08em;
  width: 3px;
  background: var(--color-green-700);
}

.about-reference-trust p {
  margin-bottom: 0;
  color: inherit;
  white-space: nowrap;
}

.about-truck {
  grid-area: truck;
  width: 100%;
  max-width: 760px;
  justify-self: center;
  object-fit: contain;
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid #c9d8c9;
  border-radius: var(--radius);
  background: var(--color-green-900);
}

.contact-panel h2,
.contact-panel p,
.contact-panel .eyebrow {
  color: var(--color-white);
}

.contact-panel p {
  opacity: 0.9;
}

.contact-actions {
  display: grid;
  gap: var(--space-3);
  align-content: center;
}

.contact-panel .button {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-green-900);
}

.contact-panel .button:hover {
  background: var(--color-green-100);
}

.contact-panel .button-secondary {
  background: transparent;
  color: var(--color-white);
}

.contact-panel .button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding-block: var(--space-7) var(--space-5);
  background: #10291d;
  color: var(--color-white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  gap: var(--space-5);
}

.footer-heading {
  margin-bottom: var(--space-2);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.footer-nav {
  display: grid;
  gap: var(--space-2);
  align-content: start;
}

.footer-nav a {
  min-height: 34px;
}

.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: var(--space-2);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-watermark {
  color: rgba(255, 255, 255, 0.58);
}

.footer-watermark a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-watermark a:hover {
  color: var(--color-white);
}

.external-link-icon {
  width: 0.86em;
  height: 0.86em;
  flex: 0 0 auto;
}

.support-page,
.error-page {
  min-height: 100vh;
  background: var(--page-bg);
}

.support-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--page-bg);
}

.support-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.support-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-green-900);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.support-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  filter: brightness(0);
}

.support-main {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.support-hero {
  padding-bottom: var(--space-6);
}

.support-content {
  max-width: 760px;
}

.support-content h1 {
  max-width: none;
  font-size: clamp(2.75rem, 9vw, 5rem);
}

.support-content h2 {
  margin-top: var(--space-6);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.support-content a:not(.button) {
  color: var(--color-green-800);
  font-weight: 700;
}

.error-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  background:
    linear-gradient(90deg, rgba(8, 45, 28, 0.78), rgba(12, 55, 32, 0.7)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.error-panel {
  width: min(100%, 680px);
  padding: clamp(1.5rem, 6vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(251, 250, 245, 0.94);
}

.error-brand {
  margin-bottom: var(--space-7);
}

.error-panel h1 {
  max-width: none;
  font-size: clamp(3rem, 11vw, 6rem);
}

.error-panel p {
  max-width: 34rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-track {
    animation: none;
    transform: none;
  }
}

@media (min-aspect-ratio: 2196 / 941) {
  :root {
    --hero-bg-size: 100vw auto;
  }
}

@media (min-width: 560px) {
  .hero-actions,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

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

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  :root {
    --hero-height: var(--hero-visible-height);
    --grass-height: 104px;
    --grass-sticky-top: 40px;
    --grass-tile-width: 414px;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .service-area-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .comparison-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
  }

  .before-after {
    justify-self: end;
  }

  .project-gallery {
    padding-block: clamp(3rem, 5vw, 5rem);
  }

  .gallery-pack {
    width: clamp(700px, 58vw, 940px);
    height: clamp(340px, 30vw, 430px);
  }

  .gallery-pack-b,
  .gallery-pack-d {
    width: clamp(800px, 68vw, 1080px);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr 0.55fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-watermark {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 767px) {
  :root {
    --hero-height: var(--hero-visible-height);
  }

  h1 {
    margin-bottom: var(--space-3);
    font-size: clamp(2.45rem, 12vw, 3.15rem);
  }

  .hero {
    align-items: start;
    padding-top: var(--header-height);
    padding-bottom: var(--grass-height);
  }

  .hero .eyebrow {
    margin-bottom: var(--space-2);
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
    white-space: normal;
  }

  .hero-subheadline {
    max-width: 28ch;
    margin-bottom: var(--space-3);
    font-size: clamp(1.1rem, 5.4vw, 1.55rem);
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: var(--space-2);
    margin: var(--space-4) 0 var(--space-3);
  }

  .trust-line {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .content-layer {
    margin-top: calc(var(--grass-height) * -1);
  }
}

@media (max-height: 760px) {
  .hero h1 {
    margin-bottom: var(--space-2);
    font-size: clamp(2.5rem, 5.4vw, 4.25rem);
    line-height: 1.04;
  }

  .hero {
    padding-top: var(--header-height);
    padding-bottom: var(--grass-height);
  }

  .hero-grid {
    transform: none;
  }

  .hero .eyebrow {
    margin-bottom: var(--space-2);
    font-size: 0.72rem;
  }

  .hero-subheadline {
    margin-bottom: var(--space-3);
    font-size: clamp(1.05rem, 2.5vw, 1.65rem);
  }

  .hero-copy {
    max-width: 54ch;
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .hero-actions {
    gap: var(--space-2);
    margin: var(--space-3) 0 var(--space-2);
  }

  .hero .button {
    min-height: 42px;
    padding-block: 0.6rem;
  }

  .trust-line {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .content-layer {
    margin-top: calc(var(--grass-height) * -1);
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .hero-subheadline {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
  }

  .hero-copy {
    font-size: 0.9rem;
  }

  .trust-line {
    font-size: 0.88rem;
  }
}

@media (min-width: 960px) {
  .about-section {
    padding-block: clamp(4.75rem, 7vw, 6.5rem);
  }

  .about-canvas {
    --about-eyebrow-x: 1.25%;
    --about-eyebrow-y: 4.5%;
    --about-heading-x: 0.95%;
    --about-heading-y: 9.20%;
    --about-heading-width: 48.25%;
    --about-heading-size: 5.15cqw;
    --about-trust-x: 3.83%;
    --about-trust-y: 44.73%;
    --about-trust-width: 28%;
    --about-trust-size: 1.95cqw;
    --about-truck-x: 34.20%;
    --about-truck-y: 27.64%;
    --about-truck-width: 65%;
    position: relative;
    display: block;
    container-type: inline-size;
    width: min(calc(100% - 6rem), 1500px);
    aspect-ratio: 2.82 / 1;
    height: auto;
  }

  .about-reference-heading {
    display: contents;
  }

  .about-reference-heading .eyebrow {
    position: absolute;
    top: var(--about-eyebrow-y);
    left: var(--about-eyebrow-x);
    z-index: 2;
    margin-bottom: 0;
  }

  .about-reference-heading h2 {
    position: absolute;
    top: var(--about-heading-y);
    left: var(--about-heading-x);
    z-index: 2;
    width: var(--about-heading-width);
    max-width: none;
    font-size: clamp(2.85rem, var(--about-heading-size), 4.45rem);
    justify-items: end;
    text-align: right;
  }

  .about-reference-heading h2 span:last-child {
    justify-self: end;
  }

  .about-reference-trust {
    position: absolute;
    top: var(--about-trust-y);
    left: var(--about-trust-x);
    z-index: 2;
    width: var(--about-trust-width);
    padding-bottom: 0;
    text-align: right;
    font-size: clamp(1.2rem, var(--about-trust-size), 1.9rem);
  }

  .about-truck {
    position: absolute;
    top: var(--about-truck-y);
    left: var(--about-truck-x);
    z-index: 3;
    width: var(--about-truck-width);
    max-width: none;
    margin-top: 0;
  }

  @supports not (font-size: 1cqw) {
    .about-reference-heading h2 {
      font-size: clamp(3.1rem, 3.95vw, 4.45rem);
    }

    .about-reference-trust {
      font-size: clamp(1.35rem, 1.65vw, 1.9rem);
    }
  }

  .brand span:last-child {
    overflow: visible;
  }

  .brand {
    flex: 0 1 auto;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .primary-nav a:not(.button) {
    padding-inline: var(--space-2);
    color: var(--color-white);
  }

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

  .service-item:nth-child(7) {
    grid-column: 2;
  }

  .section-heading:not(.section-heading-left) {
    text-align: center;
  }
}

@media (min-width: 1280px) {
  :root {
    --max-width: 1180px;
  }
}
