/* ==========================================================================
   Siddhi Farm design system
   ========================================================================== */

:root {
  --green-950: #0e2916;
  --green-900: #14351f;
  --green-800: #1b4d2b;
  --green-700: #226436;
  --green-600: #2e7d43;
  --gold-500: #f0a91d;
  --gold-400: #f6bd45;
  --cream: #faf6ec;
  --cream-dark: #f3ecdc;
  --white: #ffffff;
  --ink: #21281f;
  --ink-soft: #5a6355;
  --line: rgba(20, 53, 31, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(14, 41, 22, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 41, 22, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 41, 22, 0.16);

  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); color: var(--green-900); line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; font-weight: 600; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.container.narrow { width: min(820px, 92%); }
.center { text-align: center; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.9rem;
}
.eyebrow.center { display: block; text-align: center; }

.section-sub {
  max-width: 640px;
  margin: -0.4rem auto 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold-500); color: var(--green-950); box-shadow: 0 8px 24px rgba(240, 169, 29, 0.35); }
.btn-gold:hover { background: var(--gold-400); box-shadow: 0 12px 28px rgba(240, 169, 29, 0.45); }
.btn-ghost { background: rgba(255, 255, 255, 0.14); color: var(--white); border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.24); }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-outline:hover { background: var(--green-800); color: var(--cream); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img { height: 46px; width: auto; }
.nav:not(.is-scrolled):not(.nav-solid) .nav-logo img { filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5)) brightness(0) invert(1); }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-links a {
  color: var(--green-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav:not(.is-scrolled):not(.nav-solid) .nav-links a { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; }
.nav:not(.is-scrolled):not(.nav-solid) .nav-cta .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.7); }
.nav:not(.is-scrolled):not(.nav-solid) .nav-cta .btn-outline:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.nav.nav-solid:not(.is-scrolled) { background: var(--cream); box-shadow: 0 1px 0 var(--line); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-burger span {
  width: 24px; height: 2.5px;
  border-radius: 2px;
  background: var(--green-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav:not(.is-scrolled):not(.nav-solid) .nav-burger span { background: var(--white); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg img { animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 16, 0.55) 0%, rgba(10, 28, 16, 0.25) 45%, rgba(10, 28, 16, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 28, 16, 0.55) 0%, rgba(10, 28, 16, 0.05) 65%);
}
.hero-content { position: relative; z-index: 1; padding: calc(var(--nav-h) + 3rem) 0 4.5rem; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.hero h1 { color: var(--white); max-width: 14ch; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero-sub {
  max-width: 54ch;
  margin-top: 1.3rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  list-style: none;
  margin-top: 2.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero-badges li { display: flex; align-items: center; gap: 0.45rem; }
.hero-badges li::before { content: "✓"; color: var(--gold-400); font-weight: 800; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(2.2rem, 5vw, 3.5rem);
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(240, 169, 29, 0.14), transparent 60%),
    radial-gradient(900px 420px at 10% 110%, rgba(46, 125, 67, 0.10), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .lead { max-width: 62ch; margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }
.crumbs { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 1.2rem; }
.crumbs a { color: var(--green-700); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span::before { content: "›"; margin: 0 0.5rem; color: var(--ink-soft); }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--green-900);
  color: var(--cream);
  overflow: hidden;
  padding: 0.85rem 0;
  border-block: 3px solid var(--gold-500);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee-track i { color: var(--gold-500); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Story
   ========================================================================== */
.story-media { position: relative; }
.story-media > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  width: 88%;
}
.story-card {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
  rotate: 2deg;
  transition: rotate 0.35s ease, transform 0.35s ease;
}
.story-card:hover { rotate: 0deg; transform: scale(1.03); }
.story-text p { margin-bottom: 1rem; color: var(--ink-soft); }
.story-text p strong { color: var(--green-800); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--green-800);
  display: block;
  line-height: 1;
}
.stat span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }

/* ==========================================================================
   Products
   ========================================================================== */
.products { background: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.product-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.is-featured { border: 2px solid var(--gold-500); background: #fffdf6; }
.product-flag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #eef0ea; }
.product-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.product-media-alt { opacity: 0; }
.product-card:hover .product-media-alt { opacity: 1; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.product-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  background: rgba(46, 125, 67, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.product-body h3 { margin-bottom: 0.5rem; }
.product-body > p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.9rem;
}
.product-price small { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; color: var(--ink-soft); }
.product-specs { list-style: none; margin-top: auto; display: grid; gap: 0.4rem; }
.product-specs li {
  font-size: 0.84rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.product-specs li::before { content: "•"; color: var(--gold-500); font-weight: 800; }
.product-note { text-align: center; margin-top: 2.2rem; font-size: 0.82rem; color: var(--ink-soft); }

/* ==========================================================================
   Farm cards
   ========================================================================== */
.farm { background: var(--green-900); }
.farm .eyebrow { color: var(--gold-400); }
.farm h2 { color: var(--cream); }
.farm .section-sub { color: rgba(250, 246, 236, 0.75); }
.farm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.farm-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-800);
  border: 1px solid rgba(250, 246, 236, 0.12);
  transition: transform 0.3s ease;
}
.farm-card:hover { transform: translateY(-6px); }
.farm-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.farm-card figcaption { padding: 1.2rem 1.3rem 1.5rem; }
.farm-card h3 { color: var(--gold-400); font-size: 1.08rem; margin-bottom: 0.4rem; }
.farm-card p { font-size: 0.88rem; color: rgba(250, 246, 236, 0.78); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-section { background: var(--white); }
.gallery {
  columns: 4 260px;
  column-gap: 1rem;
  margin-top: 2.6rem;
}
.gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  break-inside: avoid;
}
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); filter: brightness(1.05); }
.gallery-more { margin-top: 1.6rem; color: var(--ink-soft); }
.gallery-more a { color: var(--green-700); font-weight: 700; }

/* ==========================================================================
   Stores
   ========================================================================== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.store-card h3 { margin-bottom: 0.6rem; }
.store-logo {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.store-logo img { max-height: 64px; max-width: 190px; object-fit: contain; }
.store-logo.is-tile img { border-radius: 14px; }
.store-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.store-wordmark.star { color: #1b3f8f; }
.store-wordmark.star .star-glyph { color: #e21b22; }
.store-cities { justify-content: center; }
.store-cities { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.store-cities span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-700);
  background: rgba(46, 125, 67, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.b2b {
  margin-top: 3rem;
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.b2b h3 { color: var(--cream); font-size: 1.45rem; margin-bottom: 0.4rem; }
.b2b p { color: rgba(250, 246, 236, 0.85); max-width: 46ch; }
.b2b-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.b2b .btn-outline { color: var(--cream); border-color: rgba(250, 246, 236, 0.6); }
.b2b .btn-outline:hover { background: rgba(250, 246, 236, 0.14); color: var(--cream); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { background: var(--white); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1rem; }
.review-text { color: var(--ink); font-size: 0.95rem; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta strong { font-size: 0.92rem; color: var(--green-900); display: block; line-height: 1.2; }
.review-meta small { color: var(--ink-soft); font-size: 0.78rem; }
.review-g {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.reviews-cta { margin-top: 2.4rem; }

/* ==========================================================================
   Learn page: comparison table & stats
   ========================================================================== */
.table-wrap { overflow-x: auto; margin-top: 2.6rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
  min-width: 640px;
}
.compare th, .compare td { padding: 0.95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th {
  background: var(--green-900);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.compare thead th.is-us { background: var(--green-700); color: #fff; }
.compare thead th.is-us small { display: block; color: var(--gold-400); font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.compare tbody th { font-weight: 700; color: var(--green-900); white-space: nowrap; }
.compare td.is-us { background: rgba(46, 125, 67, 0.07); font-weight: 600; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

.big-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.8rem;
}
.big-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.big-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--green-700);
  line-height: 1.05;
}
.big-stat span { font-size: 0.84rem; color: var(--ink-soft); font-weight: 600; }
.foot-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1.2rem; text-align: center; }

.warn-card {
  background: #fff7ed;
  border: 1px solid rgba(196, 112, 0, 0.25);
  border-left: 5px solid #e08700;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.7rem;
  margin-top: 1.4rem;
}
.warn-card h3 { color: #8a4b00; margin-bottom: 0.4rem; font-size: 1.08rem; }
.warn-card p { color: #6b4a1f; font-size: 0.94rem; }
.warn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.4rem; }

/* ==========================================================================
   CTA band & split sections
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: var(--cream);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(250, 246, 236, 0.85); max-width: 54ch; margin: 0 auto 1.8rem; }
.cta-band .btn-outline { color: var(--cream); border-color: rgba(250, 246, 236, 0.6); }
.cta-band .btn-outline:hover { background: rgba(250, 246, 236, 0.14); color: var(--cream); }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split > figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split.flip > figure { order: 2; }
.split h2 { margin-bottom: 0.5em; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: 0.55rem; margin: 1rem 0 1.4rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: baseline; color: var(--ink); font-size: 0.96rem; }
.check-list li::before { content: "✓"; color: var(--green-600); font-weight: 800; }

/* Founder block */
.founder-block {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.founder-block img { border-radius: var(--radius-md); width: 100%; object-fit: cover; aspect-ratio: 3/3.4; }
.founder-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--green-900);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.founder-block cite { font-style: normal; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { margin-top: 2.6rem; display: grid; gap: 0.9rem; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-md); }
.faq-list summary {
  font-weight: 700;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--cream-dark); }
.contact-info > p { color: var(--ink-soft); max-width: 46ch; }
.contact-list { list-style: none; margin-top: 1.8rem; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--green-900); font-size: 0.92rem; }
.contact-list a { color: var(--green-700); font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.socials { display: flex; gap: 1.4rem; margin-top: 1.8rem; flex-wrap: wrap; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-800);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.socials a:hover { color: var(--gold-500); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--green-950); color: rgba(250, 246, 236, 0.8); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
.footer-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 {
  color: var(--gold-400);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p { display: block; color: rgba(250, 246, 236, 0.8); text-decoration: none; font-size: 0.92rem; margin-bottom: 0.55rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.14);
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: rgba(250, 246, 236, 0.55);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 41, 22, 0.92);
  display: grid;
  place-items: center;
  padding: 4vh 4vw;
  backdrop-filter: blur(6px);
}
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 18px; right: 26px;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  .marquee-track { animation-duration: 80s; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid, .farm-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .big-stats { grid-template-columns: repeat(3, 1fr); }
  .warn-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(250, 246, 236, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0 1.2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: 0.85rem 6%; color: var(--green-900) !important; text-shadow: none !important; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .story-media { margin-bottom: 2.5rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .product-grid, .farm-grid, .review-grid, .store-grid { grid-template-columns: 1fr; }
  .store-grid { gap: 0.9rem; }
  .b2b { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-badges { gap: 0.5rem 1.1rem; font-size: 0.78rem; }
  .contact-map { min-height: 320px; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip > figure { order: 0; }
  .founder-block { grid-template-columns: 1fr; }
  .big-stats { grid-template-columns: repeat(2, 1fr); }
}
