/* ==========================================================================
   Boynton Beach Garden Club — shared stylesheet
   Extracted from index-b.html mockup. Every page links this file.
   Edit colors and fonts in :root below — changes apply site-wide.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:       #1C3220;
  --forest-mid:   #2C4A2E;
  --forest-light: #3D6642;
  --cream:        #F5F0E8;
  --gold:         #C9A84C;   /* bright gold — use on FOREST/dark only */
  --gold-dark:    #5E4714;   /* deep gold — AAA on cream & warm-white */
  --gold-light:   #E8D08A;
  --warm-white:   #FDFAF5;
  --charcoal:     #1A1A1A;
  --body-text:    #1F1F1F;   /* near-black body copy */
  --mid-gray:     #333333;   /* dark, not gray — readability first */
  --rule:         #DDD8CC;
  --serif:        'Fraunces', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--body-text);
  background: var(--warm-white);
  font-size: 18px;
  line-height: 1.75;
}

/* Skip link — keyboard users land here first */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--forest);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── SHARED ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  display: block;
}

/* ── Labels on DARK sections use bright gold (gold-dark is for light bgs only) ── */
.pillars .section-label,
.quotes-label,
.quotes .section-label,
.facebook-bar .section-label,
.presidents-message.on-forest .section-label {
  color: var(--gold-light) !important;
}


h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.18;
  margin-bottom: 1.3rem;
}

/* ── NAV ── */
nav {
  background: var(--forest);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  /* Never let the link row squeeze the logo — that's what wrapped the club
     name onto a second line and dropped "FL" onto a third on tablets. */
  flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-white);
  display: block;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo-text span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Current page marker */
.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.nav-links a.nav-cta[aria-current="page"] { border-bottom: none; padding-bottom: 0.5rem; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--forest) !important;
  padding: 0.5rem 1.3rem;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile menu toggle — CSS only, no JavaScript */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.6rem;
  margin-right: -0.6rem;
  align-items: center;
  gap: 0.55rem;
}
.nav-toggle-label::before {
  content: 'Menu';
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  order: 2;
}
.nav-toggle:checked ~ .nav-toggle-label::before { content: 'Close'; }
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--warm-white);
  height: 2px;
  width: 24px;
  position: relative;
  transition: all 0.25s ease;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}
.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after  { top: 7px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--warm-white);
  margin-left: 1rem;
}
.btn-ghost:hover { border-color: var(--warm-white); background: rgba(255,255,255,0.08); }
.btn-forest { background: var(--forest); color: var(--warm-white); }
.btn-forest:hover { background: var(--forest-light); }
.btn-forest-outline {
  border: 1.5px solid var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-forest-outline:hover { background: var(--forest); color: var(--warm-white); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute;
  inset: -60px 0;
  background-image:
    linear-gradient(to bottom, rgba(20,45,22,0.6) 0%, rgba(20,45,22,0.75) 100%),
    url('../images/pink-flowers.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 2rem;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.6);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.08;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero h1 strong {
  font-style: normal;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.85;
}

/* ── INTERIOR PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--forest);
  padding: 4rem 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.85;
}

/* ── INTRO STRIP (stats) ── */
.intro-strip {
  background: var(--cream);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
}
.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 820px;
}
.intro-stat {
  padding: 0.35rem 1rem;
  border-right: 1px solid var(--rule);
  text-align: center;
}
.intro-stat:last-child { border-right: none; }
.intro-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.intro-stat span {
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ── ABOUT / SPLIT SECTIONS ── */
.about {
  background: var(--warm-white);
  padding: 5rem 0;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-text p {
  color: var(--mid-gray);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  font-weight: 400;
}
.about-text p:last-of-type { margin-bottom: 2rem; }

/* Reversed split — image on the right */
.about.reverse .about-img { order: 2; }
.about.reverse .about-text { order: 1; }

/* Light-cream variant of the split section */
.about.on-cream { background: var(--cream); }

/* ── PILLARS (dark section) ── */
.pillars .section-label { color: var(--gold); }   /* bright gold is fine on forest */

.pillars {
  background: var(--forest);
  padding: 5rem 0;
}
.pillars-header { text-align: center; max-width: 580px; margin: 0 auto 3.5rem; }
.pillars-header h2 { color: var(--warm-white); }
.pillars-header .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 300;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  position: relative;
}
.pillar-accent {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.8rem;
}
.pillar p { font-size: 0.92rem; color: rgba(255,255,255,0.96); font-weight: 400; line-height: 1.8; }

/* ── GARDENS (light section) ── */
.gardens {
  background: var(--cream);
  padding: 5rem 0;
}
.gardens-header {
  max-width: 100%;
  margin: 0 auto 3rem;
  text-align: center;
}
.gardens-header h2 { max-width: 800px; margin-left: auto; margin-right: auto; }
.gardens-header p {
  color: var(--body-text);
  font-weight: 400;
  font-size: 1.05rem;
  margin: 1rem auto 0;
  max-width: 760px;
}
.gardens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.garden-card { background: var(--warm-white); overflow: hidden; }
.garden-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.garden-card-body { padding: 2rem; }
.garden-card-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.garden-card-body address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.garden-card-body p { font-size: 0.92rem; color: var(--mid-gray); margin-bottom: 1rem; font-weight: 400; }
.garden-schedule {
  display: inline-block;
  background: var(--forest);
  color: var(--warm-white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
}

/* ── PROOF / SIGNAGE CARDS ── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.proof-card {
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 1.5rem;
}
.proof-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: var(--cream);
  display: block;
  margin-bottom: 1.2rem;
}
.proof-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.proof-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin: 0;
}
.cert-detail {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem;
  margin-top: 0.9rem;
}

/* ── QUOTES (dark section) ── */
.quotes {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.quotes-bg {
  position: absolute;
  inset: -60px 0;
  background-image:
    linear-gradient(rgba(20,45,22,0.88), rgba(20,45,22,0.92)),
    url('../images/monarch-butterfly.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.quotes-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.quotes-label { color: rgba(255,255,255,0.92); margin-bottom: 3rem; display: block; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.quote-card {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.4);
}
.quote-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.quote-card cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  line-height: 1.6;
}

/* ── MEMBERSHIP CTA (light section) ── */
.membership-cta {
  background: var(--warm-white);
  padding: 5rem 0;
}
.membership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.membership-text h2 { margin-bottom: 1rem; }
.membership-text p { color: var(--mid-gray); font-weight: 400; font-size: 0.97rem; margin-bottom: 1.5rem; }
.dues-pill {
  display: inline-block;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  color: var(--forest);
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  font-size: 0.88rem;
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
}
.membership-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── FACEBOOK BAR ── */
.facebook-bar {
  background: var(--forest);
  padding: 3.5rem 0;
  text-align: center;
}
.facebook-bar .section-label { color: rgba(255,255,255,0.92); display: block; text-align: center; margin-bottom: 0.8rem; }
.facebook-bar h2 { color: var(--warm-white); margin-bottom: 0.8rem; }
.facebook-bar p { color: rgba(255,255,255,0.9); max-width: 460px; margin: 0 auto 1.8rem; font-size: 0.95rem; font-weight: 300; }
.btn-facebook {
  background: #1877F2;
  color: var(--warm-white);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.btn-facebook:hover { background: #166fe5; }

/* ══════════════════════════════════════════════════════════════
   INTERIOR PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── PROSE (body copy blocks) ── */
.prose { padding: 5rem 0; background: var(--warm-white); }
.prose.on-cream { background: var(--cream); }
.prose-narrow { max-width: 760px; margin: 0 auto; }
.prose h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest);
  margin: 2.5rem 0 0.8rem;
}
.prose p {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
}
.prose ul { list-style: none; margin: 1.2rem 0 1.8rem; }
.prose ul li {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 0.97rem;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.7rem;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.prose .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ── TICK LIST (reusable anywhere, not just inside .prose) ── */
.tick-list { list-style: none; margin: 1.2rem 0 2rem; }
.tick-list li {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 0.97rem;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.7rem;
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ── PILLAR EXAMPLES (real program/trip names inside a pillar card) ── */
.pillar-examples {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.pillar-examples ul { list-style: none; }
.pillar-examples li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.pillar-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.pillar-examples-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── PRESIDENT'S MESSAGE ── */
.presidents-message {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.presidents-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.presidents-message .presidents-theme {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--forest);
  line-height: 1.35;
  margin: 0.5rem 0 2rem;
  text-align: center;
}
.presidents-message .presidents-theme span {
  display: block;
  font-style: italic;
  font-size: 0.7em;
  color: var(--forest);
  margin-top: 0.3rem;
}
.presidents-rule {
  border: none;
  border-top: 1px solid var(--gold);
  width: 60px;
  margin: 0 auto 2rem;
}
.presidents-message .presidents-intro {
  text-align: center;
  margin-bottom: 0.5rem;
}
.presidents-message p {
  color: var(--body-text);
  font-weight: 400;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
  text-align: left;
}
.presidents-sig {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
  text-align: left;
}
.presidents-sig-text { line-height: 1.3; }
.presidents-sig strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.15rem;
}
.presidents-sig span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.presidents-sig .presidents-avatar {
  width: 52px;
  height: 52px;
  border-width: 1.5px;
}
@media (max-width: 500px) {
  .presidents-sig { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
}

/* ── PRESIDENT BYLINE (featured, top of message) ── */
.presidents-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 0.5rem 0 2.2rem;
}
.presidents-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  overflow: hidden;
}
.presidents-avatar img { width: 100%; height: 100%; object-fit: cover; }
.presidents-byline-text { text-align: left; }
.presidents-byline-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
}
.presidents-byline-role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.25rem;
}
@media (max-width: 500px) {
  .presidents-byline { flex-direction: column; gap: 0.8rem; text-align: center; }
  .presidents-byline-text { text-align: center; }
}

/* ── AFFILIATIONS ── */
.affiliations {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.affiliations-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.7rem;
}
.affiliations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.affiliations-list li {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 400;
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
}
.affiliations-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
}
.affiliations-list a {
  color: var(--forest-light);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s, border-color 0.2s;
}
.affiliations-list a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}
/* affiliation links inside prose paragraphs (About page) */
.prose p a {
  color: var(--forest-light);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s, border-color 0.2s;
}
.prose p a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

/* ── HISTORY MILESTONE TIMELINE ── */
.milestones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 2.5rem auto 3rem;
  border-top: 1px solid var(--gold);
}
.milestone {
  padding: 1.4rem 1rem 0;
  text-align: center;
  position: relative;
}
.milestone::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.milestone-year {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.milestone-label {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 400;
  line-height: 1.4;
}

/* ── HISTORY SECTION FEATURE TREATMENT ── */
.history-feature { background: var(--cream); }
.history-lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--forest);
  line-height: 1.5;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 0.5rem;
}
.history-founder {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2.5rem;
}

@media (max-width: 720px) {
  .milestones { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; border-top: none; }
  .milestone { border-top: 1px solid var(--gold); }
  .milestone:first-child { grid-column: 1 / -1; }
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 2rem;
  margin: 2.5rem 0;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.pull-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
}

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 1.35rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { color: var(--forest-light); }
.faq-answer { padding: 0 3rem 1.8rem 0; }
.faq-answer p {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: none; margin: 0.8rem 0; }
.faq-answer ul li {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 0.95rem;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.faq-answer a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--gold); }

/* ── EVENTS ── */
.event-list { max-width: 860px; margin: 0 auto; }
.event-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
}
.event-date {
  font-family: var(--serif);
  color: var(--forest);
  line-height: 1.2;
}
.event-date strong {
  display: block;
  font-size: 2rem;
  font-weight: 300;
}
.event-date span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.event-info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.event-info p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin: 0;
}
.event-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border: 1px solid var(--rule);
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}
.event-tag.is-meeting { border-color: var(--gold); color: var(--forest); }
.event-tag.is-special { border-color: var(--forest); background: var(--forest); color: var(--cream); }
.event-tag.is-district { border-color: var(--forest-light); color: var(--forest-light); }

/* "Add to calendar" link on each event row — sized as a comfortable tap target */
.event-add {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.35rem 0;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 71, 20, 0.4);
}
.event-add span { font-size: 1.05em; margin-right: 0.15rem; }
.event-add:hover, .event-add:focus {
  color: var(--forest);
  border-bottom-color: var(--forest);
  text-decoration: none;
}

/* speaker / program byline inside an event row */
.event-speaker {
  display: block;
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: 0.4rem;
}
.event-speaker strong { color: var(--forest); font-weight: 500; }
.event-tba {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* ── WORKDAY CARDS ── */
.workday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.workday-card {
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 2rem;
}
.workday-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.workday-card address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.workday-card .garden-schedule { margin-top: 0.5rem; }

/* ── DIRECTIONS LINK (opens Google Maps) ── */
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.directions-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.directions-link svg { flex-shrink: 0; }

/* ── NEWSLETTER ARCHIVE ── */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.issue-card {
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s;
}
.issue-card:hover { border-color: var(--gold); }
.issue-season {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.issue-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0;
}
.issue-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin: 0 0 0.8rem;
  flex-grow: 1;
}
.issue-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
}
.issue-link:hover { color: var(--gold); }

/* ── STEPS (numbered — used only where order matters) ── */
.steps { max-width: 760px; margin: 0 auto; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 0.4rem;
}
.step p {
  font-size: 0.94rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin: 0 0 0.8rem;
}
.step p:last-child { margin-bottom: 0; }
.step a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.step a:hover { color: var(--gold); }

/* ── COMMITTEE COLUMNS ── */
.committee-cols {
  columns: 3;
  column-gap: 2.5rem;
  max-width: 860px;
  margin: 1.5rem auto 0;
  list-style: none;
}
.committee-cols li {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 0.94rem;
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.6rem;
  break-inside: avoid;
}
.committee-cols li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-field .req { color: var(--gold-dark); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--body-text);
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 150px; line-height: 1.7; }
.form-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin-top: 1rem;
}
/* Honeypot — hidden from people, catches bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-aside { background: var(--cream); padding: 2.5rem; }
.contact-aside h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 0.6rem;
}
.contact-aside h3 + p { margin-top: 0; }
.contact-aside p,
.contact-aside address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin-bottom: 1.8rem;
  line-height: 1.75;
}
.contact-aside address:last-child,
.contact-aside p:last-child { margin-bottom: 0; }
.contact-aside a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.contact-aside a:hover { color: var(--gold); }
.contact-divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 1.8rem 0;
}

/* Form status messages */
.form-status {
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
  font-weight: 300;
}
.form-status.is-ok {
  background: var(--cream);
  border-left: 3px solid var(--forest-light);
  color: var(--forest);
}
.form-status.is-error {
  background: #FBEDED;
  border-left: 3px solid #B23B3B;
  color: #7A2626;
}

/* ── EDITOR NOTE — remove before launch ── */
.editor-note {
  background: #FFF8E1;
  border: 1px dashed var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 860px;
  font-size: 0.85rem;
  color: #6B5410;
  font-weight: 300;
  line-height: 1.7;
}
.editor-note strong {
  display: block;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.92);
  padding: 3rem;
  text-align: center;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 1.2rem; opacity: 0.85; }
footer strong {
  display: block;
  color: var(--warm-white);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
footer p { font-size: 0.85rem; line-height: 1.9; }
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1.5rem auto;
  max-width: 120px;
}
.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.footer-nav a:hover { color: var(--gold); text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── NAV: tablet landscape — tighten the link row so all 8 items stay on one
   line instead of squeezing the logo. Below 1150px the hamburger takes over. ── */
@media (max-width: 1400px) {
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.5rem; }
}
@media (max-width: 1250px) {
  .nav-links { gap: 1.05rem; }
  .nav-links a { font-size: 0.74rem; }
  .nav-cta { padding: 0.5rem 1rem; }
}

/* ── NAV: switch to hamburger before the 8-item bar can wrap (~1150px) ── */
@media (max-width: 1150px) {
  .nav-toggle-label { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 3;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 1rem;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a[aria-current="page"] { border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 0.9rem; }
  .nav-links .nav-cta {
    margin-top: 1rem;
    text-align: center;
    padding: 0.9rem 1.3rem;
    border-bottom: none;
  }

  /* Hamburger → X */
  .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
  .nav-toggle:checked ~ .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span::after  { top: 0; transform: rotate(-45deg); }
}

@media (max-width: 900px) {
  .hero-bg, .quotes-bg { background-attachment: scroll; }

  .about .container, .membership-inner, .gardens-grid,
  .pillars-grid, .quotes-grid,
  .issue-grid, .workday-grid, .contact-grid, .proof-grid { grid-template-columns: 1fr; }

  /* stat strip reads better as a 2x2 block than a tall single column */
  .intro-strip .container { grid-template-columns: repeat(2, 1fr); }
  .intro-stat:nth-child(2) { border-right: none; }
  .intro-stat:nth-child(1), .intro-stat:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 0.9rem; }
  .intro-stat:nth-child(3), .intro-stat:nth-child(4) { padding-top: 0.9rem; }

  .about .container, .membership-inner, .contact-grid { gap: 3rem; }

  /* Reversed splits stack image-first on mobile like every other split */
  .about.reverse .about-img { order: 1; }
  .about.reverse .about-text { order: 2; }

  .intro-stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .intro-stat:last-child { border-bottom: none; }

  .committee-cols { columns: 2; }

  .event-row { grid-template-columns: 90px 1fr; gap: 1.2rem; }
  .event-date strong { font-size: 1.5rem; }
  .event-tag { grid-column: 2; justify-self: start; margin-top: 0.5rem; }

  /* ── Mobile nav ── */
  nav {
    padding: 0 1.5rem;
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
  }
  .nav-logo { padding: 0.7rem 0; }
  .nav-logo img { height: 42px; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .container, .quotes-inner { padding: 0 1.5rem; }
  .prose, .about, .gardens, .pillars, .quotes, .membership-cta { padding: 3.5rem 0; }
  .committee-cols { columns: 1; }
  .contact-aside { padding: 1.8rem; }
  .faq-item summary { font-size: 1.05rem; }
  .btn-ghost, .btn-forest-outline { margin-left: 0; }
  .page-hero { min-height: 34vh; padding: 3rem 0; }
}

/* ── MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg, .quotes-bg { background-attachment: scroll; }
}

/* ── PRINT ── */
@media print {
  nav, .facebook-bar, .btn, .editor-note, .event-add { display: none; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .page-hero, .hero { min-height: auto; background: none; }
  .page-hero h1, .hero h1 { color: #000; }
}
