:root {
  --ink: #1c2520;
  --muted: #5c685f;
  --paper: #fffaf3;
  --surface: #ffffff;
  --field: #f5f0e8;
  --line: #ded7cb;
  --green: #2e6b46;
  --green-dark: #204f33;
  --leaf: #7aa95c;
  --gold: #d69232;
  --coral: #c75d4b;
  --blue: #3f6f88;
  --shadow: 0 16px 36px rgba(42, 36, 26, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 6px;
  min-width: 44px;
  min-height: 44px;
  font: inherit;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.65rem 0.78rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--green-dark);
  background: #edf4e8;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 4.5rem 0 2rem;
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-dark);
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.14;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 8vw, 5.4rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 64ch;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  margin: 1.1rem 0 0;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

.button.secondary {
  background: var(--surface);
  color: var(--green-dark);
  border-color: var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(46, 107, 70, 0.16);
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #e8efe3;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.below-hero-hint {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: #f1eadf;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.section-header p {
  margin: 0.5rem 0 0;
  max-width: 66ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(42, 36, 26, 0.07);
}

.card-body {
  padding: 1rem;
}

.card p,
.text-block p,
.faq-answer p {
  color: var(--muted);
}

.card p:last-child,
.text-block p:last-child {
  margin-bottom: 0;
}

.image-frame {
  background: #e9efe2;
  border-bottom: 1px solid var(--line);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.7rem;
}

.trace {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.trace-pill {
  display: inline-flex;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: #eef4ec;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.page-hero {
  padding: 4.25rem 0 2.5rem;
  background: #f1eadf;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 13ch;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--green-dark);
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.panel {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li + li {
  margin-top: 0.45rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--ink);
  background: #f5d9a7;
  font-size: 0.78rem;
  font-weight: 900;
}

.badge.green {
  background: #d8eacb;
}

.badge.blue {
  background: #d8e8ef;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1rem;
}

.contact-method {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf4e8;
  color: var(--green-dark);
  font-weight: 900;
}

form {
  display: grid;
  gap: 0.85rem;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

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

.form-note {
  min-height: 24px;
  color: var(--green-dark);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: #edf4e8;
}

tr:last-child td {
  border-bottom: 0;
}

.sitemap {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre;
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #1f2b24;
  color: white;
  padding: 2rem 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-inner a {
  color: white;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .grid.three,
  .grid.two,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: block;
  }

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

@media (max-width: 480px) {
  .nav-wrap,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .brand-text small {
    display: none;
  }

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

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