/* =====================================================
   SKYLAR'S HOPE FOR CHANGE — Main Stylesheet
   Palette: Charcoal · Deep Purple · Amber · Lavender-Grey
   Grief held in purple, hope carried in amber.
   ===================================================== */

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

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Core Colors — grief carried in purple, hope burning in amber */
  --navy:          #3A1860;   /* deep somber purple — the weight of loss */
  --navy-dark:     #141320;   /* near-black charcoal — the darkest hours */
  --navy-mid:      #1E1C30;   /* dark charcoal-purple — the long nights */
  --orange:        #C96B12;   /* warm amber — the ember that won't go out */
  --orange-dark:   #A35208;   /* deeper amber — for hover states */
  --orange-light:  #E08520;   /* bright amber-gold — the flicker of hope */
  --sand:          #8A88A4;   /* muted grey-lavender — the in-between */
  --sand-light:    #EAE6F5;   /* soft lavender-grey — light surfaces */
  --sand-mid:      #DAD6EC;   /* mid lavender — borders on light */
  --gold:          #B8780E;   /* amber-gold — warmth in the dark */
  --gold-light:    #D49020;   /* lighter amber-gold — for text on dark */
  --white:         #FFFFFF;
  --off-white:     #F2EFF8;   /* whisper of lavender — never stark white */
  --text-dark:     #16142A;   /* near-black with purple undertone */
  --text-mid:      #363450;   /* mid-dark purple-grey */
  --text-light:    #6C6A84;   /* softer text — not cold grey, but worn */
  --border:        #CCCAE0;   /* lavender-grey borders */

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py:  80px;
  --container:   1160px;
  --gap-lg:      48px;
  --gap-md:      32px;
  --gap-sm:      20px;

  /* Shape */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows — purple-dark toned, not cold grey */
  --shadow-sm: 0 2px 8px rgba(30,18,72,0.09);
  --shadow-md: 0 4px 24px rgba(30,18,72,0.14);
  --shadow-lg: 0 8px 48px rgba(30,18,72,0.2);

  /* Transitions */
  --t: 0.25s ease;
  --t-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: var(--font-body); }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.75rem);   font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}
p:last-child { margin-bottom: 0; }

strong { color: var(--text-dark); font-weight: 600; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }

.leadership-v2 { background: #fff; }
.leadership-head { max-width: 680px; margin: 0 auto 40px; }
.leadership-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}
.leader-card {
  flex: 1 1 170px;
  min-width: 170px;
  max-width: 100%;
  padding: 24px 20px;
  border: 1px solid rgba(58, 24, 96, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(37, 20, 55, 0.05);
}
.leader-card span {
  display: block;
  color: #c7157b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.leader-card h3 { font-size: 1.15rem; margin-bottom: 13px; }
.leader-card a {
  display: block;
  font-size: 0.8rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  color: var(--text-light);
}
.leader-card a:hover { color: #c7157b; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 20px; }

.section-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 680px;
  color: var(--text-mid);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }

.text-center  { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin: 20px 0 28px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* White text variants */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p    { color: rgba(255,255,255,0.82); }
.on-dark .section-label { color: var(--gold-light); }
.on-dark .divider { background: linear-gradient(90deg, var(--orange-light), var(--gold-light)); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(201,107,18,0.38);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-lg { padding: 17px 44px; font-size: 1.0625rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--t);
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-tag {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto 0 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 5px;
  transition: all var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
  transform-origin: center;
}

.nav-mobile {
  display: none;
  background: var(--navy-dark);
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }

/* =====================================================
   HERO — Homepage
   ===================================================== */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

/* PHOTO PLACEHOLDER: Add real hero image here
   Replace the gradient below with:
   background-image: url('assets/images/hero-background.jpg');
   background-size: cover;
   background-position: center top; */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(14,13,22,0.25) 0%, rgba(30,18,72,0.23) 55%, rgba(20,18,48,0.25) 100%),
    radial-gradient(ellipse at 72% 44%, rgba(201,107,18,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 22% 75%, rgba(184,120,14,0.1) 0%, transparent 50%);
}

.hero-logo-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 680px;
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.28;
}

.hero-logo-watermark img {
  width: 135%;
  max-width: none;
  height: 135%;
  object-fit: cover;
  object-position: center;
  transform: translate(-17.5%, -17.5%);
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.13;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 44px;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* =====================================================
   PAGE HERO (interior pages)
   ===================================================== */
.page-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 60%, #2A1840 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 82% 40%, rgba(201,107,18,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.075rem; max-width: 600px; }

/* =====================================================
   PROGRAM CARDS
   ===================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Full program card (programs page) */
.program-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 6px 1fr;
  transition: box-shadow var(--t), transform var(--t);
  margin-bottom: 24px;
}

.program-full:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.program-full-accent { background: var(--orange); }

.program-full-body {
  padding: 36px;
}

.program-full-body h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.program-full-body h3 .prog-icon {
  width: 44px;
  height: 44px;
  background: var(--sand-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.program-full-body h3 .prog-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-full-body p { font-size: 0.9375rem; line-height: 1.7; }

/* =====================================================
   MISSION / STORY SECTIONS
   ===================================================== */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission-quote-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
}

.mission-quote-box .big-q {
  position: absolute;
  top: -18px;
  left: 30px;
  font-family: var(--font-heading);
  font-size: 7rem;
  color: var(--orange);
  opacity: 0.22;
  line-height: 1;
  user-select: none;
}

.mission-quote-box blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  position: relative;
}

.mission-quote-box cite {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =====================================================
   STORY (photo placeholder)
   ===================================================== */
.story-wrap {
  background: var(--sand-light);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin: 0 24px;
}

.photo-placeholder {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.65;
  border: 2px dashed rgba(255,255,255,0.18);
}

.photo-placeholder svg {
  width: 44px;
  height: 44px;
  opacity: 0.3;
  margin-bottom: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.photo-placeholder .ph-label {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-style: italic;
}

.story-portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.story-wrap .story-portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* =====================================================
   IMPACT VISION (dark bg)
   ===================================================== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  transition: background var(--t), border-color var(--t);
}

.impact-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.impact-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(201,107,18,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  padding-top: 8px;
}

/* =====================================================
   DONATION CTA BAND
   ===================================================== */
.donation-band {
  background: linear-gradient(135deg, var(--orange) 0%, #8A4A06 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donation-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.09) 0%, transparent 65%);
}

.donation-band .container { position: relative; }
.donation-band h2 { color: var(--white); margin-bottom: 16px; }
.donation-band p  {
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 44px;
}

.donation-band .btn {
  font-size: 1.0625rem;
  padding: 16px 48px;
}

/* =====================================================
   VOLUNTEER / PARTNER SECTION
   ===================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.audience-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.83);
  transition: background var(--t), border-color var(--t);
}

.audience-chip:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.audience-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* =====================================================
   FINAL CLOSING CTA
   ===================================================== */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--off-white);
}

.final-cta .quote-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.final-cta .quote-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--orange);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.45;
}

/* =====================================================
   INVOLVE CARDS (get-involved page)
   ===================================================== */
.involve-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.involve-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.involve-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.involve-volunteer { background: var(--sand-light); border: 1px solid var(--border); }
.involve-volunteer .involve-icon { background: rgba(201,107,18,0.13); }
.involve-volunteer .involve-icon svg { stroke: var(--orange); }

.involve-donate { background: var(--navy); }
.involve-donate h3, .involve-donate p { color: var(--white); }
.involve-donate p { color: rgba(255,255,255,0.78); }
.involve-donate .involve-icon { background: rgba(255,255,255,0.1); }
.involve-donate .involve-icon svg { stroke: var(--gold-light); }

.involve-partner { background: var(--sand-light); border: 1px solid var(--border); }
.involve-partner .involve-icon { background: rgba(184,120,14,0.15); }
.involve-partner .involve-icon svg { stroke: var(--gold); }

.involve-sponsor { background: var(--off-white); border: 1.5px solid var(--border); }
.involve-sponsor .involve-icon { background: rgba(58,24,96,0.08); }
.involve-sponsor .involve-icon svg { stroke: var(--navy); }

/* =====================================================
   DONATE PAGE — Progress Bar
   ===================================================== */
.progress-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto 56px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.progress-raised {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.progress-raised-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-body);
  margin-left: 4px;
}

.progress-goal-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  text-align: right;
}

.progress-goal-text strong { color: var(--text-dark); }

.progress-track {
  height: 14px;
  background: var(--sand-light);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 100px;
  width: 0;
  transition: width 1.6s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.progress-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-light);
}

.progress-meta strong { color: var(--text-dark); }

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.contact-sidebar {
  position: sticky;
  top: 88px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-info-value a {
  color: var(--orange);
  transition: color var(--t);
}

.contact-info-value a:hover { color: var(--orange-dark); }

/* Form */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201,107,18,0.16);
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =====================================================
   PLACEHOLDER INFO BOX
   ===================================================== */
.placeholder-box {
  background: rgba(184,120,14,0.08);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 20px;
}

.placeholder-box p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0;
  font-style: italic;
}

.placeholder-box p strong {
  color: var(--navy);
  font-style: normal;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.56);
  line-height: 1.75;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--gold);
  margin: 0 !important;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.56);
  transition: color var(--t);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.56);
  margin-bottom: 12px;
}

.footer-contact-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.footer-contact-row a {
  color: rgba(255,255,255,0.56);
  transition: color var(--t);
}

.footer-contact-row a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-3 .fade-up:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .fade-up:nth-child(3) { transition-delay: 0.2s; }
.grid-3 .fade-up:nth-child(4) { transition-delay: 0.3s; }
.grid-3 .fade-up:nth-child(5) { transition-delay: 0.4s; }
.grid-3 .fade-up:nth-child(6) { transition-delay: 0.5s; }

.grid-4 .fade-up:nth-child(2) { transition-delay: 0.1s; }
.grid-4 .fade-up:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =====================================================
   UTILITY
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.bg-navy      { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-sand      { background: var(--sand-light); }

.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mission-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-wrap { grid-template-columns: 1fr; gap: 36px; padding: 44px; }
  .story-wrap .story-portrait { aspect-ratio: 16/9; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }

  .story-wrap { padding: 36px 24px; margin: 0 16px; }
  .hero-stats { gap: 24px; }

  .progress-top { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .progress-meta { flex-direction: column; gap: 6px; }
}
