/* ─────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────── */
:root {
  /* Greens */
  --green-900: #1b2f22;
  --green-800: #26422f;
  --green-700: #2f5239;
  --green-600: #3d6b4f;
  --green-500: #548767;
  --green-400: #7aab8a;
  --green-300: #a8c9b4;
  --green-200: #cfe0d6;
  --green-100: #e8f0ea;
  --green-50:  #f3f8f4;

  /* Earth tones */
  --earth-700: #6b4c2a;
  --earth-600: #8b6b4a;
  --earth-400: #b89070;
  --earth-200: #dfc9b0;
  --earth-100: #f0e6d8;
  --earth-50:  #faf7f0;

  /* Text */
  --text-primary:   #1b2f22;
  --text-secondary: #4a6352;
  --text-muted:     #7a9485;
  --text-on-dark:   #f3f8f4;

  /* Surfaces */
  --surface-page:   #faf7f0;
  --surface-card:   #ffffff;
  --surface-subtle: #f3f8f4;
  --border:         #d8e5dc;
  --border-strong:  #a8c9b4;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(27,47,34,0.08), 0 4px 16px rgba(27,47,34,0.06);
  --shadow-hover: 0 4px 12px rgba(27,47,34,0.12), 0 12px 32px rgba(27,47,34,0.08);
}

/* ─────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--surface-page);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-700); text-decoration: underline; }

/* ─────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-800);
  border-bottom: 1px solid var(--green-700);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--text-on-dark); text-decoration: none; }
.nav-logo span { font-size: 1.2rem; }
.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  white-space: nowrap;
}
.nav-links a {
  color: var(--green-300);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-on-dark); background: rgba(255,255,255,0.08); text-decoration: none; }
.nav-links a.active { color: var(--text-on-dark); }

/* Nav search (Pagefind) */
.nav-search {
  --pagefind-ui-scale: 0.55;
  --pagefind-ui-primary: var(--green-700);
  --pagefind-ui-text: var(--green-800);
  --pagefind-ui-background: rgba(255,255,255,0.1);
  --pagefind-ui-border: var(--green-600);
  --pagefind-ui-border-width: 1px;
  --pagefind-ui-border-radius: 6px;
  --pagefind-ui-font: var(--font-body);
  position: relative;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.nav-search .pagefind-ui__form::before {
  background-color: var(--green-300) !important;
  top: calc(12px * var(--pagefind-ui-scale)) !important;
  left: calc(12px * var(--pagefind-ui-scale)) !important;
}
.nav-search .pagefind-ui__search-input {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.1);
  width: 180px;
  transition: width 0.2s, background 0.2s;
}
.nav-search .pagefind-ui__search-input::placeholder {
  color: var(--green-300);
  opacity: 0.6;
}
.nav-search .pagefind-ui__search-input:focus {
  width: 220px;
  background: rgba(255,255,255,0.15);
  outline: none;
  border-color: var(--green-400);
}
.nav-search .pagefind-ui__search-clear {
  background: transparent !important;
  color: var(--green-300) !important;
  height: auto !important;
  top: 50% !important;
  transform: translateY(-50%);
  padding: 0 8px !important;
}
.nav-search .pagefind-ui__drawer {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 400px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 200;
  padding: 0.5rem 1rem;
}
.nav-search .pagefind-ui__result-link {
  color: var(--green-700) !important;
}
.nav-search .pagefind-ui__result-excerpt {
  color: var(--text-muted);
}
.nav-search .pagefind-ui__message {
  color: var(--text-muted);
}
.nav-search .pagefind-ui__button {
  background: var(--green-600);
  color: white;
  border-color: var(--green-600);
}
.nav-search .pagefind-ui__button:hover {
  background: var(--green-700) !important;
  color: white !important;
  border-color: var(--green-700) !important;
}
.nav-search mark {
  background: var(--green-100);
  color: var(--green-800);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 960px) {
  .nav-inner {
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
  }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    order: 2;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-search {
    width: 100%;
    margin: 0;
    padding: 0.75rem 0;
    order: 3;
  }
  .nav-search .pagefind-ui__search-input {
    width: 100%;
  }
  .nav-search .pagefind-ui__search-input:focus {
    width: 100%;
  }
  .nav-search .pagefind-ui__drawer {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  background: var(--green-800);
  padding: 0 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 110%, rgba(122,171,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% -10%, rgba(84,135,103,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 1rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(122,171,138,0.3);
  border-radius: 99px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 0 1.25rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-300);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--green-300);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--earth-400);
  color: var(--green-900);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--earth-200); color: var(--green-900); transform: translateY(-1px); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--green-200);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(168,201,180,0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--green-300); color: var(--text-on-dark); text-decoration: none; }

.hero-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  min-height: 420px;
}
.hero-text {
  flex: 1;
  text-align: left;
  padding: 5rem 0 4.5rem;
}
.hero-image {
  flex-shrink: 0;
  align-self: flex-end;
  line-height: 0;
  position: relative;
  margin-bottom: -5%;
  z-index: 1;
}
.hero-image::before {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(168,201,180,0.35) 0%, rgba(168,201,180,0.15) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-rabbit {
  display: block;
  max-width: 900px;
  height: auto;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
@media (max-width: 960px) {
  .hero-layout {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
  .hero-text {
    text-align: center;
    padding: 3.5rem 0 0;
  }
  .hero-image { align-self: center; }
  .hero-rabbit { max-width: 400px; }
  .hero-image::before { width: 220px; height: 220px; }
  .hero-actions { justify-content: center; }
}

/* ─────────────────────────────────────────
   SECTION UTILITIES
   ───────────────────────────────────────── */
.hero-cover {
  position: relative;
  z-index: 2;
  background: var(--surface-page);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─────────────────────────────────────────
   INTRO CARDS (Home page)
   ───────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.intro-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.intro-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.intro-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.intro-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.intro-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-600);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

/* ─────────────────────────────────────────
   ABOUT BLOCK (Home page)
   ───────────────────────────────────────── */
.about-block {
  background: var(--surface-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-block p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
}
.about-block p + p {
  margin-top: 0.75rem;
}

/* ─────────────────────────────────────────
   DIRECTORY PAGE
   ───────────────────────────────────────── */
.directory-hero {
  background: var(--green-800);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.directory-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 110%, rgba(122,171,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% -10%, rgba(84,135,103,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.directory-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.directory-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--green-300);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.directory-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem 0;
}
.directory-intro p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.directory-intro p + p { margin-top: 0.75rem; }

.disclaimer {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  background: var(--earth-100);
  border: 1px solid var(--earth-200);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--earth-700);
  line-height: 1.6;
}

/* Directory card list */
.directory-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.directory-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 5rem;
}
.card-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.card-header-info { flex: 1; }
.card-badge-col { display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-end; flex-shrink: 0; }
.org-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 0.2rem;
}
.org-name-link {
  color: inherit;
  text-decoration: none;
}
.org-name-link:hover {
  color: inherit;
  text-decoration: none;
}
.org-name-link:hover::after {
  content: ' #';
  font-size: 0.75em;
  color: var(--text-muted);
  font-weight: 400;
}
.org-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.org-area {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
}
.org-area::before { content: ''; }
.badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  border: 1px solid;
  white-space: nowrap;
}
.badge-green { background: var(--green-100); color: var(--green-700); border-color: var(--green-300); }
.badge-earth { background: var(--earth-100); color: var(--earth-700); border-color: var(--earth-200); }
.badge-muted { background: #f5f0eb; color: #7a6e62; border-color: #d9cfc4; }

.card-mission {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-subtle);
}
.card-field-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.card-mission-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.65;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

.card-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.fact-cell {
  padding: 1.1rem 1.5rem;
  border-right: 1px solid var(--border);
}
.fact-cell:last-child { border-right: none; }
.fact-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.fact-sub { font-size: 0.75rem; color: var(--text-muted); }

.social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.35rem;
}
.social-icon {
  color: var(--text-muted);
  transition: color 0.2s;
}
.social-icon:hover {
  color: var(--text-primary);
}
.board-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-muted    { background: var(--text-muted); }

.card-footer-row {
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.verified-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1.5px solid var(--green-400);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  transition: all 0.15s;
  text-decoration: none;
}
.card-cta:hover { background: var(--green-600); color: white; border-color: var(--green-600); text-decoration: none; }

/* Card caveats */
.card-caveats {
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--earth-50);
}
.caveats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.caveats-list li {
  font-size: 0.82rem;
  color: var(--earth-700);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.caveats-list li::before {
  content: '\26A0';
  position: absolute;
  left: 0;
  font-size: 0.72rem;
}

/* Closed / excluded notes */
.directory-notes {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.directory-notes h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.directory-notes ul {
  list-style: none;
  margin-bottom: 2rem;
}
.directory-notes li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.directory-notes li strong {
  color: var(--text-primary);
}
.excluded-intro {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.correction-cta {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.correction-cta p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE — Card facts on small screens
   ───────────────────────────────────────── */
@media (max-width: 600px) {
  .card-facts {
    grid-template-columns: 1fr;
  }
  .fact-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .fact-cell:last-child { border-bottom: none; }
  .card-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  .card-badge-col {
    flex-direction: row;
    align-items: center;
  }
  .directory-card { scroll-margin-top: 10rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero-sub { font-size: 0.95rem; }
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: var(--green-300);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(168,201,180,0.15);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--green-400);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col-head {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.9rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--green-400);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-on-dark); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-legal { font-size: 0.75rem; color: var(--green-600); }
.footer-orgs {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--green-600);
}
.footer-orgs a { color: var(--green-500); text-decoration: none; }
.footer-orgs a:hover { color: var(--green-300); }

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────
   PAGE HERO (reusable for inner pages)
   ───────────────────────────────────────── */
.page-hero {
  background: var(--green-800);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 110%, rgba(122,171,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% -10%, rgba(84,135,103,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--green-300);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
p.hero-epigraph {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin: 1.5rem auto 0;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  animation: epigraph-in 1.2s ease-out 0.5s both;
}
@keyframes epigraph-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-epigraph a {
  color: inherit;
  text-decoration: none;
}
.hero-epigraph a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ─────────────────────────────────────────
   PROSE CONTENT (inner pages)
   ───────────────────────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 2.5rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}
.prose p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 1rem 1.5rem;
}
.prose li { margin-bottom: 0.4rem; }
.prose li strong { color: var(--text-primary); }
.prose blockquote {
  border-left: 3px solid var(--green-400);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--surface-subtle);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ─────────────────────────────────────────
   VALUES PAGE
   ───────────────────────────────────────── */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.value-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
}
.value-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.value-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.value-emoji {
  font-size: 1.3rem;
  line-height: 1;
}
h3.value-statement {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0.75rem 0;
}
.value-source-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
}
.tag-both { background: var(--green-100); color: var(--green-700); border-color: var(--green-300); }
.tag-hrs { background: #e8eef0; color: #3a5a6b; border-color: #b8cdd6; }
.tag-rorg { background: var(--earth-100); color: var(--earth-700); border-color: var(--earth-200); }

.value-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-quote {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  padding: 0.75rem 1rem;
  background: var(--surface-subtle);
  border-radius: var(--radius-sm);
}
.value-quote-empty {
  opacity: 0.5;
}
.value-quote-none {
  font-style: italic;
}
.value-quote-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-bottom: 0.35rem;
}

@media (max-width: 600px) {
  .value-quotes {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(122,171,138,0.15);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-submit {
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ─────────────────────────────────────────
   CALLOUT BOX (reusable)
   ───────────────────────────────────────── */
.callout {
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.callout h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}
.callout p {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}
.callout ul {
  margin: 0.5rem 0 0 1.25rem;
}

/* ─────────────────────────────────────────
   RESOURCE LINKS
   ───────────────────────────────────────── */
.resource-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.resource-link {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.resource-link:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
  text-decoration: none;
}
.resource-link strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.resource-link span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
@media (max-width: 600px) {
  .resource-links { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   NAV DROPDOWN
   ───────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  color: var(--green-300);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-toggle:hover { color: var(--text-on-dark); background: rgba(255,255,255,0.08); }
.nav-dropdown-toggle.active { color: var(--text-on-dark); }
.nav-caret {
  font-size: 0.6rem;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  list-style: none;
  min-width: 200px;
  padding: 0.4rem 0;
  z-index: 150;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li { white-space: nowrap; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--green-50);
  color: var(--green-700);
  text-decoration: none;
}
.nav-dropdown-menu a.active {
  color: var(--green-700);
  font-weight: 500;
}

@media (max-width: 960px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: 0;
  }
  .nav-dropdown-toggle {
    padding: 0.75rem 1rem;
  }
  .nav-dropdown-menu a {
    color: var(--green-300);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-on-dark);
  }
  .nav-dropdown-menu a.active {
    color: var(--text-on-dark);
  }
}

/* ─────────────────────────────────────────
   OTHER RESCUES PAGE — Mini Cards
   ───────────────────────────────────────── */
.other-rescues-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem 0;
}
.other-rescues-intro p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.mini-card-grid {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.mini-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s;
}
.mini-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}
.mini-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}
.mini-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.mini-card-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green-600);
  text-decoration: none;
  margin-top: auto;
}
.mini-card-link:hover {
  color: var(--green-700);
  text-decoration: underline;
}
.other-rescues-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

@media (max-width: 600px) {
  .mini-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   SHELTERS PAGE — Regional Groups
   ───────────────────────────────────────── */
.shelters-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem 0;
}
.shelters-intro p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.shelters-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.region-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-200);
}
.shelter-rows {
  display: flex;
  flex-direction: column;
}
.shelter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.shelter-row:first-child {
  border-top: 1px solid var(--border);
}
.shelter-row:hover {
  background: var(--green-50);
  text-decoration: none;
  color: inherit;
}
.shelter-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}
.shelter-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.shelter-row:hover .shelter-arrow {
  color: var(--green-600);
}
.shelters-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* ─────────────────────────────────────────
   DIRECTORY PAGE — See Also Cross-Links
   ───────────────────────────────────────── */
.directory-see-also {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.directory-see-also h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.see-also-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.see-also-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.see-also-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
  text-decoration: none;
}
.see-also-card strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-700);
}
.see-also-card span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 600px) {
  .see-also-links { grid-template-columns: 1fr; }
}
