:root {
  --paper: #f6f5ee;
  --white: #fffefa;
  --ink: #1d3628;
  --ink-soft: #627066;
  --line: #d5dbd0;
  --green: #244b33;
  --green-dark: #183b2a;
  --green-pale: #e8eee0;
  --lime: #e2efa9;
  --amber: #785522;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { display: flex; flex-direction: column; min-width: 320px; min-height: 100vh; min-height: 100dvh; margin: 0; }
body > main { flex: 1 0 auto; min-width: 0; }
body > .masthead, body > .selection-bar, body > .footer { flex-shrink: 0; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid #8aab63; outline-offset: 3px; }
:where(h1, h2)[tabindex="-1"]:focus { outline: none; }
.skip-link { position: fixed; z-index: 20; top: 1rem; left: 1rem; padding: .7rem 1rem; color: white; background: var(--green); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.masthead { display: flex; height: 70px; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 clamp(1.25rem, 5vw, 5rem); background: var(--paper); }
.public-nav { display: flex; flex-shrink: 0; flex-wrap: wrap; gap: .25rem 2rem; padding: 0 clamp(1.25rem, 5vw, 5rem) .8rem; border-bottom: 1px solid var(--line); }
.public-nav a { padding: .45rem 0; color: var(--ink-soft); font-size: .76rem; font-weight: 650; text-decoration: none; text-underline-offset: .4em; }
.public-nav a:hover, .public-nav a[aria-current] { color: var(--green); text-decoration: underline; }
.public-service__links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1.5rem; }
.public-service__links a { font-size: .85rem; font-weight: 700; text-underline-offset: .3em; }

/* A kitchen notebook: short routes in, readable articles, references on demand. */
.editorial-page { max-width: 1240px; width: 100%; margin: 0 auto; padding: 2rem clamp(1.25rem, 5vw, 5rem) 4.5rem; }
.breadcrumbs { margin-bottom: 1.8rem; font-size: .73rem; line-height: 1.5; color: var(--ink-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem .6rem; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: '/'; padding-right: .6rem; color: #84947f; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: .2em; }
.guide-hero, .guide-index-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); align-items: center; gap: clamp(2rem, 5vw, 4.5rem); margin-bottom: 3rem; }
.guide-hero h1, .guide-index-hero h1 { font: 400 clamp(2.5rem, 4.5vw, 4rem)/1.06 Georgia, serif; letter-spacing: -.045em; margin: .8rem 0 1.25rem; text-wrap: balance; }
.guide-index-hero h1 { max-width: 14ch; font-size: clamp(3rem, 5vw, 4.6rem); }
.guide-hero figure, .guide-index-hero figure { margin: 0; }
.guide-hero img, .guide-index-hero img { display: block; width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; }
.guide-index-hero img { aspect-ratio: 1; object-position: 63% center; }
.guide-hero figcaption, .guide-index-hero figcaption, .crop-image-note { color: var(--ink-soft); font-size: .68rem; line-height: 1.5; margin-top: .65rem; }
.guide-lead { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; max-width: 35rem; }
.guide-byline { display: flex; flex-wrap: wrap; gap: .4rem 1rem; color: var(--ink-soft); font-size: .7rem; line-height: 1.6; margin-top: 1.5rem; }
.guide-byline a { color: var(--green); text-decoration: none; }
.guide-feature-link { display: inline-flex; align-items: center; gap: 1rem; padding: .85rem 0; margin-top: .75rem; border-bottom: 1px solid var(--green); font-size: .86rem; font-weight: 700; text-decoration: none; }
.guide-feature-link span, .guide-index__entry a span { transition: transform 160ms ease; }
.guide-feature-link:hover span, .guide-index__entry a:hover span { transform: translate(2px, -2px); }
.guide-categories { display: flex; gap: 2.5rem; border-block: 1px solid var(--line); }
.guide-categories a { display: flex; gap: .65rem; align-items: center; padding: 1.1rem 0; font-size: .8rem; font-weight: 700; text-decoration: none; }
.guide-categories a:hover { text-decoration: underline; text-underline-offset: .25em; }
.guide-categories a span { color: var(--ink-soft); font-size: .68rem; font-weight: 400; }
.guide-index { margin-bottom: 2.5rem; }
.guide-collection { display: grid; grid-template-columns: minmax(0, .65fr) minmax(0, 1.65fr); gap: clamp(2rem, 6vw, 5rem); padding: 2.8rem 0 1.5rem; scroll-margin-top: 1.5rem; }
.guide-collection + .guide-collection { border-top: 1px solid var(--line); }
.guide-collection h2 { font: 400 2.2rem/1.15 Georgia, serif; letter-spacing: -.035em; margin: .6rem 0 1rem; }
.guide-collection > header > p:last-child { max-width: 20rem; color: var(--ink-soft); font-size: .85rem; line-height: 1.7; }
.guide-index__entry { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.guide-index__entry:first-child { padding-top: 0; }
.guide-index__entry:last-child { border: 0; }
.guide-index__entry h3 { margin: 0; font: 400 clamp(1.35rem, 2.5vw, 1.65rem)/1.25 Georgia, serif; letter-spacing: -.02em; }
.guide-index__entry a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; text-decoration: none; }
.guide-index__entry a:hover { text-decoration: underline; text-underline-offset: .18em; }
.guide-index__entry a span { flex-shrink: 0; font-family: Inter, sans-serif; font-size: 1rem; }
.guide-index__entry p { max-width: 38rem; margin: .6rem 2rem 0 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.65; }
.guide-layout { display: grid; grid-template-columns: minmax(0, .65fr) minmax(0, 1.65fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.guide-contents { position: sticky; top: 2rem; padding-top: .85rem; border-top: 2px solid var(--green); }
.guide-contents ol { list-style: none; padding: 0; margin: .7rem 0 0; }
.guide-contents li { margin: 0; }
.guide-contents a { display: flex; gap: .7rem; padding: .7rem 0; font-size: .78rem; line-height: 1.5; color: var(--ink-soft); text-decoration: none; }
.guide-contents a > span { padding-top: .12rem; font-size: .62rem; font-variant-numeric: tabular-nums; }
.guide-contents a:hover { color: var(--green); text-decoration: underline; text-underline-offset: .2em; }
.guide-contents--mobile { display: none; }
.guide-body { min-width: 0; width: 100%; max-width: 70ch; }
.guide-takeaway { padding: 1.2rem 1.5rem; margin: 0 0 2.5rem; background: var(--green-pale); border-left: 2px solid var(--green); }
.guide-takeaway > p:last-child { margin: .65rem 0 0; color: var(--ink); font: 400 1.15rem/1.55 Georgia, serif; }
.guide-body > section { padding: 0 0 2rem; scroll-margin-top: 1.5rem; }
.guide-section > header { display: flex; align-items: baseline; gap: .9rem; }
.guide-section__number { flex-shrink: 0; color: var(--ink-soft); font-size: .7rem; font-variant-numeric: tabular-nums; }
.guide-body h2, .crop-kitchen h2, .guide-followup h2 { font: 400 clamp(1.65rem, 2.5vw, 2rem)/1.2 Georgia, serif; letter-spacing: -.035em; margin: 0 0 1rem; text-wrap: balance; }
.guide-body p:not(.section-label), .guide-section > ul > li, .crop-kitchen p:not(.section-label), .crop-kitchen li { color: var(--ink); font-size: .96rem; line-height: 1.85; }
.guide-body .guide-takeaway > p:last-child { font: 400 1.15rem/1.55 Georgia, serif; }
.guide-section > p { margin: 0 0 1rem; }
.guide-section > ul { padding-left: 1.15rem; margin: 1rem 0; }
.guide-section > ul > li { margin-bottom: .6rem; padding-left: .2rem; }
.guide-table-wrap { overflow-x: auto; margin: 1.3rem 0 .25rem; max-width: 100%; scrollbar-color: #9aaa91 var(--paper); }
.guide-table-hint { display: none; }
.guide-table { border-collapse: collapse; width: 100%; min-width: 530px; font-size: .8rem; line-height: 1.65; text-align: left; }
.guide-table caption { text-align: left; font-weight: 700; padding: 0 0 .75rem; color: var(--green); }
.guide-table th, .guide-table td { padding: .9rem .85rem .9rem 0; vertical-align: top; border-bottom: 1px solid var(--line); }
.guide-table thead th { color: var(--green); font-size: .72rem; font-weight: 750; }
.guide-table tbody th { min-width: 125px; font-weight: 700; }
.guide-table td { color: var(--ink-soft); }
.guide-table th small { display: block; margin-top: .25rem; font-size: .68rem; font-weight: 400; color: var(--ink-soft); }
.guide-table a, .guide-sources a { text-underline-offset: .2em; }
.guide-questions { margin-top: .4rem; }
.guide-questions details, .guide-reference, .guide-sources, .crop-question, .crop-background { border-top: 1px solid var(--line); }
.guide-reference { border-bottom: 1px solid var(--line); margin-top: 1.2rem; }
:is(.guide-questions, .guide-reference, .guide-sources, .crop-question, .crop-background, .guide-contents--mobile) summary { display: flex; align-items: baseline; justify-content: space-between; gap: 1.25rem; list-style: none; cursor: pointer; padding: 1rem 0; font-size: .85rem; font-weight: 650; line-height: 1.55; }
:is(.guide-questions, .guide-reference, .guide-sources, .crop-question, .crop-background, .guide-contents--mobile) summary::-webkit-details-marker { display: none; }
:is(.guide-questions, .guide-reference, .guide-sources, .crop-question, .crop-background, .guide-contents--mobile) summary::after { content: '+'; flex-shrink: 0; color: var(--green); font-size: 1.1rem; font-weight: 400; }
:is(.guide-questions, .guide-reference, .guide-sources, .crop-question, .crop-background, .guide-contents--mobile) details[open] > summary::after,
:is(.guide-reference, .guide-sources, .crop-question, .crop-background, .guide-contents--mobile)[open] > summary::after { content: '−'; }
.guide-questions details > p, .crop-question > p { max-width: 65ch; margin: 0 0 1.25rem; font-size: .9rem; line-height: 1.8; }
.guide-reference[open] { padding-bottom: 1rem; }
.guide-reference .guide-table-wrap { margin-top: .5rem; }
.guide-body .guide-sources p, .guide-body .guide-sources li { color: var(--ink-soft); font-size: .78rem; line-height: 1.8; }
.guide-sources ul { padding-left: 1rem; }
.guide-products { list-style: none; padding: 0; margin: 0; }
.guide-products li { border-top: 1px solid var(--line); }
.guide-products a { display: flex; gap: .85rem; align-items: center; padding: .85rem 0; text-decoration: none; }
.guide-products a:hover strong { text-decoration: underline; text-underline-offset: .3em; }
.guide-products img { width: 60px; height: 60px; object-fit: cover; flex-shrink: 0; }
.guide-products strong { font-size: .86rem; line-height: 1.4; }
.guide-products small { display: block; margin-top: .3rem; font-size: .7rem; line-height: 1.5; color: var(--ink-soft); }
.guide-products__price { margin-left: auto; flex-shrink: 0; font: 400 1.1rem/1.3 Georgia, serif; }
.guide-reading { list-style: none; padding: 0; margin: 0; }
.guide-reading li { border-top: 1px solid var(--line); }
.guide-reading a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; font-size: .86rem; line-height: 1.5; text-decoration: none; }
.guide-reading a:hover { text-decoration: underline; text-underline-offset: .25em; }
.guide-followup { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); margin: 3.5rem 0 2rem; padding-top: 2rem; border-top: 1px solid var(--green); }
.guide-followup h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.guide-library-link { display: inline-block; padding: .8rem 0; font-size: .78rem; font-weight: 700; text-underline-offset: .25em; }
.guide-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.25rem; background: var(--green-dark); color: var(--paper); text-decoration: none; font-size: .85rem; font-weight: 700; line-height: 1.5; }
.guide-cta:hover { background: var(--green); }
.crop-image-note { margin: .8rem 0 0; }
.crop-seed-note { max-width: 70ch; margin: .7rem 0 0; color: var(--ink-soft); font-size: .75rem; line-height: 1.7; }
.crop-kitchen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 5rem); padding: 2.5rem 0 1.5rem; margin-top: 2rem; border-top: 1px solid var(--line); }
.crop-kitchen h3 { font-size: .86rem; margin: .2rem 0 1rem; }
.crop-kitchen__finish strong { display: block; font-size: .78rem; margin-bottom: .35rem; }
.crop-kitchen__ideas { padding-left: 1.25rem; }
.crop-kitchen__ideas li { margin-bottom: .75rem; padding-left: .35rem; }
.crop-kitchen small { display: block; font-size: .73rem; line-height: 1.6; color: var(--ink-soft); }
.crop-background { border-bottom: 1px solid var(--line); }
.crop-background__body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); padding: .5rem 0 1.5rem; }
.crop-background__body p { margin: 0 0 1.25rem; font-size: .9rem; line-height: 1.8; }
.crop-background__body h3 { font-size: .78rem; margin: 1.5rem 0 .65rem; }
.crop-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 0; }
.crop-facts dt { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 750; color: var(--ink-soft); margin-bottom: .6rem; }
.crop-facts dd { margin: 0; font-size: .8rem; line-height: 1.7; }
.crop-background .crop-dimensions { margin-top: 1rem; color: var(--ink-soft); font-size: .73rem; }
@media (prefers-reduced-motion: no-preference) {
  .editorial-page { animation: editorial-arrive 400ms ease-out both; }
  @keyframes editorial-arrive { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
}
@media (max-width: 760px) {
  .guide-body p.guide-table-hint { display: block; color: var(--ink-soft); font-size: .75rem; margin-bottom: .5rem; }
  .guide-hero, .guide-index-hero { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .guide-hero img, .guide-index-hero img { aspect-ratio: 2 / 1; max-height: 300px; }
  .guide-hero h1, .guide-index-hero h1 { max-width: 22ch; font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .guide-byline { margin-top: 1rem; }
  .guide-categories { gap: 0; justify-content: space-between; }
  .guide-categories a { gap: .5rem; font-size: .75rem; }
  .guide-categories a span:first-child { display: none; }
  .guide-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .guide-contents--desktop { display: none; }
  .guide-contents--mobile { display: block; position: static; padding-top: 0; margin-bottom: 1.75rem; border-bottom: 1px solid var(--line); border-top-width: 1px; }
  .guide-contents--mobile ol { margin: 0 0 1rem; }
  .guide-takeaway { margin-bottom: 2rem; padding: 1rem 1.2rem; }
  .guide-collection { grid-template-columns: minmax(0, 1fr); gap: 1rem; padding: 2rem 0 1rem; }
  .guide-collection h2 { font-size: 2rem; margin: .5rem 0; }
  .guide-collection > header > p:last-child { max-width: none; margin: .6rem 0 1rem; }
  .guide-followup { grid-template-columns: minmax(0, 1fr); gap: 2rem; margin-top: 2.5rem; }
  .crop-kitchen { grid-template-columns: minmax(0, 1fr); gap: .75rem; padding: 2rem 0 1.5rem; }
  .crop-background__body { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
}
@media (max-width: 430px) {
  .public-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
  .editorial-page { padding-top: 1.5rem; }
  .guide-categories a { font-size: .75rem; }
  .guide-categories a > span { display: none; }
  .guide-products a { gap: .65rem; }
  .guide-products img { width: 48px; height: 48px; }
  .guide-products strong { font-size: .83rem; }
  .guide-products__price { font-size: 1rem; }
}
@media print {
  .public-nav, .guide-contents, .guide-cta { display: none !important; }
  .editorial-page { max-width: none; padding: 0; }
  .guide-layout { display: block; }
  .guide-table { min-width: 0; }
  .guide-table-wrap { overflow: visible; }
  .guide-body > section { break-inside: avoid; }
}
.brand { display: inline-flex; align-items: center; gap: .5rem; color: var(--green); font-size: 1.14rem; font-weight: 850; letter-spacing: -.065em; text-decoration: none; }
.brand__period { color: #8ca764; }
.brand__sprout { position: relative; display: flex; width: 27px; height: 30px; align-items: end; gap: 2px; transform: rotate(-17deg); }
.brand__sprout i { display: block; width: 7px; height: 15px; border-radius: 8px 8px 1px 1px; background: var(--green); }
.brand__sprout i:nth-child(2) { height: 25px; }
.brand__sprout i:nth-child(3) { height: 20px; }
.masthead__meta { color: var(--ink-soft); font-size: .68rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.masthead__right { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.6rem); }
.language-switch { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 4px; }
.language-switch :is(button, a) { display: inline-flex; align-items: center; justify-content: center; min-width: 33px; min-height: 29px; padding: .2rem .35rem; border: 0; border-radius: 2px; color: var(--ink-soft); background: transparent; font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; }
.language-switch :is(button[aria-pressed="true"], a[aria-current="page"]) { color: var(--white); background: var(--green); }
.language-switch :is(button, a):hover:not([aria-pressed="true"]):not([aria-current="page"]) { color: var(--green); background: var(--green-pale); }

.hero { position: relative; display: flex; min-height: clamp(360px, 38vw, 495px); align-items: center; overflow: hidden; isolation: isolate; background: var(--green-dark); }
.hero__image { position: absolute; z-index: -2; inset: 0; background: url('./hero-tmseeds.webp') center 58% / cover no-repeat; animation: hero-drift 1.15s ease-out both; }
.hero::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgb(12 36 22 / 88%) 0%, rgb(12 36 22 / 70%) 36%, rgb(12 36 22 / 22%) 72%, rgb(12 36 22 / 13%) 100%); content: ''; }
.hero__content { width: min(760px, 74%); padding: 3.2rem clamp(1.25rem, 5vw, 5rem) 3.8rem; color: #fffdf5; animation: hero-enter .72s ease-out both; }
.eyebrow, .section-label { margin: 0; font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { color: var(--lime); }
.eyebrow span { margin: 0 .4rem; opacity: .7; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
h1 { margin: 1.35rem 0 1.3rem; font-size: clamp(3.65rem, 6.2vw, 6.65rem); line-height: .98; }
h1 span { color: var(--lime); }
.hero__content > p:last-child { max-width: 30rem; margin: 0; color: #e0e9db; font-size: clamp(.93rem, 1.2vw, 1.05rem); line-height: 1.65; }
.hero__stamp { position: absolute; right: clamp(1.25rem, 5vw, 5rem); bottom: 2rem; display: flex; flex-direction: column; gap: .18rem; min-width: 107px; padding: .7rem .3rem .55rem; border-top: 1px solid #f2f5e8; border-bottom: 1px solid #f2f5e8; color: white; text-align: center; }
.hero__stamp strong { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 400; letter-spacing: -.06em; }
.hero__stamp span { font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.menu { max-width: 1330px; margin: 0 auto; padding: 4.1rem clamp(1.25rem, 5vw, 5rem) 5.5rem; }
.menu__intro { display: flex; justify-content: space-between; align-items: end; gap: 1.4rem; margin-bottom: 2.55rem; }
.section-label { color: #748c65; }
.menu h2 { margin: .52rem 0 .65rem; font-size: clamp(2.7rem, 4.4vw, 4.2rem); line-height: 1.05; }
.menu__description { max-width: 42rem; margin: 0; color: var(--ink-soft); font-size: .87rem; line-height: 1.55; }
.freshness { display: flex; align-items: center; gap: .5rem; min-width: fit-content; padding-bottom: .3rem; color: var(--ink-soft); font-size: .71rem; }
.freshness__dot { width: 7px; height: 7px; border-radius: 50%; background: #86aa6d; box-shadow: 0 0 0 4px rgb(134 170 109 / 14%); }
.freshness.is-stale .freshness__dot { background: #ba8750; box-shadow: 0 0 0 4px rgb(186 135 80 / 14%); }
.page-message { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .7rem 1.2rem; padding: 1rem 1.1rem; margin: 0 0 1.6rem; border-left: 3px solid #ad7747; color: #5d492c; background: #f3eade; font-size: .83rem; line-height: 1.5; }
.page-message[hidden] { display: none; }
.retry-catalog { border: 1px solid currentColor; border-radius: 999px; padding: .45rem .85rem; color: inherit; background: transparent; font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap; }
.retry-catalog[hidden] { display: none; }
.retry-catalog:hover, .retry-catalog:focus-visible { background: #ead9be; }

.menu-group { margin: 0 0 2.8rem; }
.menu-group__heading { display: flex; align-items: baseline; gap: .85rem; padding-bottom: .75rem; border-bottom: 1px solid var(--ink); }
.menu-group__heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 2.4vw, 2.05rem); font-weight: 400; letter-spacing: -.04em; }
.menu-group__heading span { color: #7b887a; font-size: .7rem; font-weight: 750; }
.product-row { display: grid; grid-template-columns: 82px minmax(220px, 1fr) minmax(175px, .52fr) 90px 125px; gap: 1rem; min-height: 132px; align-items: center; padding: .9rem .2rem; border-bottom: 1px solid var(--line); animation: row-enter .36s ease-out both; }
.product-row:hover { background: rgb(234 240 224 / 45%); }
.product-row__image { display: block; width: 82px; height: 82px; border: 1px solid var(--line); border-radius: 3px; object-fit: cover; background: var(--green-pale); }
.product-row__name { min-width: 0; }
.product-row__name strong { display: block; font-size: .92rem; font-weight: 730; line-height: 1.35; }
.product-row__name strong a { text-decoration-color: #a1b48d; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.product-row__name strong a:hover { color: #47733f; text-decoration-color: currentColor; }
.product-row__name > span { display: block; margin-top: .3rem; color: #899589; font-size: .66rem; }
.product-row__name p { max-width: 33rem; margin: .32rem 0 0; color: var(--ink-soft); font-size: .73rem; line-height: 1.48; }
.product-row__flavors { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: .55rem 0 0; list-style: none; }
.product-row__flavors li, .product-row__flavors span { display: inline-block; margin: 0; padding: .2rem .43rem; border: 1px solid #cad6c4; border-radius: 2px; color: #456249; background: #eef3e9; font-size: .61rem; font-weight: 680; line-height: 1.1; }
.product-row__safety { display: block; margin-top: .5rem; color: #785522; font-size: .65rem; line-height: 1.4; }
.product-row__availability { display: flex; align-items: baseline; gap: .5rem; color: var(--ink-soft); font-size: .76rem; line-height: 1.4; }
.availability-marker { width: 6px; height: 6px; border-radius: 50%; background: #9baa8d; flex: 0 0 auto; }
.product-row--available .availability-marker { background: #3f9253; }
.product-row__price { color: var(--green); font-family: Georgia, serif; font-size: 1.52rem; letter-spacing: -.05em; white-space: nowrap; }
.product-row__action { display: flex; justify-content: end; }
.add-button, .quantity-button { min-height: 39px; border: 1px solid var(--green); border-radius: 2px; color: var(--green); background: transparent; font-size: .74rem; font-weight: 780; }
.add-button { min-width: 112px; padding: .5rem .7rem; }
.add-button span { padding-left: .3rem; font-size: 1rem; font-weight: 400; }
.add-button:hover { color: white; background: var(--green); }
.quantity-control { display: inline-flex; height: 39px; align-items: center; border: 1px solid var(--green); border-radius: 2px; background: var(--green); color: white; }
.quantity-button { width: 37px; min-height: 37px; border: 0; color: white; font-size: 1.15rem; font-weight: 400; }
.quantity-button:hover { background: rgb(255 255 255 / 13%); }
.quantity-control output { min-width: 35px; text-align: center; font-size: .8rem; font-variant-numeric: tabular-nums; font-weight: 750; }
.menu__explanation { display: flex; gap: .85rem; max-width: 43rem; padding-top: .8rem; color: var(--ink-soft); }
.public-service { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); max-width: 1330px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 5rem) 5rem; }
.public-service__intro h2 { margin: .8rem 0 1rem; font: 400 clamp(2.25rem, 4vw, 3.4rem)/1.08 Georgia, serif; letter-spacing: -.045em; }
.public-service__intro > p:last-child { max-width: 31rem; margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.7; }
.public-service__questions { border-top: 1px solid var(--line); }
.public-service__questions details { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.public-service__questions summary { cursor: pointer; font-size: .9rem; font-weight: 750; line-height: 1.5; }
.public-service__questions details p { margin: .8rem 0 .15rem; max-width: 39rem; color: var(--ink-soft); font-size: .83rem; line-height: 1.7; }
.public-noscript { max-width: 1330px; margin: 1rem auto; padding: 0 clamp(1.25rem, 5vw, 5rem); color: var(--ink-soft); font-size: .8rem; line-height: 1.6; }
@media (max-width: 760px) {
  .public-service { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; padding-bottom: 3.5rem; }
}
.menu__explanation > span { color: #7b9d59; font-size: 1.05rem; line-height: 1.25; }
.menu__explanation p { margin: 0; font-size: .76rem; line-height: 1.6; }

.crop-detail { max-width: 1440px; min-height: min(720px, 80vh); padding: 1.65rem clamp(1.25rem, 5vw, 5rem) 3.5rem; margin: 0 auto; }
.crop-detail__back { display: inline-block; padding: .35rem 0; color: var(--green); font-size: .76rem; font-weight: 760; text-decoration: none; }
.crop-detail__back:hover, .crop-detail__end a:hover { text-decoration: underline; text-underline-offset: 4px; }
.crop-detail__loading { padding: 7rem 0; color: var(--ink-soft); font-family: Georgia, serif; font-size: 2rem; }
.crop-detail__not-found { max-width: 42rem; padding: 5rem 0; }
.crop-detail__not-found h1 { margin: .9rem 0 1.3rem; font-size: clamp(3.3rem, 6vw, 5.5rem); }
.crop-detail__not-found > p:not(.section-label) { max-width: 30rem; color: var(--ink-soft); line-height: 1.7; }
.crop-detail__browse { display: inline-block; margin-top: 1rem; color: var(--green); font-weight: 760; text-underline-offset: 4px; }
.crop-detail__layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: start; gap: clamp(2rem, 5vw, 6rem); margin-top: 1.25rem; }
.crop-detail__figure { min-width: 0; margin: 0; }
.crop-detail__visual { position: relative; overflow: hidden; background: var(--green-pale); }
.crop-detail__visual img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.crop-detail__visual > span { position: absolute; left: 1.3rem; bottom: 1.3rem; padding: .53rem .72rem; color: var(--green-dark); background: rgb(255 254 250 / 90%); font-size: .58rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.crop-detail__body { min-width: 0; padding: 1.2rem 0 0; }
.crop-detail__body h1 { max-width: 12ch; margin: .8rem 0 .4rem; font-size: clamp(2.8rem, 4.8vw, 4.8rem); line-height: 1.05; text-wrap: balance; }
.crop-detail__botanical { margin: 0 0 1.5rem; color: var(--ink-soft); font-family: Georgia, serif; font-size: .94rem; font-style: italic; }
.crop-detail__lead { max-width: 35rem; margin: 1.45rem 0 .7rem; color: var(--green); font-family: Georgia, serif; font-size: clamp(1.34rem, 2vw, 1.75rem); line-height: 1.35; }
.crop-detail__story { max-width: 36rem; margin: 0 0 1.8rem; color: var(--ink-soft); font-size: .89rem; line-height: 1.72; }
.crop-detail__notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.7rem; padding: 1.45rem 0 1.3rem; }
.crop-detail__notes h2 { margin: 0 0 .62rem; color: var(--ink-soft); font: 800 .66rem/1.3 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.crop-detail__notes p { margin: 0 0 .75rem; color: var(--ink); font-size: .81rem; line-height: 1.55; }
.crop-detail__tags { display: flex; flex-wrap: wrap; gap: .38rem; padding: 0; margin: 0; list-style: none; }
.crop-detail__tags li { padding: .3rem .48rem; border: 1px solid #d2dbc9; color: #4b6749; background: #eef3e9; font-size: .65rem; line-height: 1.15; }
.crop-detail__safety { padding: .75rem 0; margin: .2rem 0 1.1rem; border-top: 1px solid #e0d0ac; color: #735126; font-size: .76rem; line-height: 1.5; }
.crop-detail__safety strong { margin-right: .35rem; }
.crop-detail__order { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: 1.3rem 0; margin-top: .5rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.crop-detail__order > div:first-child { display: flex; flex-direction: column; gap: .35rem; }
.crop-detail__availability { display: flex; align-items: center; gap: .45rem; color: var(--green); font-size: .8rem; font-weight: 760; }
.crop-detail__order--available .availability-marker { background: #3f9253; }
.crop-detail__size { color: var(--ink-soft); font-size: .68rem; }
.crop-detail__order > strong { color: var(--green); font-family: Georgia, serif; font-size: 2.1rem; font-weight: 400; letter-spacing: -.055em; }
.crop-detail__order > .add-button, .crop-detail__order > .quantity-control { grid-column: 1 / -1; justify-self: start; min-width: 150px; }
.crop-detail__order > .quantity-control { justify-content: space-between; }
.crop-detail__end { display: flex; justify-content: space-between; gap: 1rem; padding: 1.4rem 0 0; }
.crop-detail__end p { margin: 0; color: var(--ink-soft); font-size: .71rem; }
.crop-detail__end a { color: var(--green); font-size: .76rem; font-weight: 760; text-decoration: none; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.25rem, 5vw, 5rem); color: #eaf1e5; background: var(--green-dark); }
.footer > span:first-child { font-size: 1.1rem; font-weight: 850; letter-spacing: -.05em; white-space: nowrap; }
.footer p { max-width: 31rem; margin: 0; color: #cad8c8; font-size: .73rem; line-height: 1.5; }
.footer__note { color: #a8bda4; font-size: .69rem; text-align: right; }
.footer__links { display: flex; flex-direction: column; align-items: end; gap: .75rem; }
.footer__links a { font-size: .76rem; text-underline-offset: .2em; }

.privacy-page { max-width: 1220px; margin: 0 auto; padding: 1.5rem clamp(1.25rem, 5vw, 5rem) 5rem; }
.privacy-header { max-width: 46rem; margin: 2.5rem 0; }
.privacy-header h1 { margin: .7rem 0 1.3rem; font-size: clamp(2.7rem, 5.4vw, 5rem); line-height: 1.08; }
.privacy-intro { max-width: 39rem; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }
.privacy-updated { color: var(--ink-soft); font-size: .78rem; }
.privacy-layout { display: grid; grid-template-columns: minmax(180px, 1fr) minmax(0, 2.65fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.privacy-nav { position: sticky; top: 1.5rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.privacy-nav h2 { margin: .2rem 0 1rem; font-family: inherit; font-size: .78rem; font-weight: 750; line-height: 1.4; }
.privacy-nav ol { margin: 0; padding: 0; list-style: none; }
.privacy-nav li { margin-bottom: .8rem; }
.privacy-nav a { color: var(--ink-soft); font-size: .8rem; line-height: 1.5; text-decoration: none; }
.privacy-nav a:hover { color: var(--green); text-decoration: underline; text-underline-offset: .2em; }
.privacy-body section { padding-top: .8rem; margin-bottom: 2.3rem; border-top: 1px solid var(--line); scroll-margin-top: 1rem; }
.privacy-body h2 { margin: .35rem 0 1rem; color: var(--green); font-size: 1.6rem; line-height: 1.25; letter-spacing: -.025em; }
.privacy-body p { margin: 0 0 1rem; color: var(--ink-soft); font-size: .91rem; line-height: 1.8; overflow-wrap: anywhere; }
.privacy-body a { color: var(--green); text-underline-offset: .18em; }
.privacy-storage table { width: 100%; margin: 1.2rem 0; border-collapse: collapse; table-layout: fixed; }
.privacy-storage th, .privacy-storage td { padding: .9rem .5rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .8rem; line-height: 1.65; overflow-wrap: anywhere; }
.privacy-storage th:first-child { width: 35%; padding-left: 0; }
.privacy-storage td { color: var(--ink-soft); }
.privacy-storage code { display: block; margin-top: .45rem; color: var(--ink-soft); font-size: .67rem; font-weight: 400; }

@media (max-width: 760px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .privacy-nav { position: static; }
  .privacy-nav ol { columns: 2; column-gap: 1.5rem; }
  .privacy-nav li { break-inside: avoid; }
  .privacy-header { margin-top: 1.8rem; }
}

.selection-bar { position: sticky; z-index: 5; bottom: 0; padding-bottom: env(safe-area-inset-bottom, 0px); border-top: 1px solid #355a42; color: white; background: var(--green-dark); box-shadow: 0 -10px 35px rgb(21 47 31 / 12%); animation: bar-enter .22s ease-out both; }
.selection-bar__inner { display: flex; max-width: 1330px; min-height: 80px; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem clamp(1.25rem, 5vw, 5rem); margin: auto; }
.selection-bar__inner > div:first-child { display: flex; flex-direction: column; gap: .2rem; }
.selection-bar__eyebrow { color: #a9c095; font-size: .6rem; font-weight: 800; letter-spacing: .13em; }
.selection-bar__inner strong { font-size: .92rem; }
.selection-bar__actions { display: flex; align-items: center; gap: 1.45rem; }
.selection-bar__actions > strong { font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; white-space: nowrap; }
.selection-bar button, .done-button { min-height: 45px; padding: .75rem 1rem; border: 0; border-radius: 2px; color: var(--green-dark); background: var(--lime); font-size: .74rem; font-weight: 800; }
.selection-bar button:hover, .done-button:hover { background: #f0f7c8; }
.selection-bar button span { margin-left: .4rem; }

.selection-dialog { position: fixed; width: min(calc(100% - 2rem), 580px); max-height: min(90dvh, 780px); padding: 0; border: 0; border-radius: 4px; color: var(--ink); background: var(--white); box-shadow: 0 26px 100px rgb(12 34 21 / 30%); }
.selection-dialog::backdrop { background: rgb(10 33 19 / 62%); backdrop-filter: blur(4px); }
.dialog__head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 1.6rem 1.8rem 1.35rem; border-bottom: 1px solid var(--line); }
.dialog__head h2 { margin-top: .4rem; font-size: 2.45rem; }
.icon-button { width: 34px; height: 34px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--white); font-size: 1.5rem; line-height: 1; }
.selected-lines { max-height: 48dvh; overflow-y: auto; padding: .25rem 1.8rem; }
.selected-line { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .88rem 0; border-bottom: 1px solid var(--line); }
.selected-line:last-child { border-bottom: 0; }
.selected-line__image { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 2px; object-fit: cover; }
.selected-line__info { min-width: 0; flex: 1; }
.selected-line__info strong { display: block; font-size: .83rem; }
.selected-line__info span { display: block; margin-top: .25rem; color: var(--ink-soft); font-size: .68rem; }
.selected-line__total { display: flex; align-items: center; gap: 1rem; }
.selected-line__total strong { min-width: 3.7rem; color: var(--green); text-align: right; white-space: nowrap; }
.selected-line .quantity-control { height: 32px; }
.selected-line .quantity-button { width: 28px; min-height: 30px; }
.selected-line .quantity-control output { min-width: 25px; }
.dialog__bottom { padding: 1.25rem 1.8rem 1.7rem; background: #eef2e9; }
.dialog__bottom > div:first-child { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dialog__bottom > div:first-child span { font-size: .75rem; font-weight: 740; }
.dialog__bottom > div:first-child strong { color: var(--green); font-family: Georgia, serif; font-size: 1.85rem; font-weight: 400; }
.dialog__bottom p { margin: .5rem 0 1.4rem; color: var(--ink-soft); font-size: .72rem; line-height: 1.5; }
.dialog__buttons { display: flex; justify-content: space-between; gap: .65rem; }
.clear-button { padding: .65rem 0; border: 0; border-bottom: 1px solid currentColor; color: var(--green); background: transparent; font-size: .7rem; font-weight: 760; }
.done-button { min-width: 120px; color: white; background: var(--green); }
.done-button:hover { background: #38664a; }
.dialog__buttons-right { display: flex; align-items: center; gap: .85rem; }
.quiet-button { min-height: 42px; padding: .6rem .1rem; border: 0; border-bottom: 1px solid currentColor; color: var(--green); background: transparent; font-size: .74rem; font-weight: 760; }
.quiet-button:hover { color: #456e50; }
.done-button:disabled, .quiet-button:disabled { opacity: .55; cursor: wait; }

.success-dialog { position: fixed; width: min(calc(100% - 2rem), 690px); max-height: min(94dvh, 900px); padding: 0; border: 0; border-radius: 4px; color: var(--ink); background: var(--white); box-shadow: 0 26px 100px rgb(12 34 21 / 30%); }
.success-dialog::backdrop { background: rgb(10 33 19 / 62%); backdrop-filter: blur(4px); }
.checkout-form { min-width: 0; margin: 0; }
.checkout-lead { margin: 0 0 1.4rem; color: var(--ink-soft); font-size: .82rem; line-height: 1.55; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .43rem; margin: 0 0 1rem; }
.form-grid .field { margin: 0; }
.field > span, .cadence-field legend, .feedback-form legend { color: var(--ink); font-size: .76rem; font-weight: 760; }
.field em { margin-left: .3rem; color: #849183; font-size: .65rem; font-style: normal; font-weight: 500; }
.field input, .field textarea, .restaurant-input > input { width: 100%; min-height: 43px; padding: .66rem .76rem; border: 1px solid #bac6b7; border-radius: 2px; outline: none; color: var(--ink); background: #fffefa; font: inherit; font-size: .82rem; }
.field textarea { min-height: 72px; resize: vertical; }
.field input:focus, .field textarea:focus, .restaurant-input > input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgb(88 132 75 / 15%); }
.field input::placeholder, .field textarea::placeholder { color: #9ca99b; }
.field small, .field-note { color: var(--ink-soft); font-size: .67rem; line-height: 1.45; }
.field-note { margin: .5rem 0 1.35rem; }
.cadence-field, .feedback-form fieldset { margin: 0 0 1.3rem; padding: 0; border: 0; }
.cadence-field legend, .feedback-form legend { margin-bottom: .65rem; padding: 0; }
.cadence-options, .feedback-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .45rem; }
.cadence-options label, .feedback-options label { position: relative; display: flex; min-height: 44px; align-items: center; justify-content: center; padding: .45rem .55rem; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); background: var(--white); text-align: center; cursor: pointer; }
.cadence-options label:has(input:checked), .feedback-options label:has(input:checked) { border-color: var(--green); color: var(--green); background: #eaf1df; }
.cadence-options input, .feedback-options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cadence-options label:has(input:focus-visible), .feedback-options label:has(input:focus-visible) { outline: 3px solid #8aab63; outline-offset: 2px; }
.cadence-options span, .feedback-options span { font-size: .71rem; font-weight: 720; line-height: 1.25; }
.field--date { max-width: 20rem; }
.honeypot { position: absolute; width: 1px; height: 1px; padding: 0; opacity: 0; pointer-events: none; }
.form-error { margin: .75rem 0; padding: .72rem .85rem; border-left: 3px solid #b16b48; color: #744528; background: #f8ebe2; font-size: .75rem; line-height: 1.45; }
.checkout-submit { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.checkout-submit > div { display: flex; flex-direction: column; gap: .15rem; }
.checkout-submit span, .success-reference span { color: var(--ink-soft); font-size: .68rem; }
.checkout-submit strong { font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; }
.checkout-submit small { color: var(--ink-soft); font-size: .65rem; }
.checkout-submit button { min-height: 47px; padding: .7rem 1.15rem; border: 0; border-radius: 2px; color: white; background: var(--green); font-size: .75rem; font-weight: 800; }
.checkout-submit button:hover { background: #38664a; }
.checkout-submit button:disabled { opacity: .65; cursor: wait; }
.checkout-submit button span { margin-left: .3rem; color: inherit; font-size: .9rem; }
.success-body { padding: 1.25rem 1.8rem 1.4rem; }
.success-body > p:first-child { max-width: 32rem; margin: 0 0 1rem; color: var(--ink-soft); font-size: .82rem; line-height: 1.6; }
.success-reference { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.success-reference strong { color: var(--green); font-size: .91rem; letter-spacing: .05em; }
.success-total { margin: .75rem 0 0; color: var(--ink-soft); font-size: .75rem; }
.feedback-form { padding: 1.3rem 1.8rem 1.6rem; background: #eef2e9; }
.feedback-options { grid-template-columns: 1fr 1fr; }
.feedback-form .field { margin-top: 1rem; }
.feedback-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; margin-top: 1.15rem; }
.feedback-done { margin: .4rem 0; color: var(--green); font-size: .82rem; font-weight: 720; }

@keyframes hero-enter { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-drift { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes row-enter { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bar-enter { from { transform: translateY(100%); } to { transform: translateY(0); } }

.delivery-address { display: grid; gap: .55rem; }
.delivery-address .field-note { margin: 0; }
.restaurant-picker { min-width: 0; }
.restaurant-picker > .field { margin-bottom: .45rem; }
.restaurant-picker .field-note { margin: .5rem 0 0; }
.restaurant-input { position: relative; }
.restaurant-input > input { width: 100%; }
.restaurant-popup { position: absolute; inset: calc(100% + .25rem) 0 auto; z-index: 5; max-height: 18rem; overflow-y: auto; overscroll-behavior: contain; border: 1px solid var(--green); background: var(--paper); box-shadow: 0 8px 20px #163c2926; }
.restaurant-popup ul { margin: 0; padding: 0; list-style: none; }
.restaurant-popup [role="option"] { min-height: 44px; padding: .8rem; cursor: pointer; border-bottom: 1px solid #163c2926; overflow-wrap: anywhere; }
.restaurant-popup [role="option"] strong, .restaurant-popup [role="option"] span { display: block; }
.restaurant-popup [role="option"] strong { font-size: .9rem; }
.restaurant-popup [role="option"] span { margin-top: .25rem; font-size: .75rem; line-height: 1.4; color: var(--ink-soft); }
.restaurant-popup [role="option"]:hover, .restaurant-popup [aria-selected="true"] { background: #dfe9dd; }
.restaurant-manual { width: 100%; min-height: 44px; padding: .7rem .8rem; border: 0; background: transparent; color: var(--green); text-align: left; font: inherit; font-size: .8rem; cursor: pointer; text-decoration: underline; text-underline-offset: .2em; }
.restaurant-status { margin: .5rem 0 0; color: var(--green); font-size: .75rem; line-height: 1.45; }
.restaurant-status.is-error { color: #92352b; }
#draft-status.is-error { color: #92352b; }
.restaurant-address-suggestion { padding: .8rem; border-left: 2px solid var(--green); background: #dfe9dd; font-size: .8rem; line-height: 1.45; }
.restaurant-address-suggestion p { margin: .3rem 0 .6rem; }
.location-button { justify-self: start; min-height: 44px; padding: .6rem .9rem; border: 1px solid var(--green); color: var(--green); background: transparent; font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.location-button:hover { background: var(--paper); }
.location-button:disabled { cursor: default; opacity: .65; }
.location-status { margin: 0; font-size: .8rem; line-height: 1.5; color: var(--green); }
.location-status.is-error { color: #92352b; }

@media (max-width: 850px) {
  .product-row { grid-template-columns: 72px minmax(0, 1fr) auto; grid-template-areas: 'image name price' 'image name action' 'image availability action'; gap: .35rem .8rem; }
  .product-row__image { width: 72px; height: 72px; }
  .product-row__image { grid-area: image; align-self: start; }
  .product-row__name { grid-area: name; }
  .product-row__availability { grid-area: availability; }
  .product-row__price { font-size: 1.35rem; }
  .product-row__price { grid-area: price; text-align: right; }
  .product-row__action { grid-area: action; align-self: center; }
  .add-button { min-width: 98px; }
  .crop-detail__layout { gap: 2rem; }
  .crop-detail__body { padding-top: .2rem; }
}

@media (max-width: 680px) {
  .masthead { height: 64px; }
  .masthead__meta { font-size: .59rem; }
  .hero { min-height: 340px; align-items: start; }
  .hero__image { background-position: 58% center; }
  .hero::before { background: linear-gradient(90deg, rgb(12 36 22 / 87%), rgb(12 36 22 / 62%) 65%, rgb(12 36 22 / 34%)); }
  .hero__content { width: 100%; padding-top: 2.6rem; padding-bottom: 3rem; }
  h1 { font-size: clamp(3.5rem, 11vw, 5rem); }
  .hero__content > p:last-child { max-width: 21rem; }
  .hero__stamp { right: 1.3rem; bottom: 1.15rem; min-width: 85px; padding: .4rem; }
  .hero__stamp strong { font-size: 1.2rem; }
  .hero__stamp span { font-size: .52rem; }
  .menu { padding-top: 2.8rem; padding-bottom: 3.5rem; }
  .menu__intro { display: block; margin-bottom: 2rem; }
  .menu h2 { font-size: 3.1rem; }
  .freshness { margin-top: 1.1rem; }
  .product-row { grid-template-columns: 74px minmax(0, 1fr) auto; grid-template-areas: 'image name price' 'image availability action'; column-gap: .75rem; row-gap: .45rem; min-height: 108px; padding: .85rem .05rem; }
  .product-row__image { grid-area: image; width: 74px; height: 74px; align-self: center; }
  .product-row__name { grid-area: name; }
  .product-row__availability { grid-area: availability; align-self: center; font-size: .68rem; }
  .product-row__price { grid-area: price; text-align: right; }
  .product-row__action { grid-area: action; align-self: center; }
  .add-button { min-height: 34px; padding: .35rem .6rem; }
  .quantity-control { height: 35px; }
  .quantity-button { min-height: 33px; width: 32px; }
  .quantity-control output { min-width: 28px; }
  .crop-detail { padding-top: 1.1rem; }
  .crop-detail__layout { grid-template-columns: 1fr; gap: 1.7rem; }
  .crop-detail__visual img { max-height: 450px; aspect-ratio: 1.2 / 1; }
  .crop-detail__body h1 { max-width: none; font-size: clamp(2.75rem, 10vw, 4.2rem); }
  .crop-detail__lead { margin-top: 1rem; }
  .crop-detail__end { align-items: start; }
  .footer { display: block; }
  .footer p { margin: .8rem 0; }
  .footer__note { display: block; text-align: left; }
  .footer__links { align-items: start; }
  .success-dialog { width: min(calc(100% - 1rem), 690px); max-height: 94dvh; }
  .form-grid { grid-template-columns: 1fr; gap: .9rem; }
  .cadence-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .masthead__meta { display: none; }
  .hero { min-height: 350px; }
  .hero__content > p:last-child { max-width: 18rem; font-size: .85rem; }
  .hero__stamp { display: none; }
  .menu h2 { font-size: 2.8rem; }
  .product-row__name strong { font-size: .84rem; }
  .product-row__name p { display: none; }
  .product-row__flavors { margin-top: .38rem; }
  .product-row__flavors li { font-size: .56rem; }
  .product-row__safety { font-size: .58rem; }
  .product-row { grid-template-columns: 64px minmax(0, 1fr) auto; column-gap: .55rem; }
  .product-row__image { width: 64px; height: 64px; }
  .product-row__availability { max-width: 13rem; }
  .crop-detail__notes { gap: 1rem; }
  .crop-detail__notes p { font-size: .74rem; }
  .crop-detail__visual > span { left: .75rem; bottom: .75rem; }
  .selection-bar__inner { min-height: 74px; }
  .selection-bar__actions { gap: .7rem; }
  .selection-bar__actions > strong { font-size: 1.35rem; }
  .selection-bar button { min-height: 40px; padding: .6rem .75rem; font-size: .65rem; }
  .selection-bar button span[aria-hidden="true"] { display: none; }
  .selection-dialog { width: 100vw; max-width: 100vw; max-height: 94dvh; margin: auto 0 0; border-radius: 10px 10px 0 0; }
  .dialog__head, .selected-lines, .dialog__bottom { padding-left: 1.2rem; padding-right: 1.2rem; }
  .selected-line__total { gap: .45rem; }
  .selected-line__image { width: 32px; height: 32px; flex-basis: 32px; }
  .selected-line { gap: .5rem; }
  .selected-line .quantity-button { width: 24px; }
  .selected-line .quantity-control output { min-width: 22px; }
  .selected-line__total strong { min-width: 3rem; font-size: .76rem; }
  .dialog__buttons-right { gap: .55rem; }
  .dialog__buttons-right .quiet-button { display: none; }
  .dialog__buttons-right .done-button { min-width: 0; }
  .success-dialog { width: 100vw; max-width: 100vw; max-height: 96dvh; margin: auto 0 0; border-radius: 10px 10px 0 0; }
  .success-dialog .dialog__head { padding: 1.2rem 1.2rem 1rem; }
  .success-dialog .dialog__head h2 { font-size: 2.1rem; }
  .checkout-submit { align-items: end; }
  .checkout-submit button { max-width: 55%; }
  .success-body, .feedback-form { padding-left: 1.2rem; padding-right: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__content, .hero__image, .product-row, .selection-bar { animation: none; }
}
:root[data-site-locale="en"]:not([data-i18n-ready="true"]):not([data-public-ssr="true"]) [data-i18n],
:root[data-site-locale="en"]:not([data-i18n-ready="true"]):not([data-public-ssr="true"]) [data-i18n-html],
:root[data-site-locale="en"]:not([data-i18n-ready="true"]):not([data-public-ssr="true"]) #menu-list,
:root[data-site-locale="en"]:not([data-i18n-ready="true"]):not([data-public-ssr="true"]) .language-switch { visibility: hidden; }

.order-recovery { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; padding: .8rem clamp(1.25rem, 5vw, 5rem); background: var(--green-pale); }
.order-recovery p { margin: 0; font-size: .85rem; }
.order-recovery button { border: 1px solid var(--green); border-radius: 4px; padding: .6rem .8rem; color: var(--green); background: var(--white); font-weight: 700; }
.menu-empty { padding: 2rem 0; color: var(--ink-soft); }
.product-row__information { display: block; margin-top: .4rem; color: var(--ink-soft); font-size: .72rem; line-height: 1.4; }
button:disabled { cursor: default; }

.account-link { padding: .6rem 0; color: var(--green); font-size: .78rem; font-weight: 750; text-underline-offset: .25em; white-space: nowrap; }
.account-page { width: min(100%, 1150px); min-height: 65vh; margin: auto; padding: 2rem clamp(1.25rem, 5vw, 4rem) 5rem; }
.account-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin: 2.8rem 0 2rem; }
.account-header h1 { margin: .6rem 0 .8rem; font-size: clamp(3.2rem, 6vw, 5rem); }
.account-header > div > p:last-child { max-width: 34rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.6; }
.account-identity { display: flex; flex-direction: column; align-items: end; gap: .6rem; max-width: 22rem; font-size: .85rem; overflow-wrap: anywhere; }
.account-tabs { display: flex; gap: 1.8rem; border-bottom: 1px solid var(--line); margin: 2rem 0; }
.account-tabs button { min-height: 48px; padding: .8rem .1rem; border: 0; border-bottom: 3px solid transparent; color: var(--ink-soft); background: transparent; font: inherit; font-size: .9rem; font-weight: 740; }
.account-tabs button[aria-current="page"] { border-bottom-color: var(--green); color: var(--green); }
.account-content h2, .account-auth h2, .account-auth-success h2 { margin: 0 0 .8rem; font-size: 2.5rem; }
.account-content h3 { margin: 0 0 .8rem; font-size: 1.12rem; }
.account-help { margin: .7rem 0 1.4rem; color: var(--ink-soft); font-size: .83rem; line-height: 1.65; }
.account-auth { width: min(100%, 29rem); }
.account-page > .account-auth { margin: 2rem 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.account-auth-form { margin-top: 1.5rem; }
.account-auth-form > .done-button, .account-password-form > .done-button { min-height: 46px; margin: .3rem 0; }
.account-auth-form > .done-button { width: 100%; }
.account-auth-form .field { margin-bottom: 1.1rem; }
.account-auth-links { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.2rem; margin-top: .8rem; }
.account-methods { display: flex; gap: .4rem; margin: .5rem 0 1.3rem; }
.account-method { min-height: 46px; flex: 1; padding: .6rem .4rem; border: 1px solid #b6c4b4; color: var(--green); background: transparent; border-radius: 3px; font: inherit; font-size: .78rem; font-weight: 740; }
.account-method[aria-pressed="true"] { background: var(--green); color: var(--white); border-color: var(--green); }
.account-auth-dialog { width: min(calc(100% - 1.5rem), 510px); max-height: 92dvh; margin: auto; padding: 2rem; border: 0; border-radius: 5px; color: var(--ink); background: var(--white); box-shadow: 0 26px 100px rgb(12 34 21 / 30%); }
.account-auth-dialog::backdrop { background: rgb(10 33 19 / 65%); backdrop-filter: blur(4px); }
.account-auth-dialog > .icon-button { display: block; margin: -.7rem -.7rem .5rem auto; }
.account-auth-dialog .account-auth h2 { font-size: 2.25rem; }
.account-auth-dialog .account-auth { width: 100%; }
.account-auth-success > .done-button { margin-right: 1rem; }
.account-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.2rem; }
.account-notice { margin: 1rem 0; padding: .9rem 1rem; border-left: 3px solid var(--green); color: var(--green); background: #e8efdf; font-size: .85rem; line-height: 1.6; }
.account-empty { margin: 1.2rem 0; padding: 1.3rem 0; color: var(--ink-soft); line-height: 1.65; }
.checkout-account { margin-bottom: 1.4rem; padding: 1.1rem; background: #eef2e9; border: 1px solid var(--line); }
.checkout-account .field { margin-bottom: .6rem; }
.checkout-account .account-help { margin: .5rem 0; font-size: .76rem; }
.checkout-account .location-button { font-size: .74rem; }
.checkout-account input[readonly] { color: var(--green); background: #f0f2eb; }
.account-records, .account-passkeys { list-style: none; padding: 0; margin: 1.4rem 0; }
.account-records li, .account-passkeys li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.account-records li:first-child, .account-passkeys li:first-child { border-top: 1px solid var(--line); }
.account-records li > div:first-child, .account-passkeys li > div:first-child { min-width: 0; overflow-wrap: anywhere; }
.account-records span, .account-passkeys span { display: block; margin: .35rem 0 0; color: var(--ink-soft); font-size: .75rem; line-height: 1.5; }
.account-records strong { font-size: .92rem; }
.account-records__action { flex: 0 0 auto; display: flex; flex-direction: column; align-items: end; gap: .25rem; }
.account-records__action > strong { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.account-claim { max-width: 38rem; margin: 2.5rem 0 0; padding: 1.5rem; background: #eef2e9; }
.account-claim p { margin: 0 0 .8rem; color: var(--ink-soft); font-size: .82rem; line-height: 1.6; }
.account-security > section { max-width: 44rem; margin: 2rem 0; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.account-password-form { max-width: 27rem; margin-top: 1.3rem; }
.account-confirm { padding: 1rem; margin: 1rem 0; border-left: 3px solid #ae6845; background: #f8ebe2; font-size: .84rem; line-height: 1.6; }
.account-confirm p { margin: 0 0 .65rem; }
.account-confirm button { margin-right: 1rem; }
.account-receipt-actions { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.account-receipt { padding: clamp(1rem, 4vw, 2.6rem); border: 1px solid var(--line); background: #fffefa; }
.account-receipt__heading > strong { display: block; margin-bottom: 1.5rem; color: var(--green); font-size: 1.5rem; letter-spacing: -.05em; }
.account-receipt .account-reference { margin: 1rem 0 2rem; color: var(--ink-soft); font-size: .8rem; overflow-wrap: anywhere; }
.account-receipt > p { font-size: .82rem; line-height: 1.6; overflow-wrap: anywhere; }
.account-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.account-details dt { margin-bottom: .4rem; color: var(--ink-soft); font-size: .74rem; }
.account-details dd { margin: 0; font-size: .85rem; overflow-wrap: anywhere; }
.account-table-wrap { overflow-x: auto; }
.account-receipt table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.account-receipt th, .account-receipt td { padding: 1rem .5rem; border-bottom: 1px solid var(--line); text-align: right; }
.account-receipt th:first-child { padding-left: 0; text-align: left; }
.account-receipt thead th { color: var(--ink-soft); font-size: .7rem; }
.account-receipt tfoot td { color: var(--green); font-size: 1.25rem; }
.account-receipt-note { margin: 1.4rem 0 0; color: var(--ink-soft); }
.account-related { margin-top: 2rem; }
@media (max-width: 680px) {
  .masthead__meta { display: none; }
  .account-header { display: block; margin-top: 2rem; }
  .account-identity { align-items: start; margin-top: 1.2rem; }
  .account-tabs { gap: 1.5rem; }
  .account-content h2 { font-size: 2.15rem; }
  .account-auth-dialog { padding: 1.4rem; }
  .account-records strong { font-size: .85rem; }
  .account-records__action > strong { font-size: 1.4rem; }
  .account-claim { padding: 1.2rem; }
}
@media (max-width: 400px) {
  .masthead { height: auto; min-height: 64px; flex-wrap: wrap; gap: .55rem 1rem; padding-block: .75rem; }
  .masthead__right { margin-left: auto; }
  .account-details { grid-template-columns: 1fr; }
  .account-link { font-size: .7rem; }
  .account-method { font-size: .72rem; }
}
@media print {
  body { display: block; min-height: 0; }
  body:has(#account-receipt) { padding: 0 !important; background: white; color: black; }
  body:has(#account-receipt) > :not(main), body:has(#account-receipt) main > :not(#account-page), body:has(#account-receipt) #account-page > :not(.account-content), body:has(#account-receipt) .account-content > :not(#account-receipt), body:has(#account-receipt) .selection-bar, body:has(#account-receipt) dialog { display: none !important; }
  body:has(#account-receipt) #account-page, body:has(#account-receipt) .account-content { display: block !important; width: 100%; margin: 0; padding: 0; }
  #account-receipt { display: block !important; border: 0; padding: 0; background: white; }
  #account-receipt h2 { font-size: 24pt; }
  #account-receipt tr { break-inside: avoid; }
}

/* Ingredient discovery — a working menu with room for the crops. */
.hero__content > p:not(.eyebrow) { max-width: 30rem; margin: 0; color: #e0e9db; font-size: clamp(.93rem, 1.2vw, 1.05rem); line-height: 1.65; }
.hero__browse { display: inline-flex; align-items: center; gap: 2.25rem; min-height: 44px; margin-top: 1.45rem; border-bottom: 1px solid #cfdfaf; color: var(--lime); font-size: .78rem; font-weight: 720; text-decoration: none; }
.hero__browse > span:last-child { transition: transform .2s ease; }
.hero__browse:hover > span:last-child { transform: translateY(4px); }
.discovery { margin: 0 0 1.7rem; }
.discovery__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.discovery__heading h3 { margin: 0; font: 400 clamp(1.5rem, 2.1vw, 2rem)/1.25 Georgia, serif; letter-spacing: -.035em; }
.discovery__heading p { max-width: 26rem; margin: 0; color: var(--ink-soft); font-size: .74rem; line-height: 1.6; }
.discovery__toolbar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .48fr) auto; gap: 1.15rem; align-items: end; margin-top: 1.6rem; }
.discovery__search, .discovery__sort { min-width: 0; }
.discovery__search > label, .discovery__sort > label { display: block; margin-bottom: .55rem; color: var(--ink-soft); font-size: .64rem; font-weight: 760; letter-spacing: .055em; }
.discovery__search > div { position: relative; display: flex; align-items: center; border: 1px solid #b9c5b4; background: var(--white); }
.discovery__search > div:focus-within { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.discovery__search svg { position: absolute; left: .9rem; fill: none; stroke: currentColor; stroke-width: 1.5; pointer-events: none; }
.discovery__search input { width: 100%; min-width: 0; min-height: 50px; padding: .85rem 2.5rem .85rem 2.75rem; border: 0; border-radius: 0; color: var(--ink); background: transparent; font: inherit; font-size: .85rem; appearance: none; }
.discovery__search input::-webkit-search-cancel-button { display: none; }
.discovery__search input::placeholder { color: #778174; opacity: 1; }
.discovery__search input:focus-visible { outline-offset: 5px; }
.discovery__search-clear { position: absolute; right: .25rem; width: 42px; min-height: 44px; padding: 0; border: 0; color: var(--green); background: transparent; font-size: 1.45rem; }
.discovery__sort select { display: block; width: 100%; min-height: 52px; padding: .75rem 2rem .75rem .85rem; border: 1px solid #b9c5b4; border-radius: 0; color: var(--ink); background: var(--paper); font: inherit; font-size: .79rem; }
.discovery__toggle { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .65rem; padding: .7rem 1rem; border: 1px solid var(--green); color: var(--green); background: transparent; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.discovery__toggle svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.discovery__toggle b { display: inline-grid; min-width: 1.3rem; height: 1.3rem; align-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: .62rem; font-weight: 650; }
.discovery__toggle:hover, .discovery__toggle[aria-expanded="true"] { color: var(--white); background: var(--green); }
.discovery__toggle[aria-expanded="true"] b { color: var(--green); background: var(--lime); }
.discovery__panel { padding: 1.4rem 1.5rem 1.2rem; margin-top: 1rem; background: #ebeee3; animation: discovery-reveal .22s ease-out both; }
.discovery__help, .discovery__editorial { margin: 0; color: var(--ink-soft); font-size: .72rem; line-height: 1.6; }
.discovery__facets { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem 2rem; margin-top: 1.35rem; }
.discovery__facets fieldset { min-width: 0; padding: 0; margin: 0; border: 0; }
.discovery__facets legend { width: 100%; padding: 0 0 .55rem; margin-bottom: .45rem; border-bottom: 1px solid #c5cfbc; font-size: .69rem; font-weight: 780; letter-spacing: .05em; }
.discovery__option { display: flex; align-items: center; gap: .65rem; min-height: 38px; padding: .35rem 0; cursor: pointer; }
.discovery__option input { flex: 0 0 auto; width: 17px; height: 17px; margin: 0; accent-color: var(--green); cursor: pointer; }
.discovery__option-label { font-size: .75rem; line-height: 1.4; }
.discovery__option small { margin-left: auto; color: var(--ink-soft); font-size: .65rem; font-variant-numeric: tabular-nums; }
.discovery__option:has(input:disabled) { color: #86907f; cursor: default; }
.discovery__option:has(input:disabled) input { cursor: default; }
.discovery__option:has(input:checked) { color: var(--green); font-weight: 720; }
.discovery__footer { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; padding-top: 1.15rem; margin-top: 1.1rem; border-top: 1px solid #cdd5c6; }
.discovery__editorial { max-width: 28rem; margin: 0; font-size: .65rem; }
.discovery__show-results { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 44px; padding: .65rem .9rem; border: 1px solid var(--green); color: var(--green); background: transparent; font-size: .74rem; font-weight: 740; white-space: nowrap; }
.discovery__show-results:hover { color: var(--white); background: var(--green); }
#discovery-summary { scroll-margin-top: 1.5rem; }
.discovery__summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 52px; }
.discovery__summary p { margin: 0; color: var(--ink-soft); font-size: .71rem; font-variant-numeric: tabular-nums; }
.discovery__clear { min-height: 44px; padding: .45rem 0 .45rem .5rem; border: 0; color: var(--green); background: transparent; font-size: .71rem; font-weight: 740; text-decoration: underline; text-underline-offset: 3px; }
.discovery__active { display: flex; flex-wrap: wrap; gap: .4rem .8rem; padding-bottom: .7rem; }
.discovery__active button { min-height: 36px; padding: .35rem .6rem; border: 1px solid #b8c5ad; border-radius: 0; color: var(--green); background: transparent; font-size: .7rem; }
.discovery__active button:hover { background: var(--green-pale); }
.discovery__active button span { padding-left: .5rem; font-size: .9rem; }
.discovery__hidden-selection { margin: -.6rem 0 1.7rem; color: var(--green); font-size: .74rem; line-height: 1.6; }
.discovery-empty { padding: 3.5rem 0 4rem; border-top: 1px solid var(--line); text-align: center; }
.discovery-empty__mark { display: block; margin-bottom: 1rem; color: #82996d; font-size: 2.5rem; }
.discovery-empty h3 { margin: 0; font: 400 clamp(1.8rem, 3vw, 2.8rem)/1.2 Georgia, serif; letter-spacing: -.035em; }
.discovery-empty p { max-width: 29rem; margin: .85rem auto 1.4rem; color: var(--ink-soft); font-size: .86rem; line-height: 1.65; }
.discovery-empty button { min-height: 45px; padding: .7rem 1.3rem; border: 1px solid var(--green); color: var(--white); background: var(--green); font-size: .78rem; font-weight: 730; }
.product-row { grid-template-columns: 128px minmax(180px, 1fr) minmax(145px, .45fr) 82px 136px; gap: 1.2rem; min-height: 180px; padding: 1.4rem 0; }
.product-row__visual { display: block; width: 128px; height: 128px; overflow: hidden; background: var(--green-pale); }
.product-row__image { width: 128px; height: 128px; border: 0; border-radius: 0; transition: transform .45s ease; }
.product-row__visual:hover img, .product-row__visual:focus-visible img { transform: scale(1.045); }
.product-row__name strong { font: 400 clamp(1.15rem, 1.6vw, 1.45rem)/1.2 Georgia, serif; letter-spacing: -.025em; }
.product-row__name strong a { text-decoration: none; }
.product-row__name strong a:hover { text-decoration: underline; text-underline-offset: 4px; }
.product-row__name p { margin-top: .5rem; font-size: .76rem; line-height: 1.55; }
.product-row__flavors { gap: 0; margin-top: .6rem; }
.product-row__flavors li, .product-row__flavors span { padding: 0; border: 0; color: #50704a; background: transparent; font-size: .64rem; font-weight: 700; line-height: 1.55; }
.product-row__flavors li + li::before, .product-row__flavors span + span::before { padding: 0 .45rem; content: '·'; color: #829376; }
.product-row__pairing { margin-top: .3rem; color: var(--green); font-size: .67rem; line-height: 1.6; }
.product-row__pairing > span { color: var(--ink-soft); }
.product-row__safety { margin-top: .55rem; font-size: .67rem; }
.product-row__price { font-size: 1.7rem; font-weight: 400; }
.product-row__action .add-button, .product-row__action .quantity-control { min-height: 44px; }
.product-row__action .add-button { min-width: 136px; flex-shrink: 0; white-space: nowrap; }
.product-row__action .quantity-button { min-height: 42px; }
/* Further tasting and cuisine notes sit inside the crop reference disclosure. */
.crop-detail__pairing { margin-top: 1.25rem; }
.crop-detail__pairing > p { color: var(--green); }
.crop-detail__cuisines p { color: var(--ink-soft); font-size: .78rem; }

@keyframes discovery-reveal { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1050px) {
  .product-row { grid-template-columns: 104px minmax(160px, 1fr) minmax(120px, .4fr) 70px 136px; gap: .9rem; }
  .product-row__visual, .product-row__image { width: 104px; height: 104px; }
  .product-row__price { font-size: 1.5rem; }
  .discovery__heading { display: block; }
  .discovery__heading p { max-width: 36rem; margin-top: .65rem; }
}
@media (max-width: 850px) {
  .product-row { grid-template-columns: 112px minmax(0, 1fr) 136px; grid-template-areas: 'image name price' 'image name action' 'image availability action'; gap: .65rem 1rem; }
  .product-row__visual { grid-area: image; align-self: start; }
  .product-row__visual, .product-row__image { width: 112px; height: 112px; }
  .discovery__toolbar { grid-template-columns: minmax(0, 1fr) auto; gap: .9rem; }
  .discovery__search { grid-column: 1 / -1; }
  .discovery__sort select { min-height: 46px; }
  .discovery__toggle { min-height: 46px; }
  .discovery__facets { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 1.7rem; }
}
@media (max-width: 560px) {
  .hero__content { padding-bottom: 2rem; }
  .hero__content > p:not(.eyebrow) { max-width: 24rem; font-size: .88rem; }
  .hero__browse { margin-top: 1rem; }
  .hero__stamp { display: none; }
  .discovery__heading h3 { max-width: 18rem; font-size: 1.65rem; }
  .discovery__toolbar { margin-top: 1.2rem; gap: .85rem .65rem; }
  .discovery__search input { font-size: 16px; padding-left: 2.4rem; }
  .discovery__search svg { left: .7rem; width: 18px; }
  .discovery__sort select { font-size: .73rem; padding-left: .65rem; }
  .discovery__toggle { min-width: 108px; padding: .65rem .75rem; gap: .4rem; font-size: .72rem; }
  .discovery__toggle svg { width: 16px; }
  .discovery__panel { padding: 1.2rem 1rem; margin-left: -.4rem; margin-right: -.4rem; }
  .discovery__facets { column-gap: 1rem; }
  .discovery__footer { flex-direction: column; align-items: stretch; gap: .9rem; }
  .discovery__show-results { min-height: 48px; }
  .discovery__option { min-height: 44px; align-items: center; gap: .5rem; }
  .discovery__option-label { font-size: .73rem; }
  .discovery__facets legend { min-height: 2.25rem; font-size: .64rem; }
  .discovery__active button { min-height: 40px; }
  .product-row { grid-template-columns: 96px minmax(0, 1fr); grid-template-areas: 'image name' 'availability availability' 'price action'; gap: .85rem 1rem; padding: 1.35rem 0; }
  .product-row__visual, .product-row__image { width: 96px; height: 112px; }
  .product-row__name strong { font-size: 1.25rem; line-height: 1.2; }
  .product-row__name p { display: block; font-size: .73rem; line-height: 1.5; }
  .product-row__flavors li, .product-row__flavors span { font-size: .63rem; }
  .product-row__pairing { font-size: .66rem; }
  .product-row__safety { font-size: .67rem; }
  .product-row__availability { max-width: none; font-size: .73rem; }
  .product-row__price { text-align: left; font-size: 1.7rem; }
  .product-row__action { justify-self: end; }
  .product-row__action .add-button { min-width: 132px; font-size: .75rem; }
  .product-row__action .quantity-button { width: 43px; }
  .product-row__action .quantity-control output { min-width: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .discovery__panel { animation: none; }
  .product-row__image, .hero__browse > span:last-child { transition: none; }
  .product-row__visual:hover img, .product-row__visual:focus-visible img, .hero__browse:hover > span:last-child { transform: none; }
}

/* Checkout is a document page: one scroll, clear sections, summary beside it. */
.checkout-page { width: min(100%, 1240px); margin: 0 auto; padding: 1.8rem clamp(1.25rem, 4vw, 4rem) 5rem; }
.checkout-back { padding: .6rem 0; border: 0; color: var(--green); background: none; font: inherit; font-size: .8rem; font-weight: 700; }
.checkout-back:disabled { opacity: .5; }
.checkout-heading { margin: 2rem 0 2.8rem; max-width: 42rem; }
.checkout-heading h1 { margin: .7rem 0 1rem; font-family: Georgia, serif; font-size: clamp(2.75rem, 5vw, 4.4rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 400; }
.checkout-heading > p:last-child { max-width: 34rem; color: var(--ink-soft); font-size: .95rem; line-height: 1.65; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr); grid-template-areas: "form summary"; align-items: start; gap: clamp(2rem, 5vw, 4.5rem); }
.checkout-form { grid-area: form; }
.checkout-summary { grid-area: summary; min-width: 0; padding: 1.5rem; background: #edf0e5; border-top: 3px solid var(--green); }
.checkout-summary__head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.checkout-summary__head h2 { margin: 0; font: 400 1.8rem Georgia, serif; letter-spacing: -.04em; }
.checkout-summary__head > span { white-space: nowrap; color: var(--ink-soft); font-size: .75rem; }
.checkout-summary__size { margin: .65rem 0 1.5rem; color: var(--ink-soft); font-size: .74rem; }
.checkout-line { display: flex; align-items: start; gap: .9rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.checkout-line img { width: 64px; height: 72px; object-fit: cover; }
.checkout-line__body { min-width: 0; flex: 1; }
.checkout-line__body > a { display: block; font-weight: 750; text-decoration: none; font-size: .85rem; line-height: 1.35; }
.checkout-line__body > a:hover { text-decoration: underline; text-underline-offset: .15em; }
.checkout-line__body small { display: block; color: var(--ink-soft); margin: .3rem 0 .55rem; font-size: .72rem; }
.checkout-line__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.checkout-line__bottom > strong { font-size: .85rem; }
.checkout-line .quantity-button { width: 30px; height: 32px; }
.checkout-line .quantity-control output { min-width: 27px; }
.checkout-summary__total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-top: 1px solid var(--green); margin-top: .5rem; padding-top: 1.2rem; font-size: .82rem; }
.checkout-summary__total strong { font: 400 1.9rem Georgia, serif; white-space: nowrap; }
.checkout-summary__payment { color: var(--ink-soft); font-size: .72rem; margin: .5rem 0 1.35rem; }
.checkout-summary__browse { color: var(--green); font-size: .8rem; font-weight: 650; text-underline-offset: .25em; }
.checkout-section-title { display: flex; align-items: baseline; gap: .8rem; margin: 0 0 1.2rem; font: 400 1.75rem Georgia, serif; letter-spacing: -.025em; }
.checkout-section-title > span:first-child { font: 650 .72rem ui-sans-serif, sans-serif; letter-spacing: .1em; color: #6b805c; }
.checkout-section-title--delivery { margin-top: 2.4rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.checkout-account { margin: 0 0 1.4rem; padding: 0 0 1.35rem; border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.checkout-account .account-help { font-size: .8rem; line-height: 1.55; }
.checkout-account .account-actions:has(> button[hidden]):not(:has(> button:not([hidden]))) { display: none; }
.checkout-form .restaurant-picker { grid-column: 1 / -1; margin-bottom: .4rem; }
.checkout-form .field > span, .checkout-form .cadence-field legend { font-size: .85rem; }
.checkout-form .field input, .checkout-form .field textarea, .checkout-form .restaurant-input > input { font-size: 1rem; min-height: 48px; }
.checkout-form .field small, .checkout-form .field-note { font-size: .75rem; line-height: 1.55; }
.checkout-form .cadence-options span { font-size: .76rem; }
.checkout-form .delivery-address { grid-column: 1 / -1; margin: 0 0 .4rem; }
.checkout-form .contact-note { margin-bottom: 0; }
.checkout-fineprint { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .5rem 1rem; margin-top: 1rem; color: var(--ink-soft); }
.checkout-fineprint .field-note { margin: 0; font-size: .69rem; }
.checkout-fineprint a { font-size: .72rem; text-underline-offset: .2em; }
.checkout-empty { max-width: 34rem; min-height: 10rem; padding: 2rem 0; }
.checkout-empty h2 { font: 400 2rem Georgia, serif; }
.checkout-empty p { color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 800px) {
  .checkout-layout { grid-template-columns: minmax(0, 1fr); grid-template-areas: "summary" "form"; gap: 2.5rem; }
  .checkout-heading { margin: 1.5rem 0 2rem; }
  .checkout-summary { padding: 1.25rem; }
  .checkout-summary__size { margin-bottom: 1rem; }
  .checkout-form .form-grid { grid-template-columns: 1fr 1fr; }
  .checkout-form .cadence-options { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .checkout-page { padding-top: 1rem; padding-bottom: 3rem; }
  .checkout-form .form-grid { grid-template-columns: 1fr; }
  .checkout-form .cadence-options { grid-template-columns: 1fr 1fr; }
  .checkout-form .checkout-submit { align-items: center; }
  .checkout-line img { width: 56px; height: 64px; }
}

.account-auth-form .field input, .account-password-form .field input { min-height: 48px; font-size: 1rem; }
/* Optional analytics: equal choices, no wall over the menu. */
.analytics-consent { position: fixed; z-index: 30; right: 1.25rem; bottom: max(1.25rem, env(safe-area-inset-bottom)); width: min(30rem, calc(100% - 2.5rem)); max-height: calc(100dvh - 2.5rem); overflow: auto; padding: 1.35rem 1.5rem; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 3px; color: var(--ink); background: var(--white); box-shadow: 0 12px 50px rgb(12 34 21 / 18%); }
.analytics-consent__copy h2 { margin: 0 0 .65rem; font: 400 1.45rem/1.2 Georgia, serif; letter-spacing: -.025em; }
.analytics-consent__copy p { margin: 0 0 1rem; color: var(--ink-soft); font-size: .77rem; line-height: 1.65; }
.analytics-consent__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.analytics-consent__button { min-height: 44px; padding: .65rem .8rem; border: 1px solid var(--green); border-radius: 2px; color: var(--white); background: var(--green); font-size: .75rem; font-weight: 700; line-height: 1.35; }
.analytics-consent__button:hover { background: var(--green-dark); }
.analytics-consent__links { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .3rem 1rem; margin-top: .65rem; }
.analytics-consent__links button, .analytics-consent__links a, .analytics-settings__policy { display: inline-block; padding: .45rem 0; border: 0; background: transparent; color: var(--green); font-size: .72rem; line-height: 1.4; text-decoration: underline; text-underline-offset: .25em; }
.analytics-settings { width: min(35rem, calc(100% - 2rem)); max-height: 90dvh; margin: auto; padding: 1.75rem; border: 1px solid var(--line); border-radius: 4px; color: var(--ink); background: var(--white); box-shadow: 0 26px 100px rgb(12 34 21 / 30%); }
.analytics-settings::backdrop { background: rgb(10 33 19 / 55%); backdrop-filter: blur(3px); }
.analytics-settings__head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.analytics-settings__head h2 { min-width: 0; overflow-wrap: anywhere; margin: .35rem 0 .8rem; font: 400 2rem/1.1 Georgia, serif; letter-spacing: -.035em; }
.analytics-settings__close { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; margin: -.5rem -.5rem 0 0; border: 1px solid var(--line); border-radius: 50%; color: var(--green); background: transparent; font-size: 1.65rem; line-height: 1; }
.analytics-settings > p { margin: 0 0 1.3rem; color: var(--ink-soft); font-size: .83rem; line-height: 1.7; }
.analytics-settings__essential, .analytics-settings__choice { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); }
.analytics-settings__essential h3, .analytics-settings__choice strong { display: block; margin: 0 0 .4rem; font: 700 .84rem/1.4 Inter, ui-sans-serif, system-ui, sans-serif; }
.analytics-settings__essential p, .analytics-settings__choice > span > span { display: block; margin: 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.65; }
.analytics-settings__essential > span { flex-shrink: 0; padding-top: .1rem; color: var(--ink-soft); font-size: .68rem; line-height: 1.5; }
.analytics-settings__choice { cursor: pointer; }
.analytics-settings__choice input { flex: 0 0 22px; width: 22px; height: 22px; margin: .1rem 0 0; accent-color: var(--green); }
.analytics-settings__choice input:disabled { cursor: not-allowed; }
.analytics-settings__choice small { display: block; margin-top: .55rem; color: var(--ink-soft); font-size: .7rem; line-height: 1.5; }
.analytics-settings > .analytics-consent__actions { margin-top: .7rem; }
.analytics-settings__policy { margin-top: .75rem; }
.privacy-settings-link { border: 0; padding: 0; color: inherit; background: transparent; font-size: .76rem; text-align: inherit; text-decoration: underline; text-underline-offset: .2em; }
@media (max-width: 430px) {
  .analytics-consent { right: .75rem; bottom: max(.75rem, env(safe-area-inset-bottom)); width: calc(100% - 1.5rem); max-height: calc(100dvh - 1.5rem); padding: 1.15rem; }
  .analytics-consent__copy h2 { font-size: 1.3rem; }
  .analytics-consent__copy p { font-size: .74rem; }
  .analytics-settings { width: calc(100% - 1.25rem); max-width: calc(100% - 1.25rem); max-height: 92dvh; padding: 1.3rem; }
  .analytics-settings__head h2 { font-size: 1.7rem; }
  .analytics-settings__essential { gap: .65rem; }
  .analytics-settings__essential > span { max-width: 4.5rem; text-align: right; }
}
@media print { .analytics-consent, .analytics-settings, .privacy-settings-link { display: none !important; } }
.analytics-consent__button:disabled { opacity: .45; cursor: not-allowed; }
.analytics-browser-note { padding: .75rem; border-left: 2px solid var(--green); background: var(--green-pale); font-size: .75rem; line-height: 1.6; }

/* Recipe ideas: a photographic kitchen notebook, with methods on demand. */
.recipe-library__hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 5vw, 4rem); margin-bottom: 3rem; }
.recipe-library__hero h1 { max-width: 12ch; margin: .8rem 0 1.2rem; font: 400 clamp(2.8rem, 5vw, 4.6rem)/1.04 Georgia, serif; letter-spacing: -.045em; text-wrap: balance; }
.recipe-library__intro { max-width: 33rem; font-size: .98rem; line-height: 1.75; }
.recipe-library__note { max-width: 33rem; color: var(--ink-soft); font-size: .78rem; line-height: 1.7; }
.recipe-library__hero figure, .recipe-idea__figure { margin: 0; min-width: 0; }
.recipe-library__hero img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.recipe-image-note { margin: .55rem 0 0; color: var(--ink-soft); font-size: .65rem; line-height: 1.5; }
.recipe-discovery { margin-bottom: 1.5rem; }
.recipe-discovery__toolbar { grid-template-columns: minmax(0, 1fr) auto; }
#recipe-summary { scroll-margin-top: 1.5rem; }
.recipe-idea { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 4vw, 3rem); padding: 2.5rem 0; border-top: 1px solid var(--line); scroll-margin-top: 1.5rem; }
.recipe-idea__figure > div { overflow: hidden; }
.recipe-idea__figure img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 350ms ease; }
.recipe-idea__figure:hover img { transform: scale(1.025); }
.recipe-idea--text { display: block; }
.recipe-idea--text .recipe-idea__body { max-width: 52rem; }
.recipe-idea__eyebrow { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: .67rem; }
.recipe-badge { color: var(--green); font-size: .64rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.recipe-idea h2, .recipe-idea h3 { margin: .7rem 0 .8rem; font: 400 clamp(1.6rem, 2.6vw, 2.15rem)/1.18 Georgia, serif; letter-spacing: -.025em; text-wrap: balance; }
.recipe-idea__description { margin: 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.75; }
.recipe-crop-links { margin: .75rem 0 1.25rem; font-size: .73rem; font-weight: 700; }
.recipe-crop-links a { text-underline-offset: .22em; }
.recipe-idea__notes { display: grid; gap: 1rem; }
.recipe-idea--text .recipe-idea__notes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.recipe-idea h4 { margin: 0 0 .35rem; font-size: .74rem; font-weight: 750; }
.recipe-idea__notes p { margin: 0; font-size: .8rem; line-height: 1.75; }
.recipe-ingredient-note { padding-left: .8rem; border-left: 2px solid var(--green); font-size: .75rem; line-height: 1.7; }
.recipe-method { margin-top: 1.4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.recipe-method > summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 48px; padding: .6rem 0; color: var(--green); font-size: .78rem; font-weight: 700; cursor: pointer; list-style: none; }
.recipe-method > summary::-webkit-details-marker { display: none; }
.recipe-method > summary span { font-size: 1.3rem; font-weight: 400; transition: transform 180ms ease; }
.recipe-method[open] > summary span { transform: rotate(45deg); }
.recipe-method__body { padding-bottom: 1.25rem; font-size: .8rem; line-height: 1.8; }
.recipe-method__body h4 { margin-top: 1.1rem; }
.recipe-method__body ul, .recipe-method__body ol { padding-left: 1.25rem; margin: .5rem 0; }
.recipe-method__body li { padding-left: .15rem; margin-bottom: .5rem; }
.recipe-portion { margin: .25rem 0 1rem; color: var(--ink-soft); font-size: .72rem; }
.recipe-sources { margin-top: .65rem; font-size: .67rem; line-height: 1.7; }
.recipe-sources summary { width: fit-content; padding: .4rem 0; color: var(--ink-soft); cursor: pointer; }
.recipe-sources p { color: var(--ink-soft); }
.recipe-sources ul { padding-left: 1rem; }
.recipe-sources li { margin-bottom: .65rem; overflow-wrap: anywhere; }
.recipe-library-link { display: inline-flex; align-items: center; gap: 1.5rem; min-height: 48px; font-size: .83rem; font-weight: 700; text-underline-offset: .25em; }
.crop-recipes { margin-top: 3rem; }
.crop-recipes > header { margin-bottom: 1.5rem; }
.crop-recipes > header h2 { margin: .65rem 0; font: 400 clamp(1.9rem, 3vw, 2.7rem)/1.15 Georgia, serif; letter-spacing: -.035em; }
.crop-recipes > header > p:not(.section-label) { max-width: 40rem; color: var(--ink-soft); font-size: .85rem; line-height: 1.7; }
@media (max-width: 760px) {
  .recipe-library__hero { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
  .recipe-library__hero h1 { max-width: 17ch; font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .recipe-library__hero img { max-height: 310px; }
  .recipe-idea { grid-template-columns: minmax(0, 1fr); gap: 1.4rem; padding: 2rem 0; }
  .recipe-idea--text .recipe-idea__notes { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .recipe-idea__figure img { max-height: 390px; }
}
@media (max-width: 430px) { .recipe-discovery__toolbar { grid-template-columns: minmax(0, 1fr); } .recipe-discovery__toolbar .discovery__toggle { justify-self: start; } }
@media (prefers-reduced-motion: reduce) { .recipe-idea__figure img, .recipe-method > summary span { transition: none; } }
@media print { .recipe-discovery { display: none !important; } .recipe-idea { break-inside: avoid; } }
