@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-300.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #faf8f2;
  --surface: rgba(255, 252, 246, 0.65);
  --surface-strong: #fffdf7;
  --text: #231f14;
  --muted: #6b6251;
  --accent: #996515;
  --accent-dark: #7a4f10;
  --accent-light: #c9923a;
  --interactive: #008000;
  --interactive-strong: #006b00;
  --secondary: #a8783a;
  --border: rgba(153, 101, 21, 0.13);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -10rem;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1.2rem;
  background: var(--accent-dark);
  color: #faf8f2;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Jost', 'Segoe UI', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse 65% 55% at 12% 8%, rgba(244, 230, 200, 0.5) 0%, transparent 100%),
    radial-gradient(ellipse 55% 50% at 90% 92%, rgba(218, 236, 215, 0.38) 0%, transparent 100%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.72;
}

:where(a) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(153, 101, 21, 0.45);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

:where(a:visited) {
  color: var(--accent);
}

:where(a:hover) {
  color: var(--interactive-strong);
  text-decoration-color: var(--interactive-strong);
}

:where(a:focus-visible) {
  outline: 2px solid var(--interactive);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(153, 101, 21, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(153, 101, 21, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 0%, transparent 100%);
  z-index: -1;
}

.site-header {
  width: 100%;
}

main,
.site-footer,
.site-header-inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 1.55rem 0;
}

.site-header.scrolled {
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--accent-dark);
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  flex-shrink: 0;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tagline {
  margin-top: 0.18rem;
  font-family: 'Jost', 'Segoe UI', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.brand-logo {
  width: 52px;
  height: 52px;
  display: block;
}

.site-nav {
  display: flex;
  gap: 2.35rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 400;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  transition: color 180ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--interactive);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-box {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-bar {
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

.section {
  padding: 5.5rem 0 2rem;
}

section[id] {
  scroll-margin-top: 8rem;
}

.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

/* Full-bleed hero with background image
   Usage: add class 'hero--fullbleed' + inline style 'background-image: url(...)'
   URL must be set as background-image inline style so it resolves relative to
   the HTML document, not the CSS file (CSS var() URL substitution resolves
   relative to the stylesheet).
   The section breaks out of the constrained <main> to fill viewport width.
   Padding-left/right recalculate to keep text aligned with main content. */
.hero--fullbleed {
  position: relative;
  isolation: isolate;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 10rem;
  padding-bottom: 7rem;
  background: linear-gradient(135deg, #2d5a3d 0%, #4a8a5a 50%, #1a3a2a 100%);
  background-size: cover;
  background-position: center;
}

/* Overlay — z-index: -1 within isolation: isolate sits above the element's
   own background but below its in-flow content. */
.hero--fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(16, 11, 5, 0.28) 0%,
    rgba(16, 11, 5, 0.18) 45%,
    rgba(16, 11, 5, 0.12) 100%
  );
  z-index: -1;
}

.hero--fullbleed > * {
  position: relative;
  z-index: 1;
  max-width: min(45rem, 92vw);
}

.hero--fullbleed .eyebrow {
  display: block;
  width: fit-content;
  color: rgba(224, 186, 108, 0.92);
  background: rgba(14, 10, 4, 0.42);
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
  backdrop-filter: blur(2px);
}

.hero--fullbleed h1,
.hero--fullbleed h2 {
  color: #f5ede0;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  display: block;
  width: fit-content;
  background: rgba(14, 10, 4, 0.48);
  padding: 0.02em 0.2em;
  border-radius: 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero--fullbleed .lead,
.hero--fullbleed p:not(.eyebrow) {
  color: rgba(235, 218, 190, 0.88);
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
  display: block;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  background: rgba(14, 10, 4, 0.4);
  backdrop-filter: blur(2px);
}

.hero--fullbleed .hero-actions {
  margin-bottom: 0;
}

.hero--fullbleed .blog-breadcrumb {
  color: rgba(245, 237, 224, 0.9);
  background: rgba(14, 10, 4, 0.34);
  padding: 0.4rem 0.65rem;
  border-radius: 0.35rem;
  width: fit-content;
  backdrop-filter: blur(2px);
}

.hero--fullbleed .blog-breadcrumb a {
  color: #f7ddad;
  border-bottom-color: rgba(247, 221, 173, 0.58);
}

.hero--fullbleed .blog-breadcrumb a:hover {
  color: #fff2d5;
  border-bottom-color: #fff2d5;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.12;
  margin: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 1.3rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

p,
li,
ol li {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-bottom: 1rem;
}

ol {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 2rem 0 3.5rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.82rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #faf8f2;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--interactive);
  border-color: var(--interactive);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(153, 101, 21, 0.35);
  color: var(--accent-dark);
}

.btn-secondary:hover {
  border-color: var(--interactive);
  color: var(--interactive-strong);
}

.panel {
  background: rgba(255, 252, 244, 0.48);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
}

.why-exist-grid {
  gap: 1.4rem;
}

.mission-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(153, 101, 21, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 254, 249, 0.96) 0%, rgba(251, 246, 235, 0.9) 100%);
  box-shadow: 0 12px 26px rgba(62, 45, 15, 0.06);
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(153, 101, 21, 0.12) 100%);
}

.mission-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.52rem;
}

.mission-card p:last-child {
  margin-bottom: 0;
  line-height: 1.72;
}

.mission-card-kicker {
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.farm-group {
  margin-top: 2rem;
}

.farm-group + .farm-group {
  margin-top: 2.8rem;
}

.farm-group-label {
  margin-bottom: 0.9rem;
}

.farm-group .grid {
  gap: 1.5rem;
}

#how-we-farm .card h3 {
  font-family: 'Jost', 'Segoe UI', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

#how-we-farm .card p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.blog-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.blog-filter-group {
  margin-bottom: 0.7rem;
}

.blog-filter-label {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6f634c;
}

.blog-cards-grid {
  gap: 2.35rem;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.68rem;
  border: 1px solid rgba(153, 101, 21, 0.24);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
  background: rgba(201, 146, 58, 0.06);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.68rem;
  border: 1px solid rgba(153, 101, 21, 0.24);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
  background: rgba(201, 146, 58, 0.06);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.filter-chip:hover {
  border-color: rgba(0, 128, 0, 0.34);
  color: var(--interactive);
}

.filter-chip.is-active {
  border-color: var(--interactive);
  color: #f8fff6;
  background: var(--interactive);
}

.filter-chip:focus-visible {
  outline: 2px solid var(--interactive);
  outline-offset: 2px;
}

.blog-card {
  border-top: none;
  padding: 0;
  border: 1px solid rgba(153, 101, 21, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #2d5a3d 0%, #4a8a5a 50%, #1a3a2a 100%);
  background-size: cover;
  background-position: center;
  background-attachment: local;
  position: relative;
  box-shadow: 0 8px 20px rgba(52, 37, 11, 0.06);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 128, 0, 0.36);
  box-shadow: 0 14px 28px rgba(52, 37, 11, 0.11);
}

.blog-card.is-hidden {
  display: none;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.1rem 1.15rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  min-height: 320px;
}

.blog-card-link:focus-visible {
  outline: 2px solid var(--interactive);
  outline-offset: 2px;
  border-radius: 11px;
}

.btn:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible,
.contact-instagram-link:focus-visible,
.blog-breadcrumb a:focus-visible {
  outline: 2px solid var(--interactive);
  outline-offset: 3px;
  border-radius: 4px;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--interactive);
  outline-offset: 3px;
}

.blog-card-category {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

.blog-card-meta {
  margin: 0;
  font-size: 0.88rem;
  color: #7b715f;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0.35rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #594f3d;
  background: rgba(153, 101, 21, 0.08);
}

.tag-link {
  color: inherit;
  text-decoration: none;
}

.tag-link:hover {
  color: var(--interactive);
}

.blog-post-content {
  max-width: 72ch;
}

.blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.blog-list-breadcrumb {
  margin-top: 0.95rem;
}

.is-hidden {
  display: none;
}

.blog-breadcrumb a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(153, 101, 21, 0.28);
}

.blog-breadcrumb-category {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

.blog-breadcrumb a:hover {
  color: var(--interactive);
  border-bottom-color: var(--interactive);
}

.blog-post-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-top: 1.5rem;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-detail-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
}

.contact-detail-icon svg {
  width: 1.1em;
  height: 1.1em;
  display: block;
}

.contact-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 180ms ease;
}

.contact-instagram-link:hover {
  color: var(--interactive);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.hero-proof article {
  padding-right: 2.5rem;
}

.hero-proof article:not(:first-child) {
  padding-left: 2.5rem;
  border-left: 1px solid var(--border);
}

.cta-strip {
  background: linear-gradient(135deg, rgba(153, 101, 21, 0.1) 0%, rgba(201, 146, 58, 0.07) 100%);
  border: 1px solid rgba(153, 101, 21, 0.16);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  margin-top: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.faq-action {
  min-width: 7rem;
  min-height: 2.2rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.faq-list details {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(153, 101, 21, 0.3);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: var(--interactive);
  text-decoration-color: var(--interactive);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 0 3.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--interactive);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 120ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 210ms;
}

.reveal:nth-of-type(4) {
  animation-delay: 300ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 3.5rem 0 1.5rem;
  }

  section[id] {
    scroll-margin-top: 6.2rem;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .hero--fullbleed {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-proof article,
  .hero-proof article:not(:first-child) {
    padding: 0 0 1.5rem;
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-proof article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .site-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
  }

  .brand-name {
    font-size: 1.72rem;
  }

  .brand-tagline {
    font-size: 0.63rem;
    letter-spacing: 0.1em;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.75rem 0 0.75rem;
    border-top: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0;
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }

  .faq-controls {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .panel {
    padding: 2rem 1.5rem;
  }

  .farm-group {
    margin-top: 1.5rem;
  }

  .farm-group + .farm-group {
    margin-top: 2rem;
  }

  .mission-card {
    padding: 1.2rem 1.15rem 1.1rem;
  }

  .mission-card h3 {
    font-size: 1.38rem;
  }

  .cta-strip {
    padding: 2.5rem 1.5rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem 0 2.5rem;
  }
}

@media (pointer: coarse) {
  .filter-chip {
    min-height: 2.75rem;
    padding: 0.5rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
