:root {
  --green-950: #10291e;
  --green-900: #173b2b;
  --green-800: #1f4b36;
  --green-700: #2e6449;
  --green-100: #e7efe8;
  --cream: #faf8f1;
  --paper: #fffdf8;
  --yellow: #f5cf64;
  --ink: #172019;
  --muted: #617066;
  --line: #d8ded8;
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.1rem, 8vw, 6.8rem); max-width: 760px; margin-bottom: 1.25rem; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  background: white; padding: .7rem 1rem; border-radius: .4rem;
}
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 248, 241, .94);
  border-bottom: 1px solid rgba(31, 75, 54, .12);
  backdrop-filter: blur(16px);
}
.nav-wrap { max-width: var(--max); min-height: 78px; padding: 0 1.5rem; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-logo { width: 62px; height: 42px; object-fit: contain; flex: 0 0 auto; }
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-size: 1.05rem; }
.brand small { color: var(--muted); font-size: .75rem; margin-top: .2rem; letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; font-size: .92rem; font-weight: 650; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--green-700); }
.site-nav .nav-cta { background: var(--green-800); color: white; padding: .65rem 1rem; border-radius: 999px; }
.site-nav .nav-cta:hover { background: var(--green-950); color: white; }
.menu-button { display: none; border: 0; background: transparent; padding: .6rem; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { min-height: min(780px, calc(100vh - 78px)); position: relative; display: grid; align-items: end; overflow: hidden; background: var(--green-950); color: white; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 31, 22, .91) 0%, rgba(10, 31, 22, .58) 52%, rgba(10, 31, 22, .1) 100%); }
.hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 3rem)); margin: 0 auto; padding: 7rem 0 9.5rem; }
.hero-content > p:not(.eyebrow) { max-width: 680px; font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: rgba(255,255,255,.88); }
.eyebrow { margin-bottom: .8rem; color: var(--yellow); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--green-700); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: .72rem 1.2rem; text-decoration: none; font-weight: 750; cursor: pointer; transition: transform .15s ease, background .15s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: var(--green-950); }
.button-ghost { border: 1px solid rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.08); }
.button-dark { background: var(--green-900); color: white; }
.button-yellow { background: var(--yellow); color: var(--green-950); }
.hero-facts { position: absolute; z-index: 2; right: max(1.5rem, calc((100vw - var(--max)) / 2)); bottom: 2.2rem; display: flex; gap: 2.5rem; }
.hero-facts div { display: flex; flex-direction: column; }
.hero-facts strong { color: var(--yellow); font-size: 1.5rem; line-height: 1; }
.hero-facts span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .35rem; color: rgba(255,255,255,.72); }

.section { max-width: var(--max); margin: auto; padding: clamp(4.5rem, 9vw, 8rem) 1.5rem; }
.section-tint { max-width: none; background: var(--green-100); padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); }
.intro { display: grid; grid-template-columns: 1fr 1.65fr; gap: 5rem; }
.intro-copy { max-width: 720px; }
.lead { font-size: clamp(1.25rem, 2.3vw, 1.65rem); line-height: 1.5; }
.text-link { display: inline-block; margin-top: 1rem; color: var(--green-800); font-weight: 750; text-underline-offset: 4px; }
.section-heading.horizontal { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.section-heading.horizontal h2 { margin-bottom: 0; }
.section-heading.horizontal > p { max-width: 430px; color: var(--muted); }

.sowing-section { max-width: none; background: var(--cream); padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); }
.sowing-heading { margin-bottom: 2rem !important; }
.frost-guide { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: center; padding: 1.5rem 1.75rem; margin-bottom: 1.25rem; border-radius: var(--radius); background: var(--green-900); color: white; }
.frost-guide h3 { margin-bottom: .55rem; }
.frost-guide p { margin: 0; color: rgba(255,255,255,.8); }
.frost-guide p strong { color: white; }
.frost-date { padding-right: 1.5rem; border-right: 1px solid rgba(255,255,255,.2); }
.frost-date strong, .frost-date span { display: block; }
.frost-date strong { color: var(--yellow); font-size: 1.45rem; line-height: 1.1; }
.frost-date span { margin-top: .35rem; color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.calendar-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 18px 45px rgba(20,55,40,.08); }
.month-tabs { display: grid; grid-template-columns: repeat(12, 1fr); border-bottom: 1px solid var(--line); background: var(--green-100); }
.month-tabs button { min-height: 58px; padding: .7rem .25rem; border: 0; border-right: 1px solid rgba(31,75,54,.1); background: transparent; color: var(--green-800); font-size: .82rem; font-weight: 800; cursor: pointer; }
.month-tabs button:last-child { border-right: 0; }
.month-tabs button:hover { background: rgba(255,255,255,.65); }
.month-tabs button[aria-selected="true"] { background: var(--yellow); color: var(--green-950); box-shadow: inset 0 -4px 0 var(--green-800); }
.month-tabs button:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--green-700); outline-offset: -3px; }
.month-panel { padding: clamp(1.5rem, 4vw, 3rem); outline: 0; }
.month-panel-top { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.month-panel-top > div { display: flex; align-items: baseline; gap: 1rem; }
.month-panel-top h3 { margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); }
.month-panel-top p { max-width: 500px; margin: 0; color: var(--muted); }
.month-number { color: var(--green-700); font-size: .85rem; font-weight: 850; letter-spacing: .12em; }
.sowing-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sowing-group { min-width: 0; padding: 1.35rem; border: 1px solid var(--line); border-top-width: 5px; border-radius: 12px; background: white; }
.sow-under-cover { border-top-color: #d89732; }
.sow-direct { border-top-color: var(--green-700); }
.sow-jobs { border-top-color: #527da0; }
.sowing-label { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.sowing-group h4 { margin: .35rem 0 1rem; font-size: 1.08rem; }
.sowing-group ul { margin: 0; padding-left: 1.15rem; }
.sowing-group li { margin-bottom: .55rem; }
.sowing-group li:last-child { margin-bottom: 0; }
.calendar-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.25rem; color: var(--muted); font-size: .92rem; }
.calendar-notes p { margin: 0; padding: 1rem 1.15rem; border-left: 3px solid var(--yellow); background: rgba(255,255,255,.55); }

.news-grid { display: grid; grid-template-columns: 1.65fr .85fr; gap: 1.2rem; }
.news-feature, .archive-card { border-radius: var(--radius); }
.news-feature { background: var(--green-800); color: white; overflow: hidden; }
.news-feature > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-feature-copy { padding: clamp(1.7rem, 4vw, 3rem); }
.news-feature h3 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
.news-feature p:not(.news-date) { color: rgba(255,255,255,.8); max-width: 560px; }
.tag { display: inline-block; margin-bottom: 1.25rem; background: var(--yellow); color: var(--green-950); border-radius: 99px; padding: .3rem .65rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.tag-green { background: var(--green-100); color: var(--green-800); }
.news-date { margin-bottom: .5rem; color: var(--yellow); font-weight: 700; }
.category-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.category-list li { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .35rem .75rem; font-size: .82rem; font-weight: 750; }
.archive-card { padding: 2rem; background: var(--paper); border: 1px solid rgba(31,75,54,.15); }
.archive-list, .older-notes ul { list-style: none; padding: 0; margin: 0; }
.archive-list a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); text-decoration: none; font-weight: 700; }
.archive-list a:hover { color: var(--green-700); }
.older-notes { border-top: 1px solid var(--line); padding-top: 1rem; }
.older-notes summary { cursor: pointer; font-weight: 750; }
.older-notes ul { columns: 2; margin-top: .8rem; }
.older-notes li { margin-bottom: .35rem; }

.map-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.map-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.map-preview { position: relative; padding: .75rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; cursor: zoom-in; box-shadow: 0 24px 60px rgba(20,55,40,.12); }
.map-preview img { border-radius: calc(var(--radius) - 8px); }
.map-preview span { position: absolute; right: 1.5rem; bottom: 1.5rem; background: var(--green-950); color: white; padding: .45rem .8rem; border-radius: 99px; font-size: .8rem; font-weight: 700; }

.guidance { max-width: none; background: var(--cream); padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); }
.guidance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.guidance-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.guidance-card summary { list-style: none; display: flex; align-items: center; gap: 1rem; padding: 1.2rem; cursor: pointer; font-size: 1.05rem; font-weight: 800; }
.guidance-card summary::-webkit-details-marker { display: none; }
.guidance-card summary::after { content: "+"; margin-left: auto; color: var(--green-700); font-size: 1.5rem; line-height: 1; }
.guidance-card[open] summary::after { content: "−"; }
.guidance-icon { color: var(--green-700); font-size: .78rem; letter-spacing: .08em; }
.guidance-card > div { padding: 0 1.2rem 1.2rem 3.65rem; color: var(--muted); }
.guidance-card > div p:last-child { margin-bottom: 0; }
.guidance-note { max-width: 820px; margin: 2.5rem 0 0; color: var(--muted); }

.subscribe-section { padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: end; background: var(--green-800); color: white; }
.subscribe-section h2 { margin-bottom: .8rem; }
.subscribe-section p:not(.eyebrow) { color: rgba(255,255,255,.75); }
.subscribe-form { display: grid; grid-template-columns: 1fr 1.6fr auto; gap: .75rem; align-items: end; }
.form-row label { display: block; margin-bottom: .35rem; font-size: .78rem; font-weight: 750; }
.form-row input { width: 100%; min-height: 50px; padding: .7rem .9rem; border: 1px solid rgba(255,255,255,.35); border-radius: 10px; background: rgba(255,255,255,.09); color: white; }
.form-row input::placeholder { color: rgba(255,255,255,.58); }
.form-row input:focus { outline: 3px solid rgba(245,207,100,.35); border-color: var(--yellow); }

.site-footer { max-width: var(--max); margin: auto; padding: 3.5rem 1.5rem 2rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 1rem 1.5rem; font-size: .9rem; font-weight: 700; }
.footer-links a { text-underline-offset: 3px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 1.5rem; color: var(--muted); font-size: .82rem; }

.map-dialog { width: min(96vw, 1200px); max-height: 94vh; padding: 0; border: 0; border-radius: var(--radius); background: white; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.map-dialog::backdrop { background: rgba(5,18,12,.8); backdrop-filter: blur(6px); }
.dialog-top { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.dialog-top h2 { font-size: 1.2rem; margin: 0; }
.dialog-top button { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--green-100); font-size: 1.8rem; cursor: pointer; }
.map-dialog img { width: 100%; max-height: calc(94vh - 75px); object-fit: contain; }

@media (max-width: 900px) {
  .site-nav { position: fixed; inset: 78px 0 auto; display: none; padding: 1.5rem; background: var(--cream); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: .25rem; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .7rem; }
  .site-nav .nav-cta { text-align: center; margin-top: .5rem; }
  .menu-button { display: block; }
  .hero-facts { left: 1.5rem; right: auto; gap: 1.5rem; }
  .intro, .map-section, .subscribe-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .subscribe-form { grid-template-columns: 1fr 1fr; }
  .subscribe-form .button { grid-column: 1 / -1; }
  .month-tabs { display: flex; overflow-x: auto; scrollbar-width: thin; }
  .month-tabs button { flex: 0 0 64px; }
  .sowing-columns { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(3rem, 17vw, 4.4rem); }
  .hero-content { padding-top: 5rem; padding-bottom: 11rem; }
  .hero-shade { background: linear-gradient(180deg, rgba(10,31,22,.5), rgba(10,31,22,.92)); }
  .hero-facts { width: calc(100% - 3rem); justify-content: space-between; gap: .7rem; }
  .hero-facts strong { font-size: 1.2rem; }
  .hero-facts span { font-size: .62rem; }
  .intro { gap: 1rem; }
  .section-heading.horizontal { display: block; }
  .guidance-grid { grid-template-columns: 1fr; }
  .guidance-card > div { padding-left: 1.2rem; }
  .subscribe-form { grid-template-columns: 1fr; }
  .subscribe-form .button { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .older-notes ul { columns: 1; }
  .frost-guide { grid-template-columns: 1fr; gap: 1rem; }
  .frost-date { padding: 0 0 1rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .month-panel-top { display: block; }
  .month-panel-top > div { margin-bottom: .8rem; }
  .calendar-notes { grid-template-columns: 1fr; gap: .75rem; }
}

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

/* Committee meeting notes */
.minutes-page { background: var(--cream); }
.minutes-header { background: var(--green-900); color: white; }
.minutes-header .nav-wrap { min-height: 86px; }
.minutes-header .brand small { color: rgba(255,255,255,.7); }
.minutes-back { color: white; font-weight: 750; text-underline-offset: 4px; }
.minutes-main { width: min(820px, calc(100% - 3rem)); margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) 0; }
.minutes-kicker { margin-bottom: .65rem; color: var(--green-700); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.minutes-main h1 { max-width: 780px; margin-bottom: 1rem; font-size: clamp(2.5rem, 7vw, 5rem); }
.minutes-meta { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.minutes-content { padding: clamp(1.5rem, 5vw, 3.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 18px 50px rgba(20,55,40,.08); }
.minutes-content h2 { margin: 2.2rem 0 .75rem; font-size: 1.55rem; letter-spacing: -.02em; }
.minutes-content h2:first-child { margin-top: 0; }
.minutes-content ul { padding-left: 1.3rem; }
.minutes-content li { margin-bottom: .65rem; }
.minutes-content .action { padding: .8rem 1rem; border-left: 3px solid var(--yellow); background: var(--cream); }
.minutes-signoff { margin-top: 2rem; color: var(--muted); font-style: italic; }
@media print {
  .minutes-header, .site-footer { display: none; }
  .minutes-main { width: 100%; padding: 0; }
  .minutes-content { padding: 0; border: 0; box-shadow: none; }
}
