﻿:root {
      --green-900: #213a2a;
      --green-800: #294936;
      --green-700: #385c43;
      --sage: #6f8065;
      --brown-900: #49382d;
      --brown-700: #66503d;
      --tan-500: #c6ad7e;
      --tan-300: #dcc9a7;
      --sand: #eee6d6;
      --cream: #f8f5ee;
      --white: #ffffff;
      --charcoal: #292c28;
      --muted: black;
      --border: rgba(41,73,54,.14);
      --shadow: 0 18px 50px rgba(33,58,42,.12);
      --radius: 24px;
      --radius-sm: 14px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--charcoal);
      background: var(--cream);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green-700);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--tan-500);
      border-radius: 999px;
    }

    h1, h2, h3 {
      margin: 0;
      color: var(--green-900);
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1.1;
      letter-spacing: -.025em;
    }

    h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
    h2 { font-size: clamp(2.1rem, 4.5vw, 3.7rem); }
    h3 { font-size: 1.45rem; }
    p { margin: 0; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: .2s ease;
      cursor: pointer;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: var(--white);
      background: var(--green-800);
      box-shadow: 0 12px 28px rgba(41,73,54,.22);
    }

    .btn-primary:hover { background: var(--green-900); }

    .btn-tan {
      color: var(--brown-900);
      background: var(--tan-300);
    }

    .btn-tan:hover { background: #e8d4b2; }

    .btn-outline {
      color: var(--white);
      border-color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(8px);
    }

    .btn-outline:hover { background: rgba(255,255,255,.15); }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(248,245,238,.94);
      border-bottom: 1px solid rgba(41,73,54,.10);
      backdrop-filter: blur(14px);
    }

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

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }



.brand-mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    position: relative;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            transparent 0 45%,
            rgba(255,255,255,.14) 46% 50%,
            transparent 51%
        ),
        var(--green-800);

    border: 4px solid var(--tan-300);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
}

/* Thick horizontal shaft */
.brand-mark::before {
    content: "";
    position: absolute;

    width: 20px;
    height: 10px;

    background: var(--tan-300);
    border-radius: 4px;

    left: 9px;
    top: 50%;
    transform: translateY(-50%);
}

/* Thick arrow head */
.brand-mark::after {
    content: "";
    position: absolute;

    width: 13px;
    height: 13px;

    border-top: 6px solid var(--tan-300);
    border-right: 6px solid var(--tan-300);

    right: 8px;
    top: 50%;

    transform: translateY(-50%) rotate(45deg);
}

    .brand-copy strong {
      display: block;
      color: var(--green-900);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.18rem;
      letter-spacing: .04em;
    }

    .brand-copy span {
      display: block;
      color: var(--brown-700);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      margin-left: auto;
      font-size: .94rem;
      font-weight: 700;
      color: var(--green-900);
    }

    .nav-links a:not(.btn) { position: relative; }
    .nav-links a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -6px;
      height: 2px;
      background: var(--tan-500);
      transition: .2s ease;
    }
    .nav-links a:not(.btn):hover::after { right: 0; }

    .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      color: var(--green-900);
      cursor: pointer;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 690px;
      display: grid;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(27,48,35,.92) 0%, rgba(27,48,35,.78) 42%, rgba(27,48,35,.28) 76%, rgba(27,48,35,.15) 100%),
        url('images/field2.jpg') center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 140px;
      z-index: -1;
      background: linear-gradient(to top, rgba(17,29,21,.55), transparent);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      align-items: center;
      gap: 58px;
      padding: 84px 0 104px;
    }

    .hero-copy { max-width: 760px; }
    .hero .eyebrow { color: #ead8b8; }
    .hero h1 { color: var(--white); margin-top: 16px; }

    .hero-lead {
      max-width: 680px;
      margin-top: 24px;
      color: rgba(255,255,255,.88);
      font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .hero-card {
      justify-self: end;
      width: min(100%, 400px);
      padding: 28px;
      color: var(--white);
      background: rgba(33,58,42,.72);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      box-shadow: 0 26px 70px rgba(0,0,0,.18);
      backdrop-filter: blur(10px);
    }

    .hero-card h3 { color: var(--white); font-size: 1.6rem; }
    .hero-card p { margin-top: 10px; color: rgba(255,255,255,.78); }

    .hero-stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 22px;
    }

    .hero-stat {
      padding: 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.12);
    }

    .hero-stat strong {
      display: block;
      color: #f1dfbf;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.6rem;
    }

    .hero-stat span { font-size: .78rem; color: rgba(255,255,255,.76); }

    /* Trust strip */
    .trust-strip {
      position: relative;
      z-index: 4;
      margin-top: -44px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--sand);
      border: 1px solid rgba(73,56,45,.08);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .trust-item {
      min-height: 108px;
      padding: 22px 26px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid rgba(73,56,45,.10);
    }

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

    .trust-icon {
      flex: 0 0 42px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: var(--green-800);
      background: rgba(41,73,54,.08);
      border-radius: 50%;
    }

    .trust-item strong {
      display: block;
      color: var(--green-900);
      font-size: .98rem;
    }

.trust-item > div span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  margin-top: 2px;
}

    /* Sections */
    section { padding: 110px 0; }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 72px;
      align-items: center;
    }

    .section-copy h2 { margin-top: 14px; }
    .section-copy > p { margin-top: 24px; color: var(--muted); font-size: 1.06rem; }

    .photo-frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--sand);
    }

    .photo-frame img {
      width: 100%;
      min-height: 440px;
      object-fit: cover;
      filter: saturate(.88) contrast(1.02);
    }

    .photo-badge {
      position: absolute;
      left: 22px;
      bottom: 22px;
      max-width: 280px;
      padding: 18px 20px;
      color: var(--white);
      background: rgba(33,58,42,.92);
      border-radius: 16px;
      box-shadow: 0 16px 38px rgba(0,0,0,.2);
    }

    .photo-badge strong {
      display: block;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.35rem;
    }

    .photo-badge span { font-size: .82rem; color: rgba(255,255,255,.78); }

    .feature-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .feature {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 13px;
      align-items: start;
    }

.check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;

  color: #fff;
  background: var(--green-700);

  border-radius: 50%;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1;
}

/* Make icons inherit the white color */
.check i,
.check svg,
.check span {
  color: #fff;
  fill: currentColor;
}
.feature strong { color: var(--green-900); display: block; }

.feature > div span {
  color: var(--muted);
  font-size: .94rem;
}

    /* Benefits */
    .benefits {
      background: var(--sand);
      border-top: 1px solid rgba(73,56,45,.06);
      border-bottom: 1px solid rgba(73,56,45,.06);
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 44px;
      text-align: center;
    }

    .section-head .eyebrow { justify-content: center; }
    .section-head h2 { margin-top: 14px; }
    .section-head p { margin-top: 18px; color: var(--muted); }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .benefit-card {
      min-height: 250px;
      padding: 28px;
      background: rgba(255,255,255,.6);
      border: 1px solid rgba(73,56,45,.08);
      border-radius: 18px;
      transition: .2s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      background: var(--white);
      box-shadow: 0 18px 44px rgba(73,56,45,.09);
    }

    .icon-box {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      color: var(--green-800);
      background: rgba(41,73,54,.08);
      border-radius: 16px;
      font-size: 1.35rem;
      font-weight: 900;
    }

    .benefit-card h3 { margin-top: 20px; }
    .benefit-card p { margin-top: 10px; color: var(--muted); font-size: .94rem; }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 12px 34px rgba(33,58,42,.06);
      transition: .2s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 48px rgba(33,58,42,.11);
    }

    .service-image {
      height: 210px;
      background: linear-gradient(135deg, rgba(41,73,54,.16), rgba(198,173,126,.2));
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.82) contrast(1.03);
    }

    .service-body { padding: 24px; }
    .service-body p { margin-top: 10px; color: var(--muted); font-size: .93rem; }
    .service-link {
      display: inline-flex;
      margin-top: 18px;
      color: var(--green-700);
      font-size: .9rem;
      font-weight: 800;
    }

    /* Process */
    .process {
      color: var(--white);
      background: var(--green-900);
    }

    .process .section-head h2,
    .process .section-head p { color: var(--white); }
    .process .section-head p { color: rgba(255,255,255,.72); }
    .process .eyebrow { color: #ead8b8; }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .process-card {
      position: relative;
      min-height: 230px;
      padding: 26px;
      border-radius: 18px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
    }

    .process-num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: var(--brown-900);
      background: var(--tan-300);
      font-weight: 900;
    }

    .process-card h3 { color: var(--white); margin-top: 20px; }
    .process-card p { margin-top: 10px; color: rgba(255,255,255,.68); font-size: .92rem; }

    /* Story */
    .story-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      background: var(--brown-900);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .story-image {
      min-height: 430px;
      background: url('images/trencher.jpg') center/cover no-repeat;
    }

    .story-copy {
      padding: clamp(34px, 6vw, 68px);
      color: var(--white);
    }

    .story-copy .eyebrow { color: #ead8b8; }
    .story-copy h2 { color: var(--white); margin-top: 14px; }
    .story-copy p { margin-top: 20px; color: rgba(255,255,255,.76); }
    .story-copy .btn { margin-top: 28px; }

/* CONTACT PAGE */
.contactpage {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr 1fr 1fr;
	padding:1rem;
	justify-items:center;
	align-items:start;
	border-radius: 12px;
}

    /* CTA */
    .cta-section { padding-top: 0; }

    .cta-box {
      padding: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      background: var(--tan-300);
      border-radius: 24px;
      box-shadow: 0 20px 45px rgba(73,56,45,.08);
    }

    .cta-box h2 { max-width: 700px; font-size: clamp(2rem, 4vw, 3.2rem); }
    .cta-box p { margin-top: 12px; color: var(--brown-700); }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; min-width: max-content; }

    /* Footer */
    footer {
      padding: 66px 0 28px;
      color: rgba(255,255,255,.72);
      background: #1b3023;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .65fr .75fr;
      gap: 52px;
    }

    footer .brand-copy strong { color: var(--white); }
    footer .brand-copy span { color: #d9c49f; }
    .footer-about { margin-top: 20px; max-width: 510px; }
    .footer-title { color: var(--white); font-weight: 800; margin-bottom: 14px; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      margin-top: 48px;
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: .82rem;
    }

    .mobile-call { display: none; }

    @media (max-width: 980px) {
      .nav-links {
        position: fixed;
        inset: 82px 20px auto;
        display: none;
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: var(--cream);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
      }

      .nav-links.open { display: flex; }
      .nav-links .btn { width: 100%; }
      .mobile-toggle { display: grid; place-items: center; }

      .hero { min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; padding: 78px 0 110px; }
      .hero-card { justify-self: start; }

      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(73,56,45,.10); }

      .split { grid-template-columns: 1fr; gap: 42px; }
      .benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .story-card { grid-template-columns: 1fr; }
      .story-image { min-height: 330px; }
      .cta-box { align-items: flex-start; flex-direction: column; }
      .cta-actions { min-width: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > :first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 650px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      section { padding: 82px 0; }
      .nav-wrap { min-height: 72px; }
      .nav-links { inset: 72px 14px auto; }
      .brand-copy span { font-size: .64rem; }

      .hero-grid { padding: 62px 0 96px; }
      .hero { background-position: 58% center; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { width: 100%; }
      .hero-card { width: 100%; }

      .trust-strip { margin-top: -34px; }
      .trust-grid { grid-template-columns: 1fr; }
      .trust-item { border-right: 0 !important; border-bottom: 1px solid rgba(73,56,45,.10); }
      .trust-item:last-child { border-bottom: 0; }

      .photo-frame img { min-height: 320px; }
      .benefit-grid,
      .services-grid,
      .process-grid { grid-template-columns: 1fr; }
      .story-copy { padding: 34px 26px; }
      .cta-box { padding: 34px 24px; }
      .cta-actions { width: 100%; }
      .cta-actions .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > :first-child { grid-column: auto; }
      .footer-bottom { flex-direction: column; }

      .mobile-call {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 60;
        display: flex;
        justify-content: center;
        min-height: 52px;
        align-items: center;
        color: var(--white);
        background: var(--green-800);
        border-radius: 999px;
        box-shadow: 0 14px 36px rgba(33,58,42,.34);
        font-weight: 900;
      }

      body { padding-bottom: 78px; }
    }


    /* Services & Benefits page */
    .page-hero {
      position: relative;
      min-height: 540px;
      display: grid;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(27,48,35,.94) 0%, rgba(27,48,35,.82) 44%, rgba(27,48,35,.42) 75%, rgba(27,48,35,.28) 100%),
        url('images/trencher.jpg') center 42%/cover no-repeat;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 120px;
      z-index: -1;
      background: linear-gradient(to top, rgba(17,29,21,.52), transparent);
    }

    .page-hero-inner {
      max-width: 820px;
      padding: 90px 0 112px;
    }

    .page-hero .eyebrow { color: #ead8b8; }
    .page-hero h1 { color: var(--white); margin-top: 16px; font-size: clamp(2.8rem, 6vw, 5.2rem); }
    .page-hero p { max-width: 720px; margin-top: 24px; color: rgba(255,255,255,.86); font-size: clamp(1.04rem, 1.8vw, 1.23rem); }
    .page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

    .intro-panel {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 64px;
      align-items: center;
    }

    .intro-panel .photo-frame img { min-height: 500px; }

    .service-detail-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .service-detail {
      position: relative;
      overflow: hidden;
      min-height: 290px;
      padding: 32px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 14px 36px rgba(33,58,42,.06);
      transition: .2s ease;
    }

    .service-detail:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(33,58,42,.10);
    }

    .service-detail.featured {
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(33,58,42,.97), rgba(56,92,67,.94)),
        url('images/webpic1.jpg') center/cover no-repeat;
      border-color: transparent;
    }

    .service-detail.featured h3,
    .service-detail.featured .service-number { color: var(--white); }
    .service-detail.featured p { color: rgba(255,255,255,.76); }
    .service-detail.featured .service-number { background: rgba(255,255,255,.12); }

    .service-number {
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      margin-bottom: 22px;
      color: var(--green-800);
      background: rgba(41,73,54,.08);
      border-radius: 15px;
      font-weight: 900;
    }

    .service-detail h3 { font-size: 1.6rem; }
    .service-detail p { margin-top: 12px; color: var(--muted); }
    .service-detail ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
    .service-detail li { position: relative; padding-left: 22px; color: var(--muted); font-size: .93rem; }
    .service-detail li::before { content: "\2713"; position: absolute; left: 0; color: var(--green-700); font-weight: 900; }
    .service-detail.featured li { color: rgba(255,255,255,.76); }
    .service-detail.featured li::before { color: #ead8b8; }

    .benefit-band {
      background: var(--sand);
      border-top: 1px solid rgba(73,56,45,.06);
      border-bottom: 1px solid rgba(73,56,45,.06);
    }

    .wide-benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .wide-benefit {
      padding: 30px 26px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(73,56,45,.08);
      border-radius: 18px;
    }

    .wide-benefit strong { display: block; margin-top: 18px; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
    .wide-benefit p { margin-top: 9px; color: var(--muted); font-size: .92rem; }

    .earthwork-section { background: #f3eee3; }

    .service-photo-band {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px;
      margin-top: 34px;
    }

    .service-photo-band figure {
      margin: 0;
      overflow: hidden;
      min-height: 270px;
      border-radius: 18px;
      box-shadow: 0 12px 32px rgba(33,58,42,.08);
    }

    .service-photo-band img { width: 100%; height: 100%; object-fit: cover; }

    .why-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 36px;
      align-items: center;
      padding: 44px;
      color: var(--white);
      background: var(--green-900);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .why-box h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
    .why-box p { max-width: 760px; margin-top: 14px; color: rgba(255,255,255,.72); }
    .why-box .btn { min-width: 190px; }

    .nav-links a[aria-current=page]::after { right: 0; }

    @media (max-width: 980px) {
      .intro-panel { grid-template-columns: 1fr; gap: 42px; }
      .wide-benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .service-photo-band { grid-template-columns: 1fr 1fr; }
      .service-photo-band figure:last-child { grid-column: 1 / -1; min-height: 340px; }
      .why-box { grid-template-columns: 1fr; }
    }

    @media (max-width: 650px) {
      .page-hero-inner { padding: 66px 0 92px; }
      .page-hero-actions { flex-direction: column; }
      .page-hero-actions .btn { width: 100%; }
      .service-detail-grid,
      .wide-benefit-grid,
      .service-photo-band { grid-template-columns: 1fr; }
      .service-photo-band figure:last-child { grid-column: auto; min-height: 270px; }
      .service-detail { min-height: auto; padding: 26px 24px; }
      .why-box { padding: 34px 24px; }
      .why-box .btn { width: 100%; min-width: 0; }
    }


    /* Why Kiesow page */
    .why-page .page-hero {
      background:
        linear-gradient(90deg, rgba(27,48,35,.95) 0%, rgba(27,48,35,.83) 44%, rgba(27,48,35,.42) 76%, rgba(27,48,35,.26) 100%),
        url('images/field2.jpg') center 52%/cover no-repeat;
    }

    .why-intro {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 66px;
      align-items: center;
    }

    .why-intro .photo-frame img { min-height: 520px; }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 44px;
    }

    .proof-card {
      padding: 30px 26px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 14px 36px rgba(33,58,42,.06);
    }

    .proof-card .icon-box { margin-bottom: 20px; }
    .proof-card h3 { font-size: 1.35rem; }
    .proof-card p { margin-top: 10px; color: var(--muted); font-size: .94rem; }

    .process-band {
      background: var(--sand);
      border-top: 1px solid rgba(73,56,45,.06);
      border-bottom: 1px solid rgba(73,56,45,.06);
    }

    .process-steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 46px;
    }

    .process-step {
      position: relative;
      padding: 30px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(73,56,45,.09);
      border-radius: 20px;
    }

    .process-step .step-number {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
      color: var(--white);
      background: var(--green-800);
      border-radius: 50%;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.12rem;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(41,73,54,.18);
    }

    .process-step h3 { font-size: 1.35rem; }
    .process-step p { margin-top: 10px; color: var(--muted); font-size: .94rem; }

    .commitment-section { background: #f3eee3; }

    .commitment-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 64px;
      align-items: center;
    }

    .commitment-panel {
      padding: 38px;
      color: var(--white);
      background: var(--green-900);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .commitment-panel h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.15rem); }
    .commitment-panel > p { margin-top: 16px; color: rgba(255,255,255,.74); }

    .commitment-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .commitment-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      background: rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 16px;
    }

/* Larger checks in commitment section */
.commitment-item .check {
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--green-700);
}
    .commitment-item strong { display: block; color: var(--white); }
    .commitment-item span { display: block; margin-top: 3px; color: rgba(255,255,255,.68); font-size: .9rem; }

    .documentation-card {
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: flex-end;
      padding: 34px;
      border-radius: 24px;
      background:
        linear-gradient(to top, rgba(27,48,35,.92), rgba(27,48,35,.12) 70%),
        url('images/trencher.jpg') center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .documentation-card div { max-width: 470px; }
    .documentation-card h3 { color: var(--white); font-size: 1.8rem; }
    .documentation-card p { margin-top: 10px; color: rgba(255,255,255,.78); }

    .results-callout {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 36px;
      align-items: center;
      padding: 44px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .results-callout p { max-width: 760px; margin-top: 12px; color: var(--muted); }

    @media (max-width: 980px) {
      .why-intro,
      .commitment-grid { grid-template-columns: 1fr; gap: 42px; }
      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .results-callout { grid-template-columns: 1fr; }
    }

    @media (max-width: 650px) {
      .proof-grid,
      .process-steps { grid-template-columns: 1fr; }
      .proof-card,
      .process-step { padding: 26px 24px; }
      .commitment-panel,
      .documentation-card,
      .results-callout { padding: 30px 24px; }
      .documentation-card { min-height: 390px; }
      .results-callout .btn { width: 100%; }
    }


    /* The Kiesow Story page */
    .story-page .page-hero {
      background:
        linear-gradient(90deg, rgba(27,48,35,.96) 0%, rgba(27,48,35,.85) 44%, rgba(27,48,35,.46) 76%, rgba(27,48,35,.28) 100%),
        url('images/trencher.jpg') center 46%/cover no-repeat;
    }

    .story-intro {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 68px;
      align-items: center;
    }

    .story-intro .photo-frame img { min-height: 540px; }

    .story-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .story-stat {
      padding: 20px;
      background: var(--sand);
      border: 1px solid rgba(73,56,45,.08);
      border-radius: 16px;
    }

    .story-stat strong {
      display: block;
      color: var(--green-900);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.35rem;
    }

    .story-stat span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: .86rem;
    }

    .timeline-section {
      background: var(--sand);
      border-top: 1px solid rgba(73,56,45,.06);
      border-bottom: 1px solid rgba(73,56,45,.06);
    }

    .timeline {
      position: relative;
      max-width: 980px;
      margin: 52px auto 0;
      padding: 0;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 16px;
      bottom: 16px;
      left: 50%;
      width: 2px;
      transform: translateX(-50%);
      background: rgba(41,73,54,.18);
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 70px 1fr;
      align-items: start;
      min-height: 190px;
    }

    .timeline-item:last-child { min-height: 120px; }

    .timeline-dot {
      grid-column: 2;
      justify-self: center;
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      color: var(--white);
      background: var(--green-800);
      border: 7px solid var(--sand);
      border-radius: 50%;
      box-shadow: 0 0 0 1px rgba(41,73,54,.12), 0 8px 22px rgba(41,73,54,.16);
      font-size: .86rem;
      font-weight: 900;
      z-index: 2;
    }

    .timeline-card {
      max-width: 420px;
      padding: 28px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(73,56,45,.09);
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(33,58,42,.05);
    }

    .timeline-card .year {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--brown-700);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .timeline-card h3 { font-size: 1.55rem; }
    .timeline-card p { margin-top: 10px; color: var(--muted); font-size: .95rem; }

    .timeline-item:nth-child(odd) .timeline-card {
      grid-column: 1;
      justify-self: end;
      text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-card {
      grid-column: 3;
      justify-self: start;
    }

    .values-section { background: #f3eee3; }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 44px;
    }

    .value-card {
      padding: 34px 30px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 14px 36px rgba(33,58,42,.06);
    }

    .value-card .icon-box { margin-bottom: 22px; }
    .value-card h3 { font-size: 1.5rem; }
    .value-card p { margin-top: 12px; color: var(--muted); }

    .legacy-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 62px;
      align-items: stretch;
    }

    .legacy-photo {
      min-height: 520px;
      overflow: hidden;
      border-radius: 24px;
      background:
        linear-gradient(to top, rgba(27,48,35,.72), rgba(27,48,35,.02) 65%),
        url('images/webpic1.jpg') center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .legacy-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 44px;
      color: var(--white);
      background: var(--green-900);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .legacy-panel .eyebrow { color: #ead8b8; }
    .legacy-panel h2 { margin-top: 14px; color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
    .legacy-panel p { margin-top: 16px; color: rgba(255,255,255,.74); }

    .legacy-list {
      display: grid;
      gap: 13px;
      margin-top: 28px;
    }

    .legacy-list div {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
    }

    .legacy-list span:first-child {
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      color: var(--green-900);
      background: var(--tan-300);
      border-radius: 50%;
      font-weight: 900;
    }

    .legacy-list strong { display: block; color: var(--white); }
    .legacy-list small { display: block; margin-top: 2px; color: rgba(255,255,255,.64); font-size: .88rem; }

    .story-quote {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .story-quote blockquote {
      margin: 20px 0 0;
      color: var(--green-900);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.7rem, 3.4vw, 2.8rem);
      line-height: 1.25;
      letter-spacing: -.02em;
    }

    .story-quote p {
      max-width: 700px;
      margin: 20px auto 0;
      color: var(--muted);
    }

    @media (max-width: 980px) {
      .story-intro,
      .legacy-grid { grid-template-columns: 1fr; gap: 42px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .values-grid .value-card:last-child { grid-column: 1 / -1; }
      .legacy-photo { min-height: 420px; }
    }

    @media (max-width: 760px) {
      .timeline::before { left: 27px; transform: none; }
      .timeline-item {
        grid-template-columns: 54px 1fr;
        gap: 18px;
        min-height: 0;
        margin-bottom: 24px;
      }
      .timeline-dot { grid-column: 1; grid-row: 1; width: 54px; height: 54px; }
      .timeline-item:nth-child(odd) .timeline-card,
      .timeline-item:nth-child(even) .timeline-card {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
        text-align: left;
      }
    }

    @media (max-width: 650px) {
      .story-stat-row,
      .values-grid { grid-template-columns: 1fr; }
      .values-grid .value-card:last-child { grid-column: auto; }
      .story-intro .photo-frame img { min-height: 380px; }
      .legacy-panel { padding: 34px 24px; }
      .legacy-photo { min-height: 340px; }
      .timeline-card { padding: 24px 22px; }
    }

/* Shared utility classes replacing former inline styles */
.mt-24 { margin-top: 24px; }
.mt-30 { margin-top: 30px; }
.pt-20 { padding-top: 20px; }
.bg-sand { background: var(--sand); }
.eyebrow-light { color: #ead8b8; }
.btn-brown { background: var(--brown-900); color: var(--white); }
.btn-brown:hover { background: #35281f; }
