﻿:root {
  --green: #1a403f;
  --green-soft: #256361;
  --mint: #59a79b;
  --gold: #ca9806;
  --ink: #202020;
  --text: #474747;
  --muted: #f4f4f0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Jost", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(26, 64, 63, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(1140px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 230px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 10px 0;
  color: #111;
  text-decoration: none;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-soft);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 58px;
  height: 42px;
  border: 1px solid rgba(26, 64, 63, 0.2);
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  animation: slow-pan 18s ease-in-out infinite alternate;
}

.hero::after {
  background: rgba(35, 35, 35, 0.52);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 135px;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: capitalize;
}

.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 20px;
}

.section {
  padding: 80px 0;
}

.section.tight {
  padding: 54px 0;
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-soft);
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

h2,
h3 {
  color: var(--green-soft);
  line-height: 1.16;
}

h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 600;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.service-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: -88px;
}

.feature-card,
.testimonial-card {
  position: relative;
  min-height: 310px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.feature-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  transition: transform 360ms ease;
}

.feature-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(26, 64, 63, 0.78);
  transition: background 240ms ease;
}

.feature-card:hover::before,
.testimonial-card:hover::before {
  transform: scale(1.06);
}

.feature-card:hover::after,
.testimonial-card:hover::after {
  background: rgba(26, 64, 63, 0.62);
}

.feature-card h2,
.feature-card h3,
.testimonial-card h3 {
  margin-bottom: 12px;
  color: var(--mint);
  font-family: "Jost", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.feature-card p,
.testimonial-card p {
  margin: 0 0 22px;
  color: #fff;
}

.text-link {
  width: fit-content;
  padding-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.text-link:hover {
  color: var(--mint);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.photo-rail {
  min-height: 430px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--muted);
  box-shadow: var(--shadow);
}

.photo-rail-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 18px 0;
  animation: photo-rail-scroll 70s linear infinite;
}

.photo-rail-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-left: 18px;
}

.photo-rail-item {
  flex: 0 0 auto;
  height: 394px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.photo-rail-item img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: cover;
}

.photo-rail:hover .photo-rail-track {
  animation-play-state: paused;
}

@keyframes photo-rail-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-grid,
.location-grid,
.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.muted-band {
  background: var(--muted);
}

.content-card {
  padding: 30px;
  border: 1px solid rgba(26, 64, 63, 0.12);
  border-radius: 6px;
  background: #fff;
}

.content-card p {
  margin: 0;
}

.vendor-section {
  padding: 66px 0 78px;
}

.vendor-section + .vendor-section {
  border-top: 1px solid rgba(26, 64, 63, 0.1);
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.vendor-logo {
  min-height: 138px;
  padding: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 64, 63, 0.12);
  border-radius: 6px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vendor-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.vendor-logo img {
  max-height: 86px;
  object-fit: contain;
}

.contact-intro {
  max-width: 760px;
}

.site-footer {
  color: #fff;
  background: var(--green);
}

.footer-main {
  padding: 58px 0 48px;
}

.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-weight: 700;
}

.copyright {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@keyframes slow-pan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    padding: 18px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(26, 64, 63, 0.12);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .service-cards,
  .split,
  .testimonial-grid,
  .location-grid,
  .history-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-cards {
    margin-top: -54px;
  }

  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .wrap,
  .hero-inner {
    width: min(100% - 28px, 1140px);
  }

  .logo {
    width: 190px;
  }

  .section,
  .vendor-section {
    padding: 54px 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-inner {
    padding-bottom: 96px;
  }

  .feature-card,
  .testimonial-card {
    min-height: 280px;
    padding: 32px 26px;
  }

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