:root {
  --forest-950: #042f27;
  --forest-900: #063c31;
  --forest-800: #0b5141;
  --forest-700: #176a56;
  --teal-600: #168f91;
  --teal-500: #21a6a5;
  --leaf: #8fbf72;
  --cream: #f6f2e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #102d28;
  --muted: #61706b;
  --line: #d6ded8;
  --orange: #d97706;
  --blue: #315fb4;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(4, 47, 39, 0.12);
  --radius: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; }
h2 { font-size: clamp(2.7rem, 5vw, 5.4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.5rem; }
.sr-only { position: absolute; 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; top: 8px; left: 8px; z-index: 100; background: white; padding: 10px 16px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-label { margin-bottom: 14px; color: var(--teal-600); font-weight: 700; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: flex; align-items: center; justify-content: space-between; height: 76px; padding: 0 max(28px, calc((100vw - var(--max))/2)); color: white; transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(4,47,39,.96); box-shadow: 0 8px 30px rgba(0,0,0,.14); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font: 1.45rem var(--serif); }
.brand span { white-space: nowrap; }
.brand svg { width: 28px; fill: none; stroke: var(--leaf); stroke-width: 1.6; stroke-linecap: round; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; text-decoration: none; font-size: .84rem; font-weight: 600; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--teal-500); transition: right .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.active::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; color: white; }
:focus-visible { outline: 3px solid #65d2ce; outline-offset: 4px; }

.hero { position: relative; min-height: 790px; padding: 150px max(28px, calc((100vw - var(--max))/2)) 0; color: white; background: var(--forest-950); overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(143,191,114,.18); border-radius: 45% 55% 68% 32%; width: 360px; height: 520px; transform: rotate(28deg); animation: botanicalDrift 14s ease-in-out infinite alternate; }
.hero::before { left: -180px; top: 150px; }
.hero::after { right: -230px; top: -180px; }
.hero-copy { position: relative; z-index: 2; width: 47%; padding: 56px 0 170px; }
.hero h1 { margin-bottom: 28px; font-size: clamp(4.2rem, 7vw, 7.8rem); letter-spacing: -.055em; }
.hero-copy > p { max-width: 600px; margin-bottom: 36px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.button { display: inline-flex; align-items: center; gap: 18px; padding: 14px 20px 14px 24px; border-radius: 6px; text-decoration: none; font-size: .86rem; font-weight: 700; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.button-primary { background: var(--teal-500); }
.button-primary:hover { background: #2db5b3; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .25s ease; }
.button:hover svg { transform: translateX(4px); }
.hero-image-wrap { position: absolute; inset: 76px 0 95px 52%; overflow: hidden; border-radius: 0 0 0 160px; background: var(--forest-900); }
.hero-image { position: absolute; inset: -4% 0 0; width: 100%; height: 108%; object-fit: cover; object-position: 68% center; transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.hero-image-wrap:hover .hero-image { transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.065); filter: saturate(1.06); }
.image-caption { position: absolute; right: 24px; bottom: 20px; margin: 0; padding: 7px 10px; border-radius: 4px; background: rgba(4,47,39,.82); font-size: .72rem; }
.hero-facts { position: relative; z-index: 4; display: grid; grid-template-columns: .7fr .7fr 1.3fr 1.3fr; align-items: center; width: calc(100% + 56px); margin-left: -28px; min-height: 120px; padding: 28px 44px; color: var(--ink); background: var(--cream); border-radius: 80px 80px 0 0; }
.fact { display: flex; align-items: center; gap: 15px; padding: 0 28px; border-right: 1px solid #c8d1cb; }
.fact:last-child { border: 0; }
.fact svg { flex: 0 0 auto; width: 42px; height: 42px; padding: 8px; border: 1px solid #8eaaa1; border-radius: 50%; fill: none; stroke: var(--forest-700); stroke-width: 1.2; transition: transform .35s ease, background .35s ease; }
.fact:hover svg { transform: translateY(-4px) rotate(-4deg); background: white; }
.fact p { display: flex; flex-direction: column; margin: 0; line-height: 1.2; }
.fact strong { font: 1.75rem var(--serif); white-space: nowrap; }
.fact strong.fact-value-long { font-size: 1.35rem; }
.fact span { font-size: .75rem; color: var(--muted); }

.problem { position: relative; padding: 120px 0; }
.section-index { position: absolute; left: 0; top: 116px; color: #9ca9a4; font-size: .75rem; }
.problem-grid { display: grid; grid-template-columns: .85fr 1.3fr; gap: 9vw; align-items: start; }
.problem h2 { margin-bottom: 28px; }
.problem article > p:not(.section-label), .problem-list { color: var(--muted); }
.problem-list { margin: 0; padding-left: 1.25rem; }
.problem-list li + li { margin-top: 8px; }
.question-block { padding-left: 55px; border-left: 1px solid var(--line); }
.question-block blockquote { margin: 0; font: clamp(1.8rem, 3vw, 3.3rem)/1.2 var(--serif); }

.plant-guide { padding: 130px 0; background: var(--cream); }
.plant-tabs { display: inline-flex; gap: 5px; margin-bottom: 24px; padding: 5px; border-radius: 10px; background: #e3e9e3; }
.plant-tabs button { min-width: 110px; padding: 11px 18px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; cursor: pointer; font-size: .78rem; font-weight: 700; transition: color .2s ease, background .2s ease, transform .2s ease; }
.plant-tabs button:hover { color: var(--forest-800); transform: translateY(-1px); }
.plant-tabs button[aria-selected="true"] { color: white; background: var(--forest-700); box-shadow: 0 8px 20px rgba(11,81,65,.18); }
.plant-table-panel { overflow: hidden; border: 1px solid #cbd4cc; border-radius: 18px; background: var(--paper); box-shadow: 0 18px 45px rgba(4,47,39,.07); }
.plant-season-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 30px; border-bottom: 1px solid var(--line); }
.plant-season-heading > div { display: flex; align-items: center; gap: 14px; }
.plant-season-heading span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #edf4ec; font-size: 1.4rem; }
.plant-season-heading h3, .plant-season-heading p { margin: 0; }
.plant-season-heading h3 { font-size: 2rem; }
.plant-season-heading p { color: var(--muted); font-size: .75rem; }
.plant-table-scroll { overflow-x: auto; }
.plant-table { width: 100%; border-collapse: collapse; text-align: left; }
.plant-table th, .plant-table td { padding: 17px 30px; border-bottom: 1px solid #e1e6e2; }
.plant-table thead th { color: var(--muted); background: #f2f5f1; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.plant-table tbody th { font: 1.08rem var(--serif); }
.plant-table tbody td { color: #4d625b; font-size: .8rem; }
.plant-table tbody tr { animation: plantRowIn .42s both; animation-delay: calc(var(--row-index) * 28ms); }
.plant-table tbody tr:last-child th, .plant-table tbody tr:last-child td { border-bottom: 0; }
.plant-table tbody tr:hover { background: #f2f7f1; }

.garden-section { position: relative; padding: 120px 0 130px; color: white; background: var(--forest-900); overflow: hidden; }
.garden-section::after { content: ""; position: absolute; right: -110px; top: 140px; width: 360px; height: 360px; border: 1px solid rgba(143,191,114,.2); border-radius: 50%; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin-bottom: 8px; color: var(--muted); }
.section-heading.light > p { color: rgba(255,255,255,.7); }
.section-heading.light .section-label { color: #7dd4cf; }
.month-control { display: grid; grid-template-columns: 190px 1fr; gap: 32px; align-items: center; margin-bottom: 26px; padding: 21px 26px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.07); }
.month-control-copy { display: flex; flex-direction: column; }
.month-control-copy span { color: rgba(255,255,255,.6); font-size: .73rem; text-transform: uppercase; letter-spacing: .1em; }
.month-control-copy strong { font: 1.7rem var(--serif); }
.range-wrap input { width: 100%; accent-color: var(--teal-500); cursor: pointer; }
.month-labels { display: flex; justify-content: space-between; font-size: .68rem; color: rgba(255,255,255,.65); }
.garden-workspace { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .8fr); min-height: 640px; overflow: hidden; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); }
.map-panel { padding: 34px; }
.map-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; font-size: .78rem; }
.map-topline > div { display: flex; align-items: center; gap: 7px; }
.map-topline p { margin: 0; color: var(--muted); }
.north-arrow { font-size: 1.65rem; line-height: 1; }
.garden-map { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(4, 112px); gap: 5px; padding: 10px; background: #d6d0bd; border: 9px solid #bfae8f; border-radius: 12px; box-shadow: inset 0 0 0 2px #947a59; }
.plot { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 0; color: var(--ink); background: #e6e2a3; cursor: pointer; transition: transform .2s, box-shadow .2s, filter .2s; animation: plotIn .38s both; animation-delay: calc(var(--plot-index) * 22ms); }
.plot:hover, .plot:focus-visible { z-index: 2; transform: scale(1.025); box-shadow: 0 8px 22px rgba(16,45,40,.25); outline: 3px solid white; }
.plot.selected { outline: 4px solid var(--teal-600); outline-offset: -4px; }
.plot.house-a { background: #ebefda; }
.plot.house-b { background: #eee8b7; }
.plot.house-c { background: #e6e7aa; }
.plot.faculty { background: #f1d8b3; }
.plot.path { background: #a8c7df; color: #274b60; cursor: default; }
.plot strong { position: relative; z-index: 2; font: 1.35rem var(--serif); }
.plot small { position: absolute; left: 8px; bottom: 5px; z-index: 2; font-size: .6rem; text-transform: uppercase; }
.plot .crop-icons { position: absolute; inset: 8px; display: flex; flex-wrap: wrap; gap: 2px; align-content: center; justify-content: center; opacity: .48; font-size: 1.15rem; }
.plot[data-stage="preparation"] .crop-icons { opacity: .1; filter: grayscale(1); }
.plot[data-stage="seedling"] .crop-icons { transform: scale(.65); }
.plot[data-stage="established"] .crop-icons, .plot[data-stage="harvest"] .crop-icons { transform: scale(1.15); opacity: .62; }
.map-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; color: var(--muted); font-size: .7rem; }
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.map-legend i { width: 11px; height: 11px; border-radius: 2px; }
.legend-existing { background: #93c681; }.legend-demo { background: #ddc969; }.legend-wild { background: #b8c47a; }.legend-path { background: #a8c7df; }
.plot-panel { padding: 36px; border-left: 1px solid var(--line); background: white; }
.plot-panel-heading { display: flex; justify-content: space-between; align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.plot-panel-heading h3 { margin: 0 0 3px; font-size: 3.4rem; }
.plot-panel-heading p { margin: 0; color: var(--muted); }
.plant-symbol { font-size: 3rem; }
.plot-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.plot-summary div { display: flex; flex-direction: column; }
.plot-summary dt { color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; }
.plot-summary dd { margin: 2px 0 0; font-weight: 600; font-size: .84rem; }
.status-list { border-top: 1px solid var(--line); }
.status-row { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-row div { display: flex; flex-direction: column; line-height: 1.25; }
.status-row strong, .status-row b { font-size: .73rem; }
.status-row small { color: var(--muted); font-size: .62rem; }
.measured .status-dot { background: #239b68; }.measured strong { color: #14744c; }
.estimated .status-dot { background: var(--orange); }.estimated strong { color: #a95d05; }
.simulated .status-dot { background: var(--blue); }.simulated strong { color: var(--blue); }
.materials { margin-top: 25px; }
.materials p { margin-bottom: 10px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.materials div { display: flex; flex-wrap: wrap; gap: 7px; }
.material-chip { padding: 5px 8px; color: var(--forest-700); background: #eef5ef; border-radius: 4px; font-size: .65rem; }

.compare-section { padding: 130px 0; background: white; }
.comparison-control { display: flex; flex-wrap: wrap; gap: 4px; padding: 4px; background: #edf2ef; border-radius: 7px; }
.comparison-control button { padding: 9px 13px; border: 0; border-radius: 5px; color: var(--muted); background: transparent; cursor: pointer; font-size: .72rem; font-weight: 700; }
.comparison-control button.active { color: white; background: var(--forest-700); }
.chart-context { margin: -35px 0 25px; color: var(--muted); font-size: .75rem; }
.charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.chart-card { min-height: 330px; padding: 25px; border: 1px solid var(--line); border-radius: 14px; }
.distribution-card { grid-column: 1 / -1; min-height: 200px; }
.chart-title { display: flex; justify-content: space-between; align-items: start; gap: 15px; }
.chart-title h3 { margin: 0; font: 1rem var(--sans); font-weight: 700; }
.data-label { padding: 4px 7px; border-radius: 3px; font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.simulated-label { color: var(--blue); background: #eaf0fb; }.estimated-label { color: #a95d05; background: #fff0da; }
.bar-chart { display: flex; align-items: end; justify-content: space-around; height: 235px; padding: 35px 15px 0; border-bottom: 1px solid #aebbb4; background: repeating-linear-gradient(to top, transparent 0 54px, #edf0ed 55px 56px); }
.bar-column { display: flex; flex-direction: column; align-items: center; justify-content: end; width: 18%; height: 100%; }
.bar { position: relative; width: 46px; min-height: 3px; background: var(--teal-600); border-radius: 4px 4px 0 0; transform-origin: bottom; animation: barRise .65s cubic-bezier(.2,.8,.2,1) both; }
.bar b { position: absolute; left: 50%; top: -25px; transform: translateX(-50%); font-size: .68rem; }
.bar-column span { margin-top: 7px; font-size: .68rem; }
.line-chart { height: 240px; margin-top: 25px; }
.line-chart svg { width: 100%; height: 100%; overflow: visible; }
.line-grid { stroke: #e1e7e2; stroke-width: 1; }.line-path { fill: none; stroke: var(--teal-600); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: lineDraw 1.2s .18s ease forwards; }.line-area { fill: url(#area-fill); opacity: 0; animation: areaFade .7s .75s ease forwards; }.line-dot { fill: white; stroke: var(--teal-600); stroke-width: 3; }.line-label { fill: var(--muted); font: 9px var(--sans); }
.plant-distribution { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.distribution-item { display: grid; grid-template-columns: 45px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.distribution-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--cream); font-size: 1.4rem; }
.distribution-item p { margin: 0; font-weight: 700; font-size: .8rem; }
.distribution-item small { color: var(--muted); }.distribution-item b { font: 1.4rem var(--serif); }
.data-disclaimer { margin: 22px 0 0; color: var(--muted); font-size: .7rem; }

.seasons-section { padding: 130px 0; color: white; background: var(--forest-950); }
.season-timeline { display: grid; grid-template-columns: repeat(9, 1fr); position: relative; }
.season-timeline::before { content: ""; position: absolute; left: 5%; right: 5%; top: 42px; height: 1px; background: rgba(255,255,255,.32); }
.season { position: relative; text-align: center; }
.season-dot { position: relative; z-index: 2; display: grid; place-items: center; width: 58px; height: 58px; margin: 14px auto 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--leaf); background: var(--forest-950); font-size: 1.4rem; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.season:hover .season-dot { transform: translateY(-6px) scale(1.06); border-color: #7dd4cf; background: var(--forest-800); }
.season strong { display: block; margin-bottom: 8px; font-size: .72rem; }
.season p { max-width: 100px; margin: 0 auto; color: rgba(255,255,255,.62); font-size: .62rem; line-height: 1.35; }

.site-footer { display: grid; grid-template-columns: 1.5fr .8fr 1fr; gap: 60px; padding: 60px max(28px, calc((100vw - var(--max))/2)); color: white; background: #02261f; }
.footer-brand p { margin-bottom: 8px; font: 2rem var(--serif); }.footer-brand span, .footer-note { color: rgba(255,255,255,.58); font-size: .72rem; }
.site-footer nav { display: grid; gap: 5px; }.site-footer nav a { text-decoration: none; font-size: .72rem; }.site-footer nav a:hover { color: #7dd4cf; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.motion-ready .reveal.visible { opacity: 1; transform: none; }
@keyframes botanicalDrift { to { transform: rotate(34deg) translate3d(14px,-10px,0); } }
@keyframes plantRowIn { from { opacity: 0; transform: translateX(-10px); } }
@keyframes plotIn { from { opacity: 0; transform: scale(.94); } }
@keyframes barRise { from { transform: scaleY(0); opacity: .35; } }
@keyframes lineDraw { to { stroke-dashoffset: 0; } }
@keyframes areaFade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .motion-ready .reveal { opacity: 1; transform: none; } * { animation: none !important; transition-duration: .01ms !important; } }

@media (max-width: 980px) {
  .brand { font-size: 1.15rem; }
  .hero { min-height: auto; padding-top: 110px; }
  .hero-copy { width: 55%; padding-bottom: 130px; }
  .hero-image-wrap { left: 56%; }
  .hero-facts { grid-template-columns: 1fr 1fr; row-gap: 22px; border-radius: 50px 50px 0 0; }
  .fact:nth-child(2) { border: 0; }
  .garden-workspace { grid-template-columns: 1fr; }
  .plot-panel { border: 0; border-top: 1px solid var(--line); }
  .plant-distribution { grid-template-columns: 1fr 1fr; }
  .season-timeline { grid-template-columns: repeat(5, 1fr); gap: 28px 0; }
  .season-timeline::before { display: none; }
}

@media (max-width: 720px) {
  .section-shell { width: min(100% - 32px, var(--max)); }
  .site-header { height: 66px; padding: 0 18px; background: rgba(4,47,39,.96); }
  .brand { max-width: calc(100% - 58px); font-size: clamp(.76rem, 3.7vw, 1.05rem); line-height: 1.15; }
  .brand svg { flex: 0 0 22px; width: 22px; }
  .nav-toggle { display: grid; gap: 5px; padding: 8px; }.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 1.5px; background: currentColor; }
  .site-nav { position: absolute; left: 0; right: 0; top: 66px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: var(--forest-950); }
  .site-nav.open { display: flex; }.site-nav a { padding: 12px; }
  .hero { display: flex; flex-direction: column; padding: 100px 18px 0; }
  .hero-copy { width: 100%; padding: 35px 0 50px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.2rem); }
  .hero-image-wrap { position: relative; inset: auto; width: calc(100% + 36px); height: 390px; margin-left: -18px; border-radius: 70px 0 0; }
  .hero-facts { width: calc(100% + 36px); margin-left: -18px; padding: 30px 18px; border-radius: 0; }
  .fact { padding: 0 12px; }.fact svg { width: 34px; height: 34px; }.fact strong, .fact strong.fact-value-long { font-size: 1.25rem; }
  .problem { padding: 88px 0; }.section-index { display: none; }.problem-grid { grid-template-columns: 1fr; gap: 45px; }.question-block { padding: 35px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .plant-guide, .garden-section, .compare-section, .seasons-section { padding: 90px 0; }
  .section-heading { display: block; margin-bottom: 42px; }.section-heading > p { margin-top: 22px; }
  .month-control { grid-template-columns: 1fr; gap: 12px; }
  .garden-workspace { border-radius: 16px; }.map-panel, .plot-panel { padding: 20px; }
  .garden-map { grid-template-rows: repeat(4, 78px); gap: 3px; border-width: 6px; padding: 6px; }.plot strong { font-size: .95rem; }.plot small { display: none; }.plot .crop-icons { font-size: .75rem; }
  .map-legend { gap: 10px; }
  .plant-tabs { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; }.plant-tabs button { min-width: 0; padding-inline: 8px; }
  .plant-season-heading { padding: 22px 20px; }
  .plant-table-scroll { overflow: visible; }
  .plant-table, .plant-table tbody { display: block; }
  .plant-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .plant-table tr { display: grid; grid-template-columns: 1fr 1fr; padding: 18px 20px; border-bottom: 1px solid var(--line); }
  .plant-table th, .plant-table td { display: block; padding: 4px 0; border: 0; }
  .plant-table tbody th { grid-column: 1 / -1; margin-bottom: 6px; }
  .plant-table td::before { content: attr(data-label); display: block; color: #7a8b84; font-size: .55rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .comparison-control { margin-top: 28px; }.chart-context { margin: -20px 0 25px; }.charts-grid { grid-template-columns: 1fr; }.distribution-card { grid-column: auto; }.plant-distribution { grid-template-columns: 1fr; }
  .season-timeline { grid-template-columns: repeat(3, 1fr); }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 50px 24px; }
}

@media (max-width: 430px) {
  .hero-facts { grid-template-columns: 1fr; }.fact { border: 0; padding: 8px 12px; }
  .garden-map { grid-template-rows: repeat(4, 63px); }.plot .crop-icons { display: none; }
  .plot-summary { grid-template-columns: 1fr; }.status-row { grid-template-columns: 10px 1fr; }.status-row b { grid-column: 2; }
  .season-timeline { grid-template-columns: repeat(2, 1fr); }
}
