/* ============================================================
   RESTORING WICHITA — Master Stylesheet v6
   Single source of truth. One definition per class.
   Background: oxblood. Cards: sage-gold · lavender-gold · sky-gold.
   Protected pages (programs, get-involved, contact, donate, funders,
   privacy) keep their own inline styles — do NOT apply blanket
   card overrides to those pages.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --bg0:    #1c0a06;
  --bg1:    #0f0500;
  --panel:  rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --text:   #f5f1ea;
  --muted:  rgba(245,241,234,0.78);
  --gold:   #D97706;
  --accent: #D97706;
  --accent2:#7aab80;
  --shadow: 0 18px 40px rgba(0,0,0,0.35);
  --radius: 18px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
p, li { color: var(--muted); }
h1, h2, h3, h4 { color: var(--text); }

/* ── Body & Background ── */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 100%) fixed;
  line-height: 1.6;
}

/* ── Layout ── */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 56px 0; }
.small      { font-size: 13px; color: var(--muted); }

.link       { color: rgba(245,241,234,0.86); }
.link:hover { text-decoration: underline; }

/* ── Typography ── */
.h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px; line-height: 1.05; margin: 14px 0 12px;
  font-weight: 900;
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; margin: 0 0 10px;
}
.lede { font-size: 18px; color: var(--muted); margin: 0 0 18px; max-width: 52ch; }
.sub  { color: var(--muted); margin: 0 0 22px; max-width: 80ch; }
.prose p         { margin: 0 0 14px; color: var(--muted); line-height: 1.9; }
.prose p strong  { color: var(--text); }
.prose .lead     { font-size: 18px; color: rgba(245,241,234,0.82); }

/* ── Brand ── */
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 12px; flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.30);
}

/* ── Header / Nav ── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18,8,4,0.97);
  backdrop-filter: blur(16px) saturate(200%);
  border-bottom: 2px solid rgba(217,119,6,0.65);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 14px; flex-wrap: wrap;
}
.navlinks { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px; border-radius: 14px;
  border: 1.5px solid rgba(217,119,6,0.65);
  background: rgba(255,255,255,0.05);
  font-weight: 700; font-size: 14px; color: var(--text);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(217,119,6,0.92);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  text-decoration: none;
}
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #D97706 0%, #ffd48a 100%);
  color: #1c0a06; border: none;
  box-shadow: 0 16px 40px rgba(217,119,6,0.22);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(217,119,6,0.32); color: #1c0a06; }
.btn-outline {
  border: 1.5px solid rgba(217,119,6,0.55);
  background: rgba(217,119,6,0.10);
}
.btn-outline:hover { background: rgba(217,119,6,0.18); }
.btn.active {
  text-decoration: underline; text-underline-offset: 5px;
  border-color: rgba(217,119,6,0.90);
}

/* nav-pill alias */
.nav-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px; border-radius: 14px;
  border: 1.5px solid rgba(217,119,6,0.65);
  background: rgba(255,255,255,0.05);
  font-weight: 700; font-size: 14px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.nav-pill:hover { transform: translateY(-1px); text-decoration: none; border-color: rgba(217,119,6,0.92); }

/* ── Kicker ── */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0; border: 0; background: transparent;
  color: rgba(255,255,255,0.72); font-size: 14px;
  cursor: default; user-select: none;
}
.dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.18);
  flex-shrink: 0;
}

/* ── Hero ── */
.hero { padding: 84px 0 58px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 26px; align-items: center;
}
.hero-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(217,119,6,0.45);
  background: linear-gradient(135deg, rgba(217,119,6,0.22) 0%, rgba(122,171,128,0.20) 70%, rgba(217,119,6,0.18) 100%);
  box-shadow: var(--shadow);
  min-height: 360px; position: relative;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,10,6,0.15) 0%, rgba(28,10,6,0.65) 100%),
    url('image/index1.png') center/cover;
  filter: saturate(115%);
}
.hero-card-inner {
  position: absolute; inset: 0; padding: 18px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
}
.tagrow { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12px; color: rgba(245,241,234,0.9);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.20);
  padding: 6px 9px; border-radius: 999px;
}
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

/* ── Grids ── */
.grid2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.grid3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.grid2 > *, .grid3 > * { min-width: 0; }

/* ── Feature (text + image) ── */
.feature {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.9fr);
  gap: 18px; align-items: start;
}
.feature > img {
  width: 100%; max-height: 420px; object-fit: cover;
  border-radius: 16px; border: 1px solid rgba(217,119,6,0.45);
}

/* ============================================================
   CARDS — 3-color system
   Default (no class)   = sage-gold diagonal gradient
   .card.lavender       = lavender-gold gradient
   .card.sky            = sky blue-gold gradient
   .card.panel          = richer sage-gold (signature primary)

   Legacy aliases kept so old class names still resolve:
   .card.gold  → sage-gold
   .card.teal  → sage-gold
   .card.rose  → lavender-gold (was rose; now lavender per spec)
   .card.purple → lavender-gold
   .card.blue  → sky-gold
   .card.orange → sage-gold variant
   ============================================================ */

/* ── Default card — TEAL ── */
.card {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(4,40,48,0.92);
  border: 1px solid rgba(70,180,195,0.65);
  border-radius: var(--radius);
  padding: 18px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(217,119,6,0.10),
    0 0 60px rgba(217,119,6,0.08);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p  { margin: 0; color: var(--muted); }

@media (hover: hover) {
  .card:hover {
    box-shadow:
      0 16px 38px rgba(0,0,0,0.42),
      0 0 0 1px rgba(255,255,255,0.06),
      0 0 20px rgba(217,119,6,0.08);
    border-color: rgba(217,119,6,0.62);
    filter: saturate(0.96) brightness(0.99);
  }
}

/* ── Panel — richer SAGE (signature primary) ── */
.card.panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 45%),
    linear-gradient(135deg, rgba(217,119,6,0.34) 55%, rgba(217,119,6,0.65) 100%),
    rgba(45,115,125,0.44);
  border-color: rgba(70,180,195,0.80);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52), 0 0 80px rgba(217,119,6,0.10);
}

/* ── Lavender ── */
.card.lavender,
.card.purple {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(25,8,58,0.92);
  border-color: rgba(139,92,246,0.65);
}

/* ── Gold (warm amber-gold) ── */
.card.gold-warm {
  background:
    radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.40) 0%, transparent 50%),
    rgba(60,30,0,0.92);
  border-color: rgba(217,119,6,0.75);
}

/* ── Amber/Orange (faith warmth) ── */
.card.amber {
  background:
    radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.50) 0%, transparent 50%),
    rgba(50,20,0,0.92);
  border-color: rgba(217,119,6,0.80);
}

/* ── Sky blue ── */
.card.sky,
.card.blue {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(4,16,55,0.92);
  border-color: rgba(96,165,250,0.65);


/* ── Rose ── */
.card.rose {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(55,4,20,0.92);
  border-color: rgba(244,63,94,0.65);
}}

/* ── Legacy aliases → teal ── */
.card.gold,
.card.teal,
.card.orange,
.card.warm {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(4,40,48,0.92);
  border-color: rgba(70,180,195,0.65);
}

/* Clickable card */
.card-link { display: block; cursor: pointer; text-decoration: none; }
.card-link:hover { text-decoration: none; }

/* ── Section card rotation: sage-gold → lavender → sky cycling ──
   Applies to cards inside .section without an explicit color class.
   Skips protected-page class names so they are never overridden. */
.section:nth-of-type(4n+1) .card:not(.panel):not(.tidbit):not(.gold):not(.teal):not(.rose):not(.purple):not(.blue):not(.orange):not(.lavender):not(.sky):not(.warm) {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(4,40,48,0.92);
  border-color: rgba(70,180,195,0.65);
}
.section:nth-of-type(4n+2) .card:not(.panel):not(.tidbit):not(.gold):not(.teal):not(.rose):not(.purple):not(.blue):not(.orange):not(.lavender):not(.sky):not(.warm) {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(25,8,58,0.92);
  border-color: rgba(139,92,246,0.65);
}
.section:nth-of-type(4n+3) .card:not(.panel):not(.tidbit):not(.gold):not(.teal):not(.rose):not(.purple):not(.blue):not(.orange):not(.lavender):not(.sky):not(.warm) {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(4,16,55,0.92);
  border-color: rgba(96,165,250,0.65);
}
.section:nth-of-type(4n+4) .card:not(.panel):not(.tidbit):not(.gold):not(.teal):not(.rose):not(.purple):not(.blue):not(.orange):not(.lavender):not(.sky):not(.warm) {
  background: radial-gradient(ellipse at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 85%, rgba(217,119,6,0.22) 0%, transparent 50%), rgba(55,4,20,0.92);
  border-color: rgba(244,63,94,0.65);
}

/* ── Story quote block ── */
.story-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: #0d2318;
  border-radius: 0 12px 12px 0;
  margin: 16px 0 0;
  font-size: 15px;
  font-style: italic;
  color: rgba(245,241,234,0.92);
  line-height: 1.8;
}
.story-quote .attr {
  font-size: 12px;
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-top: 8px;
}
/* Funders light mode override */
body.funders .story-quote {
  border-left: 4px solid #b8860b;
  background: transparent;
  color: rgba(30,20,10,0.88);
}
body.funders .story-quote .attr {
  color: #b8860b;
}

/* ── Quote ── */
.quote {
  border-left: 4px solid var(--accent);
  padding: 14px; background: rgba(255,255,255,0.05);
  border-radius: 16px; border: 1px solid rgba(217,119,6,0.45);
  color: var(--muted);
}
.quote-strip {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: #0d2318;
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(167,139,250,0.25);
  font-size: 15px;
  font-style: italic;
  color: rgba(245,241,234,0.92);
  line-height: 1.8;
  margin-top: 14px;
}
.quote-strip strong { color: var(--gold); font-style: normal; font-size: 13px; }

/* ── People ── */

.person { display: flex; gap: 14px; align-items: flex-start; }
.person h3 { margin: 0 0 6px; }
.person .role { margin: 0; color: var(--muted); font-weight: 600; }

/* ── Photo grid ── */

.photo-card img { width: 100%; height: 210px; object-fit: cover; display: block; }

/* ── Form ── */
.form { display: grid; gap: 12px; max-width: 680px; }
.row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.input {
  width: 100%; padding: 12px; border-radius: 14px;
  border: 1px solid rgba(217,119,6,0.45);
  background: rgba(255,255,255,0.05); color: var(--text);
}
textarea.input { min-height: 130px; resize: vertical; }

/* ── Icons / Lists ── */
.icon { font-size: 22px; line-height: 1; margin-bottom: 10px; opacity: 0.95; }
.list { margin: 10px 0 0; padding-left: 18px; }
.list li { margin: 6px 0; }

/* ── Accessibility ── */
:focus-visible { outline: 3px solid rgba(217,119,6,0.65); outline-offset: 3px; border-radius: 14px; }
@media (prefers-reduced-motion: reduce) {
  .btn, .card, .card-link, .nav-pill { transition: none; }
}

/* ── Card-media ── */
.card-media { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; border: 1px solid rgba(217,119,6,0.45); }
.card-media.leadership-headshot { aspect-ratio: 1/1; height: auto; border-radius: 16px; margin-bottom: 14px; }

/* ── Role cards (leadership) ── */

/* ============================================================
   PROGRAMS PAGE — prog-boxes + inner boxes
   These sit on top of oxblood. Colors unchanged per spec.
   Protected — these must never be touched by blanket overrides.
   ============================================================ */

.prog-box {
  border-radius: 18px; padding: 32px;
  position: relative; overflow: visible;
}
.prog-box.gold   { background: rgba(100,65,5,0.52);  border: 1.5px solid rgba(245,158,11,0.45); }
.prog-box.teal   { background: rgba(4,50,32,0.55);   border: 1.5px solid rgba(52,211,153,0.35); }
.prog-box.blue   { background: rgba(4,16,55,0.60);   border: 1.5px solid rgba(96,165,250,0.35); }
.prog-box.rose   { background: rgba(120,10,45,0.52); border: 1.5px solid rgba(251,113,133,0.45); }
.prog-box.purple { background: rgba(35,8,70,0.55);   border: 1.5px solid rgba(167,139,250,0.35); }
.prog-box.orange { background: rgba(70,25,4,0.55);   border: 1.5px solid rgba(251,146,60,0.42); }

.inner-box { border-radius: 14px; padding: 22px; margin-top: 16px; border: 1px solid; }
.inner-box.gold   { background: linear-gradient(135deg, rgba(245,158,11,0.30) 0%, rgba(80,45,0,0.72) 100%);    border-color: rgba(245,158,11,0.52); }
.inner-box.teal   { background: linear-gradient(135deg, rgba(16,185,129,0.26) 0%, rgba(2,44,28,0.78) 60%, rgba(217,119,6,0.14) 100%);  border-color: rgba(52,211,153,0.48); }
.inner-box.blue   { background: linear-gradient(135deg, rgba(59,130,246,0.26) 0%, rgba(4,8,55,0.80) 60%, rgba(217,119,6,0.14) 100%);   border-color: rgba(96,165,250,0.48); }
.inner-box.rose   { background: linear-gradient(135deg, rgba(244,63,94,0.28) 0%, rgba(100,5,35,0.78) 60%, rgba(217,119,6,0.14) 100%);  border-color: rgba(251,113,133,0.52); }
.inner-box.purple { background: linear-gradient(135deg, rgba(139,92,246,0.26) 0%, rgba(25,4,60,0.80) 60%, rgba(217,119,6,0.14) 100%); border-color: rgba(167,139,250,0.50); }
.inner-box.orange { background: linear-gradient(135deg, rgba(249,115,22,0.28) 0%, rgba(65,18,0,0.78) 60%, rgba(217,119,6,0.16) 100%); border-color: rgba(251,146,60,0.52); }

.program-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900; line-height: 1.15;
  margin: 0 0 8px; letter-spacing: -0.01em; color: var(--text);
}
@media (max-width: 700px) { .program-title { font-size: 26px; } }

.prog-callout {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: rgba(245,241,234,0.90); line-height: 1.4; margin: 0 0 20px;
}
@media (max-width: 700px) { .prog-callout { font-size: 18px; } }

.prog-num-badge {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 900;
  width: 40px; min-width: 40px; height: 40px;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1.5px solid;
}

.giving-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 14px; }
.giving-row-card { border-radius: var(--radius); padding: 20px; transition: border-color 0.2s; }
.prog-box.gold   .giving-row-card { background: linear-gradient(135deg, rgba(245,158,11,0.20) 0%, rgba(60,30,0,0.68) 100%);    border: 1px solid rgba(245,158,11,0.40); }
.prog-box.teal   .giving-row-card { background: linear-gradient(135deg, rgba(16,185,129,0.18) 0%, rgba(4,35,20,0.72) 60%, rgba(217,119,6,0.10) 100%); border: 1px solid rgba(52,211,153,0.30); }
.prog-box.blue   .giving-row-card { background: linear-gradient(135deg, rgba(59,130,246,0.18) 0%, rgba(4,8,45,0.72) 60%, rgba(217,119,6,0.10) 100%); border: 1px solid rgba(96,165,250,0.30); }
.prog-box.rose   .giving-row-card { background: linear-gradient(135deg, rgba(244,63,94,0.20) 0%, rgba(90,5,28,0.72) 60%, rgba(217,119,6,0.10) 100%); border: 1px solid rgba(251,113,133,0.35); }
.prog-box.purple .giving-row-card { background: linear-gradient(135deg, rgba(139,92,246,0.18) 0%, rgba(22,4,50,0.72) 60%, rgba(217,119,6,0.10) 100%); border: 1px solid rgba(167,139,250,0.30); }
.prog-box.orange .giving-row-card { background: linear-gradient(135deg, rgba(249,115,22,0.20) 0%, rgba(55,16,0,0.72) 60%, rgba(217,119,6,0.10) 100%); border: 1px solid rgba(251,146,60,0.32); }
.giving-row-card .gr-amount { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--accent); margin: 0 0 4px; display: block; }
.prog-box.teal   .giving-row-card .gr-amount { color: #6ee7b7; }
.prog-box.blue   .giving-row-card .gr-amount { color: #93c5fd; }
.prog-box.rose   .giving-row-card .gr-amount { color: #fda4af; }
.prog-box.purple .giving-row-card .gr-amount { color: #c4b5fd; }
.prog-box.orange .giving-row-card .gr-amount { color: #fdba74; }
.giving-row-card .gr-title { font-size: 14px; font-weight: 700; color: var(--text); margin: 0 0 8px; display: block; }

.skill-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.skill-pill  { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 5px 11px; font-size: 12px; color: rgba(245,241,234,0.88); }
.prog-box.gold   .skill-pill { background: rgba(245,158,11,0.10);  border: 1px solid rgba(245,158,11,0.28); }
.prog-box.teal   .skill-pill { background: rgba(52,211,153,0.09);  border: 1px solid rgba(52,211,153,0.22); }
.prog-box.blue   .skill-pill { background: rgba(96,165,250,0.09);  border: 1px solid rgba(96,165,250,0.22); }
.prog-box.rose   .skill-pill { background: rgba(251,113,133,0.10); border: 1px solid rgba(251,113,133,0.28); }
.prog-box.purple .skill-pill { background: rgba(167,139,250,0.09); border: 1px solid rgba(167,139,250,0.22); }
.prog-box.orange .skill-pill { background: rgba(251,146,60,0.10);  border: 1px solid rgba(251,146,60,0.26); }

/* ============================================================
   TOC CHIPS / JUMP CARDS  (Programs + Get Involved)
   ============================================================ */

.toc-wrap {
  margin: 10px 0 26px; padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.toc-label {
  font-size: 12px; letter-spacing: 0.2px;
  color: rgba(245,241,234,0.75); margin: 0 0 10px; font-weight: 700;
}
.toc-chips { display: flex; gap: 10px; width: 100%; }

@media (min-width: 901px) {
  .toc-chips { flex-wrap: nowrap; justify-content: space-between; align-items: stretch; }
  .toc-chips .jump-card { flex: 1; justify-content: center; }
}
@media (max-width: 900px) {
  .toc-chips { flex-direction: column; }
  .toc-chips .jump-card { width: 100%; justify-content: flex-start; border-radius: 14px; }
}

.jump-card {
  padding: 10px 14px; border-radius: 999px;
  border: 1.5px solid rgba(217,119,6,0.55);
  background: rgba(255,255,255,0.03);
  display: inline-flex; align-items: center; gap: 10px;
  width: auto; min-height: 0;
  color: #fff; text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.jump-card .icon { font-size: 16px; margin: 0; width: 18px; flex-shrink: 0; }
.jump-card h3 {
  font-size: 14px; line-height: 1.1; margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 800; letter-spacing: 0.01em;
  color: #fff;
}
.jump-card p { display: none; }
@media (hover: hover) {
  .jump-card:hover {
    border-color: rgba(217,119,6,0.90);
    background: rgba(255,255,255,0.05);
    text-decoration: none;
    transform: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #0d0502 !important;
  background-color: #0d0502 !important;
  background-image: none !important;
  border-top: 2px solid rgba(217,119,6,0.65);
  padding: 48px 0 0;
  position: relative;
  isolation: isolate;
}
.footer * { position: relative; }
.footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr !important;
  gap: 32px;
  align-items: flex-start;
}
.footer-donate { color: var(--gold); font-weight: 700; }
.footer-donate:hover { opacity: 0.9; text-decoration: underline; }
.footer-bottom {
  margin-top: 28px; padding: 16px 0;
  border-top: 1px solid rgba(217,119,6,0.30);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 8px;
}

@media (max-width: 700px) {
  .footer-grid, 
  .footer { padding: 32px 0 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding-bottom: 20px; }
}

/* ============================================================
   DONATE PAGE
   ============================================================ */

.donor-trustline .trust-item {
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05);
  padding: 6px 10px; border-radius: 999px;
}

/* ============================================================
   IMPACT PAGE — Voices
   ============================================================ */

.voices .grid3 { align-items: stretch; }
.voices .card.panel { display: flex; flex-direction: column; }
.voices 
@media (min-width: 980px) { .voices  }

/* ============================================================
   CONTACT + DONATE — signature card override
   Per spec: signature card = sage-gold (not rose)
   Targets the .response-promise and primary panel cards on those pages
   ============================================================ */

.response-promise {
  background: linear-gradient(135deg,
    rgba(122,171,128,0.22) 0%,
    rgba(40,20,8,0.75) 60%,
    rgba(217,119,6,0.14) 100%);
  border: 1.5px solid rgba(122,171,128,0.55);
  border-radius: var(--radius);
  padding: 22px;
}

/* ============================================================
   FUNDERS PAGE — Institutional Light Mode
   ============================================================ */

/* body.funders — light institutional mode */
body.funders {
  --bg0:    #f7f4ee;
  --bg1:    #ede9e0;
  --panel:  rgba(0,0,0,0.04);
  --panel2: rgba(0,0,0,0.05);
  --border: rgba(0,0,0,0.12);
  --text:   #1a1a2e;
  --muted:  #3d3a55;
  --gold:   #b45309;
  --accent: #b45309;
  --accent2:#c2410c;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --radius: 18px;
  background: linear-gradient(180deg, #f7f4ee 0%, #ede9e0 100%) !important;
  color: #1a1a2e;
}
/* Header stays dark on funders page */
body.funders .header {
  background: rgba(18,8,4,0.97) !important;
  border-bottom-color: rgba(217,119,6,0.65) !important;
}
body.funders .nav,
body.funders .navlinks { background: transparent !important; }
body.funders .brand { color: rgba(245,241,234,0.95) !important; }
body.funders .nav-pill {
  color: rgba(245,241,234,0.88) !important;
  border-color: rgba(217,119,6,0.45) !important;
  background: rgba(255,255,255,0.05) !important;
}
body.funders .nav-pill:hover {
  border-color: rgba(217,119,6,0.92) !important;
  background: rgba(255,255,255,0.08) !important;
}
body.funders .btn-primary {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%) !important;
  color: #fff !important; border: none !important;
}
body.funders .btn-primary:hover { color: #fff !important; }
/* Buttons in page body (not header) stay light-mode styled */
body.funders .section .btn-outline,
body.funders .container .btn-outline {
  border-color: rgba(160,110,0,0.45) !important;
  background: rgba(160,110,0,0.07) !important;
  color: #1a1a2e !important;
}
body.funders h1, body.funders h2, body.funders h3,
body.funders h4, body.funders .h1, body.funders .h2 { color: #1a1a2e !important; }
body.funders .header h1,
body.funders .header h2,
body.funders .header h3,
body.funders .header strong,
body.funders .header span,
body.funders .header div { color: rgba(245,241,234,0.95) !important; }
body.funders .header p,
body.funders .nav p,
body.funders .navlinks a { color: rgba(245,241,234,0.88) !important; }
body.funders p, body.funders li { color: #3d3a55 !important; }
body.funders strong { color: #1a1a2e !important; }
body.funders .kicker { color: #6b5a1e !important; }
body.funders .dot { background: #b45309 !important; box-shadow: none !important; }
body.funders .card,
body.funders .card.panel,
body.funders .card.teal,
body.funders .card.blue,
body.funders .card.rose,
body.funders .card.purple,
body.funders .card.orange,
body.funders .card.gold,
body.funders .card.lavender,
body.funders .card.sky {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.09) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07) !important;
  color: #1a1a2e !important; filter: none !important;
}
body.funders .card h3 { color: #1a1a2e !important; }
body.funders .card p,
body.funders .card li { color: #3d3a55 !important; }
body.funders .card strong { color: #1a1a2e !important; }
body.funders .card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.12) !important;
  border-color: rgba(160,110,0,0.35) !important;
  filter: none !important;
}
body.funders .quote,
body.funders .quote-strip {
  border-left: 4px solid #b8860b;
  background: #0d2318;
  color: rgba(245,241,234,0.92);
}
body.funders .quote-strip strong { color: var(--gold); font-style: normal; font-size: 13px; }

/* Footer — force dark so text is readable on dark footer background */
body.funders .footer {
  background: #0d0502 !important;
  background-color: #0d0502 !important;
}
body.funders .footer-bottom { border-top-color: rgba(217,119,6,0.35) !important; }
body.funders .footer-donate { color: #D97706 !important; }
body.funders .footer a { color: rgba(245,241,234,0.80) !important; }
body.funders .footer a:hover { color: #D97706 !important; }
body.funders .footer h3,
body.funders .footer strong,
body.funders .footer div,
body.funders .footer p,
body.funders .footer span { color: rgba(245,241,234,0.82) !important; }
body.funders .section-label { color: #b45309 !important; }
body.funders .section-label::before { background: #b45309 !important; }

/* ============================================================
   GLOBAL RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 920px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .h1         { font-size: 44px; }
  .grid3      { grid-template-columns: 1fr; }
  .grid2      { grid-template-columns: 1fr; }
  .row        { grid-template-columns: 1fr; }
  
  .photo-card img { height: 220px; }
  .feature    { grid-template-columns: 1fr; }
  .feature > img { max-height: 340px; }
}
@media (max-width: 700px) {
  .giving-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .navlinks { gap: 6px; }
  .btn { padding: 8px 10px; font-size: 13px; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .stat-bar { flex-wrap: wrap; }
  .stat-bar-item { flex: 1 1 45%; min-width: 0; }
  .gt-stat-bar { flex-wrap: wrap; }
  .gt-stat-cell { flex: 1 1 30%; min-width: 0; }
  .gt-bio-grid { grid-template-columns: 1fr; }
  .gt-cols { grid-template-columns: 1fr; }
  .gt-col-quote { border-left: none; border-right: none; padding: 18px 0; border-top: 2px solid rgba(217,119,6,0.55); border-bottom: 2px solid rgba(217,119,6,0.55); }
  .gt-data-strip { grid-template-columns: 1fr 1fr; }
  .gt-service-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr !important; }
  .board-member-card { grid-template-columns: 1fr !important; }
  .feature { grid-template-columns: 1fr !important; }
  .program-stats { grid-template-columns: 1fr 1fr; }
  .composition-strip { grid-template-columns: 1fr 1fr; }
  
  .checklist-grid { grid-template-columns: 1fr; }
  .check-item:nth-child(odd) { border-right: none; }
  .about-hero-inner { grid-template-columns: 1fr !important; }
  .garrett-card { grid-template-columns: 1fr; }
  .leader-card-featured { grid-template-columns: 1fr; }
  .board-member-card[style*="grid-column"] { grid-template-columns: 1fr !important; }
  
  .footer .footer-grid { grid-template-columns: 1fr !important; padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .cta { flex-wrap: wrap; gap: 8px; }
  .gt-section [style*="grid-template-columns: 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .gt-section [style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .gt-section [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .promise-grid, [style*="grid-template-columns: 1fr 1fr 1fr"][style*="1a2e1a"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .gt-service-grid { grid-template-columns: 1fr; }
  .gt-stat-cell { flex: 1 1 45%; }
  .program-stats { grid-template-columns: 1fr 1fr; }
  .gt-data-strip { grid-template-columns: 1fr 1fr; }
  .h1 { font-size: clamp(28px, 8vw, 52px); }
}
