:root {
  --dark: #414141;
  --dark-2: #2f2f2f;
  --green: #1aaf4d;
  --green-soft: rgba(26, 175, 77, 0.16);
  --silver: #c0c0c0;
  --white: #ffffff;
  --paper: #f4f4f1;
  --ink: #252525;
  --muted: #6f756d;
  --line: rgba(65, 65, 65, 0.16);
  --shadow: 0 24px 70px rgba(30, 30, 30, 0.18);
  --radius: 8px;
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(65, 65, 65, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.site-header.is-scrolled,
.site-header.is-open { box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18); }

.wordmark {
  display: inline-block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active { background: var(--green); color: var(--dark); }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 160ms ease;
}

.nav-toggle span:last-child { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero,
.page-hero,
.recipe-hero,
.story-page,
.contact-page {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(420px, 540px);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  justify-content: center;
  min-height: min(760px, calc(100vh - 84px));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(65, 65, 65, 0.94), rgba(47, 47, 47, 0.92)),
    radial-gradient(circle at 16% 15%, var(--green-soft), transparent 34%);
}

.hero-copy,
.section-copy {
  max-width: 850px;
  min-width: 0;
}

.page-hero {
  min-width: 0;
}

.page-hero > * {
  max-width: 850px;
}

.hero-copy {
  max-width: 620px;
}

.hero > *,
.recipe-hero > *,
.split > *,
.story-page > *,
.contact-page > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.recipe-hero h1 {
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  line-height: 1.06;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.06;
  text-wrap: balance;
}

h3 { margin-bottom: 8px; font-size: 1.25rem; }

.lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.page-hero.compact {
  color: var(--white);
  background: var(--dark);
}

.page-hero.compact .lead { color: rgba(255, 255, 255, 0.84); }

.page-hero.compact {
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: clamp(52px, 7vw, 88px);
}

.page-hero.compact h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 3.7vw, 4rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
}

.button.primary { color: var(--dark); background: var(--green); }
.button.ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.34); }
.button.light { color: var(--dark); background: var(--white); }
.button.full { width: 100%; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 24px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.band-light,
.products-page,
.recipe-collection,
.recipe-page,
.extra-products,
.sales-page,
.teaser-row,
.quote-strip,
.note-band,
.reviews-preview,
.reviews-page,
.legal-page {
  padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.band-light {
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.06), transparent 44%),
    var(--white);
}

.split,
.recipe-hero,
.story-page,
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

@media (min-width: 1200px) {
  .split,
  .recipe-hero,
  .story-page,
  .contact-page,
  .field-story,
  .benefit-band,
  .buy-intro,
  .region-page {
    grid-template-columns: minmax(0, 520px) minmax(420px, 560px);
    justify-content: center;
  }

  .page-hero,
  .products-page,
  .recipe-collection,
  .recipe-page,
  .extra-products,
  .sales-page,
  .teaser-row,
  .quote-strip,
  .note-band,
  .reviews-preview,
  .reviews-page,
  .legal-page,
  .buy-intro,
  .store-section,
  .region-strip {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .story-page h1,
  .contact-page h1,
  .recipe-hero h1 {
    font-size: clamp(2.7rem, 3.7vw, 4.1rem);
  }
}

.product-grid,
.recipe-page.full,
.sales-page,
.review-grid,
.teaser-row {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.recipe-collection {
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.06), transparent 30%),
    var(--paper);
}

.recipe-collection > .section-copy {
  max-width: 760px;
  margin: 0 auto clamp(26px, 4vw, 44px);
  text-align: center;
}

.recipe-collection > .section-copy p:not(.eyebrow) {
  color: var(--muted);
}

.recipe-collection .recipe-page {
  padding: 0;
}

.facts { display: grid; gap: 12px; }

.fact,
.product-card,
.recipe-card,
.sales-card,
blockquote,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fact { padding: 20px; }
.fact strong { display: block; margin-bottom: 7px; font-size: 1.12rem; }
.fact span, .section-copy p, .product-card p, .sales-card p, .contact-page p { color: var(--muted); }

.field-story,
.farm-story,
.benefit-band,
.region-strip,
.region-page,
.buy-intro,
.store-section,
.worker-band {
  padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.field-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 47, 47, 0.98), rgba(65, 65, 65, 0.94)),
    url("assets/original/product-grid.jpg") center / cover;
}

.field-story-copy {
  max-width: 800px;
  min-width: 0;
}

.field-story-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.field-story-grid,
.benefit-list {
  display: grid;
  gap: 14px;
}

.field-story-grid,
.benefit-list {
  grid-template-columns: 1fr;
  min-width: 0;
}

.mini-card,
.value-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.mini-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.teaser-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--paper);
}

.teaser {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--dark);
}

.teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.teaser span {
  position: absolute;
  inset: auto 18px 18px;
  font-size: 1.35rem;
  font-weight: 900;
}

.farm-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--paper);
}

.farm-story-copy {
  position: sticky;
  top: 110px;
  max-width: 680px;
}

.farm-story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.farm-note {
  border-left: 4px solid var(--green);
  margin-top: 28px;
  padding: 16px 0 16px 18px;
}

.farm-note strong,
.farm-note span {
  display: block;
}

.farm-note strong {
  margin-bottom: 6px;
  color: var(--dark);
}

.farm-note span {
  color: var(--muted);
}

.farm-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.farm-gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.farm-gallery figure:not(.farm-gallery-main) {
  grid-column: span 3;
}

.farm-gallery img {
  width: 100%;
  height: auto;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--dark);
}

.farm-gallery figcaption {
  display: grid;
  gap: 5px;
  padding: 15px 16px 17px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.farm-gallery figcaption strong {
  color: var(--dark);
  font-size: 1.05rem;
}

.farm-gallery-main {
  grid-column: 1 / -1;
}

.farm-gallery-main img {
  aspect-ratio: 16 / 9;
}

.farm-principles {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.farm-principles .section-copy {
  max-width: 620px;
}

.farm-principles .section-copy p:not(.eyebrow),
.principle-list p {
  color: var(--muted);
}

.principle-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.principle-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px) 0;
}

.principle-list span {
  color: var(--dark);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  font-weight: 950;
  line-height: 1.1;
}

.principle-list p {
  margin: 0;
}

.instagram-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 47, 47, 0.98), rgba(65, 65, 65, 0.94)),
    linear-gradient(90deg, rgba(26, 175, 77, 0.18), transparent);
}

.instagram-band .section-copy {
  max-width: 680px;
}

.instagram-band .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.instagram-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.instagram-profile span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 900;
}

.instagram-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.instagram-preview figure {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.instagram-preview figure:first-child {
  grid-row: span 2;
  min-height: 500px;
}

.instagram-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.instagram-preview figcaption {
  position: absolute;
  inset: auto 14px 14px;
  border-radius: calc(var(--radius) - 2px);
  padding: 10px 12px;
  color: var(--white);
  background: rgba(25, 25, 25, 0.72);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.instagram-preview figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.worker-band {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 620px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26, 175, 77, 0.1), transparent 38%),
    var(--white);
}

.worker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.product-card {
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: var(--dark);
}

.product-card div { padding: 18px; }
.product-card h2 { font-size: 1.55rem; }

.benefit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.benefit-band > *,
.values-band > * {
  min-width: 0;
}

.values-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
}

.value-card {
  min-height: 230px;
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.08), transparent 44%),
    var(--white);
  backdrop-filter: none;
}

.value-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.value-card p {
  color: var(--muted);
}

.region-strip {
  background:
    linear-gradient(135deg, rgba(26, 175, 77, 0.1), transparent 42%),
    var(--white);
}

.region-page {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(460px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.region-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.region-card p {
  margin: 0;
  color: var(--muted);
}

.buy-intro {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 380px);
  gap: clamp(22px, 4vw, 56px);
  justify-content: center;
  align-items: stretch;
  background: var(--white);
}

.buy-direct,
.address-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.buy-direct h2 {
  max-width: 620px;
}

.buy-direct p {
  max-width: 640px;
  color: var(--muted);
}

.address-panel {
  display: grid;
  align-content: center;
  color: var(--white);
  background: var(--dark);
}

.address-panel span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.address-panel strong {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.15vw, 2.25rem);
  line-height: 1.05;
}

.address-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.map-link {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  margin-top: 18px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  font-weight: 900;
}

.map-link.small {
  justify-self: end;
  margin-top: 0;
  border-color: var(--line);
  color: var(--dark);
  background: var(--white);
}

.store-section {
  background: var(--paper);
}

.store-section .section-copy {
  max-width: var(--content);
  margin: 0 auto 24px;
}

.store-list {
  display: grid;
  max-width: var(--content);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.store-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.store-row strong {
  font-size: 1.25rem;
}

.store-row span {
  color: var(--muted);
}

.recipe-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.recipe-page.full {
  align-items: stretch;
}

.recipe-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1fr;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.recipe-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--dark);
}

.recipe-card div {
  padding: 22px;
}

.recipe-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 47, 47, 0.98), rgba(65, 65, 65, 0.94)),
    radial-gradient(circle at 14% 24%, rgba(26, 175, 77, 0.2), transparent 36%);
}

.recipe-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.recipe-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.recipe-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(26, 175, 77, 0.22), rgba(0, 0, 0, 0.16));
  box-shadow: var(--shadow);
}

.recipe-hero-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.recipe-hero-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.recipe-hero-card strong {
  display: block;
  max-width: 420px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.recipe-hero-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recipe-hero-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.recipe-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.recipe-guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.08), transparent 44%),
    var(--white);
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.recipe-guide-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 950;
}

.recipe-guide-card h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.recipe-guide-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.recipe-mood {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(40, 40, 40, 0.98), rgba(65, 65, 65, 0.96)),
    linear-gradient(90deg, rgba(26, 175, 77, 0.16), transparent);
}

.recipe-mood .section-copy {
  max-width: 780px;
}

.recipe-mood .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.recipe-mood-list {
  display: grid;
  gap: 12px;
}

.recipe-mood-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.recipe-detail {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.055), transparent 120px),
    var(--white);
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.recipe-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--green), rgba(26, 175, 77, 0.22));
}

.recipe-detail div {
  padding: clamp(22px, 3vw, 30px);
}

.recipe-detail h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(1.7rem, 2.1vw, 2.45rem);
  line-height: 1.08;
}

.recipe-detail h3 {
  margin: 6px 0 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--dark);
  font-size: 1rem;
}

.recipe-detail ul,
.recipe-detail ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.recipe-detail p:not(.tag) {
  color: var(--muted);
  line-height: 1.55;
}

.recipe-detail li + li {
  margin-top: 5px;
}

.extra-products {
  color: var(--white);
  background: var(--dark);
}

.extra-products .section-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.tag {
  margin-bottom: 8px;
  color: var(--green) !important;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.note-band {
  display: grid;
  gap: 18px;
  align-items: start;
  color: var(--white);
  background: var(--dark);
}

.note-band p { max-width: 880px; margin: 0; font-size: 1.25rem; }

.portrait {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-strip { background: var(--paper); }

blockquote {
  max-width: 860px;
  margin: 0;
  padding: 24px;
}

blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.16;
}

cite { color: var(--muted); font-style: normal; font-weight: 900; }

.reviews-preview {
  background: var(--white);
}

.home-review-strip {
  overflow: hidden;
  padding: 22px 0 24px;
  color: var(--white);
  background: #414141;
}

.home-review-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(18px, 5vw, 72px);
  text-align: center;
}

.home-review-head strong {
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.home-review-head a {
  color: var(--green);
  font-weight: 900;
}

.about-reviews {
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.06), transparent 42%),
    var(--paper);
}

.review-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.home-review-strip .review-marquee {
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.13);
  padding: 16px 0 0;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(34px, 7vw, 110px);
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.home-review-strip .review-marquee::before {
  background: linear-gradient(90deg, #414141, transparent);
}

.home-review-strip .review-marquee::after {
  background: linear-gradient(270deg, #414141, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 14px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: review-scroll 68s linear infinite;
  backface-visibility: hidden;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-pill {
  display: inline-grid;
  grid-template-columns: auto auto auto 1fr;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  width: clamp(360px, 38vw, 540px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--dark);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(35, 35, 35, 0.06);
  contain: layout paint;
}

.review-source {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-review-strip .review-pill {
  width: clamp(380px, 40vw, 560px);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.home-review-strip .review-source {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.review-pill span:last-child {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-review-strip .review-pill span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

@keyframes review-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.review-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.review-card {
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(26, 175, 77, 0.08), transparent 36%),
    var(--white);
  box-shadow: 0 16px 42px rgba(35, 35, 35, 0.08);
}

.review-card blockquote {
  border: 0;
  padding: 0;
  background: transparent;
}

.review-card blockquote p {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.stars {
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-link {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--dark);
  font-weight: 900;
}

.review-link:hover {
  color: var(--dark);
  background: var(--green);
}

.review-cta {
  margin-top: 18px;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
}

.legal-page h1 {
  color: var(--dark);
}

.legal-page h2 {
  margin-top: 34px;
  font-family: inherit;
  font-size: 1.3rem;
}

.legal-page a {
  color: var(--dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 4px;
}

.sales-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.sales-card {
  min-height: 190px;
  padding: 22px;
}

.primary-card {
  grid-column: span 2;
  color: var(--white);
  background: var(--dark);
}

.primary-card p { color: rgba(255, 255, 255, 0.72); }
.primary-card span { color: var(--green); font-weight: 900; text-transform: uppercase; }

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-lines a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--dark);
  background: var(--white);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.contact-form-stage {
  position: relative;
  min-height: 620px;
}

.contact-form.is-covered {
  filter: blur(2px);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.spam-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-success {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.contact-success[hidden] {
  display: none;
}

.contact-success img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 68% center;
}

.contact-success::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 0.12), rgba(30, 30, 30, 0.72)),
    linear-gradient(90deg, rgba(30, 30, 30, 0.9) 0%, rgba(30, 30, 30, 0.72) 42%, rgba(30, 30, 30, 0.18) 100%);
}

.contact-success-copy {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 12px;
  max-width: 560px;
  padding: clamp(24px, 4vw, 44px);
}

.contact-success h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.contact-success p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.7;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
}

.check-row input { width: 18px; height: 18px; margin-top: 4px; }
.form-status { min-height: 24px; margin: 0; color: var(--green); font-weight: 850; }

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 18px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  background: var(--dark-2);
}

.footer-wordmark { font-size: clamp(2rem, 5vw, 3.4rem); }
.site-footer p { margin: 0; }

.creator-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.creator-credit a {
  color: var(--green);
  font-weight: 900;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.legal-links a:hover {
  color: var(--green);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .wordmark {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  }

  .site-nav a {
    padding: 10px 11px;
  }
}

@media (max-width: 1080px) {
  .product-grid, .sales-page, .review-grid, .review-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teaser-row { grid-template-columns: 1fr; }
  .recipe-page { grid-template-columns: 1fr; }
  .recipe-guide { grid-template-columns: 1fr; }
  .field-story,
  .benefit-band,
  .buy-intro,
  .region-page,
  .recipe-mood,
  .farm-story,
  .farm-principles,
  .instagram-band,
  .worker-band {
    grid-template-columns: 1fr;
  }
  .field-story-grid,
  .benefit-list,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .store-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-link.small {
    justify-self: start;
    margin-top: 8px;
  }

  .farm-story-copy {
    position: static;
  }

  .farm-gallery figure:not(.farm-gallery-main) {
    grid-column: 1 / -1;
  }

  .instagram-preview {
    grid-template-columns: 1fr;
  }

  .instagram-preview figure,
  .instagram-preview figure:first-child {
    min-height: 320px;
  }

  .principle-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(65, 65, 65, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 46px;
    border-radius: var(--radius);
    padding: 12px 14px;
  }
}

@media (max-width: 860px) {
  .hero, .split, .recipe-hero, .story-page, .contact-page { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { max-width: 560px; }
  .page-hero,
  .hero,
  .recipe-hero,
  .story-page,
  .contact-page {
    padding-top: 46px;
    padding-bottom: 56px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .wordmark {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  h1 { font-size: clamp(2.25rem, 10vw, 3.2rem); }
  .page-hero h1,
  .story-page h1,
  .contact-page h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }
  .product-grid, .sales-page, .review-grid, .review-grid.wide { grid-template-columns: 1fr; }
  .field-story-grid,
  .benefit-list,
  .region-grid,
  .values-band {
    grid-template-columns: 1fr;
  }
  .primary-card { grid-column: auto; }
  .hero-media img {
    aspect-ratio: 1 / 1;
  }
  .teaser {
    min-height: 250px;
  }
  .recipe-card {
    grid-template-columns: 1fr;
  }
  .recipe-card img {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }
  .review-card,
  .sales-card,
  .fact,
  .contact-form {
    padding: 18px;
  }

  .contact-form-stage {
    min-height: 680px;
  }

  .contact-success {
    align-items: flex-end;
  }

  .contact-success img {
    object-position: 58% center;
  }

  .contact-success::after {
    background:
      linear-gradient(180deg, rgba(30, 30, 30, 0.18), rgba(30, 30, 30, 0.88)),
      linear-gradient(90deg, rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.34));
  }

  .contact-success-copy {
    max-width: none;
    padding: 24px;
  }

  .review-track {
    animation-duration: 58s;
  }

  .review-pill {
    grid-template-columns: 1fr;
    gap: 4px;
    width: min(78vw, 340px);
    border-radius: var(--radius);
  }
}

@media (max-width: 430px) {
  .hero,
  .page-hero,
  .story-page,
  .contact-page,
  .recipe-hero,
  .band-light,
  .products-page,
  .recipe-collection,
  .recipe-page,
  .extra-products,
  .sales-page,
  .teaser-row,
  .quote-strip,
  .note-band,
  .reviews-preview,
  .reviews-page,
  .region-strip,
  .region-page,
  .recipe-mood,
  .farm-story,
  .farm-principles,
  .instagram-band,
  .buy-intro,
  .store-section,
  .worker-band,
  .legal-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .field-story,
  .benefit-band,
  .region-strip,
  .region-page,
  .buy-intro,
  .store-section,
  .worker-band,
  .values-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-actions,
  .contact-lines {
    display: grid;
  }

  .button,
  .contact-lines a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
