:root {
  --container: 1400px;
  --gutter: clamp(18px, 4vw, 48px);
  --ink: #173421;
  --muted: #647466;
  --leaf: #2f6b37;
  --leaf-dark: #1e4d2a;
  --leaf-soft: #e4edd9;
  --cream: #f6f2e8;
  --paper: #fffdf6;
  --line: rgba(23, 52, 33, 0.13);
  --shadow: 0 24px 70px rgba(23, 52, 33, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  background: var(--leaf-dark);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.topbar-inner,
.site-header,
.container,
.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(246, 242, 232, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--leaf-dark);
  color: white;
  font-weight: 900;
}

.brand strong,
.brand small { display: block; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 12px; }

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: #2d4c35;
  font-size: 14px;
  font-weight: 800;
}

.nav a.active,
.nav a:hover { color: var(--leaf); }

.section {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.hero {
  padding-top: clamp(56px, 8vw, 105px);
  padding-bottom: clamp(56px, 8vw, 105px);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.page-hero {
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .55fr);
  gap: 34px;
  align-items: end;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -.07em;
}

.page-hero h1 {
  font-size: clamp(42px, 5.8vw, 74px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -.028em;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 720px;
  font-size: 19px;
}

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

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

.button.primary,
button {
  background: var(--leaf-dark);
  color: white;
  box-shadow: 0 12px 28px rgba(31, 79, 42, .23);
}

.button.ghost {
  background: rgba(255,255,255,.56);
  border-color: var(--line);
  color: var(--leaf-dark);
}

.media-card { position: relative; }

.media-card img,
.wide-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero .media-card img { min-height: 540px; }

.badge-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 22px;
  background: rgba(255,253,246,.9);
  backdrop-filter: blur(14px);
}

.badge-card strong,
.badge-card span { display: block; }
.badge-card span { margin-top: 6px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
}

.stat small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stat strong { display: block; margin-top: 7px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-head h2 { max-width: 760px; }
.section-head p { max-width: 470px; }

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(23, 52, 33, .08);
}

.card,
.panel { padding: 26px; }

.product-card { overflow: hidden; }
.product-card img { width: 100%; height: 240px; object-fit: cover; }
.product-card > div { padding: 24px; }
.product-card .num { color: var(--leaf); font-weight: 950; }

.muted-band {
  width: 100%;
  max-width: none;
  background: #e9efdf;
}

.table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.table-row {
  display: grid;
  grid-template-columns: .9fr 1.2fr 1.3fr .8fr;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child { border-bottom: 0; }
.table-row.header { background: var(--leaf-dark); color: white; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.table-row span:first-child { font-weight: 900; }

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

.process li {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
}

.process b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--leaf-dark);
  color: white;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
}

.faq-item h3 { font-size: 20px; }
.faq-item p { margin-bottom: 0; }

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

.form label {
  display: grid;
  gap: 8px;
  color: #31523a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfaf3;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.form textarea { min-height: 130px; resize: vertical; }

.cta {
  margin-top: 30px;
  padding: 32px;
  border-radius: 32px;
  background: var(--leaf-dark);
  color: white;
}

.cta p { color: rgba(255,255,255,.78); }

.footer {
  border-top: 1px solid var(--line);
  background: #efe8d8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer p { margin: 0; font-size: 14px; }

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

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

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

  .media-card img,
  .hero .media-card img,
  .wide-image img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .site-header,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav { justify-content: flex-start; gap: 12px; }

  h1 { font-size: clamp(40px, 13vw, 58px); }

  .card-grid,
  .card-grid.four,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}
