:root {
  --bg: #f4f5ef;
  --paper: #fffef8;
  --ink: #172017;
  --muted: #697061;
  --line: #dde2d3;
  --green: #6f8d22;
  --green-dark: #1e3f24;
  --moss: #a9bc55;
  --charcoal: #0f1c14;
  --cream: #fbfbf2;
  --shadow: 0 24px 70px rgba(24, 42, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #d7dbcf;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

svg {
  fill: currentColor;
}

.site-header,
main,
.footer {
  width: min(100%, 1240px);
  margin: 0 auto;
  background: var(--bg);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  padding: 18px 28px 0;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 1184px);
  min-height: 56px;
  margin: 0 auto;
  padding: 8px 10px 8px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(16, 28, 18, 0.28);
  box-shadow: 0 18px 44px rgba(7, 15, 8, 0.2);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a,
.footer-links a {
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
  color: #172017;
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  color: #172017;
  background: rgba(255, 255, 255, 0.88);
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(92, 121, 23, 0.34);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(17, 35, 16, 0.08);
}

.nav-cta:hover,
.button:hover,
.contact-card:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  background: #5a7418;
  box-shadow: 0 18px 34px rgba(92, 121, 23, 0.38);
}

.button-secondary:hover,
.nav-cta:hover {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 14px 28px rgba(20, 44, 15, 0.14);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  margin-top: -74px;
  overflow: hidden;
  color: #fff;
  place-items: center start;
  background: var(--charcoal);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 16, 9, 0.76), rgba(7, 16, 9, 0.36) 46%, rgba(7, 16, 9, 0.08)),
    linear-gradient(0deg, rgba(7, 16, 9, 0.52), rgba(7, 16, 9, 0) 40%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 170px 48px 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1080px;
  margin-bottom: 22px;
  font-size: clamp(54px, 10vw, 128px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px 48px 76px;
}

.metrics article {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.metrics article:first-child {
  padding-left: 0;
}

.metrics article:last-child {
  padding-right: 0;
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.metrics span,
.feature-copy p,
.service-card p,
.showcase-copy p,
.contact p,
.story-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.split-feature,
.services,
.insights,
.contact {
  padding: 0 48px 88px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
  gap: 44px;
  align-items: center;
}

.feature-image {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 440ms ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 16, 9, 0.76), rgba(7, 16, 9, 0.04) 62%);
}

.feature-image div {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 30px;
  color: #fff;
}

.feature-image span,
.story-grid span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-image span {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.feature-image p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-copy {
  max-width: 610px;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-title-row > div {
  max-width: 760px;
}

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

.service-card {
  min-height: 292px;
  padding: 30px 24px;
  border: 1px solid rgba(30, 63, 36, 0.06);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(24, 24, 20, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.story-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(111, 141, 34, 0.24);
  background: #fff;
  box-shadow: var(--shadow);
}

.icon-badge {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  color: var(--green-dark);
  border-radius: 50%;
  background: #e9efd5;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.service-card:hover .icon-badge {
  color: #fff;
  background: var(--green);
  transform: rotate(-5deg) scale(1.06);
}

.icon-badge svg {
  width: 23px;
}

.dark-showcase {
  padding: 78px 48px;
  background: var(--charcoal);
}

.showcase-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.showcase-copy {
  padding: 58px 50px;
  background:
    radial-gradient(circle at 100% 0, rgba(169, 188, 85, 0.28), transparent 34%),
    var(--bg);
}

.showcase-list {
  display: grid;
  gap: 0;
  padding: 22px 0 0;
  margin: 0;
  list-style: none;
}

.showcase-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  border-top: 1px solid var(--line);
  font-weight: 780;
  transition: color 180ms ease, padding-left 180ms ease;
}

.showcase-list li:hover {
  color: var(--green);
  padding-left: 8px;
}

.showcase-list li span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.showcase-list li strong {
  font-size: 16px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.insights {
  padding-top: 88px;
}

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

.story-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(30, 63, 36, 0.06);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.story-grid span {
  color: var(--green);
}

.story-grid p {
  margin: 24px 0 34px;
  color: #263025;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: 32px;
  align-items: center;
}

.contact-card {
  position: relative;
  display: block;
  padding: 34px 78px 34px 34px;
  border: 1px solid rgba(30, 63, 36, 0.08);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(24, 24, 20, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  border-color: rgba(111, 141, 34, 0.24);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 12px;
  overflow-wrap: anywhere;
  font-size: 22px;
}

.contact-card svg {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 26px;
  color: var(--green);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.contact-card:hover svg {
  transform: translate(4px, -50%);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px 48px;
  color: rgba(255, 255, 255, 0.88);
  background: var(--charcoal);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a:hover {
  color: var(--moss);
  transform: translateY(-1px);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

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

@media (max-width: 860px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-copy,
  .metrics,
  .split-feature,
  .services,
  .insights,
  .contact,
  .dark-showcase,
  .footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .nav {
    gap: 12px;
  }

  .brand span {
    max-width: 190px;
    white-space: normal;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    padding-top: 150px;
  }

  .metrics,
  .split-feature,
  .showcase-card,
  .story-grid,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 24px;
    padding-top: 44px;
  }

  .metrics article,
  .metrics article:first-child,
  .metrics article:last-child {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-copy {
    padding: 36px 26px;
  }

  .footer {
    justify-items: start;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .nav-cta {
    display: none;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    min-height: 660px;
  }

  .hero-copy {
    padding-top: 138px;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(40px, 11vw, 50px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .contact-card {
    padding-right: 34px;
  }

  .contact-card svg {
    position: static;
    margin-top: 24px;
    transform: none;
  }

  .contact-card:hover svg {
    transform: translateX(4px);
  }
}
