@layer reset, base, components, pages, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 96px; }
  body, h1, h2, h3, h4, p, ul, dl, dd, figure { margin: 0; }
  ul { padding: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input, select { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
  [hidden] { display: none !important; }
}

@layer base {
  :root {
    --paper: #f3eddd;
    --paper-light: #faf7ee;
    --paper-deep: #e7ddc6;
    --ink: #1d2924;
    --ink-soft: #53605a;
    --green: #173f34;
    --green-2: #2f5a48;
    --moss: #768257;
    --blue: #315f70;
    --rust: #a74e2d;
    --line: rgba(35, 50, 43, .18);
    --line-light: rgba(247, 243, 230, .24);
    --shadow: 0 18px 42px rgba(42, 45, 34, .10);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --content: 1240px;
  }

  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: clip;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .18;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  }

  h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; text-wrap: balance; }
  h1 { font-size: clamp(3.2rem, 7vw, 7.3rem); letter-spacing: -.055em; }
  h2 { font-size: clamp(2.25rem, 4.4vw, 4.6rem); letter-spacing: -.04em; }
  h3 { font-size: 1.55rem; letter-spacing: -.025em; }
  p { text-wrap: pretty; }
  a { color: inherit; text-decoration: none; }
  :focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
  ::selection { color: var(--paper-light); background: var(--green); }
  code { padding: .15rem .35rem; background: rgba(23, 63, 52, .08); font-size: .84em; }

  .sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .7rem 1rem; color: white; background: var(--blue); transform: translateY(-160%); }
  .skip-link:focus { transform: translateY(0); }
  .section-wrap { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
  .eyebrow { color: var(--rust); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
  .muted { color: var(--ink-soft); }
  .latin { color: var(--ink-soft); font-family: var(--serif); font-style: italic; }
  .paper-grid { position: relative; isolation: isolate; }
  .paper-grid::before { content: ''; position: absolute; z-index: -1; inset: 0; opacity: .26; background-image: linear-gradient(rgba(29, 41, 36, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 41, 36, .08) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
}

@layer components {
  .site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: .7rem max(24px, calc((100vw - var(--content)) / 2));
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--paper-light) 91%, transparent);
    backdrop-filter: blur(14px);
  }

  .brand { display: inline-flex; min-height: 52px; align-items: center; gap: .75rem; }
  .brand-mark, .footer-brand span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--paper-light); background: var(--green); border-radius: 50%; font: 600 1.4rem/1 var(--serif); }
  .brand > span:last-child { display: grid; }
  .brand strong { font: 600 1.25rem/1 var(--serif); letter-spacing: -.03em; }
  .brand small { margin-top: .2rem; color: var(--ink-soft); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
  .main-nav { display: flex; justify-content: center; gap: clamp(.35rem, 1.4vw, 1.55rem); }
  .main-nav a { position: relative; min-height: 44px; display: inline-grid; place-items: center; padding: .4rem .2rem; color: var(--ink-soft); font-size: .83rem; font-weight: 700; }
  .main-nav a::after { content: ''; position: absolute; bottom: 5px; left: 0; right: 0; height: 2px; background: var(--rust); transform: scaleX(0); transition: transform .2s ease; }
  .main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
  .main-nav a.is-active::after { transform: scaleX(1); }
  .nav-toggle { display: none; }
  .search-open, .nav-toggle, .icon-button { min-height: 44px; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
  .search-open { display: flex; align-items: center; gap: .45rem; padding: .4rem .1rem; font-size: .78rem; font-weight: 800; }
  .search-open > span:first-child { font-size: 1.45rem; font-weight: 400; }
  kbd { padding: .05rem .28rem; border: 1px solid var(--line); background: var(--paper); font-size: .65rem; box-shadow: 0 1px 0 var(--line); }

  .button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .7rem 1.15rem; border: 1px solid var(--green); border-radius: 2px; font-size: .82rem; font-weight: 800; letter-spacing: .02em; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
  .button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(29, 41, 36, .12); }
  .button.primary { color: var(--paper-light); background: var(--green); }
  .button.quiet { color: var(--green); background: transparent; }
  .button.quiet-light { color: var(--paper-light); border-color: rgba(255,255,255,.6); background: transparent; }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; gap: .6rem; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 800; }
  .text-link span { transition: transform .18s ease; }
  .text-link:hover span { transform: translateX(4px); }
  .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
  .section-heading h2 { margin-top: .5rem; font-size: clamp(2.2rem, 4vw, 4rem); }
  .section-heading.light { color: var(--paper-light); }
  .section-heading.light .eyebrow { color: #e7a174; }
  .category-label, .season-status, .problem-kind { display: inline-flex; align-items: center; font-size: .63rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
  .category-label { color: var(--crop, var(--green)); }
  .season-status { color: var(--ink-soft); }
  .line-icon { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .page-head { padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - var(--content)) / 2)) clamp(3rem, 6vw, 6rem); border-bottom: 1px solid var(--line); background-color: var(--paper-light); }
  .page-head h1 { margin-top: .7rem; }
  .page-intro { max-width: 760px; margin-top: 1.5rem; color: var(--ink-soft); font: 1.15rem/1.6 var(--serif); }
  .breadcrumbs { min-height: 44px; display: flex; align-items: center; gap: .6rem; margin-bottom: 2.4rem; color: var(--ink-soft); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
  .breadcrumbs a:hover { color: var(--rust); }

  .crop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .crop-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: var(--paper-light); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
  .crop-card-visual { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; background: color-mix(in srgb, var(--crop) 12%, var(--paper)); }
  .crop-card-visual::before { content: ''; position: absolute; inset: 14px; border: 1px solid color-mix(in srgb, var(--crop) 25%, transparent); border-radius: 50% 42% 48% 46%; transform: rotate(-5deg); }
  .crop-art { width: 78%; height: 78%; color: var(--crop); filter: drop-shadow(0 12px 12px rgba(30, 40, 30, .12)); transition: transform .35s ease; }
  .crop-card:hover .crop-art { transform: scale(1.06) rotate(1deg); }
  .crop-card-body { padding: 1.15rem; }
  .crop-card-top { min-height: 30px; display: flex; justify-content: space-between; gap: .6rem; }
  .crop-card h3 { margin-top: .45rem; }
  .crop-card h3 a { min-height: 44px; display: inline-flex; align-items: center; }
  .crop-card .latin { min-height: 38px; margin-top: .2rem; font-size: .78rem; }
  .crop-mini-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; padding: .9rem 0; margin-top: .7rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .crop-mini-facts div { display: grid; gap: .1rem; }
  .crop-mini-facts dt { color: var(--ink-soft); font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
  .crop-mini-facts dd { font-size: .77rem; font-weight: 700; }
  .card-actions { display: flex; align-items: center; justify-content: space-between; margin-top: .65rem; }
  .card-actions .text-link { border: 0; }
  .save-button { width: 44px; height: 44px; border: 0; color: var(--ink-soft); background: transparent; cursor: pointer; font-size: 1.45rem; }
  .save-button.is-saved { color: var(--rust); }
  .empty-state { grid-column: 1 / -1; padding: 2rem; border: 1px dashed var(--line); color: var(--ink-soft); background: rgba(255,255,255,.2); }

  .task-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; }
  .task-card { min-height: 100px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: .8rem; padding: .85rem; border: 1px solid var(--line); background: var(--paper-light); transition: transform .18s ease, border-color .18s ease; }
  .task-card:hover { transform: translateY(-2px); border-color: var(--green); }
  .task-art { width: 58px; height: 58px; color: var(--green-2); }
  .task-card span:nth-child(2) { display: grid; gap: .2rem; }
  .task-card small { color: var(--rust); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  .task-card strong { font: 500 1rem/1.2 var(--serif); }
  .task-card > span:last-child { font-size: 1.2rem; }

  .site-footer { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem; align-items: end; padding: 4rem max(24px, calc((100vw - var(--content)) / 2)); color: var(--paper); background: #122e27; }
  .footer-brand { min-height: 48px; display: inline-flex; align-items: center; gap: .7rem; font: 600 1.6rem/1 var(--serif); }
  .footer-brand span { color: var(--green); background: var(--paper); }
  .site-footer p { margin-top: .7rem; color: rgba(250,247,238,.68); font-size: .8rem; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.5rem; }
  .site-footer nav a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(250,247,238,.82); font-size: .76rem; }
  .site-footer nav a:hover { color: white; }
  .poison-promise { align-self: center; color: #f1ae7d !important; font-weight: 800; }

  .search-dialog { width: min(760px, calc(100% - 24px)); max-height: min(760px, calc(100dvh - 48px)); padding: 0; border: 1px solid var(--line); color: var(--ink); background: var(--paper-light); box-shadow: 0 30px 80px rgba(0,0,0,.32); }
  .search-dialog::backdrop { background: rgba(18, 31, 26, .72); backdrop-filter: blur(4px); }
  .search-shell { padding: clamp(1rem, 4vw, 2.4rem); }
  .search-head { display: flex; justify-content: space-between; gap: 1rem; }
  .search-head h2 { margin-top: .4rem; font-size: 2.5rem; }
  .icon-button { width: 44px; font-size: 2rem; }
  .search-field, .inline-search { display: flex; align-items: center; gap: .7rem; border: 1px solid var(--ink); background: white; }
  .search-field { margin-top: 1.5rem; padding: .5rem 1rem; }
  .search-field > span { font-size: 1.5rem; }
  .search-field input, .inline-search input { width: 100%; min-height: 48px; border: 0; outline: 0; color: var(--ink); background: transparent; }
  .search-results { max-height: 430px; display: grid; overflow-y: auto; margin-top: 1rem; }
  .search-results > p { padding: 1.4rem 0; }
  .search-results a { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 1rem; min-height: 82px; padding: .6rem; border-top: 1px solid var(--line); }
  .search-results a:hover { background: var(--paper); }
  .search-results a > span:nth-child(2) { display: grid; }
  .search-results small { color: var(--rust); font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .search-results em { overflow: hidden; color: var(--ink-soft); font-size: .72rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
  .search-art, .search-symbol { width: 54px; height: 54px; display: grid; place-items: center; color: var(--green); background: var(--paper); }
  .toast { position: fixed; z-index: 80; right: 1rem; bottom: 1rem; max-width: calc(100% - 2rem); padding: .85rem 1rem; color: white; background: var(--green); box-shadow: var(--shadow); font-size: .78rem; font-weight: 800; }
  .noscript { padding: 1rem; color: white; background: #8b2f24; text-align: center; }
}

@layer pages {
  .hero { min-height: calc(100svh - 76px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); align-items: stretch; border-bottom: 1px solid var(--line); background: var(--paper-light); }
  .hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7.5rem) 4vw clamp(3rem, 7vw, 7.5rem) max(24px, calc((100vw - var(--content)) / 2)); }
  .hero h1 { margin-top: .8rem; font-size: clamp(3.8rem, 7.6vw, 8.3rem); }
  .hero h1 em { color: var(--rust); font-weight: 400; }
  .hero-lede { max-width: 620px; margin-top: 1.7rem; color: var(--ink-soft); font: clamp(1.05rem, 1.4vw, 1.3rem)/1.6 var(--serif); }
  .hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
  .hero-promise { margin-top: 1.4rem; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .hero-plate { position: relative; min-height: 580px; display: grid; place-items: center; overflow: hidden; padding: 1rem; background: #dfe3cb; }
  .hero-plate::before { content: ''; position: absolute; inset: 1.25rem; border: 1px solid rgba(23,63,52,.25); }
  .hero-plate img { width: 100%; height: 100%; object-fit: cover; }
  .month-ticket { position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: clamp(1rem, 4vw, 3rem); width: min(330px, calc(100% - 2rem)); display: grid; padding: 1.1rem 1.2rem; border: 1px solid var(--ink); color: var(--ink); background: color-mix(in srgb, var(--paper-light) 94%, transparent); box-shadow: var(--shadow); }
  .month-ticket span { color: var(--rust); font-size: .65rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
  .month-ticket strong { margin-top: .2rem; font: 500 1.3rem/1.15 var(--serif); }
  .month-ticket small { margin-top: .4rem; color: var(--ink-soft); font-size: .73rem; }
  .month-ticket b { margin-top: .8rem; font-size: .72rem; }

  .chapter-rail { display: grid; grid-template-columns: repeat(5, 1fr); padding-inline: max(24px, calc((100vw - var(--content)) / 2)); border-bottom: 1px solid var(--line); background: var(--paper); }
  .chapter-rail a { min-height: 128px; display: grid; align-content: center; gap: .1rem; padding: 1rem 1.5rem; border-left: 1px solid var(--line); transition: background .18s ease; }
  .chapter-rail a:last-child { border-right: 1px solid var(--line); }
  .chapter-rail a:hover { background: var(--paper-light); }
  .chapter-rail span { color: var(--rust); font-size: .62rem; font-weight: 800; }
  .chapter-rail strong { font: 500 1.2rem/1.15 var(--serif); }
  .chapter-rail small { color: var(--ink-soft); font-size: .7rem; }
  .home-now { padding-block: clamp(4rem, 8vw, 8rem); }

  .illustrated-chapter { display: grid; grid-template-columns: 1.05fr .95fr; margin-bottom: clamp(5rem, 9vw, 10rem); border: 1px solid var(--line); background: var(--paper-light); }
  .chapter-art { min-height: 620px; background: #d8d3b8; }
  .chapter-art img { width: 100%; height: 100%; object-fit: cover; }
  .chapter-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); }
  .chapter-number { color: var(--ink-soft); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .chapter-copy h2 { margin-top: .7rem; }
  .chapter-copy > p:not(.eyebrow):not(.chapter-number) { margin-top: 1.4rem; color: var(--ink-soft); font: 1.05rem/1.6 var(--serif); }
  .check-list { display: grid; gap: .55rem; margin: 1.5rem 0; list-style: none; }
  .check-list li { position: relative; padding-left: 1.5rem; font-size: .84rem; font-weight: 700; }
  .check-list li::before { content: '✦'; position: absolute; left: 0; color: var(--rust); }
  .chapter-copy .button { align-self: start; }

  .cycle-section { margin-top: clamp(5rem, 9vw, 10rem); padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - var(--content)) / 2)); color: var(--paper-light); background: var(--green); }
  .cycle-section .eyebrow { color: #e7a174; }
  .cycle-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 2rem; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .cycle-grid article { min-height: 255px; padding: 1.5rem; border-right: 1px solid var(--line-light); }
  .cycle-grid article:first-child { border-left: 1px solid var(--line-light); }
  .cycle-grid article > span { display: block; margin-top: 3rem; color: #e7a174; font-size: .62rem; font-weight: 800; }
  .cycle-grid h3 { margin-top: .35rem; }
  .cycle-grid p { margin-top: .8rem; color: rgba(250,247,238,.68); font-size: .75rem; }
  .graph-link { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--line-light); }
  .graph-link > span { display: grid; }
  .graph-link strong { font: 500 1.25rem/1.2 var(--serif); }
  .graph-link small { margin-top: .2rem; color: rgba(250,247,238,.68); font-size: .74rem; }
  .graph-link b { font-size: 1.5rem; }

  .pantry-feature { display: grid; grid-template-columns: .9fr 1.1fr; margin-block: clamp(5rem, 9vw, 10rem); color: var(--paper-light); background: #58392b; }
  .pantry-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); }
  .pantry-copy .eyebrow { color: #f0b07b; }
  .pantry-copy p:not(.eyebrow) { margin-top: 1.2rem; color: rgba(250,247,238,.74); font: 1.05rem/1.6 var(--serif); }
  .pantry-copy .button { align-self: start; margin-top: 1.5rem; }
  .pantry-feature img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
  .principles-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
  .principles-strip article { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line); background: var(--paper-light); }
  .principles-strip span, .principles-page span { color: var(--rust); font-size: .7rem; font-weight: 900; }
  .principles-strip h3 { margin-top: 4rem; }
  .principles-strip p { margin-top: .8rem; color: var(--ink-soft); font-size: .78rem; }

  .month-picker { display: grid; grid-template-columns: repeat(12, 1fr); border-bottom: 1px solid var(--line); background: var(--paper-light); }
  .month-picker a { min-height: 92px; display: grid; place-content: center; gap: .1rem; border-right: 1px solid var(--line); color: var(--ink-soft); font-size: .68rem; font-weight: 800; text-align: center; }
  .month-picker a span { font-size: .56rem; }
  .month-picker a:hover, .month-picker a.is-active { color: var(--paper-light); background: var(--green); }
  .month-focus { display: grid; grid-template-columns: .36fr .64fr; gap: 4rem; padding-block: clamp(4rem, 8vw, 8rem); }
  .month-focus-title h2 { margin-top: .4rem; }
  .month-focus-title > p:last-child { margin-top: 1rem; color: var(--ink-soft); font: 1.05rem/1.55 var(--serif); }
  .month-focus-tasks > h3 { margin-bottom: 1rem; }
  .task-grid.compact { grid-template-columns: 1fr 1fr; }
  .season-table { margin-bottom: 5rem; border: 1px solid var(--line); background: var(--paper-light); }
  .season-table-head, .season-table > a { display: grid; grid-template-columns: 2.2fr repeat(4, 1fr); align-items: center; min-height: 70px; border-bottom: 1px solid var(--line); }
  .season-table-head { min-height: 52px; color: var(--ink-soft); background: var(--paper-deep); font-size: .65rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  .season-table-head span, .season-table > a > span { padding: .6rem 1rem; border-right: 1px solid var(--line); text-align: center; }
  .season-table-head span:first-child, .season-table > a > span:first-child { text-align: left; }
  .season-table > a:hover { background: white; }
  .season-table > a > span:first-child { display: flex; align-items: center; gap: .8rem; }
  .table-art { width: 52px; height: 52px; color: var(--green); }
  .yes { color: var(--rust); }
  .season-table i { color: var(--line); }
  .weather-note { display: flex; gap: 1rem; align-items: start; margin-block: 4rem; padding: 1.2rem; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
  .weather-note > span { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--paper-light); background: var(--blue); border-radius: 50%; font: 500 1.2rem/1 var(--serif); }
  .weather-note p { margin-top: .2rem; color: var(--ink-soft); font-size: .78rem; }

  .crop-tools { display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center; padding-block: 2rem; }
  .inline-search { max-width: 560px; padding: .25rem .8rem; }
  .inline-search > span:first-child { font-size: 1.3rem; }
  .filter-row { display: flex; flex-wrap: wrap; gap: .4rem; }
  .filter-row button, .filter-row a { min-height: 40px; display: inline-flex; align-items: center; padding: .45rem .75rem; border: 1px solid var(--line); color: var(--ink-soft); background: transparent; cursor: pointer; font-size: .7rem; font-weight: 800; }
  .filter-row button:hover, .filter-row button.is-active, .filter-row a:hover, .filter-row a.is-active { color: white; border-color: var(--green); background: var(--green); }
  .season-select { justify-self: end; color: var(--ink-soft); font-size: .72rem; font-weight: 800; }
  .season-select select { min-height: 44px; margin-left: .4rem; padding: .4rem 2rem .4rem .6rem; border: 1px solid var(--line); color: var(--ink); background: var(--paper-light); }
  .results-line { margin-bottom: 1rem; color: var(--ink-soft); font-size: .72rem; }
  [data-crop-results] { padding-bottom: 6rem; }

  .crop-hero { min-height: 650px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr); align-items: center; padding: 2rem max(24px, calc((100vw - var(--content)) / 2)) 4rem; border-bottom: 1px solid var(--line); background: var(--paper-light); }
  .crop-hero .breadcrumbs { grid-column: 1 / -1; align-self: start; margin-bottom: 0; }
  .crop-hero-copy { padding-right: 5vw; }
  .crop-hero-copy h1 { margin-top: .5rem; }
  .crop-hero-copy .latin { margin-top: .5rem; }
  .crop-subtitle { max-width: 620px; margin-top: 1.5rem; font: clamp(1.15rem, 2vw, 1.55rem)/1.35 var(--serif); }
  .crop-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
  .save-detail.is-saved { background: var(--rust); border-color: var(--rust); }
  .crop-portrait { min-height: 480px; display: grid; place-items: center; align-content: center; border: 1px solid color-mix(in srgb, var(--crop) 35%, var(--line)); background: color-mix(in srgb, var(--crop) 12%, var(--paper)); }
  .crop-art-large { width: min(410px, 85%); aspect-ratio: 1; color: var(--crop); filter: drop-shadow(0 20px 20px rgba(24,44,34,.12)); }
  .crop-portrait > span { margin-top: -.5rem; font: 500 1.8rem/1 var(--serif); }
  .crop-portrait small { margin-top: .4rem; color: var(--ink-soft); font: italic .75rem/1 var(--serif); }
  .article-nav { position: sticky; z-index: 20; top: 76px; display: flex; justify-content: center; gap: .3rem; overflow-x: auto; padding: .5rem max(24px, calc((100vw - var(--content)) / 2)); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper-light) 95%, transparent); backdrop-filter: blur(12px); scrollbar-width: none; }
  .article-nav a { min-height: 40px; display: inline-flex; flex: 0 0 auto; align-items: center; padding: .3rem .7rem; color: var(--ink-soft); font-size: .69rem; font-weight: 800; }
  .article-nav a:hover { color: var(--rust); }
  .quick-facts { display: grid; grid-template-columns: repeat(5, 1fr); padding-block: 2rem; border-bottom: 1px solid var(--line); }
  .quick-facts > div { min-height: 95px; display: grid; align-content: center; gap: .12rem; padding-inline: 1.3rem; border-right: 1px solid var(--line); }
  .quick-facts > div:first-child { border-left: 1px solid var(--line); }
  .quick-facts span { color: var(--crop); font: 500 1.25rem/1 var(--serif); }
  .quick-facts small { margin-top: .6rem; color: var(--ink-soft); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
  .quick-facts strong { font-size: .78rem; }
  .article-section { padding-block: clamp(4rem, 8vw, 8rem); }
  .month-band { overflow-x: auto; border: 1px solid var(--line); background: var(--paper-light); }
  .month-band-head, .month-row { min-width: 860px; display: grid; grid-template-columns: 125px repeat(12, 1fr); }
  .month-band-head { min-height: 45px; align-items: center; color: var(--ink-soft); background: var(--paper-deep); }
  .month-band-head abbr { border: 0; font-size: .62rem; font-weight: 900; text-align: center; text-transform: uppercase; }
  .month-row { min-height: 46px; border-top: 1px solid var(--line); }
  .month-row strong { display: flex; align-items: center; padding-left: 1rem; border-right: 1px solid var(--line); font-size: .68rem; }
  .month-cell { margin: .65rem .2rem; border: 1px solid transparent; }
  .month-cell.is-indoor { background: var(--blue); }
  .month-cell.is-outdoor { background: var(--moss); }
  .month-cell.is-plant { background: var(--rust); }
  .month-cell.is-harvest { background: var(--green); }
  .season-summary { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1rem; border: 1px solid var(--line); }
  .season-summary > div { min-height: 86px; display: grid; align-content: center; gap: .2rem; padding: 1rem; border-right: 1px solid var(--line); }
  .season-summary small { color: var(--ink-soft); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
  .season-summary strong { font: 500 .95rem/1.3 var(--serif); }

  .seed-section { background: var(--paper-light); }
  .two-column { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 7vw, 8rem); }
  .two-column > div:first-child > p:last-child { margin-top: 1.3rem; color: var(--ink-soft); font: 1rem/1.6 var(--serif); }
  .two-column h2 { margin-top: .5rem; }
  .variety-list { border-top: 1px solid var(--line); }
  .variety-list article { position: relative; display: grid; grid-template-columns: 1fr 1.6fr; gap: .8rem 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
  .variety-list article > span { grid-column: 1 / -1; color: var(--rust); font-size: .6rem; font-weight: 900; text-transform: uppercase; }
  .variety-list p { color: var(--ink-soft); font-size: .77rem; }
  .article-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 7vw, 8rem); }
  .article-copy h2 { margin-top: .5rem; }
  .article-copy > p:not(.eyebrow) { margin: 1.3rem 0; color: var(--ink-soft); font: 1.05rem/1.65 var(--serif); }
  .number-steps { border-top: 1px solid var(--line); }
  .number-steps > div { display: grid; grid-template-columns: 65px 1fr; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
  .number-steps span { color: var(--rust); font-size: .7rem; font-weight: 900; }
  .number-steps p { font: 500 1.05rem/1.45 var(--serif); }
  .protection-section { color: var(--paper-light); background: var(--green); }
  .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 1px; background: var(--line-light); }
  .problem-grid article { min-height: 380px; padding: 1.5rem; background: var(--green); }
  .problem-kind { color: #e7a174; }
  .problem-grid h3 { margin-top: 1rem; }
  .problem-grid dl { margin-top: 2rem; }
  .problem-grid dl div { padding: .9rem 0; border-top: 1px solid var(--line-light); }
  .problem-grid dt { color: #e7a174; font-size: .6rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  .problem-grid dd { margin-top: .3rem; color: rgba(250,247,238,.76); font-size: .73rem; }
  .problem-grid.light-cards { grid-template-columns: repeat(3, 1fr); background: var(--line); }
  .problem-grid.light-cards article { color: var(--ink); background: var(--paper-light); }
  .problem-grid.light-cards dd { color: var(--ink-soft); }
  .problem-grid.light-cards dl div { border-color: var(--line); }
  .harvest-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 7rem); align-items: start; }
  .harvest-copy > p:not(.eyebrow) { max-width: 620px; margin-top: 1.5rem; color: var(--ink-soft); font: 1.1rem/1.6 var(--serif); }
  .flavor-note { display: grid; gap: .3rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
  .flavor-note small { color: var(--rust); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
  .flavor-note strong { font: 500 1.25rem/1.4 var(--serif); }
  .kitchen-card { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); background: var(--paper-light); box-shadow: var(--shadow); }
  .kitchen-card h3 { margin-top: .5rem; font-size: 2.2rem; }
  .tag-cloud { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.4rem; }
  .tag-cloud span { padding: .42rem .65rem; border: 1px solid var(--line); font-size: .68rem; font-weight: 800; }
  .kitchen-card h4 { margin: 1.5rem 0 .3rem; color: var(--rust); font-size: .65rem; text-transform: uppercase; }
  .kitchen-card > p { color: var(--ink-soft); font: 1rem/1.5 var(--serif); }
  .future-link { display: grid; margin-top: 1.5rem; padding: 1rem; color: var(--paper-light); background: var(--green); }
  .future-link span { color: #e7a174; font-size: .6rem; font-weight: 900; text-transform: uppercase; }
  .future-link strong { font: 500 1rem/1.3 var(--serif); }
  .future-link small { margin-top: .4rem; color: rgba(250,247,238,.65); }
  .future-link code { background: rgba(255,255,255,.1); }
  .storage-section { background: var(--paper-deep); }
  .storage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .storage-grid article { min-height: 250px; padding: 1.5rem; border: 1px solid var(--line); background: var(--paper-light); }
  .storage-grid .line-icon { color: var(--rust); }
  .storage-grid small { display: block; margin-top: 2rem; color: var(--ink-soft); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
  .storage-grid h3 { margin-top: .3rem; }
  .storage-grid p { margin-top: .8rem; color: var(--ink-soft); font-size: .76rem; }
  .pantry-hook { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding: 1rem 1.2rem; color: var(--paper-light); background: var(--green); }
  .pantry-hook > div { display: flex; align-items: start; gap: .8rem; }
  .status-dot { width: 9px; height: 9px; margin-top: .45rem; border-radius: 50%; background: #95c777; box-shadow: 0 0 0 5px rgba(149,199,119,.15); }
  .pantry-hook p { display: grid; }
  .pantry-hook small { color: rgba(250,247,238,.65); font-size: .7rem; }
  .pantry-hook a { min-height: 44px; display: inline-flex; align-items: center; flex: 0 0 auto; font-size: .75rem; font-weight: 800; }
  .relations { padding-block: 6rem; }
  .relation-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .relation-row .crop-card-visual { height: 190px; }

  .guide-lead { display: grid; grid-template-columns: 1fr 1fr; margin-block: clamp(4rem, 8vw, 8rem); border: 1px solid var(--line); background: var(--paper-light); }
  .guide-lead > img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; background: #dad4b9; }
  .rule-stack { padding: 1rem clamp(1.5rem, 5vw, 4rem); }
  .rule-stack article { display: grid; grid-template-columns: 55px 1fr; gap: .3rem 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
  .rule-stack article:last-child { border-bottom: 0; }
  .rule-stack span { grid-row: 1 / 3; color: var(--rust); font-size: .65rem; font-weight: 900; }
  .rule-stack p { color: var(--ink-soft); font-size: .77rem; }
  .soil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .soil-grid article { padding: 1.5rem; border: 1px solid var(--line); background: var(--paper-light); }
  .soil-grid article > span { display: block; min-height: 50px; color: var(--ink-soft); font: italic .85rem/1.4 var(--serif); }
  .soil-grid h3 { margin-top: 1.5rem; }
  .soil-grid dl { margin-top: 1.3rem; }
  .soil-grid dl div { padding: .8rem 0; border-top: 1px solid var(--line); }
  .soil-grid dt { color: var(--rust); font-size: .6rem; font-weight: 900; text-transform: uppercase; }
  .soil-grid dd { margin-top: .2rem; color: var(--ink-soft); font-size: .74rem; }
  .soil-cycle { padding-block: 6rem; color: var(--paper-light); background: #503b2d; }
  .soil-cycle .eyebrow { color: #f0b07b; }
  .soil-cycle-track { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 2rem; border: 1px solid var(--line-light); }
  .soil-cycle-track div { min-height: 140px; display: grid; align-content: space-between; padding: 1rem; border-right: 1px solid var(--line-light); }
  .soil-cycle-track span { color: #f0b07b; font-size: .65rem; }
  .soil-cycle-track strong { font: 500 1rem/1.2 var(--serif); }
  .caveat { margin-top: 1rem; color: rgba(250,247,238,.65); font-size: .72rem; }
  .poison-manifest { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; align-items: start; margin-block: 5rem; padding: 2rem; border: 1px solid var(--rust); background: color-mix(in srgb, var(--rust) 8%, var(--paper-light)); }
  .poison-manifest > span { width: 60px; height: 60px; display: grid; place-items: center; color: white; background: var(--rust); border-radius: 50%; font-size: 1.5rem; }
  .poison-manifest h2 { margin-top: .4rem; font-size: clamp(2rem, 4vw, 3.7rem); }
  .poison-manifest div > p:last-child { max-width: 760px; margin-top: 1rem; color: var(--ink-soft); }
  .method-matrix { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .method-matrix article { min-height: 145px; padding: 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-light); }
  .method-matrix p { margin-top: .8rem; color: var(--ink-soft); font-size: .72rem; }
  .method-matrix a { border-bottom: 1px solid var(--line); }
  .safety-band { padding-block: 4rem; color: var(--paper-light); background: #7d3528; }
  .safety-band > div { display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 1.5rem; }
  .safety-band span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font: 600 1.3rem/1 var(--serif); }
  .safety-band h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
  .safety-band p { max-width: 800px; margin-top: .6rem; color: rgba(250,247,238,.72); }

  .graph-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3rem; border: 1px solid var(--line); background: var(--paper-light); }
  .graph-stats div { min-height: 110px; display: grid; place-content: center; border-right: 1px solid var(--line); text-align: center; }
  .graph-stats strong { font: 500 2rem/1 var(--serif); }
  .graph-stats span { margin-top: .4rem; color: var(--ink-soft); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
  .graph-shell { padding-block: 2rem 6rem; }
  .graph-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
  .graph-toolbar .filter-row { width: 100%; min-width: 0; max-width: 100%; }
  .knowledge-map { position: relative; min-height: 720px; overflow: hidden; border: 1px solid var(--line); background-color: #e7e5d4; background-image: radial-gradient(circle at center, transparent 0 22%, rgba(23,63,52,.08) 22.2% 22.4%, transparent 22.6% 38%, rgba(23,63,52,.08) 38.2% 38.4%, transparent 38.6%), linear-gradient(rgba(23,63,52,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23,63,52,.06) 1px, transparent 1px); background-size: auto, 36px 36px, 36px 36px; }
  .graph-core { position: absolute; z-index: 3; left: 50%; top: 50%; width: 130px; height: 130px; display: grid; place-content: center; border-radius: 50%; color: white; background: var(--green); text-align: center; transform: translate(-50%, -50%); box-shadow: 0 0 0 12px rgba(23,63,52,.12); }
  .graph-core strong { font: 600 1.45rem/1 var(--serif); }
  .graph-core span { margin-top: .3rem; font-size: .58rem; }
  .graph-node { position: absolute; z-index: 2; left: var(--x); top: var(--y); min-width: 92px; max-width: 135px; min-height: 52px; display: grid; place-content: center; padding: .5rem; border: 1px solid var(--node); color: var(--ink); background: color-mix(in srgb, var(--node) 11%, var(--paper-light)); text-align: center; transform: translate(-50%, -50%); cursor: pointer; box-shadow: 0 4px 10px rgba(29,41,36,.08); }
  .graph-node:hover { z-index: 5; color: white; background: var(--node); }
  .graph-node span { overflow: hidden; font: 500 .82rem/1.1 var(--serif); text-overflow: ellipsis; white-space: nowrap; }
  .graph-node small { color: inherit; font-size: .5rem; font-weight: 900; opacity: .6; text-transform: uppercase; }
  .graph-node.type-problem { --node: #a74e2d !important; }
  .graph-node.type-family { --node: #315f70 !important; }
  .graph-node.type-preservation { --node: #7d593f !important; }
  .graph-caption { margin-top: .75rem; color: var(--ink-soft); font-size: .7rem; }
  .schema-section { padding-block: 6rem; color: var(--paper-light); background: var(--green); }
  .schema-section .eyebrow { color: #e7a174; }
  .schema-flow { display: flex; align-items: stretch; margin-top: 2rem; overflow-x: auto; }
  .schema-flow div { min-width: 180px; min-height: 100px; display: grid; align-content: center; padding: 1rem; border: 1px solid var(--line-light); }
  .schema-flow div span { color: #e7a174; font-family: monospace; font-size: .65rem; }
  .schema-flow b { min-width: 150px; display: grid; place-content: center; color: rgba(250,247,238,.6); font-size: .65rem; }
  .schema-section > div > p:last-child { margin-top: 1.3rem; color: rgba(250,247,238,.68); }
  .principles-page { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line); }
  .principles-page article { min-height: 340px; padding: clamp(1.5rem, 4vw, 3.5rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-light); }
  .principles-page h2 { margin-top: 5rem; font-size: clamp(2rem, 3.5vw, 3.5rem); }
  .principles-page p { margin-top: 1rem; color: var(--ink-soft); }
  .editorial-note { margin-block: 5rem; padding: 2rem; border: 1px solid var(--line); }
  .editorial-note h2 { margin-top: .5rem; font-size: clamp(2rem, 4vw, 4rem); }
  .editorial-note > p:last-child { max-width: 800px; margin-top: 1rem; color: var(--ink-soft); }
  .source-list { margin-block: 4rem; border-top: 1px solid var(--line); }
  .source-list > a { min-height: 135px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 1rem; padding: 1rem; border-bottom: 1px solid var(--line); }
  .source-list > a:hover { background: var(--paper-light); }
  .source-list > a > span { color: var(--rust); font-size: .65rem; font-weight: 900; }
  .source-list h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
  .source-list p { margin-top: .35rem; color: var(--ink-soft); }
  .source-list small { color: var(--blue); font-size: .65rem; }
  .source-list b { font-size: 1.3rem; }
  .not-found { min-height: 75vh; display: grid; place-content: center; padding: 3rem 1rem; text-align: center; background: var(--paper-light); }
  .not-found > span { color: var(--rust); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
  .not-found p { margin-top: 1rem; color: var(--ink-soft); }
  .not-found .button { justify-self: center; margin-top: 1.5rem; }
}

@layer pages {
  .brand-mark svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .direction-home { padding-bottom: 3rem; }
  .direction-hero { width: min(calc(100% - 24px), 1520px); min-height: 620px; display: grid; grid-template-columns: minmax(470px, .84fr) minmax(600px, 1.16fr); margin: 12px auto 0; overflow: hidden; border: 3px solid var(--green); border-radius: 9px 9px 0 0; background: var(--paper-light); box-shadow: 0 4px 0 rgba(23,63,52,.13); }
  .direction-hero-copy { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: clamp(2.2rem, 5vw, 5.5rem); background: linear-gradient(100deg, var(--paper-light) 72%, rgba(250,247,238,.82) 88%, transparent); }
  .direction-hero-copy h1 { max-width: 760px; margin-top: .8rem; color: var(--green); font-size: clamp(3.9rem, 5.4vw, 6.9rem); line-height: .86; letter-spacing: -.06em; text-transform: uppercase; }
  .direction-hero-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 1.35rem; color: var(--ink-soft); font: clamp(1.05rem, 1.4vw, 1.35rem)/1.55 var(--serif); }
  .hero-field-note { max-width: 480px; display: grid; grid-template-columns: auto 1fr; gap: .1rem .8rem; margin-top: 2rem; padding: .85rem 1rem; border: 1px solid var(--line); background: rgba(243,237,221,.82); }
  .hero-field-note span { grid-row: 1 / 3; align-self: center; padding-right: .8rem; border-right: 1px solid var(--line); color: var(--rust); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .hero-field-note strong { font: 500 1rem/1.2 var(--serif); }
  .hero-field-note small { color: var(--ink-soft); font-size: .69rem; }
  .direction-hero-photo { position: relative; min-width: 0; min-height: 620px; overflow: hidden; margin: 0 0 0 -8vw; }
  .direction-hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper-light), transparent 28%), linear-gradient(0deg, rgba(16,39,31,.32), transparent 35%); pointer-events: none; }
  .direction-hero-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) sepia(.08) contrast(.98); }
  .direction-hero-photo figcaption { position: absolute; z-index: 3; right: 1rem; bottom: 1rem; padding: .55rem .75rem; color: var(--paper-light); background: rgba(18,46,39,.82); font-size: .68rem; }
  .hero-botanical { position: absolute; z-index: 2; color: var(--paper-light); opacity: .72; filter: drop-shadow(0 2px 7px rgba(0,0,0,.3)); }
  .hero-botanical-a { width: 190px; right: -30px; top: -20px; transform: rotate(18deg); }
  .hero-botanical-b { width: 180px; left: 10%; bottom: -50px; transform: rotate(-14deg); }
  .botanical-art { width: 100%; height: auto; }

  .journey-section, .explore-section { padding-block: clamp(3rem, 6vw, 6rem); }
  .ornament-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin-bottom: 1.6rem; text-align: center; }
  .ornament-title span { height: 1px; background: var(--line); }
  .ornament-title h2 { color: var(--green); font-size: clamp(1.65rem, 2.7vw, 2.9rem); letter-spacing: .01em; text-transform: uppercase; }
  .journey-track { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: .7rem; }
  .journey-step { position: relative; min-width: 0; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto auto; gap: .1rem .3rem; }
  .journey-number { position: absolute; z-index: 2; top: -.45rem; left: .45rem; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font: 700 .72rem/1 var(--serif); box-shadow: 0 0 0 3px var(--paper); }
  .journey-visual { grid-column: 1 / -1; aspect-ratio: 1.55; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 18px 3px 18px 3px; background: var(--paper-deep); }
  .journey-visual img, .explore-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
  .journey-crop-art { width: 82%; height: 82%; color: var(--green-2); }
  .journey-step:hover img, .explore-card:hover img { transform: scale(1.045); }
  .journey-step strong { margin-top: .45rem; font: 500 1rem/1.1 var(--serif); text-transform: uppercase; }
  .journey-step small { grid-column: 1 / -1; color: var(--ink-soft); font-size: .62rem; line-height: 1.25; }
  .journey-step b { align-self: center; color: var(--green); }

  .today-board { padding: clamp(1.3rem, 3vw, 2.5rem); border: 1px solid var(--line); border-radius: 2px 30px 2px 30px; background: var(--paper-light); box-shadow: var(--shadow); }
  .today-board-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; align-items: end; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
  .today-board-head h2 { margin-top: .35rem; color: var(--green); font-size: clamp(2.5rem, 5vw, 4.8rem); text-transform: uppercase; }
  .today-board-head > div:first-child > p:last-child { max-width: 540px; margin-top: .65rem; color: var(--ink-soft); font-family: var(--serif); }
  .month-dial { display: grid; grid-template-columns: repeat(12, 1fr); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
  .month-dial a { min-height: 42px; display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--ink-soft); font-size: .58rem; font-weight: 800; text-transform: uppercase; }
  .month-dial a.is-current { color: white; background: var(--green); }
  .today-tasks { margin-block: 1rem; }
  .today-tasks .task-grid { grid-template-columns: repeat(4, 1fr); }
  .today-board > .button { margin-top: .4rem; }

  .explore-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .7rem; }
  .explore-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px 2px 14px 2px; background: var(--paper-light); }
  .explore-visual { height: 145px; display: grid; place-items: center; overflow: hidden; background: var(--paper-deep); }
  .explore-visual .journey-crop-art { width: 76%; height: 76%; }
  .explore-card > div:last-child { position: relative; display: grid; gap: .15rem; padding: .8rem; }
  .explore-card span { color: var(--rust); font-size: .62rem; font-weight: 900; }
  .explore-card strong { font: 500 1rem/1.15 var(--serif); text-transform: uppercase; }
  .explore-card small { min-height: 34px; color: var(--ink-soft); font-size: .62rem; }
  .explore-card b { position: absolute; right: .8rem; bottom: .8rem; }

  .editorial-triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .editorial-triptych article { position: relative; min-height: 350px; display: grid; grid-template-columns: 1fr 1fr; align-content: end; gap: .4rem 1rem; overflow: hidden; padding: 1.2rem; border: 1px solid var(--line); background: var(--paper-light); }
  .editorial-triptych article > div, .editorial-triptych article > img { position: absolute; inset: 0 0 auto 45%; width: 55%; height: 65%; object-fit: contain; opacity: .58; }
  .editorial-art { width: 100%; height: 100%; color: var(--rust); }
  .editorial-triptych h2 { position: relative; z-index: 2; grid-column: 1 / -1; max-width: 78%; color: var(--green); font-size: clamp(1.7rem, 2.7vw, 2.7rem); text-transform: uppercase; }
  .editorial-triptych p { position: relative; z-index: 2; grid-column: 1 / -1; max-width: 78%; color: var(--ink-soft); font-size: .74rem; }
  .editorial-triptych a { position: relative; z-index: 2; grid-column: 1 / -1; margin-top: .6rem; font-size: .7rem; font-weight: 800; }
  .begin-band { min-height: 150px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 2rem; margin-block: 4rem 1rem; padding: 1rem 1.5rem; border: 1px solid var(--line); background: var(--paper-light); }
  .begin-art { width: 150px; height: 130px; color: var(--green-2); }
  .begin-band h2 { margin-top: .25rem; color: var(--green); font-size: clamp(1.6rem, 3vw, 2.8rem); }
  .begin-band > div:last-child { display: flex; gap: .7rem; }
  .photo-credit { color: var(--ink-soft); font-size: .62rem; text-align: right; }

  .harvest-overview, .kitchen-lead, .empty-garden { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; margin-block: 4rem; border: 1px solid var(--line); background: var(--paper-light); }
  .harvest-overview figure, .kitchen-lead > img, .empty-garden > img { min-height: 560px; width: 100%; height: 100%; object-fit: cover; }
  .harvest-overview figcaption { padding: .65rem; color: var(--ink-soft); font-size: .65rem; }
  .harvest-overview > div, .kitchen-lead > div, .empty-garden > div { align-self: center; padding: clamp(1.4rem, 4vw, 3.5rem); }
  .harvest-overview h2, .kitchen-lead h2, .empty-garden h2 { margin-top: .5rem; }
  .harvest-overview > div > p:not(.eyebrow), .kitchen-lead p:not(.eyebrow), .empty-garden p:not(.eyebrow) { margin-top: 1rem; color: var(--ink-soft); font-family: var(--serif); }
  .harvest-list { margin-top: 1.3rem; border-top: 1px solid var(--line); }
  .harvest-list a { min-height: 78px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: .8rem; border-bottom: 1px solid var(--line); }
  .harvest-mini-art { width: 50px; height: 50px; color: var(--green-2); }
  .harvest-list span { display: grid; }
  .harvest-list small { max-width: 440px; overflow: hidden; color: var(--ink-soft); font-size: .64rem; text-overflow: ellipsis; white-space: nowrap; }
  .harvest-choice { display: grid; grid-template-columns: repeat(3, 1fr); margin-block: 5rem; border: 1px solid var(--line); }
  .harvest-choice article { min-height: 230px; padding: 1.5rem; border-right: 1px solid var(--line); background: var(--paper-light); }
  .harvest-choice span { color: var(--rust); font-size: .65rem; font-weight: 900; }
  .harvest-choice h3 { margin-top: 3rem; }
  .harvest-choice p { margin-top: .7rem; color: var(--ink-soft); font-size: .75rem; }
  .harvest-choice a { display: inline-block; margin-top: 1rem; font-size: .7rem; font-weight: 800; }
  .kitchen-lead { color: var(--paper-light); background: var(--green); }
  .kitchen-lead .eyebrow { color: #efb383; }
  .kitchen-lead p:not(.eyebrow) { color: rgba(250,247,238,.76); }
  .kitchen-lead .button { margin-top: 1.5rem; border-color: var(--paper-light); background: var(--paper-light); color: var(--green); }
  .meal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
  .meal-grid > a { min-height: 320px; display: grid; align-content: start; padding: 1rem; border: 1px solid var(--line); background: var(--paper-light); }
  .meal-grid > a > div { height: 125px; display: grid; place-items: center; background: var(--paper); }
  .meal-art { width: 112px; height: 112px; color: var(--green-2); }
  .meal-grid span { margin-top: .9rem; color: var(--rust); font-size: .6rem; font-weight: 900; }
  .meal-grid h3 { margin-top: .25rem; }
  .meal-grid p, .meal-grid small { margin-top: .55rem; color: var(--ink-soft); font-size: .68rem; }
  .meal-grid b { margin-top: 1rem; font-size: .68rem; }
  .food-safety-note, .data-promise { display: flex; gap: 1rem; align-items: center; margin-block: 4rem; padding: 1rem; border: 1px solid var(--rust); background: var(--paper-light); }
  .food-safety-note > span { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: white; background: var(--rust); }
  .food-safety-note div { flex: 1; }
  .food-safety-note p, .data-promise small { display: block; color: var(--ink-soft); font-size: .72rem; }
  .food-safety-note a { font-size: .7rem; font-weight: 800; }

  .garden-dashboard { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1rem; margin-block: 4rem; }
  .garden-map, .garden-week { padding: 1.2rem; border: 1px solid var(--line); background: var(--paper-light); }
  .garden-map-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; }
  .garden-bed { min-height: 500px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px; background-color: #6f4d36; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 7px 7px; border: 8px solid #7b5a3b; box-shadow: inset 0 0 0 2px rgba(255,255,255,.22); }
  .garden-bed a { position: relative; display: grid; place-items: center; min-height: 145px; border: 1px dashed rgba(250,247,238,.55); background: color-mix(in srgb, var(--bed) 38%, transparent); }
  .garden-bed-art { width: 110px; height: 110px; color: var(--paper-light); filter: drop-shadow(0 5px 4px rgba(0,0,0,.2)); }
  .garden-bed a span { position: absolute; bottom: .55rem; padding: .25rem .45rem; background: var(--paper-light); font: 500 .72rem/1 var(--serif); }
  .garden-week h2 { margin-top: .4rem; }
  .garden-checks { display: grid; margin-block: 1rem; }
  .garden-checks label { display: grid; grid-template-columns: auto 1fr; gap: .7rem; padding: .8rem 0; border-top: 1px solid var(--line); cursor: pointer; }
  .garden-checks input { width: 18px; height: 18px; accent-color: var(--green); }
  .garden-checks label span { display: grid; color: var(--ink-soft); font-size: .7rem; }
  .garden-checks label strong { color: var(--ink); font: 500 1rem/1.2 var(--serif); }
  .garden-status { padding-block: 2rem 5rem; }
  .garden-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 4rem; }
  .garden-links a { min-height: 170px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 1rem; overflow: hidden; border: 1px solid var(--line); background: var(--paper-light); }
  .garden-links img { width: 100%; height: 100%; object-fit: cover; }
  .garden-links span { display: grid; }
  .garden-links small { color: var(--rust); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
  .garden-links strong { font: 500 1.25rem/1.2 var(--serif); }
  .garden-links b { padding-right: 1rem; }
  .empty-garden > img { object-fit: contain; background: #d9d8be; }
  .empty-garden .button { margin-top: 1.5rem; }
  .data-promise { border-color: var(--green); }
  .data-promise p { display: grid; }
}

@layer responsive {
  @media (max-width: 1100px) {
    .site-header { grid-template-columns: auto auto 1fr; gap: 1rem; }
    .nav-toggle { grid-column: 3; justify-self: end; display: inline-flex; align-items: center; gap: .4rem; cursor: pointer; }
    .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: .7rem 24px 1rem; border-bottom: 1px solid var(--line); background: var(--paper-light); box-shadow: var(--shadow); }
    .main-nav.is-open { display: grid; grid-template-columns: 1fr 1fr 1fr; }
    .main-nav a { justify-content: start; border-bottom: 1px solid var(--line); }
    .search-open { grid-column: 2; grid-row: 1; }
    .crop-grid { grid-template-columns: repeat(3, 1fr); }
    .task-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr 1fr; }
    .hero-copy { padding-right: 3vw; }
    .cycle-grid { grid-template-columns: repeat(3, 1fr); }
    .cycle-grid article:nth-child(4) { border-left: 1px solid var(--line-light); }
    .cycle-grid article { border-bottom: 1px solid var(--line-light); }
    .principles-strip { grid-template-columns: 1fr 1fr; }
    .principles-strip article { border-bottom: 1px solid var(--line); }
    .month-picker { grid-template-columns: repeat(6, 1fr); }
    .month-picker a { min-height: 70px; border-bottom: 1px solid var(--line); }
    .month-focus { grid-template-columns: 1fr; gap: 2rem; }
    .crop-hero { grid-template-columns: 1fr .75fr; }
    .problem-grid.light-cards { grid-template-columns: 1fr 1fr; }
    .problem-grid.light-cards article { min-height: 340px; }
  }

  @media (max-width: 820px) {
    html { scroll-padding-top: 132px; }
    .section-wrap { width: min(calc(100% - 32px), var(--content)); }
    .site-header { min-height: 68px; padding-inline: 16px; }
    .brand small, .search-open > span:nth-child(2), .search-open kbd, .nav-toggle > span:last-child { display: none; }
    .brand-mark { width: 36px; height: 36px; }
    .main-nav.is-open { grid-template-columns: 1fr 1fr; padding-inline: 16px; }
    .page-head { padding-inline: 16px; }
    .hero { min-height: auto; grid-template-columns: 1fr; }
    .hero-copy { min-height: 570px; padding: 4rem 16px; }
    .hero-plate { min-height: 540px; }
    .chapter-rail { grid-template-columns: 1fr 1fr; padding: 0; }
    .chapter-rail a { min-height: 92px; border-bottom: 1px solid var(--line); }
    .chapter-rail a:last-child { grid-column: 1 / -1; }
    .crop-grid { grid-template-columns: 1fr 1fr; }
    .illustrated-chapter, .pantry-feature, .guide-lead { grid-template-columns: 1fr; }
    .chapter-art { min-height: 470px; }
    .pantry-feature img { min-height: 440px; }
    .cycle-grid { grid-template-columns: 1fr 1fr; }
    .cycle-grid article:nth-child(3), .cycle-grid article:nth-child(5) { border-left: 1px solid var(--line-light); }
    .cycle-grid article:nth-child(4) { border-left: 0; }
    .site-footer { grid-template-columns: 1fr 1fr; align-items: start; }
    .poison-promise { grid-column: 1 / -1; }
    .crop-tools { grid-template-columns: 1fr; }
    .season-select { justify-self: start; }
    .crop-hero { grid-template-columns: 1fr; }
    .crop-hero-copy { padding: 2.5rem 0; }
    .crop-portrait { min-height: 400px; }
    .article-nav { top: 68px; justify-content: start; padding-inline: 8px; }
    .quick-facts { grid-template-columns: repeat(3, 1fr); }
    .quick-facts > div { border-bottom: 1px solid var(--line); }
    .quick-facts > div:nth-child(4) { border-left: 1px solid var(--line); }
    .two-column, .article-grid, .harvest-layout { grid-template-columns: 1fr; gap: 3rem; }
    .problem-grid, .problem-grid.light-cards { grid-template-columns: 1fr 1fr; }
    .storage-grid, .soil-grid, .method-matrix { grid-template-columns: 1fr 1fr; }
    .relation-row { grid-template-columns: 1fr 1fr; }
    .soil-cycle-track { grid-template-columns: 1fr 1fr; }
    .soil-cycle-track div { min-height: 110px; border-bottom: 1px solid var(--line-light); }
    .soil-cycle-track div:last-child { grid-column: 1 / -1; }
    .graph-toolbar { align-items: start; flex-direction: column; }
    .knowledge-map { min-height: 640px; }
    .graph-node { min-width: 80px; max-width: 100px; }
    .safety-band > div { grid-template-columns: 52px 1fr; }
    .safety-band .button { grid-column: 2; justify-self: start; }
  }

  @media (max-width: 560px) {
    h1 { font-size: clamp(3rem, 16vw, 5rem); }
    h2 { font-size: clamp(2.2rem, 12vw, 3.7rem); }
    .site-header { grid-template-columns: auto 1fr auto; }
    .brand > span:last-child { display: none; }
    .search-open { grid-column: 2; justify-self: end; }
    .nav-toggle { grid-column: 3; }
    .main-nav.is-open { grid-template-columns: 1fr; max-height: calc(100dvh - 68px); overflow-y: auto; }
    .page-head { padding-top: 3.5rem; }
    .breadcrumbs { margin-bottom: 1.2rem; overflow-x: auto; white-space: nowrap; }
    .hero-copy { min-height: 530px; }
    .hero h1 { font-size: clamp(3.5rem, 18vw, 5.8rem); }
    .hero-actions { display: grid; }
    .hero-plate { min-height: 490px; padding: .6rem; }
    .hero-plate::before { inset: .7rem; }
    .month-ticket { bottom: .8rem; right: .8rem; }
    .chapter-rail { grid-template-columns: 1fr; }
    .chapter-rail a, .chapter-rail a:last-child { grid-column: auto; border-right: 0; }
    .section-heading { align-items: start; flex-direction: column; gap: .6rem; }
    .section-heading .text-link { align-self: start; }
    .task-grid, .task-grid.compact { grid-template-columns: 1fr; }
    .crop-grid { grid-template-columns: 1fr; }
    .crop-card-visual { height: 260px; }
    .chapter-art { min-height: 380px; }
    .chapter-copy { padding: 1.5rem; }
    .cycle-grid { grid-template-columns: 1fr; }
    .cycle-grid article, .cycle-grid article:nth-child(n) { min-height: 205px; border-left: 1px solid var(--line-light); }
    .cycle-grid article > span { margin-top: 2rem; }
    .graph-link { align-items: start; }
    .pantry-copy { padding: 1.5rem; }
    .pantry-feature img { min-height: 360px; }
    .principles-strip { grid-template-columns: 1fr; }
    .principles-strip article { min-height: 220px; }
    .principles-strip h3 { margin-top: 3rem; }
    .month-picker { grid-template-columns: repeat(3, 1fr); }
    .season-table { overflow-x: auto; }
    .season-table-head, .season-table > a { min-width: 680px; }
    .weather-note { width: calc(100% - 32px); }
    .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .2rem; scrollbar-width: none; }
    .filter-row button, .filter-row a { flex: 0 0 auto; }
    .crop-hero { padding-inline: 16px; min-height: auto; }
    .crop-hero .breadcrumbs { margin-top: .5rem; }
    .crop-portrait { min-height: 340px; }
    .crop-art-large { width: 82%; }
    .crop-hero-actions { display: grid; }
    .quick-facts { width: 100%; grid-template-columns: 1fr 1fr; padding-inline: 16px; }
    .quick-facts > div:nth-child(odd) { border-left: 1px solid var(--line); }
    .quick-facts > div:nth-child(4) { border-left: 0; }
    .season-summary { grid-template-columns: 1fr 1fr; }
    .season-summary > div { border-bottom: 1px solid var(--line); }
    .variety-list article { grid-template-columns: 1fr; }
    .problem-grid, .problem-grid.light-cards { grid-template-columns: 1fr; }
    .problem-grid article { min-height: auto; }
    .storage-grid, .soil-grid, .method-matrix, .relation-row { grid-template-columns: 1fr; }
    .pantry-hook { align-items: start; flex-direction: column; }
    .guide-lead > img { min-height: 390px; }
    .rule-stack { padding: .5rem 1.1rem; }
    .rule-stack article { grid-template-columns: 38px 1fr; }
    .soil-cycle-track { grid-template-columns: 1fr; }
    .soil-cycle-track div:last-child { grid-column: auto; }
    .poison-manifest { grid-template-columns: 1fr; }
    .graph-stats { grid-template-columns: 1fr 1fr; }
    .graph-stats div { border-bottom: 1px solid var(--line); }
    .knowledge-map { min-height: 680px; }
    .graph-node { min-width: 72px; max-width: 86px; min-height: 46px; padding: .3rem; }
    .graph-node span { font-size: .68rem; }
    .graph-node small { display: none; }
    .graph-core { width: 96px; height: 96px; }
    .schema-flow b { min-width: 90px; }
    .principles-page { grid-template-columns: 1fr; }
    .principles-page article { min-height: 280px; }
    .source-list > a { grid-template-columns: 38px 1fr 24px; }
    .site-footer { grid-template-columns: 1fr; padding-block: 3rem; }
    .site-footer nav { grid-template-columns: 1fr; }
    .poison-promise { grid-column: auto; }
    .search-dialog { max-height: calc(100dvh - 12px); }
    .search-shell { padding: 1rem; }
  }

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

  @media print {
    .site-header, .site-footer, .search-dialog, .article-nav, .hero-actions, .card-actions, .button, .toast { display: none !important; }
    body { background: white; color: black; }
    body::before { display: none; }
    .crop-page, .article-section { break-inside: avoid; }
  }
}

@layer responsive {
  @media (max-width: 1100px) {
    .direction-hero { grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); }
    .direction-hero-copy h1 { font-size: clamp(3.8rem, 7.8vw, 6.7rem); }
    .journey-track { grid-template-columns: repeat(4, 1fr); gap: 1.4rem .8rem; }
    .explore-grid { grid-template-columns: repeat(4, 1fr); }
    .today-tasks .task-grid { grid-template-columns: repeat(2, 1fr); }
    .meal-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 820px) {
    .direction-hero { width: calc(100% - 16px); grid-template-columns: 1fr; }
    .direction-hero-copy { padding: 3.5rem 1.5rem 2.5rem; background: var(--paper-light); }
    .direction-hero-copy h1 { font-size: clamp(4rem, 14vw, 7rem); }
    .direction-hero-photo { min-height: 480px; margin: 0; }
    .direction-hero-photo::after { background: linear-gradient(0deg, rgba(16,39,31,.32), transparent 35%); }
    .today-board-head { grid-template-columns: 1fr; gap: 1.5rem; }
    .month-dial { grid-template-columns: repeat(6, 1fr); border-radius: 14px; }
    .month-dial a { border-bottom: 1px solid var(--line); }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
    .editorial-triptych { grid-template-columns: 1fr; }
    .editorial-triptych article { min-height: 300px; }
    .begin-band { grid-template-columns: 120px 1fr; }
    .begin-art { width: 110px; }
    .begin-band > div:last-child { grid-column: 1 / -1; justify-content: center; }
    .harvest-overview, .kitchen-lead, .empty-garden { grid-template-columns: 1fr; gap: 0; }
    .harvest-overview figure, .kitchen-lead > img, .empty-garden > img { min-height: 420px; }
    .meal-grid { grid-template-columns: repeat(2, 1fr); }
    .garden-dashboard { grid-template-columns: 1fr; }
    .garden-links { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .brand, .search-open, .nav-toggle { min-width: 44px; justify-content: center; }
    .direction-hero-copy { padding: 3rem 1rem 2rem; }
    .direction-hero-copy h1 { font-size: clamp(3.45rem, 16vw, 5rem); }
    .direction-hero-copy > p:not(.eyebrow) { font-size: 1rem; }
    .hero-field-note { grid-template-columns: 1fr; }
    .hero-field-note span { grid-row: auto; padding: 0 0 .4rem; border: 0; }
    .direction-hero-photo { min-height: 360px; }
    .hero-botanical { display: none; }
    .ornament-title h2 { font-size: 1.5rem; }
    .journey-track { grid-template-columns: 1fr 1fr; }
    .journey-visual { aspect-ratio: 1.65; }
    .journey-step small { min-height: 34px; }
    .today-board { border-radius: 2px 18px 2px 18px; }
    .month-dial { grid-template-columns: repeat(3, 1fr); }
    .today-tasks .task-grid { grid-template-columns: 1fr; }
    .explore-grid { grid-template-columns: 1fr 1fr; }
    .explore-visual { height: 125px; }
    .editorial-triptych article { min-height: 0; display: grid; align-content: start; grid-template-columns: 1fr; padding: 0 1.2rem 1.2rem; }
    .editorial-triptych article > div, .editorial-triptych article > img { position: static; grid-column: 1; width: calc(100% + 2.4rem); height: 210px; margin-inline: -1.2rem; object-fit: contain; background: var(--paper); opacity: .86; }
    .editorial-triptych h2 { margin-top: 1.2rem; }
    .editorial-triptych h2, .editorial-triptych p { max-width: 100%; }
    .editorial-triptych a { min-height: 44px; display: inline-flex; align-items: center; }
    .begin-band { grid-template-columns: 1fr; text-align: center; }
    .begin-band > div:first-child { display: none; }
    .begin-band > div:last-child { grid-column: auto; display: grid; }
    .photo-credit { text-align: left; }
    .harvest-overview figure, .kitchen-lead > img, .empty-garden > img { min-height: 310px; }
    .harvest-choice, .meal-grid { grid-template-columns: 1fr; }
    .harvest-choice article { min-height: 190px; border-bottom: 1px solid var(--line); }
    .harvest-choice h3 { margin-top: 2rem; }
    .food-safety-note { align-items: start; flex-direction: column; }
    .garden-bed { grid-template-columns: 1fr 1fr; padding: 10px; }
    .garden-bed a { min-height: 130px; }
    .garden-bed-art { width: 92px; height: 92px; }
    .garden-links a { grid-template-columns: 120px 1fr auto; }
  }
}
