:root {
  --forest: #142d24;
  --forest-light: #204b37;
  --ink: #223329;
  --muted: #58685b;
  --line: #dce2d3;
  --surface: #f0f3e7;
  --surface-2: #e9eedc;
  --white: #fffef8;
  --lime: #d2ed64;
  --leaf: #39704b;
  --sage: #abc87f;
  --olive: #6d713c;
  --highlight: #e0f19a;
  --shadow: 0 24px 60px rgba(20, 45, 36, 0.18);
  --shadow-soft: 0 12px 34px rgba(20, 45, 36, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fafbf2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(20, 45, 36, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 162px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: calc(100vh - 80px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 4vw, 64px) clamp(48px, 7vw, 86px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #142d24 0%, #204b37 56%, #355d3e 100%);
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 14px;
  color: #526925;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta .eyebrow,
.quote-band .eyebrow {
  color: var(--highlight);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #668426;
  outline-offset: 4px;
}

.brand-statement {
  max-width: 760px;
  margin-top: 24px;
  color: #d5e4c3;
  font-size: 1.15rem;
}

h1,
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  line-height: 1.02;
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  font-weight: 950;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 900;
}

.hero-text {
  max-width: 630px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #20301a;
  background: linear-gradient(180deg, #e4f59b, var(--lime));
  box-shadow: 0 18px 38px rgba(160, 192, 78, 0.26);
}

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

.button-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  box-shadow: var(--shadow-soft);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-media {
  justify-self: end;
  width: 100%;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: 0 40px 90px rgba(12, 30, 21, 0.34);
}

.hero-media img {
  border-radius: 6px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #dce2d3;
  border-bottom: 1px solid var(--line);
}

.metrics article {
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(180deg, #fffef8, #f4f5e9);
}

.metrics strong {
  display: block;
  color: #376243;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 950;
}

.metrics span {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.section,
.page-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(160, 192, 78, 0.12), transparent 34%),
    var(--surface);
}

.split p:last-child {
  color: var(--muted);
  font-size: 1.16rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.compact {
  margin-bottom: 22px;
}

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

.feature-card,
.info-card,
.service-card,
.contact-panel,
.legal-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(34, 51, 41, 0.03);
}

.feature-card,
.info-card,
.service-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.info-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 192, 78, 0.5);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #20301a;
  background: var(--lime);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--leaf);
  color: var(--white);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--highlight);
  color: #223329;
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--olive);
  color: var(--white);
}

.feature-card p,
.info-card p,
.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.quote-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(160, 192, 78, 0.18), rgba(210, 237, 100, 0.12)),
    linear-gradient(135deg, var(--forest), #254d35);
}

blockquote {
  max-width: 980px;
  margin: 0;
}

blockquote p {
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.25;
  font-weight: 800;
}

blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--highlight);
  font-style: normal;
  font-weight: 900;
}

.faq {
  background: var(--surface-2);
}

details {
  max-width: 980px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.12rem;
  font-weight: 900;
  list-style-position: inside;
}

details p {
  max-width: 780px;
  padding: 0 0 22px;
  color: var(--muted);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 4vw, 64px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(160, 192, 78, 0.2), transparent 36%),
    #204b37;
}

.cta h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  padding: 40px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--forest);
}

.site-footer img {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 460px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px 18px;
}

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

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, var(--forest), #355d3e);
  background-size: 42px 42px, 42px 42px, auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 82px);
}

.text-flow p + p,
.text-flow ul + p,
.text-flow p + ul {
  margin-top: 16px;
}

.text-flow p,
.text-flow li {
  color: var(--muted);
}

.text-flow ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

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

.two-col .info-grid {
  grid-template-columns: 1fr;
}

.service-card strong {
  display: inline-block;
  margin-bottom: 12px;
  color: #376243;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.service-card h2 {
  font-size: 1.4rem;
  line-height: 1.15;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-panel {
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(34, 51, 41, 0.03);
  overflow-wrap: anywhere;
}

.contact-grid > * {
  min-width: 0;
}

.form-note a,
.legal-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.contact-list strong {
  display: block;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fafbf2;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--leaf);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(160, 192, 78, 0.16);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin-top: 14px;
  color: var(--leaf);
  font-weight: 800;
}

.legal-card {
  max-width: 980px;
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 1.5rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-self: start;
    width: 100%;
  }

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

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 140px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #142d24;
    box-shadow: var(--shadow);
  }

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

  .metrics,
  .feature-grid,
  .info-grid,
  .service-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  h1,
  .page-hero h1 {
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .button {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.hero-highlight { color: var(--lime); }
.hero-media { border-radius: 28px; padding: 0; border: none; background: transparent; box-shadow: none; }
.hero-media img { border-radius: 28px; width: 100%; }
.button-primary { box-shadow: 0 12px 30px rgba(210, 237, 100, 0.15); }
.button { cursor: pointer; }
.form-note { margin-bottom: 20px; }
.feature-card, .info-card, .service-card { border-radius: 16px; }
.brand img { width: 180px; }
@media (max-width: 720px) {
  .brand img { width: 150px; }
  .site-footer { grid-template-columns: minmax(0, 1fr); }
}
