:root {
  --forest-950: #11251e;
  --forest-900: #183127;
  --forest-800: #264336;
  --forest-700: #365646;
  --ivory-100: #f7f2e8;
  --ivory-200: #efe6d8;
  --paper: #fcfaf4;
  --bark: #c9b8a0;
  --plum: #6a3953;
  --gold: #b9924f;
  --mist: #d9d1c6;
  --charcoal: #1a1d18;
  --muted: rgba(26, 29, 24, 0.74);
  --line: rgba(17, 37, 30, 0.12);
  --shadow: 0 18px 44px rgba(10, 20, 15, 0.08);
  --shadow-strong: 0 26px 56px rgba(10, 20, 15, 0.12);
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16.5px;
  line-height: 1.76;
  color: var(--charcoal);
  background: linear-gradient(180deg, #fbf7ef 0%, #f7f1e6 38%, #fcfaf4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 10%, rgba(185, 146, 79, 0.05), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(38, 67, 54, 0.045), transparent 18%);
  opacity: 0.75;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -18vw -20vh auto;
  width: 44vw;
  height: 44vw;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 146, 79, 0.12), rgba(185, 146, 79, 0));
  filter: blur(10px);
  opacity: 0.45;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 146, 79, 0.62);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -3.5rem;
  left: 1rem;
  z-index: 200;
  background: var(--forest-950);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--plum), var(--forest-700));
}

.container {
  width: min(calc(100% - 2.25rem), var(--container));
  margin: 0 auto;
}

.announcement-bar {
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.9);
}

.announcement-shell {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.96rem;
}

.announcement-shell p {
  margin: 0;
}

.announcement-shell span {
  margin-right: 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement-shell a {
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 244, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 250, 244, 0.96);
  border-bottom-color: rgba(17, 37, 30, 0.08);
  box-shadow: 0 10px 28px rgba(17, 37, 30, 0.06);
}

.nav-shell {
  width: min(calc(100% - 1.5rem), 1380px);
  min-height: 7rem;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.site-logo {
  display: inline-grid;
  gap: 0.3rem;
  justify-items: start;
  flex-shrink: 0;
}

.site-logo img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.site-logo-note {
  color: rgba(26, 29, 24, 0.68);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.12rem;
  min-width: 0;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0;
  color: rgba(26, 29, 24, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 146, 79, 0.35));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--forest-950);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-join {
  min-height: 52px;
  min-width: 156px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-join-desktop {
  justify-self: end;
}

.nav-join-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  color: var(--forest-950);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 1rem 1.55rem;
  border: 1px solid rgba(17, 37, 30, 0.12);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  isolation: isolate;
  transition:
    transform 220ms var(--ease-fluid),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -36%;
  width: 28%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: transform 420ms var(--ease-fluid);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(480%) skewX(-18deg);
}

.btn-primary {
  background: linear-gradient(180deg, #d2b06f, var(--gold));
  color: var(--charcoal);
  box-shadow: 0 10px 22px rgba(185, 146, 79, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(17, 37, 30, 0.13);
  color: var(--forest-900);
  box-shadow: 0 8px 20px rgba(17, 37, 30, 0.05);
}

.nav-join-mobile {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--forest-950);
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: var(--plum);
}

.text-link-arrow::after {
  content: "->";
  font-size: 0.94em;
  letter-spacing: 0.06em;
}

.section-cta {
  margin-top: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.centered {
  justify-content: center;
}

.hero,
.page-intro {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 6.2rem);
  background: linear-gradient(145deg, #0f1d17 0%, #183127 54%, #264336 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 11, 0.76), rgba(7, 14, 11, 0.32)),
    radial-gradient(circle at 78% 28%, rgba(106, 57, 83, 0.18), transparent 24%),
    var(--hero-image) center/cover no-repeat;
  transform: scale(1.015);
  transform-origin: center;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 11, 0.06), rgba(7, 14, 11, 0.34));
}

.hero-overlay::after,
.page-intro::before {
  content: "";
  position: absolute;
  inset: auto auto 12% 6%;
  width: min(28rem, 38vw);
  height: min(28rem, 38vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 146, 79, 0.18), rgba(185, 146, 79, 0));
  filter: blur(10px);
  opacity: 0.72;
  animation: ambientDrift 16s ease-in-out infinite alternate;
}

.page-intro::before {
  inset: auto 8% 10% auto;
  width: min(22rem, 32vw);
  height: min(22rem, 32vw);
  opacity: 0.5;
}

.hero-shell,
.page-intro-grid,
.editorial-split,
.restoration-layout,
.meeting-page-grid,
.two-column-text,
.list-columns,
.form-layout,
.feature-slab,
.featured-grower-grid,
.membership-banner-shell,
.newsletter-shell,
.site-footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-shell {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  align-items: end;
  padding: 7.85rem 0 5.35rem;
}

.hero-copy h1,
.page-intro-copy h1,
.section-heading h2,
.feature-copy h2,
.editorial-copy h2,
.editorial-panel h2,
.meeting-feature h3,
.meeting-feature h2,
.benefit-card h3,
.empty-state-card h2,
.pillar-card h2,
.newsletter-shell h2,
.membership-banner-shell h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.page-intro-copy h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.hero-copy .lede,
.page-intro-copy .lede {
  max-width: 42rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-credential {
  margin: -0.2rem 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-credential a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.18em;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-mark {
  display: flex;
  justify-content: flex-end;
}

.hero-logo {
  width: min(388px, 36vw);
  border-radius: 50%;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.eyebrow,
.meta-line {
  margin: 0 0 0.75rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.page-intro {
  padding: 5.8rem 0 3rem;
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(185, 146, 79, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(239, 230, 216, 0.45), transparent 62%);
  pointer-events: none;
}

.page-intro-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: center;
}

.page-intro-copy .lede {
  color: var(--muted);
  max-width: 38rem;
}

.page-intro-visual,
.editorial-visual,
.feature-image,
.featured-grower-image,
.hero-logo,
.montage-primary,
.montage-card,
.gallery-teaser-card,
.care-library-card,
.masonry-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.page-intro-visual img,
.editorial-visual img,
.feature-image img,
.featured-grower-image img,
.montage-primary img,
.montage-card img,
.gallery-teaser-card img,
.care-library-card img,
.masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro-visual img,
.featured-grower-image img,
.montage-primary img {
  will-change: transform;
}

body.legal-page {
  background: #fcfbf7;
}

body.legal-page .site-progress {
  display: none;
}

.legal-document {
  padding: 3.5rem 0 4.25rem;
}

.legal-shell {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-header {
  padding: 0 0 1.45rem;
  border-bottom: 1px solid rgba(17, 37, 30, 0.16);
}

.legal-header h1,
.legal-section h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  color: var(--forest-900);
}

.legal-header h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.45rem);
  line-height: 0.98;
}

.legal-meta {
  margin: 0.95rem 0 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-700);
}

.legal-summary {
  margin: 0.95rem 0 0;
  max-width: 42rem;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-sections {
  margin-top: 0.5rem;
}

.legal-section {
  padding: 1.45rem 0 1.55rem;
  border-top: 1px solid rgba(17, 37, 30, 0.12);
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 1.15rem;
}

.legal-section h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.72rem, 3vw, 2.15rem);
  line-height: 1.04;
}

.legal-copy {
  color: var(--muted);
}

.legal-copy p,
.legal-copy li {
  line-height: 1.82;
}

.legal-copy p {
  margin: 0;
}

.legal-copy p + p,
.legal-copy ul,
.legal-copy ol {
  margin-top: 0.9rem;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.2rem;
}

.legal-copy a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-copy strong {
  color: var(--forest-900);
}

.montage-card img,
.gallery-teaser-card img,
.masonry-card img {
  transition: transform 540ms var(--ease-fluid);
}

.montage-card:hover img,
.gallery-teaser-card:hover img,
.masonry-card:hover img {
  transform: scale(1.04);
}

.section {
  padding: 2.6rem 0 5.6rem;
}

.section-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(247, 242, 232, 0.7)),
    linear-gradient(135deg, rgba(185, 146, 79, 0.035), rgba(106, 57, 83, 0.025));
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 50rem;
}

.section-heading h2,
.feature-copy h2,
.editorial-copy h2,
.editorial-panel h2,
.meeting-feature h3,
.meeting-feature h2,
.newsletter-shell h2,
.membership-banner-shell h2,
.empty-state-card h2,
.pillar-card h2 {
  margin: 0 0 1.05rem;
  font-size: clamp(2.45rem, 4vw, 3.8rem);
}

.section-heading p:last-child,
.editorial-copy p,
.editorial-panel p,
.feature-copy p,
.meeting-feature p,
.meeting-side-panel p,
.empty-state-card p,
.newsletter-shell p {
  color: var(--muted);
}

.section-heading p:last-child {
  max-width: 40rem;
}

.intro-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.88fr);
  align-items: start;
}

.intro-photo-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.72fr);
  gap: 1rem;
  align-items: start;
}

.home-intro-split {
  align-items: stretch;
}

.home-intro-photo-stack {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.home-intro-photo-stack .editorial-visual {
  height: 100%;
  min-height: clamp(15rem, 20vw, 18.5rem);
}

.editorial-copy,
.editorial-panel,
.meeting-feature,
.meeting-side-panel,
.benefit-card,
.simple-card,
.fact-card,
.care-preview-card,
.event-card,
.event-list-card,
.membership-card,
.pillar-card,
.empty-state-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

:is(
  .editorial-panel,
  .meeting-feature,
  .meeting-side-panel,
  .benefit-card,
  .simple-card,
  .fact-card,
  .care-preview-card,
  .event-card,
  .event-list-card,
  .membership-card,
  .pillar-card,
  .empty-state-card,
  .faq-item,
  .care-library-card
) {
  position: relative;
  overflow: hidden;
  transition:
    transform 240ms var(--ease-fluid),
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

:is(
  .editorial-panel,
  .meeting-feature,
  .meeting-side-panel,
  .benefit-card,
  .simple-card,
  .fact-card,
  .care-preview-card,
  .event-card,
  .event-list-card,
  .membership-card,
  .pillar-card,
  .empty-state-card,
  .faq-item,
  .care-library-card
)::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -10%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 146, 79, 0.12), rgba(185, 146, 79, 0));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

:is(
  .editorial-panel,
  .meeting-feature,
  .meeting-side-panel,
  .benefit-card,
  .simple-card,
  .fact-card,
  .care-preview-card,
  .event-card,
  .event-list-card,
  .membership-card,
  .pillar-card,
  .empty-state-card,
  .faq-item,
  .care-library-card
):hover {
  transform: translateY(-6px);
  border-color: rgba(17, 37, 30, 0.18);
  box-shadow: var(--shadow-strong);
}

:is(
  .editorial-panel,
  .meeting-feature,
  .meeting-side-panel,
  .benefit-card,
  .simple-card,
  .fact-card,
  .care-preview-card,
  .event-card,
  .event-list-card,
  .membership-card,
  .pillar-card,
  .empty-state-card,
  .faq-item,
  .care-library-card
):hover::after {
  opacity: 1;
}

.leadership-feature-shell {
  align-items: stretch;
}

.leadership-preview-grid,
.board-officer-grid,
.board-trustee-grid {
  align-content: start;
}

.leadership-teaser-card,
.board-officer-card,
.board-trustee-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 232, 0.82)),
    radial-gradient(circle at top right, rgba(185, 146, 79, 0.08), transparent 28%);
}

.leadership-teaser-card::before,
.board-officer-card::before,
.board-trustee-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(54, 86, 70, 0.92), rgba(185, 146, 79, 0.7));
}

.leadership-teaser-card > *,
.board-officer-card > *,
.board-trustee-card > * {
  position: relative;
  z-index: 1;
}

.leadership-teaser-card h3,
.board-officer-card h3,
.board-trustee-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--forest-900);
}

.board-trustee-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.board-officer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-trustee-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restoration-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: start;
}

.restoration-montage {
  display: grid;
  gap: 1rem;
}

.montage-primary {
  position: relative;
  min-height: 27rem;
}

.montage-primary figcaption,
.montage-card figcaption,
.gallery-teaser-card figcaption {
  font-size: 0.96rem;
  color: var(--muted);
}

.montage-primary figcaption,
.montage-card figcaption {
  padding-top: 0.7rem;
}

.montage-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.montage-card img {
  aspect-ratio: 1 / 1;
}

.meeting-page-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: start;
}

.meeting-feature,
.empty-state-card {
  display: grid;
  gap: 1rem;
}

.meeting-date {
  margin: 0;
  font-weight: 800;
  color: var(--forest-900);
}

.event-topic {
  margin: 0;
  font-weight: 700;
  color: var(--forest-950);
}

.meeting-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 0;
}

.meeting-detail-grid dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-700);
}

.meeting-detail-grid dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.meeting-side-panel ul,
.list-columns ul,
.editorial-panel ul,
.faq-list,
.stacked-form,
.inline-form,
.contact-lines {
  margin: 0;
  padding: 0;
}

.article-section + .article-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-section h3 {
  margin-bottom: 0.75rem;
}

.cta-stack {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0;
}

.map-card {
  overflow: hidden;
  min-height: 24rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.global-cta-band {
  padding-top: 0;
}

.global-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2.35rem;
  border: 1px solid rgba(17, 37, 30, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(185, 146, 79, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(17, 37, 30, 0.97), rgba(31, 54, 44, 0.96));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.global-cta-shell .eyebrow,
.global-cta-shell p,
.global-cta-shell h2 {
  color: inherit;
}

.meeting-side-panel ul,
.list-columns ul,
.editorial-panel ul {
  padding-left: 1.1rem;
}

.benefit-grid,
.simple-card-grid,
.fact-grid,
.event-grid,
.event-list-grid,
.care-preview-grid,
.membership-grid,
.pillar-grid {
  display: grid;
  gap: 1rem;
}

.benefit-grid,
.simple-card-grid,
.fact-grid,
.event-grid,
.membership-grid,
.pillar-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-list-grid,
.care-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.54), transparent 35%),
    linear-gradient(135deg, rgba(185, 146, 79, 0.28), rgba(106, 57, 83, 0.22));
}

.feature-slab,
.featured-grower-grid,
.newsletter-shell,
.membership-banner-shell,
.form-layout,
.list-columns,
.two-column-text,
.footer-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.feature-image img,
.featured-grower-image img {
  min-height: 31rem;
}

.gallery-teaser-grid,
.masonry-grid {
  display: grid;
  gap: 1rem;
}

.meeting-place-layout {
  align-items: stretch;
}

.meeting-place-layout > .editorial-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.meeting-place-facts {
  align-content: stretch;
  grid-auto-rows: minmax(0, 1fr);
}

.meeting-place-facts .fact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.gallery-teaser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-teaser-card {
  padding: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-teaser-card img {
  aspect-ratio: 1 / 1;
}

.gallery-teaser-card figcaption {
  padding: 1.2rem 1.15rem 1.25rem;
  display: grid;
  gap: 0.42rem;
}

.gallery-teaser-card span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-700);
}

.gallery-teaser-card strong {
  font-weight: 600;
  color: var(--charcoal);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  border: 1px solid rgba(17, 37, 30, 0.12);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-950);
  font-weight: 800;
  transition:
    transform 180ms var(--ease-fluid),
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.filter-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 37, 30, 0.2);
  box-shadow: 0 12px 24px rgba(17, 37, 30, 0.08);
}

.filter-chip.active {
  background: var(--forest-950);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 37, 30, 0.16);
}

.filter-chip-muted {
  background: rgba(255, 255, 255, 0.48);
}

.filter-row-compact {
  gap: 0.55rem;
}

.event-list-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 2.35rem 2rem 2.05rem;
  border-radius: 30px;
  border-color: rgba(17, 37, 30, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.96)),
    radial-gradient(circle at top right, rgba(185, 146, 79, 0.08), transparent 30%);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event-list-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(54, 86, 70, 0.92), rgba(185, 146, 79, 0.84));
  opacity: 0.88;
  transition: opacity 220ms ease, filter 220ms ease;
}

.event-list-card::after {
  content: "";
  position: absolute;
  right: -0.4rem;
  bottom: -0.55rem;
  width: 10.5rem;
  height: 10.5rem;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' fill='none'%3E%3Cg stroke='%236a3953' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M78 144c2-16 4-33 11-48 6-12 15-22 30-31'/%3E%3Cpath d='M88 64c-10 9-14 18-10 28 13-2 22-8 27-20-6-7-12-9-17-8Z'/%3E%3Cpath d='M111 51c-9 1-15 6-17 16 9 3 17 1 24-6-1-6-4-10-7-10Z'/%3E%3Cpath d='M64 80c3-11-1-20-12-28-6 7-7 16-3 25 7 4 12 5 15 3Z'/%3E%3Cpath d='M104 83c8-10 18-14 32-12-1 12-8 21-20 27-8-2-12-7-12-15Z'/%3E%3Cpath d='M82 94c-6-11-15-17-28-18 0 12 5 22 17 30 8-1 12-5 11-12Z'/%3E%3Cpath d='M77 109c-12 1-22 6-30 17 9 7 20 9 32 5 4-9 3-16-2-22Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.045;
}

.event-list-card > * {
  position: relative;
  z-index: 1;
}

.event-list-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.95rem, 5vw, 4.45rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #1f3a2d;
  transition: color 220ms ease;
}

.event-list-card .event-date {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(126, 112, 52, 0.9);
}

.event-list-card .event-topic {
  margin: -0.45rem 0 0.15rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.34rem, 2.05vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
  color: var(--plum);
}

.event-venue {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-top: 0.45rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(17, 37, 30, 0.08);
  color: rgba(26, 29, 24, 0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}

.event-venue-icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.14rem;
  border-radius: 999px;
  background-color: rgba(185, 146, 79, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s6-5.94 6-11a6 6 0 1 0-12 0c0 5.06 6 11 6 11Z' stroke='%23183127' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='2.35' stroke='%23183127' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem 0.8rem;
}

.event-venue-lines {
  display: grid;
  gap: 0.08rem;
}

.event-venue-lines span {
  display: block;
}

.event-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(106, 57, 83, 0.14);
  box-shadow: var(--shadow-strong);
}

.event-list-card:hover::before {
  opacity: 1;
  filter: saturate(1.06) brightness(1.06);
}

.event-list-card:hover h3 {
  color: var(--plum);
}

.library-toolbar {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 2vw, 1.9rem);
  border: 1px solid rgba(17, 37, 30, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.94)),
    radial-gradient(circle at top left, rgba(185, 146, 79, 0.12), transparent 34%);
  box-shadow: var(--shadow);
}

.library-toolbar-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 48rem;
}

.library-toolbar-copy h2,
.library-toolbar-copy p {
  margin: 0;
}

.search-field,
.stacked-form label,
.inline-form label {
  display: grid;
  gap: 0.45rem;
}

.search-field span,
.stacked-form span,
.inline-form span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--forest-950);
}

.search-helper,
.library-empty-state {
  margin: -0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(26, 29, 24, 0.72);
}

.library-empty-state {
  padding: 0.95rem 1rem;
  border: 1px dashed rgba(17, 37, 30, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  border: 1px solid rgba(17, 37, 30, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.care-library-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.care-library-card {
  display: grid;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.care-library-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 37, 30, 0.18);
  box-shadow: var(--shadow-strong);
}

.care-library-copy {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  height: 100%;
  padding: 1.45rem;
}

.care-library-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.care-library-fit {
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 37, 30, 0.08);
  color: var(--forest-950);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-library-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.care-library-summary {
  margin: 0;
  color: var(--muted);
}

.resource-actions {
  margin-top: 1.1rem;
}

.fact-grid {
  margin-top: 1.25rem;
}

.membership-dues-action {
  margin-top: 1.75rem;
}

.fact-card {
  display: grid;
  gap: 0.45rem;
}

.fact-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.fact-card p {
  margin: 0;
}

.fact-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.care-library-body p,
.care-author,
.related-tags span,
.related-tags li,
.contact-lines p,
.footer-links p,
.footer-links a,
.social-links a {
  color: var(--muted);
}

.related-tags ul {
  padding-left: 1.05rem;
}

.masonry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.masonry-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow);
}

.masonry-card img {
  aspect-ratio: 1 / 1.1;
}

.masonry-card span {
  display: block;
  padding: 0.95rem 1rem 1rem;
  font-weight: 700;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.15rem 1.2rem;
}

.faq-item + .faq-item {
  margin-top: 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--forest-950);
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.faq-item[open] {
  border-color: rgba(17, 37, 30, 0.18);
  box-shadow: var(--shadow-strong);
}

.inline-form,
.stacked-form {
  display: grid;
  gap: 1rem;
}

.two-column-field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-group {
  display: grid;
  gap: 0.75rem;
}

.checkbox-group legend {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--forest-950);
}

.stacked-form .checkbox-option,
.inline-form .checkbox-option,
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 37, 30, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.stacked-form .checkbox-option input,
.inline-form .checkbox-option input,
.checkbox-option input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.18rem 0 0;
  padding: 0;
  border-radius: 0.22rem;
}

.checkbox-option span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.bot-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--forest-900);
}

.form-status.error {
  color: #7b2020;
}

.table-scroll {
  overflow-x: auto;
}

.program-table {
  width: 100%;
  border-collapse: collapse;
}

.program-table th,
.program-table td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(17, 37, 30, 0.12);
  text-align: left;
}

.lightbox {
  width: min(90vw, 980px);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(10, 16, 13, 0.95);
}

.lightbox::backdrop {
  background: rgba(5, 9, 7, 0.74);
}

.lightbox img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 18px;
}

.lightbox-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}

.lightbox-close button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
}

.site-footer {
  padding: 92px 5vw 34px;
  background:
    radial-gradient(circle at top right, rgba(185, 146, 79, 0.12), transparent 24%),
    linear-gradient(180deg, #11251e 0%, #173128 68%, #132820 100%);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer-grid {
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1.25rem;
  max-width: 26rem;
}

.footer-logo {
  display: inline-block;
  width: 208px;
}

.footer-logo img {
  display: block;
  width: 208px;
  height: auto;
  object-fit: contain;
}

.footer-brand-copy {
  display: grid;
  gap: 0.9rem;
}

.footer-established {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.footer-column h2,
.footer-brand h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  line-height: 0.98;
}

.footer-links {
  display: grid;
  gap: 0.85rem;
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta p,
.footer-links a,
.footer-links p,
.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a {
  width: fit-content;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.92);
}

.page-intro-centered {
  text-align: center;
  padding: 6.6rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 520ms var(--ease-fluid),
    transform 520ms var(--ease-fluid);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes ambientDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2.5%, -3.5%, 0) scale(1.06);
  }
}

@keyframes heroPan {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-1.2%, 1.2%, 0);
  }
}

@media (max-width: 1320px) {
  .nav-shell {
    width: min(calc(100% - 1.25rem), 1280px);
    padding-inline: 1rem;
    gap: 1.2rem;
  }

  .site-nav {
    gap: 0.95rem;
  }

  .main-nav {
    gap: 0.82rem;
  }

  .nav-link {
    font-size: 0.76rem;
    letter-spacing: 0.085em;
  }

  .nav-join {
    min-width: 148px;
    padding-inline: 0.88rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 1.35rem;
    padding-inline: 1.25rem;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .main-nav {
    gap: 1.15rem;
  }

  .nav-link {
    font-size: 0.84rem;
  }

  .hero-shell,
  .page-intro-grid,
  .intro-split,
  .restoration-layout,
  .meeting-page-grid,
  .feature-slab,
  .featured-grower-grid,
  .newsletter-shell,
  .membership-banner-shell,
  .form-layout,
  .two-column-text,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .montage-secondary,
  .benefit-grid,
  .simple-card-grid,
  .board-officer-grid,
  .board-trustee-grid,
  .event-grid,
  .event-list-grid,
  .care-preview-grid,
  .gallery-teaser-grid,
  .masonry-grid,
  .care-library-grid,
  .membership-grid,
  .pillar-grid,
  .list-columns {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mark {
    justify-content: flex-start;
  }

  .two-column-field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .main-nav {
    gap: 0.95rem;
  }

  .nav-link {
    font-size: 0.79rem;
  }

  .nav-join {
    min-width: 158px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .legal-document {
    padding: 2.45rem 0 3rem;
  }

  .legal-header {
    padding-bottom: 1.1rem;
  }

  .legal-section {
    padding: 1.1rem 0 1.2rem;
  }

  .nav-shell {
    min-height: 6rem;
    padding: 0.65rem 1rem;
    grid-template-columns: auto auto;
    gap: 1rem;
  }

  .site-logo img {
    width: 78px;
    height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(17, 37, 30, 0.09);
    border-radius: 22px;
    background: rgba(252, 250, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }

  .nav-link::after {
    bottom: 0.3rem;
  }

  .nav-join-mobile {
    display: inline-flex;
    width: 100%;
    max-width: none;
  }

  .nav-join-desktop {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    padding: 5.75rem 0 3.5rem;
  }

  .hero-copy h1,
  .page-intro-copy h1 {
    max-width: none;
  }

  .hero-logo {
    width: min(240px, 62vw);
  }

  .intro-photo-stack,
  .montage-secondary,
  .benefit-grid,
  .simple-card-grid,
  .fact-grid,
  .board-officer-grid,
  .board-trustee-grid,
  .event-grid,
  .event-list-grid,
  .care-preview-grid,
  .gallery-teaser-grid,
  .masonry-grid,
  .care-library-grid,
  .membership-grid,
  .pillar-grid,
  .list-columns,
  .meeting-detail-grid {
    grid-template-columns: 1fr;
  }

  .feature-image img,
  .featured-grower-image img,
  .montage-primary {
    min-height: 18rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .global-cta-shell {
    grid-template-columns: 1fr;
  }

  .event-list-card {
    gap: 1rem;
    padding: 1.95rem 1.45rem 1.7rem;
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
