:root {
  --forest: #12382d;
  --leaf: #2f8d5b;
  --moss: #8aa13d;
  --sun: #f2b84b;
  --clay: #b95f3a;
  --ink: #1d2722;
  --muted: #65736b;
  --paper: #f7f3e9;
  --white: #ffffff;
  --line: rgba(29, 39, 34, 0.14);
  --shadow: 0 18px 48px rgba(18, 56, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(247, 243, 233, 0.96);
  box-shadow: 0 8px 28px rgba(18, 56, 45, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--forest);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(20px, 6vw, 76px) 80px;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(18, 56, 45, 0.86), rgba(18, 56, 45, 0.42) 48%, rgba(18, 56, 45, 0.18));
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding-bottom: clamp(28px, 7vh, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: rgb(83, 198, 58);
  color: var(--forest);

}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.section-wrap {
  width: min(1180px, calc(100% - 50px));
  margin: 0 auto;
  position: relative;
}

.intro-band {
  padding: clamp(56px, 9vw, 104px) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.intro-grid p:last-child,
.territory-layout p,
.contact-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.metrics {
  padding: 28px 0;
  background: var(--forest);
  color: var(--white);
}

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

.metric-grid article {
  padding: 24px;
  border-left: 4px solid var(--sun);
  background: rgba(255, 255, 255, 0.06);
}

.metric-grid strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.actions-section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 760px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

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

.action-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, opacity 180ms ease;
}

.action-card:hover {
  transform: translateY(-4px);
}

.action-card.hidden {
  display: none;
}

.action-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d9ded5;
}

.action-card:last-child img {
  object-fit: contain;
  padding: 12px;
}

.action-body {
  padding: 20px;
}

.action-body span {
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 800;
}

.action-body p {
  margin: 0;
  color: var(--muted);
}

.territory-section {
  padding: clamp(64px, 9vw, 112px) 0;
  background: #e9efe2;
}

.territory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 56, 45, 0.18);
}

.timeline time {
  color: var(--clay);
  font-weight: 900;
}

.contact-section {
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 7vw, 80px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 24px 0;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: var(--sun);
  font-weight: 800;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 88vh;
  }

  .intro-grid,
  .territory-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: 86vh;
    padding: 110px 20px 56px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 56, 45, 0.5), rgba(18, 56, 45, 0.92));
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 2.95rem);
    line-height: 1.02;
  }

  .hero-actions,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .filter {
    width: 100%;
  }

  .metric-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .timeline div {
    grid-template-columns: 72px 1fr;
  }

  .footer-layout {
    flex-direction: column;
  }
}
