/* ============================================================
   Friends of the Shawnee National Forest — Redesign Mockup
   Palette drawn from the Friends logo + Shawnee photography:
   olive/forest green, sandstone rust, sunset gold, warm cream.
   Mobile-first: base styles target phones; min-width queries
   layer up to tablet (768px) and desktop (1024px+).
   ============================================================ */

:root {
  /* Brand palette */
  --green-900: #222b14;
  --green-800: #2e3a1c;
  --green-700: #3d4a26;
  --green-600: #4d5c30;
  --green-500: #5f6f3d;
  --olive: #5b5b22;          /* logo olive */
  --sandstone: #b3653d;      /* bluff rust */
  --sandstone-dark: #94502e;
  --gold: #dfa23a;           /* sunset gold */
  --gold-soft: #f0c87e;
  --mist: #6d7f8a;           /* misty blue-gray */
  --cream: #faf6ee;          /* page background */
  --cream-deep: #f2ead9;     /* section bands */
  --paper: #fffdf8;          /* card surfaces */
  --bark: #33302a;           /* body text */
  --bark-soft: #5d574c;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, Segoe UI, sans-serif;

  /* Shape + motion */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(46, 58, 28, 0.25);
  --shadow-lift: 0 22px 44px -16px rgba(46, 58, 28, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 68px;
  --demo-h: 30px;
  --header-total: calc(var(--header-h) + var(--demo-h));
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sandstone); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sandstone-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-800);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 7vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

section { position: relative; }
.section { padding-block: 56px; }
@media (min-width: 768px) { .section { padding-block: 84px; } }
.section--band { background: var(--cream-deep); }
.section--green { background: var(--green-800); }
.section--green h2, .section--green h3 { color: var(--cream); }
.section--green p { color: rgba(250, 246, 238, 0.85); }

/* Section headers */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sandstone);
  margin-bottom: .8em;
}
.section--green .eyebrow { color: var(--gold-soft); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.08rem; color: var(--bark-soft); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-800); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--green-700); color: #fff; }
.btn--primary:hover { background: var(--green-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-soft); color: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sandstone { background: var(--sandstone); color: #fff; }
.btn--sandstone:hover { background: var(--sandstone-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn--outline:hover { background: var(--green-700); color: #fff; }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.75); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn--block { width: 100%; }
.btn--nav { min-height: 42px; padding: 8px 20px; font-size: .9rem; }

/* ---------- Demo banner ---------- */
.demo-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--demo-h);
  padding-inline: 12px;
  background: var(--green-800, #2e3a1c);
  color: rgba(250, 246, 238, .92);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-bar-text--long { display: none; }
@media (min-width: 640px) {
  .demo-bar-text--long { display: inline; }
  .demo-bar-text--short { display: none; }
}
.demo-bar-badge {
  background: var(--gold);
  color: var(--green-800, #2e3a1c);
  font-weight: 700;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(46,58,28,.08);
  transition: background .3s, box-shadow .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  padding-inline: 18px;
  max-width: 1280px;
  margin-inline: auto;
}
.brand-logo { height: 46px; width: auto; }
.brand-logo--cream { display: none; }
.site-header--hero:not(.scrolled) .brand-logo--green { display: none; }
.site-header--hero:not(.scrolled) .brand-logo--cream { display: block; }

/* transparent over home hero until scrolled */
.site-header--hero:not(.scrolled) {
  background: linear-gradient(rgba(34,43,20,.45), transparent);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header--hero:not(.scrolled) .nav-list > li > a { color: #fff; }
.site-header--hero:not(.scrolled) .nav-list > li > a:hover,
.site-header--hero:not(.scrolled) .nav-list > li > a.active { color: var(--gold-soft); }
.site-header--hero:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header--hero:not(.scrolled) .brand-logo--cream { filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }

.main-nav { display: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--green-800); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; align-items: center; gap: 18px; }
  .nav-list {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
  }
  .nav-list > li { position: relative; }
  .nav-list > li > a {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 10px 12px;
    font-size: .92rem; font-weight: 500;
    color: var(--green-800);
    border-radius: 8px;
  }
  .nav-list > li > a:hover, .nav-list > li > a.active { color: var(--sandstone); }
  .caret {
    width: 7px; height: 7px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }
  .dropdown {
    position: absolute; top: calc(100% + 6px); left: 0;
    min-width: 210px;
    background: var(--paper);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lift);
    list-style: none; margin: 0; padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a {
    display: block; padding: 10px 14px;
    color: var(--bark); font-size: .92rem; border-radius: 8px;
  }
  .dropdown a:hover { background: var(--cream-deep); color: var(--green-800); }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: var(--header-total) 0 0 0;
  z-index: 99;
  background: var(--cream);
  overflow-y: auto;
  padding: 18px 22px 40px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list > li { border-bottom: 1px solid rgba(46,58,28,.1); }
.mobile-nav-list a, .mobile-group-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  font-family: var(--font-body);
  font-size: 1.08rem; font-weight: 500;
  color: var(--green-800);
  background: none; border: 0; cursor: pointer; text-align: left;
}
.mobile-group-toggle .caret {
  width: 9px; height: 9px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s;
}
.mobile-group-toggle[aria-expanded="true"] .caret { transform: rotate(225deg); }
.mobile-sub {
  list-style: none; margin: 0; padding: 0 0 8px 16px;
  display: none;
}
.mobile-group.open .mobile-sub { display: block; }
.mobile-sub a { font-size: .98rem; padding: 11px 4px; color: var(--bark-soft); }
.mobile-menu-cta { display: grid; gap: 12px; margin-top: 24px; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.05);
  animation: heroDrift 18s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,43,20,.25) 0%, rgba(34,43,20,.1) 40%, rgba(34,43,20,.78) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 22px 96px;
  max-width: 1180px; margin-inline: auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 9vw, 4.4rem); max-width: 14ch; margin-bottom: .35em; }
.hero-sub {
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: rgba(255,255,255,.92);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute; z-index: 2;
  left: 50%; bottom: 26px; transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: none;
}
@media (min-width: 768px) {
  .hero { align-items: center; }
  .hero-content { padding-bottom: 40px; }
  .hero-scroll { display: block; animation: bob 2.4s ease-in-out infinite; }
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-total) + 64px) 0 84px;
  background: var(--green-800);
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .35;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,43,20,.5), rgba(34,43,20,.75));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 60ch; font-size: 1.05rem; margin: 0; }
.page-hero .eyebrow { color: var(--gold-soft); }

/* Wave divider */
.wave { display: block; width: 100%; height: 42px; margin-top: -1px; }
@media (min-width: 768px) { .wave { height: 70px; } }
.wave--flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* ---------- Cards & grids ---------- */
.card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-body { padding: 22px; }
.card-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.grid { display: grid; gap: 22px; }
@media (min-width: 768px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Feature (icon) cards */
.feature-card { text-align: left; padding: 26px 24px; }
.feature-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--cream-deep);
  color: var(--green-700);
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: .35em; }
.feature-card p { color: var(--bark-soft); font-size: .96rem; margin-bottom: 14px; }
.text-link {
  font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.text-link::after { content: "\2192"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(250,246,238,.8); margin-top: 8px; }
.section:not(.section--green) .stat-number { color: var(--sandstone); }
.section:not(.section--green) .stat-label { color: var(--bark-soft); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin: 40px 0 0; padding-left: 26px; list-style: none; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2.5px; background: linear-gradient(var(--sandstone), var(--green-600));
  border-radius: 2px;
}
.timeline li { position: relative; padding-bottom: 30px; }
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream); border: 3.5px solid var(--sandstone);
}
.timeline-year { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--green-700); }
.timeline p { color: var(--bark-soft); margin: 4px 0 0; font-size: .98rem; }
@media (min-width: 768px) {
  .timeline { padding-left: 0; }
  .timeline::before { left: 50%; transform: translateX(-50%); }
  .timeline li { width: 50%; padding-inline: 40px; }
  .timeline li:nth-child(odd) { text-align: right; margin-left: 0; }
  .timeline li:nth-child(odd)::before { left: auto; right: -8px; }
  .timeline li:nth-child(even) { margin-left: 50%; }
  .timeline li:nth-child(even)::before { left: -8px; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 0; padding: 0; background: none;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(34,43,20,.85));
  color: #fff;
  font-size: .9rem; font-weight: 500;
  text-align: left;
  display: flex; flex-direction: column; gap: 2px;
}
.gallery-tag {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-soft);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(24, 28, 15, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 78svh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-size: .95rem; padding-inline: 60px; }
.lightbox-btn {
  position: absolute; z-index: 2;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff; font-size: 1.5rem; line-height: 1;
  border: 0; border-radius: 50%; cursor: pointer;
  transition: background .2s;
}
.lightbox-btn:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid--2 .form-field--full { grid-column: 1 / -1; } }
.form-field label {
  display: block;
  font-size: .88rem; font-weight: 600;
  color: var(--green-800);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  font: inherit;
  color: var(--bark);
  background: var(--cream);
  border: 1.5px solid rgba(46,58,28,.18);
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3.5px rgba(95, 111, 61, .18);
}
.checkbox-row { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.checkbox-row label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .95rem; font-weight: 500; color: var(--bark);
  min-height: 44px;
  cursor: pointer;
}
.checkbox-row input { width: 20px; height: 20px; accent-color: var(--green-700); }
.form-success {
  display: none;
  text-align: center;
  padding: 34px 18px;
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-size: 1.6rem;
}
.demo-note { font-size: .82rem; color: var(--bark-soft); text-align: center; margin-top: 14px; }

/* ---------- Membership tiers ---------- */
.tier-card { display: flex; flex-direction: column; text-align: center; padding: 30px 24px; }
.tier-card:hover { transform: translateY(-6px); }
.tier-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-800); }
.tier-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--sandstone); margin: 6px 0 2px; }
.tier-per { font-size: .85rem; color: var(--bark-soft); }
.tier-list { list-style: none; padding: 0; margin: 18px 0 22px; text-align: left; flex: 1; }
.tier-list li { padding: 7px 0 7px 26px; position: relative; font-size: .95rem; color: var(--bark-soft); }
.tier-list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--green-600); border-bottom: 2.5px solid var(--green-600);
  transform: rotate(-45deg);
}
.tier-card--featured { border: 2.5px solid var(--gold); position: relative; overflow: visible; margin-top: 14px; }
.tier-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-900);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

/* ---------- Events / calendar ---------- */
.event-card { display: flex; gap: 18px; padding: 20px; align-items: flex-start; }
.event-date {
  flex-shrink: 0;
  width: 66px;
  text-align: center;
  background: var(--green-700); color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 6px;
}
.event-date .month { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
.event-date .day { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; line-height: 1.1; }
.event-meta { font-size: .84rem; color: var(--bark-soft); display: flex; flex-wrap: wrap; gap: 4px 14px; margin-bottom: 6px; }
.event-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.event-card p { font-size: .94rem; color: var(--bark-soft); margin: 0 0 8px; }

.calendar { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; overflow: hidden; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.calendar-title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--green-800); }
.calendar-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(46,58,28,.2); background: none;
  color: var(--green-700); font-size: 1.1rem; cursor: pointer;
}
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-dow { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: var(--bark-soft); text-transform: uppercase; padding: 6px 0; }
.calendar-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: .88rem;
  border-radius: 10px;
  color: var(--bark);
  position: relative;
}
.calendar-day.dim { color: rgba(93,87,76,.4); }
.calendar-day.has-event { background: var(--cream-deep); font-weight: 700; color: var(--green-800); cursor: pointer; }
.calendar-day.has-event::after {
  content: ""; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--sandstone);
}
.calendar-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; font-size: .82rem; color: var(--bark-soft); }
.legend-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--sandstone); margin-right: 6px; }

/* ---------- Store ---------- */
.product-card { text-align: left; display: flex; flex-direction: column; }
.product-img {
  aspect-ratio: 1;
  display: grid; place-items: center;
  background: var(--cream-deep);
  color: var(--green-600);
}
.product-body { padding: 18px 18px 22px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.product-name { font-weight: 600; color: var(--green-800); font-size: 1.02rem; margin: 0; font-family: var(--font-body); }
.product-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--sandstone); }
.product-body .btn { margin-top: auto; }

/* ---------- Board ---------- */
.board-card { text-align: center; }
.board-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center 20%; }
.board-photo--initials {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 700;
}
.board-role { color: var(--sandstone); font-weight: 600; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; }
.board-bio { font-size: .93rem; color: var(--bark-soft); }

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 600;
  color: var(--green-800); text-align: left;
  min-height: 56px;
}
.faq-q .caret {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--sandstone); border-bottom: 2.5px solid var(--sandstone);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q .caret { transform: rotate(225deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--bark-soft); }

/* ---------- Blog ---------- */
.post-card .card-img { aspect-ratio: 16 / 9; }
.post-meta { font-size: .82rem; color: var(--bark-soft); display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.post-tag {
  background: var(--cream-deep); color: var(--green-700);
  font-weight: 600; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
}

/* ---------- Split layout ---------- */
.split { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 60px; } .split--rev > :first-child { order: 2; } }
.split-img { border-radius: var(--radius); box-shadow: var(--shadow-lift); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Facts strip ---------- */
.facts { display: grid; gap: 16px; margin-top: 8px; }
.fact {
  background: var(--paper);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  box-shadow: var(--shadow);
  font-size: .97rem;
  line-height: 1.6;
  color: var(--bark-soft);
}
.fact strong { color: var(--green-800); display: block; font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 4px; }

/* ---------- Link list ---------- */
.link-list {
  display: grid; gap: 12px;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 700px) { .link-list { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; } }
.link-list li {
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.link-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--green-800);
}
.link-list a::after { content: '\2197'; margin-left: auto; color: var(--gold); }
.link-list a:hover { color: var(--rust); }

/* ---------- Partner spotlight ---------- */
.partner-spotlight { max-width: 480px; margin-inline: auto; }
.partner-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin: 4px auto 14px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--green-700);
}
.partner-spotlight h2 { margin-bottom: 8px; }
.partner-spotlight p { margin-bottom: 20px; }

/* ---------- Supporters ---------- */
.supporters {
  display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center;
  list-style: none; margin: 26px 0 0; padding: 0;
}
.supporters li {
  background: rgba(255,255,255,.1);
  color: var(--cream);
  border: 1px solid rgba(250,246,238,.22);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .9rem;
}

/* ---------- Pre-footer & footer ---------- */
.pre-footer { background: linear-gradient(135deg, var(--green-800), var(--green-600)); color: #fff; padding-block: 48px; }
.pre-footer-inner { display: grid; gap: 24px; }
.pre-footer-title { color: #fff; margin-bottom: .3em; }
.pre-footer p { color: rgba(250,246,238,.85); margin: 0; }
.pre-footer-actions { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
@media (min-width: 900px) {
  .pre-footer-inner { grid-template-columns: 1.4fr 1fr; align-items: center; }
  .pre-footer-actions { justify-content: flex-end; }
}

.site-footer { background: var(--green-900); color: rgba(250,246,238,.82); font-size: .94rem; }
.footer-grid { display: grid; gap: 34px; padding-block: 52px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }
.footer-logo { height: 58px; width: auto; margin-bottom: 16px; }
.footer-mission { font-size: .9rem; line-height: 1.6; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(250,246,238,.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 14px;
  font-size: .74rem; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold-soft);
}
.footer-col h3 {
  color: #fff; font-family: var(--font-body);
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(250,246,238,.82); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact address { font-style: normal; margin-bottom: 10px; }
.footer-email { display: inline-block; margin-bottom: 16px; color: var(--gold-soft); word-break: break-all; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--cream);
  transition: background .2s, transform .2s;
}
.social-links a:hover { background: var(--sandstone); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(250,246,238,.14); padding-block: 20px; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 6px 26px; justify-content: space-between; font-size: .8rem; color: rgba(250,246,238,.55); }
.footer-bottom p { margin: 0; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > :nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > :nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > :nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > :nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > :nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.notice-banner {
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: space-between;
  background: var(--cream-deep);
  border: 1.5px dashed var(--sandstone);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.notice-banner p { margin: 0; font-size: .97rem; }
.error-hero { min-height: 70svh; display: grid; place-items: center; text-align: center; padding-top: var(--header-total); }
