/* =========================================================================
   RISE ABOVE RECOVERY — DESIGN SYSTEM
   Brand palette: Deep Forest + Sage (primary), Cream (base), Terracotta (accent)
   Headline font: Fraunces (warm humanist serif)
   Body font: Inter (clean, highly readable sans-serif)
   ========================================================================= */

:root {
  /* Color tokens */
  --teal-900: #1f3229;
  --teal-800: #2f4a3f;
  --teal-700: #3e5c4e;
  --teal-600: #4a7a6b;
  --teal-100: #e4eae6;

  --sand-50:  #fbf9f4;
  --sand-100: #f5f1e9;
  --sand-200: #ece3d0;
  --sand-300: #ddcfb0;

  --gold-600: #b14f35;
  --gold-500: #ce6a4e;
  --gold-100: #f5e0d5;

  --coral-600: #96402a;
  --coral-500: #ce6a4e;

  --ink-900: #1e2a22;
  --ink-700: #4b5a50;
  --ink-500: #5c6a5a;

  --white: #ffffff;

  /* Semantic */
  --color-bg: var(--sand-50);
  --color-bg-alt: var(--sand-200);
  --color-surface: var(--white);
  --color-text: var(--ink-900);
  --color-text-muted: var(--ink-500);
  --color-primary: var(--teal-800);
  --color-primary-dark: var(--teal-900);
  --color-accent: var(--gold-600);
  --color-accent-alt: var(--coral-600);
  --color-border: var(--sand-300);
  --focus-ring: #1d6fe0;

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing / layout */
  --max-width: 1120px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(22, 51, 49, 0.08);
  --shadow-md: 0 8px 24px rgba(22, 51, 49, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #16211b;
    --color-bg-alt: #1c2921;
    --color-surface: #1e2c24;
    --color-text: #f3efe4;
    --color-text-muted: #c3c2aa;
    --color-primary: #7fae9b;
    --color-primary-dark: #9cc4ae;
    --color-accent: #e2916f;
    --color-accent-alt: #e2a68a;
    --color-border: #2e4238;
  }
}

/* =========================================================================
   RESET
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-primary-dark);
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
button { font-family: inherit; }

/* Focus visibility (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-primary-dark);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--color-text);
  padding: 0.3rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}
/* "More" nav dropdown (built on native <details> for free keyboard support) */
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--color-text);
  padding: 0.3rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: "\25BE"; font-size: 0.7em; }
.nav-dropdown summary:hover,
.nav-dropdown details[open] summary,
.nav-dropdown summary[aria-current="page"] {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}
.nav-dropdown-menu {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 210px;
}
@media (min-width: 1041px) {
  .nav-dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 50; }
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--teal-100);
  color: var(--color-primary-dark);
}
@media (max-width: 1040px) {
  .nav-dropdown summary { padding: 0.85rem 0.1rem; }
  .nav-dropdown-menu { border: none; box-shadow: none; padding: 0 0 0 1rem; background: transparent; }
}

.nav-cta {
  background: var(--color-accent-alt);
  color: #fff !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--coral-600); }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--color-border); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a { display: block; padding: 0.85rem 0.1rem; }
  .nav-cta { display: inline-block; margin-top: 0.75rem; text-align: center; }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-accent-alt);
  color: #fff;
}
.btn-primary:hover { background: var(--coral-600); }
.btn-secondary {
  background: var(--color-primary-dark);
  color: #fff;
}
.btn-secondary:hover { background: var(--teal-900); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-primary-dark);
}
.btn-outline:hover { background: rgba(22, 51, 49, 0.06); }
.btn-outline.on-dark { color: #fff; }
.btn-outline.on-dark:hover { background: rgba(255,255,255,0.1); }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  color: #fff;
  padding: 4.5rem 0 5rem;
}
.hero .container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero h1 { color: #fff; }
.hero p.lede {
  font-size: 1.15rem;
  color: var(--sand-100);
  max-width: 46ch;
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-100);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero-art {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sand-100);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.5rem;
}
.hero-art svg {
  width: 38px;
  height: 38px;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { min-height: 200px; order: -1; }
}

/* Generic page header (non-home pages) */
.page-hero {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  color: #fff;
  padding: 3.5rem 0;
}
.page-hero h1 { color: #fff; margin-bottom: 0.4em; }
.page-hero p { color: var(--sand-100); max-width: 60ch; font-size: 1.05rem; margin: 0; }

/* =========================================================================
   SECTIONS
   ========================================================================= */
section { padding: 4rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-head { max-width: 68ch; margin-bottom: 2.5rem; }
.section-head p { color: var(--color-text-muted); font-size: 1.05rem; }
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

/* Pillars / cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat .stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}
.stat .stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Testimonial */
.testimonial {
  background: var(--color-surface);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary-dark);
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Testimonial carousel (accessible, no external library) */
.carousel {
  position: relative;
}
.carousel-track {
  position: relative;
  min-height: 190px;
}
.carousel-slide {
  display: none;
  background: var(--color-surface);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-sm);
}
.carousel-slide.is-active { display: block; }
.carousel-slide blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-primary-dark);
}
.carousel-slide cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--teal-100); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.is-active { background: var(--color-accent); }
.carousel-consent-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Crisis strip (low-key, persistent reminder — not the urgent .crisis-banner tone) */
.crisis-strip {
  background: var(--sand-200);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
  color: var(--ink-700);
}
.crisis-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  text-align: center;
}
.crisis-strip a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  .crisis-strip { background: var(--color-bg-alt); }
}

/* Trust strip (badges + press placeholders) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.badge svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-accent); }
.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 48px;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  padding: 0 1rem;
  text-align: center;
}

/* Phase stepper (e.g. Inquiry -> Screening -> Move-in) */
.phase-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.phase-stepper .phase {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-primary-dark);
}
.phase-stepper .phase-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phase-stepper .phase-arrow {
  color: var(--color-border);
  font-size: 1.3rem;
}
@media (max-width: 700px) {
  .phase-stepper .phase-arrow { display: none; }
  .phase-stepper { flex-direction: column; align-items: stretch; }
  .phase-stepper .phase { justify-content: center; }
}

/* Schedule list (e.g. Day in the Life) */
.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.schedule-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--color-border);
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-time {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
}
.schedule-list p { margin: 0; color: var(--color-text-muted); }
.schedule-list h3 { font-size: 1rem; margin-bottom: 0.2rem; }
@media (max-width: 560px) {
  .schedule-list li { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* Referral path cards (self vs. family) */
.referral-path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .referral-path-grid { grid-template-columns: 1fr; } }

/* Blog / news card grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 880px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.news-card .img-placeholder { min-height: 150px; border-radius: 0; border-width: 0 0 1px; }
.news-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.news-card h3 { margin-bottom: 0.5rem; }
.news-card p { color: var(--color-text-muted); margin-bottom: 1rem; flex: 1; }
.news-card .read-more { font-weight: 700; color: var(--color-primary); text-decoration: none; font-size: 0.92rem; }
.news-card .read-more:hover { text-decoration: underline; }

/* Events list */
.event-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.event-date-block {
  background: var(--teal-100);
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 0.75rem 0.5rem;
  height: fit-content;
}
.event-date-block .month {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-date-block .day {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
}
.event-item h3 { margin-bottom: 0.3rem; }
.event-meta { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
@media (max-width: 560px) {
  .event-item { grid-template-columns: 1fr; }
  .event-date-block { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; width: fit-content; }
}
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
}
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--color-accent); }

/* Footer crisis reminder */
.footer-crisis-line {
  text-align: center;
  font-size: 0.88rem;
  color: var(--sand-200);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
}
.footer-crisis-line a { color: #fff; font-weight: 700; text-decoration: underline; }

/* CTA banner */
.cta-banner {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--sand-100); max-width: 60ch; margin: 0 auto 1.5rem; }
.cta-banner .btn-row { justify-content: center; }

/* Image placeholder block (clean branded tile until real photos are added) */
.img-placeholder {
  background: var(--teal-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.5rem;
  min-height: 200px;
}
.img-placeholder svg {
  width: 34px;
  height: 34px;
  margin-bottom: 0.6rem;
  opacity: 0.55;
}

/* Board grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .board-grid { grid-template-columns: 1fr; } }
.board-card { text-align: center; }
.board-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-bottom: 0.9rem;
}
.board-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.board-card .role { color: var(--color-text-muted); font-size: 0.85rem; }

/* Board grid variant with bios: wider cards, more room to read */
.board-grid-bio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) { .board-grid-bio { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .board-grid-bio { grid-template-columns: 1fr; } }
.board-grid-bio .board-card {
  text-align: left;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.board-grid-bio .board-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.board-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.board-avatar svg { width: 32px; height: 32px; }
.board-grid-bio .board-card h3 { margin-bottom: 0; }
.board-grid-bio .board-card .bio { margin: 0; font-size: 0.92rem; color: var(--color-text-muted); }

/* Steps / process list */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--color-text-muted); }

/* FAQ (details/summary, native accessible disclosure) */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.1rem 0;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 0.75rem; color: var(--color-text-muted); }

/* Forms */
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.hint { font-weight: 400; color: var(--color-text-muted); font-size: 0.85rem; }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
}
textarea { resize: vertical; min-height: 120px; }
.form-note {
  background: var(--gold-100);
  border: 1px solid var(--gold-500);
  color: var(--ink-900);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-row input { margin-top: 0.3rem; }
.checkbox-row label { font-weight: 500; margin: 0; }

/* Crisis / hotline callout */
.crisis-banner {
  background: var(--coral-600);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.crisis-banner strong { font-size: 1.05rem; }
.crisis-banner a { color: #fff; text-decoration: underline; font-weight: 700; }

/* Jump nav (in-page quick links, used on longer pages like Resources) */
.jump-nav {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.jump-nav a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}
.jump-nav a:hover {
  border-color: var(--color-primary);
  background: var(--teal-100);
}

/* Resource list */
.resource-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.resource-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
}
.resource-list h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.resource-list a { color: var(--color-primary); font-weight: 700; text-decoration: none; }
.resource-list a:hover { text-decoration: underline; }

/* Values list */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-pill {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
}
.value-pill h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.value-pill p { margin: 0; font-size: 0.92rem; color: var(--color-text-muted); }

/* Map embed wrapper */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 10;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Donation tiers */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .donate-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .donate-tiers { grid-template-columns: 1fr; } }
.tier {
  text-align: center;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
}
.tier .amount {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 0.35rem;
}
.tier p { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1rem; }

/* Placeholder tag used inline in copy */
.placeholder-tag {
  background: var(--gold-100);
  border: 1px dashed var(--gold-500);
  color: var(--gold-600);
  padding: 0.05em 0.5em;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--teal-900);
  color: var(--sand-100);
  padding: 3.5rem 0 2rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem; }
.site-footer p { color: var(--sand-200); font-size: 0.92rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: var(--sand-100); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: rgba(255,255,255,0.16); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--sand-200);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}
.footer-bottom a { color: var(--sand-100); text-decoration: underline; }
.footer-disclosure {
  font-size: 0.82rem;
  color: var(--sand-200);
  margin-bottom: 1.25rem;
  max-width: 80ch;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
