:root {
  --ink: #16261f;
  --green: #183f32;
  --green-deep: #0e2d24;
  --sage: #aab9a5;
  --cream: #f4f0e6;
  --paper: #fbfaf6;
  --gold: #c99743;
  --line: rgba(22, 38, 31, 0.16);
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  color: white;
  transition: .35s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, .94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 94px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; display: block; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font: 800 18px/1 var(--display); letter-spacing: .13em; }
.brand small { margin-top: 6px; font-size: 9px; letter-spacing: .45em; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.main-nav a:not(.nav-cta) { opacity: .85; }
.main-nav a:hover { opacity: 1; }
.nav-cta { padding: 13px 20px; border: 1px solid currentColor; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px; background: currentColor; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(9, 32, 25, .12), rgba(9, 32, 25, .22)),
    url("assets/hero-seed-field.png") center 48% / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 24, .92) 0%, rgba(7, 31, 24, .72) 44%, rgba(7, 31, 24, .14) 78%),
              linear-gradient(0deg, rgba(7, 31, 24, .68), transparent 42%);
}
.hero-content { position: relative; z-index: 2; padding-top: 45px; }
.eyebrow {
  margin: 0 0 24px;
  color: #587266;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 1px; margin: 0 12px 4px 0; background: var(--gold); }
.eyebrow.light { color: #d8dfda; }
h1, h2, h3 { margin: 0; font-family: var(--display); }
h1 { max-width: 840px; font-size: clamp(54px, 6.8vw, 94px); line-height: .98; letter-spacing: -.055em; }
h1 em, .contact h2 em { color: #e0b467; font-family: Georgia, serif; font-weight: 400; }
.hero-copy { max-width: 585px; margin: 30px 0 34px; color: #d9e0dc; font-size: 18px; }
.button { display: inline-flex; align-items: center; gap: 28px; padding: 17px 22px; font-size: 14px; font-weight: 700; }
.button-primary { color: var(--green-deep); background: #f0c36f; }
.text-link { display: inline-flex; gap: 16px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.light-link { border-color: rgba(255,255,255,.35); }
.hero-stats {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  gap: 0;
}
.hero-stats div { display: grid; min-width: 150px; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.24); }
.hero-stats strong { font: 700 14px/1.4 var(--display); }
.hero-stats span { color: #c1ccc6; font-size: 11px; margin-top: 5px; }

h2 { font-size: clamp(40px, 5vw, 66px); line-height: 1.08; letter-spacing: -.045em; }

.choice { background: var(--paper); }
.choice-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.choice-card { min-height: 270px; padding: 30px 24px; background: #fffdf8; }
.choice-card span, .product-card span { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.choice-card h3 { margin-top: 22px; font-size: 19px; line-height: 1.25; }
.choice-card p { margin-bottom: 0; color: #68746e; font-size: 13px; line-height: 1.65; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.intro-copy { padding-top: 35px; }
.intro-copy p { color: #56635d; }
.lead { color: var(--ink) !important; font-size: 21px; line-height: 1.6; }
.intro-copy .text-link { margin-top: 20px; }

.founder-note { padding: 0 0 100px; background: var(--paper); }
.note-card { padding: 54px 64px; color: white; background: var(--green); }
.note-card .eyebrow { color: #d8dfda; }
.note-card blockquote { max-width: 950px; margin: 0; font: 600 clamp(24px, 3vw, 38px)/1.42 var(--display); letter-spacing: -.035em; }
.principles-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 34px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.principles-list span { min-height: 86px; display: grid; align-items: center; padding: 18px; color: #dce6e1; background: rgba(255,255,255,.04); font: 700 13px/1.45 var(--display); }

.identity { padding-top: 80px; background: var(--cream); }
.identity-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.identity-visual { position: relative; min-height: 590px; overflow: hidden; box-shadow: 0 24px 70px rgba(23,46,36,.16); }
.identity-visual > img { width: 100%; height: 590px; display: block; object-fit: cover; }
.photo-caption { position: absolute; right: 0; bottom: 0; width: 74%; padding: 24px 28px; display: grid; gap: 7px; color: white; background: rgba(14,45,36,.93); }
.photo-caption span { color: #d8b36b; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.photo-caption strong { font: 600 15px/1.5 var(--display); }
.visual-card { position: absolute; color: white; background: var(--green); }
.visual-card-main { inset: 0 70px 40px 0; padding: 42px; overflow: hidden; }
.visual-card-main::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 35%, rgba(202,154,69,.3), transparent 27%),
              linear-gradient(145deg, transparent 55%, rgba(255,255,255,.06));
}
.visual-number { color: #b6c7be; font-size: 12px; letter-spacing: .15em; }
.visual-card-main p { position: absolute; z-index: 2; bottom: 28px; left: 42px; font: 700 28px/1.2 var(--display); }
.globe-lines { position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; top: 85px; left: 105px; }
.globe-lines::before, .globe-lines::after { content:""; position:absolute; inset: 16% 0; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.globe-lines::after { inset: 0 30%; }
.visual-card-small { width: 170px; height: 190px; right: 0; bottom: 0; display: grid; place-items: center; color: var(--gold); background: #e3d4b5; box-shadow: 0 18px 50px rgba(23,46,36,.16); }
.visual-card-small svg { width: 80px; }
.identity-copy > p:not(.eyebrow) { color: #59655f; max-width: 550px; margin: 30px 0 40px; }
.values { border-top: 1px solid var(--line); }
.values > div { display: grid; grid-template-columns: 45px 130px 1fr; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.values span { color: var(--gold); font-size: 11px; }
.values strong { font: 700 15px var(--display); }
.values p { margin: 0; color: #69746f; font-size: 13px; }

.field-story { background: var(--paper); }
.field-story-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; margin-bottom: 60px; }
.field-story-heading > p { margin: 0; color: #5a6861; }
.photo-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 22px; }
.photo-card { margin: 0; min-height: 500px; display: flex; flex-direction: column; background: var(--cream); overflow: hidden; }
.photo-card img { width: 100%; height: 390px; display: block; object-fit: cover; }
.photo-card figcaption { flex: 1; display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 25px; }
.photo-card figcaption > span { color: var(--gold); font-size: 11px; }
.photo-card figcaption strong { font: 700 16px var(--display); }
.photo-card figcaption p { margin: 6px 0 0; color: #68746e; font-size: 13px; line-height: 1.55; }
.products { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { min-height: 360px; padding: 0 0 28px; background: var(--cream); border: 1px solid var(--line); color: var(--ink); cursor: pointer; text-align: left; font: inherit; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(23,46,36,.13); }
.product-card img { width: 100%; height: 165px; display: block; object-fit: cover; margin-bottom: 26px; }
.product-card span, .product-card h3, .product-card p { margin-left: 28px; margin-right: 28px; }
.product-card h3 { margin-top: 18px; font-size: 24px; }
.product-card p { color: #68746e; font-size: 14px; }
.availability-panel { display: grid; grid-template-columns: .42fr .58fr; gap: 40px; align-items: start; margin-top: 52px; padding: 34px; background: #fffdf8; border: 1px solid var(--line); }
.availability-panel h3 { font-size: 30px; }
.availability-panel table { width: 100%; border-collapse: collapse; font-size: 14px; }
.availability-panel th { color: #8f6728; font-size: 10px; letter-spacing: .16em; text-align: left; text-transform: uppercase; }
.availability-panel th, .availability-panel td { padding: 15px 12px; border-bottom: 1px solid var(--line); }
.availability-panel td:first-child { font-weight: 800; color: var(--ink); }

.services { color: white; background: var(--green-deep); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading > p { color: #aabbb3; font-size: 15px; }
.section-heading-dark > p { color: #5a6861; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.17); }
.service-card { display: grid; grid-template-columns: 75px 1fr; gap: 20px; min-height: 230px; padding: 40px; border-bottom: 1px solid rgba(255,255,255,.17); }
.service-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.17); }
.service-icon { color: var(--gold); font-size: 12px; letter-spacing: .15em; }
.service-card h3 { font-size: 23px; }
.service-card p { max-width: 390px; color: #aebcb5; font-size: 14px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 60px; border: 1px solid rgba(255,255,255,.16); }
.trust-strip div { min-height: 105px; display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: center; padding: 24px; }
.trust-strip div + div { border-left: 1px solid rgba(255,255,255,.16); }
.trust-strip span { color: var(--gold); font-size: 10px; }
.trust-strip strong { font: 600 13px/1.55 var(--display); color: #dbe3df; }

.approach { color: white; background: #173b30; }
.approach h2 em { color: #e0b467; font-family: Georgia, serif; font-weight: 400; }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: start; }
.approach-grid > div:first-child p:not(.eyebrow) { max-width: 500px; color: #b7c5be; }
.process-list { border-top: 1px solid rgba(255,255,255,.2); }
.process-list > div { display: grid; grid-template-columns: 45px 185px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.process-list span { color: var(--gold); font-size: 11px; }
.process-list strong { font: 700 15px var(--display); }
.process-list p { margin: 0; color: #b7c5be; font-size: 13px; line-height: 1.6; }

.compliance { background: var(--cream); }
.compliance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.compliance-grid > div { min-height: 210px; padding: 28px; background: var(--paper); border: 1px solid var(--line); }
.compliance-grid strong { font: 700 18px/1.35 var(--display); }
.compliance-grid p { color: #68746e; font-size: 13px; line-height: 1.65; }

.markets { background: var(--paper); }
.markets-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.market-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.market-cards span { min-height: 118px; display: grid; place-items: center; padding: 18px; color: var(--green); background: var(--cream); border: 1px solid var(--line); font: 800 14px/1.45 var(--display); text-align: center; }

.why { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 140px; align-items: start; }
.why-copy .lead { margin-top: 40px; }
.why-copy > p:not(.eyebrow):not(.lead) { color: #5a6861; max-width: 610px; }
.why-points { margin-top: 30px; }
.why-points > div { position: relative; padding: 26px 0 26px 50px; border-bottom: 1px solid var(--line); }
.why-points span { position: absolute; left: 0; top: 30px; color: var(--gold); font-size: 11px; }
.why-points h3 { font-size: 18px; }
.why-points p { margin: 6px 0 0; color: #68746e; font-size: 13px; }

.contact { color: white; background: #173b30; }
.contact-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 120px; }
.contact-heading > p:last-child { max-width: 520px; margin-top: 30px; color: #b7c5be; }
.contact-details { border-top: 1px solid rgba(255,255,255,.22); }
.contact-details > * { display: grid; gap: 9px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-details span { color: #9db0a7; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong { font: 600 18px/1.5 var(--display); }
.contact-details a:hover strong { color: #efc375; }
.enquiry-panel { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; margin-top: 50px; padding: 55px; color: var(--ink); background: var(--paper); }
.enquiry-copy > span { color: #8f6728; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.enquiry-copy h3 { margin-top: 18px; font-size: 30px; line-height: 1.25; }
.enquiry-copy p { color: #66736d; font-size: 14px; }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 22px; }
.enquiry-form label { display: grid; gap: 9px; }
.enquiry-form label > span { color: #59675f; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select { width: 100%; border: 0; border-bottom: 1px solid #bac2bd; border-radius: 0; padding: 10px 2px 12px; color: var(--ink); background: transparent; font: 15px var(--sans); outline: 0; }
.enquiry-form textarea { resize: vertical; }
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: #9ba39f; }
.form-wide { grid-column: 1 / -1; }
.form-action { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 10px; }
.form-action p { margin: 0; color: #7b8580; font-size: 11px; }
.button-submit { border: 0; cursor: pointer; color: white; background: var(--green); font-family: var(--sans); }
.button-submit:hover { background: #205240; }
.button-submit:disabled { cursor: wait; opacity: .7; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { display: none; margin: 0; padding: 12px 15px; color: #7c3b20; background: #f5dfd5; font-size: 13px; }
.form-status.visible { display: block; }
.form-status.success { color: #174b38; background: #dcebe4; }

footer { color: #a8b7b0; background: #0b261e; }
.footer-wrap { min-height: 150px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; }
.footer-wrap > p { margin: 0; font-size: 12px; }
.footer-wrap > p:nth-child(2) { text-align: center; }
.footer-wrap > p:last-child { text-align: right; }
.footer-brand { color: white; transform: scale(.9); transform-origin: left; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 24, .78);
  backdrop-filter: blur(8px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--ink);
  background: #efe8d9;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.product-dialog { display: grid; grid-template-columns: .42fr .58fr; width: min(1120px, 100%); }
.product-dialog > img { position: sticky; top: 0; width: 100%; height: 100%; min-height: 520px; max-height: 92vh; object-fit: cover; }
.product-modal-copy { padding: 38px 46px 42px; }
.product-modal-copy > span { color: #8f6728; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.product-modal-copy h3 { margin-top: 12px; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; }
.product-rating { margin-top: 10px; color: #8f6728; font-size: 13px; font-weight: 700; }
.product-modal-copy p { color: #5a6861; margin-bottom: 18px; }
.crop-summary { display: grid; grid-template-columns: repeat(5, 1fr); margin: 18px 0 22px; border: 1px solid var(--line); background: #fffdf8; }
.crop-summary div { padding: 13px 12px; border-right: 1px solid var(--line); }
.crop-summary div:last-child { border-right: 0; }
.crop-summary dt { color: #8f6728; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.crop-summary dd { margin: 6px 0 0; color: var(--ink); font-size: 12px; font-weight: 700; line-height: 1.35; }
.product-modal-copy ul { margin: 18px 0 20px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.product-modal-copy li { padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); color: #4e5d55; position: relative; line-height: 1.5; font-size: 13px; }
.product-modal-copy li::before { content: ""; position: absolute; left: 0; top: 24px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 0 0 18px; }
.trust-badges span { padding: 10px 11px; color: #174b38; background: #dcebe4; font-size: 11px; font-weight: 800; line-height: 1.35; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .section { padding: 85px 0; }
  .menu-toggle { display: block; color: inherit; z-index: 2; }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; color: white; background: var(--green-deep); transform: translateY(-100%); transition: .35s ease; }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 24px; }
  .menu-toggle.active { color: white; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .intro-grid, .identity-grid, .why-grid, .contact-intro, .approach-grid, .markets-grid, .availability-panel { grid-template-columns: 1fr; gap: 55px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .compliance-grid, .principles-list { grid-template-columns: 1fr 1fr; }
  .market-cards { grid-template-columns: 1fr 1fr; }
  .product-dialog { grid-template-columns: 1fr; }
  .product-dialog > img { position: static; min-height: 300px; height: 300px; max-height: none; }
  .crop-summary, .trust-badges { grid-template-columns: 1fr 1fr; }
  .crop-summary div { border-bottom: 1px solid var(--line); }
  .process-list > div { grid-template-columns: 40px 1fr; }
  .process-list p { grid-column: 2; }
  .identity-visual { min-height: 520px; }
  .identity-visual > img { height: 520px; }
  .field-story-heading { grid-template-columns: 1fr; gap: 25px; }
  .photo-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .enquiry-panel { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { gap: 30px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav-wrap { height: 76px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 15px; }
  .hero { min-height: 730px; }
  .hero-content { padding-top: 0; }
  h1 { font-size: 51px; }
  h2 { font-size: 40px; }
  .hero-copy { font-size: 16px; }
  .hero-stats { justify-content: flex-start; bottom: 24px; }
  .hero-stats div { min-width: 0; flex: 1; padding-left: 12px; }
  .hero-stats div:first-child { padding-left: 0; border: 0; }
  .hero-stats span { display: none; }
  .intro-grid { gap: 25px; }
  .intro-copy { padding-top: 0; }
  .identity-visual { min-height: 430px; }
  .identity-visual > img { height: 430px; }
  .photo-caption { width: 88%; padding: 20px; }
  .visual-card-main { right: 30px; padding: 28px; }
  .globe-lines { width: 280px; height: 280px; left: 35px; }
  .visual-card-main p { left: 28px; font-size: 23px; }
  .visual-card-small { width: 125px; height: 140px; }
  .photo-card { min-height: 0; }
  .photo-card img { height: 300px; }
  .enquiry-panel { width: calc(100% - 32px); padding: 28px 20px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form label, .form-wide { grid-column: 1; }
  .form-action { align-items: stretch; flex-direction: column; }
  .button-submit { justify-content: space-between; }
  .values > div { grid-template-columns: 36px 105px 1fr; }
  .choice-grid, .product-grid, .compliance-grid, .principles-list, .market-cards { grid-template-columns: 1fr; }
  .choice-card, .product-card, .compliance-grid > div { min-height: 0; }
  .note-card { padding: 34px 24px; }
  .availability-panel { padding: 24px 18px; }
  .availability-panel th, .availability-panel td { padding: 13px 6px; }
  .product-card h3 { margin-top: 34px; }
  .modal { padding: 14px; }
  .product-modal-copy { padding: 28px 20px; }
  .product-dialog > img { min-height: 220px; height: 220px; }
  .crop-summary, .trust-badges { grid-template-columns: 1fr; }
  .crop-summary div { border-right: 0; }
  .values p { line-height: 1.45; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; grid-template-columns: 40px 1fr; padding: 30px 0; }
  .service-card:nth-child(odd) { border-right: 0; }
  .footer-wrap { grid-template-columns: 1fr; padding: 35px 0; }
  .footer-wrap > p:nth-child(2), .footer-wrap > p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
