/* ==========================================================================
   Family Crisis Center — Stylesheet
   Editorial / dignified palette. Trauma-informed pacing.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --cream: #FAF6F0;
  --cream-warm: #F4EDE2;
  --cream-deep: #EDE3D2;
  --ink: #1F1A1F;
  --ink-soft: #4A3F4A;
  --ink-muted: #7A6E7A;
  --plum: #4A2640;
  --plum-deep: #2E1729;
  --plum-light: #6B3A5A;
  --sage: #5F7A6E;
  --sage-light: #8FA89A;
  --sage-pale: #DCE5DF;
  --ochre: #B8853C;
  --ochre-light: #D4A574;
  --border: #E8DFD3;
  --border-strong: #C9BCA9;
  --shadow-sm: 0 1px 2px rgba(31, 26, 31, 0.04), 0 1px 3px rgba(31, 26, 31, 0.06);
  --shadow-md: 0 4px 12px rgba(31, 26, 31, 0.06), 0 2px 6px rgba(31, 26, 31, 0.04);
  --shadow-lg: 0 12px 32px rgba(31, 26, 31, 0.08), 0 4px 12px rgba(31, 26, 31, 0.06);
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1240px;
  --container-narrow: 920px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--plum-light); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 1rem;
}
.eyebrow.plum { color: var(--plum); }
.eyebrow.ochre { color: var(--ochre); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3rem 0; } }

/* ---------- Top Bar (Hotline + Quick Exit) ---------- */
.topbar {
  background: var(--plum-deep);
  color: var(--cream);
  font-size: 0.9rem;
  padding: 0.6rem 0;
  position: relative;
  z-index: 50;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-hotline { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.topbar-hotline .icon { width: 18px; height: 18px; flex-shrink: 0; }
.topbar-hotline a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.topbar-hotline a:hover { color: var(--ochre-light); }
.topbar-actions { display: flex; align-items: center; gap: 1.25rem; }
.topbar-link { color: var(--cream); opacity: 0.85; font-size: 0.85rem; }
.topbar-link:hover { color: var(--ochre-light); opacity: 1; }
.quick-exit {
  background: var(--ochre);
  color: var(--plum-deep);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}
.quick-exit:hover { background: var(--ochre-light); transform: translateY(-1px); }
.quick-exit .kbd {
  background: var(--plum-deep);
  color: var(--ochre-light);
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  font-family: ui-monospace, 'SF Mono', monospace;
}
@media (max-width: 640px) {
  .topbar-hotline span.label { display: none; }
  .quick-exit .kbd { display: none; }
  .topbar-link { font-size: 0.8rem; }
}

/* ---------- Header / Nav ---------- */
.header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--plum);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-warm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--plum-light);
  opacity: 0.4;
}
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-tagline { font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  color: var(--ink-soft);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
}
.nav a:hover { color: var(--plum); background: var(--cream-warm); }
.nav a.active { color: var(--plum); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--plum);
}
.nav-cta {
  background: var(--plum) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--plum-light) !important; }

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

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }
  .nav.open a { padding: 0.85rem 1rem; }
  .nav.open .nav-cta { margin: 0.5rem 0 0; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.btn-primary { background: var(--plum); color: var(--cream); }
.btn-primary:hover { background: var(--plum-light); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-secondary:hover { background: var(--plum); color: var(--cream); }
.btn-sage { background: var(--sage); color: var(--cream); }
.btn-sage:hover { background: var(--plum); color: var(--cream); transform: translateY(-1px); }
.btn-ochre { background: var(--ochre); color: var(--plum-deep); }
.btn-ochre:hover { background: var(--ochre-light); color: var(--plum-deep); transform: translateY(-1px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(95, 122, 110, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(74, 38, 64, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text h1 em { font-style: italic; color: var(--plum); font-weight: 300; }
.hero-text .lead { max-width: 36rem; margin-bottom: 2rem; font-size: 1.18rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(212, 165, 116, 0.25), transparent 60%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero-card .eyebrow { color: var(--ochre-light); margin-bottom: 0.75rem; }
.hero-card h3 { color: var(--cream); font-size: 1.45rem; margin-bottom: 0.5rem; font-weight: 400; }
.hero-card p { color: rgba(250, 246, 240, 0.85); font-size: 0.95rem; }
.hero-hotline {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  display: block;
  margin: 1.25rem 0 1rem;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  background: rgba(250, 246, 240, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(250, 246, 240, 0.18);
  text-align: center;
  transition: all 0.2s ease;
}
.hero-hotline:hover { background: rgba(250, 246, 240, 0.18); color: var(--cream); }
.hero-hotline small { display: block; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 0.25rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250, 246, 240, 0.15); }
.hero-stat .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--ochre-light); font-weight: 400; }
.hero-stat .label { font-size: 0.75rem; opacity: 0.7; letter-spacing: 0.05em; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3rem 0 4rem; }
}

/* ---------- Generic Page Hero ---------- */
.page-hero {
  background: var(--cream-warm);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(95, 122, 110, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 0.75rem; position: relative; }
.page-hero .lead { max-width: 42rem; position: relative; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 0.5rem; position: relative; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--plum); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ---------- Cards & Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--plum); margin-bottom: 0.75rem; }
.card-icon {
  width: 48px; height: 48px;
  background: var(--sage-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card.featured { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.card.featured h3 { color: var(--ochre-light); }
.card.featured p { color: rgba(250, 246, 240, 0.85); }
.card.featured .card-icon { background: rgba(212, 165, 116, 0.2); color: var(--ochre-light); }

.card-warm { background: var(--cream-warm); border-color: var(--border); }
.card-sage { background: var(--sage-pale); border-color: var(--sage-light); }
.card-sage h3 { color: var(--plum-deep); }

/* ---------- Section Headings ---------- */
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; }
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.25rem 0 1.5rem;
}
.divider::before, .divider::after {
  content: ''; height: 1px; background: var(--border-strong); flex: 1; max-width: 60px;
}
.divider-mark { width: 8px; height: 8px; background: var(--ochre); border-radius: 50%; }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

.sidebar {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 110px;
}
.sidebar h4 { color: var(--plum); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.sidebar address { font-style: normal; line-height: 1.7; font-size: 0.95rem; color: var(--ink-soft); }
.sidebar address strong { color: var(--ink); font-weight: 600; }
.sidebar address + h4 { margin-top: 1.5rem; }

/* ---------- Lists ---------- */
.fancy-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.fancy-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.fancy-list li::before {
  content: '';
  position: absolute;
  left: 0.5rem; top: 1.1rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.fancy-list li:last-child { border-bottom: none; }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 2rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.4rem;
  width: 22px; height: 22px;
  background: var(--sage-pale);
  color: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--plum); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 38, 64, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-help { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.3rem; }

/* ---------- Donation widget ---------- */
.donate-widget {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.donate-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; background: var(--cream-warm); padding: 0.35rem; border-radius: var(--radius); }
.donate-tab {
  flex: 1;
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.donate-tab.active { background: var(--plum); color: var(--cream); }
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin: 1.25rem 0;
}
@media (max-width: 600px) { .donate-amounts { grid-template-columns: repeat(2, 1fr); } }
.donate-amount {
  padding: 1rem;
  background: var(--cream-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
}
.donate-amount:hover { border-color: var(--plum-light); }
.donate-amount.active { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.donate-custom {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--plum-deep);
  color: rgba(250, 246, 240, 0.8);
  padding: 4rem 0 0;
  margin-top: 5rem;
  position: relative;
}
.footer h4 { color: var(--cream); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin-bottom: 1rem; }
.footer a { color: rgba(250, 246, 240, 0.75); }
.footer a:hover { color: var(--ochre-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer-brand .brand-mark { background: var(--ochre); color: var(--plum-deep); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tagline { color: rgba(250, 246, 240, 0.6); }
.footer p { color: rgba(250, 246, 240, 0.7); font-size: 0.92rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.footer-hotline {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ochre-light) !important;
  margin: 0.5rem 0;
  font-weight: 500;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(250, 246, 240, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.footer-socials a:hover { background: var(--ochre); color: var(--plum-deep); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-flag {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
  margin-top: 1rem;
}
.rainbow-flag {
  width: 60px;
  height: 38px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.rainbow-flag span { flex: 1; display: block; }
.rainbow-flag span:nth-child(1) { background: #E40303; }
.rainbow-flag span:nth-child(2) { background: #FF8C00; }
.rainbow-flag span:nth-child(3) { background: #FFED00; }
.rainbow-flag span:nth-child(4) { background: #008026; }
.rainbow-flag span:nth-child(5) { background: #004CFF; }
.rainbow-flag span:nth-child(6) { background: #732982; }
.footer-flag-text { color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; font-style: italic; }
.footer-flag-text small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.8rem; color: rgba(250, 246, 240, 0.6); margin-top: 0.2rem; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
}
.footer-bottom a { color: rgba(250, 246, 240, 0.6); }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.bg-warm { background: var(--cream-warm); }
.bg-sage { background: var(--sage-pale); }
.bg-plum { background: var(--plum); color: var(--cream); }
.bg-plum h2, .bg-plum h3 { color: var(--cream); }
.bg-plum p { color: rgba(250, 246, 240, 0.85); }

/* ---------- Quote / pullquote ---------- */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--plum);
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid var(--ochre);
  max-width: 38rem;
  margin: 2rem 0;
}
.pullquote small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ---------- News cards ---------- */
.news-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.news-card-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--sage-pale), var(--cream-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news-card-img .placeholder-icon { color: var(--sage); opacity: 0.4; }
.news-card-img.alt { background: linear-gradient(135deg, var(--cream-warm), var(--ochre-light)); }
.news-card-img.alt .placeholder-icon { color: var(--ochre); }
.news-card-img.dark { background: linear-gradient(135deg, var(--plum-light), var(--plum)); }
.news-card-img.dark .placeholder-icon { color: var(--cream-warm); }
.news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-card .date { font-size: 0.8rem; color: var(--ochre); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.news-card .read-more { margin-top: auto; padding-top: 1rem; font-size: 0.9rem; font-weight: 600; }

/* ---------- Person/staff cards ---------- */
.person-card { text-align: center; }
.person-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--cream-warm));
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--plum);
  border: 2px solid var(--cream);
  box-shadow: var(--shadow-sm);
}
.person-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.25rem; color: var(--ink); }
.person-card .title { font-size: 0.85rem; color: var(--ink-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Reveal on scroll (BELOW hero only, per project conventions) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ---------- Banner CTA strip ---------- */
.cta-strip {
  background: var(--plum);
  color: var(--cream);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; right: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 { color: var(--cream); margin-bottom: 0.5rem; }
.cta-strip p { color: rgba(250, 246, 240, 0.85); margin: 0; }

/* ---------- Stat block ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================
   Additions for News / Resources / Contact
   ============================================ */

/* ---------- CTA Strip variants (light buttons) ---------- */
.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.btn-light {
  background: var(--cream);
  color: var(--plum);
  border: 1px solid var(--cream);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 240, 0.5);
}
.btn-outline-light:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: var(--cream);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ---------- News page: horizontal event cards ---------- */
.event-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--cream-card, #fff);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.event-card:hover {
  box-shadow: 0 10px 30px rgba(74, 38, 64, 0.08);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .event-card { grid-template-columns: 1fr; }
}
.event-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--cream);
  position: relative;
}
.news-date-block {
  text-align: center;
  padding: 1.5rem;
}
.news-month {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}
.news-day {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.25rem 0;
  letter-spacing: -0.03em;
}
.news-year {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.event-card-body {
  padding: 2rem 2.25rem;
}
.event-card-body h3 {
  margin: 0.4rem 0 0.75rem;
}
.news-meta {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
}
.event-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.event-details strong {
  display: block;
  color: var(--plum);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .event-details { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Social grid (news page) ---------- */
.social-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.15s ease;
}
.social-link:hover {
  border-color: var(--plum);
  transform: translateX(2px);
}
.social-link svg {
  width: 24px;
  height: 24px;
  color: var(--plum);
  flex-shrink: 0;
}
.social-link strong { display: block; color: var(--ink); }
.social-link span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

/* ---------- Resources page ---------- */
.emergency-banner {
  background: #fff8e6;
  border: 1px solid #f0d08b;
  border-left: 4px solid var(--ochre);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.emergency-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ochre);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emergency-icon svg { width: 22px; height: 22px; }
.emergency-banner strong {
  display: block;
  font-size: 1.1rem;
  color: #5c4416;
  margin-bottom: 0.4rem;
}
.emergency-banner p { margin: 0; color: #5c4416; }

.resource-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
}
.resource-card p { font-size: 0.95rem; }
.resource-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.btn-plain {
  color: var(--plum);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.15rem 0;
  transition: color 0.15s ease;
}
.btn-plain:hover { color: var(--plum-light, var(--plum)); text-decoration: underline; }
.btn-plain strong {
  display: inline-block;
  min-width: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ---------- Downloads ---------- */
.download-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(74, 38, 64, 0.08);
}
.download-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 1rem;
}
.download-icon svg { width: 22px; height: 22px; }
.download-card h4 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.download-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}
.download-meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
}

/* ---------- Contact page ---------- */
.hotline-banner {
  background: linear-gradient(135deg, var(--plum), #5e3253);
  color: var(--cream);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  text-align: center;
}
.hotline-banner-content { max-width: 560px; margin: 0 auto; }
.hotline-banner .eyebrow {
  color: rgba(250, 246, 240, 0.85);
}
.hotline-banner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0 1rem;
}
.hotline-banner p {
  color: rgba(250, 246, 240, 0.9);
  margin-bottom: 1.75rem;
}
.hotline-banner .btn-primary {
  background: var(--cream);
  color: var(--plum);
  border-color: var(--cream);
}
.hotline-banner .btn-primary:hover { background: #fff; }

.location-card-large {
  padding: 2rem 2.25rem;
}
.location-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--plum);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.location-card-large h3 {
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
}
.location-block {
  margin-bottom: 1.25rem;
}
.location-block strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.location-block p { margin: 0; }

.contact-note {
  background: var(--cream);
  border-left: 3px solid var(--ochre);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ochre);
  margin-top: 0.1rem;
}
.contact-note strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.contact-note p { margin: 0; font-size: 0.92rem; }

.contact-form {
  background: #fff;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}
.form-field {
  margin-bottom: 1.1rem;
}
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-field label small {
  font-weight: 400;
  color: var(--ink-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(74, 38, 64, 0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-disclaimer {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}
