:root {
  --leaf: #2f6b3f;
  --leaf-dark: #173d26;
  --sage: #7e9b6f;
  --clay: #b87345;
  --gold: #d1a04d;
  --cream: #f6f1e7;
  --paper: #fffdf7;
  --ink: #1f2a22;
  --muted: #657064;
  --line: rgba(31, 42, 34, 0.14);
  --shadow: 0 18px 50px rgba(24, 47, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--leaf-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--leaf-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(47, 107, 63, 0.1);
}

.nav-links .cta-link {
  margin-left: 8px;
  background: var(--leaf);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--leaf-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 20, 0.88), rgba(15, 31, 20, 0.4) 52%, rgba(15, 31, 20, 0.18)),
    url("../images/hero-herbs.jpeg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #f4d98d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  font-weight: 700;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.light {
  background: var(--paper);
  color: var(--leaf-dark);
  border-color: var(--line);
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: var(--cream);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  color: var(--leaf-dark);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.market-card,
.cert-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(24, 47, 30, 0.07);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card .pad,
.market-card,
.cert-card,
.contact-card {
  padding: 24px;
}

.feature-card h3,
.market-card h3,
.cert-card h3,
.contact-card h3 {
  color: var(--leaf-dark);
  font-size: 1.22rem;
}

.feature-card p,
.market-card p,
.cert-card p,
.contact-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.74);
}

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

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.page-hero {
  min-height: 48svh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--leaf-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 42, 25, 0.86), rgba(18, 42, 25, 0.32)), var(--page-image) center / cover no-repeat;
}

.page-hero .container {
  position: relative;
  padding: 90px 0 58px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.story p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.timeline-item {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
}

.timeline-item h3 {
  color: var(--leaf-dark);
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery img {
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery .wide {
  grid-column: span 7;
}

.gallery .narrow {
  grid-column: span 5;
}

.gallery .third {
  grid-column: span 4;
}

.process-list {
  display: grid;
  gap: 14px;
  counter-reset: process;
}

.process-item {
  counter-increment: process;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--leaf);
  color: #fff;
  font-weight: 900;
}

.process-item h3 {
  color: var(--leaf-dark);
}

.process-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--leaf-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  background: var(--leaf-dark);
  color: #eaf0e8;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin: 0 0 10px;
}

.footer p,
.footer a {
  color: rgba(234, 240, 232, 0.78);
}

.footer a {
  display: block;
  margin-top: 7px;
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

  .nav-links .cta-link {
    margin-left: 0;
  }

  .hero {
    min-height: calc(92svh - 68px);
  }

  .section {
    padding: 58px 0;
  }

  .grid.two,
  .grid.three,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery .wide,
  .gallery .narrow,
  .gallery .third {
    grid-column: span 12;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding: 70px 0 46px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .stats,
  .product-strip {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
  }
}
