/* ============================================
   FACHO — Design System
   Palette: Navy · Crimson · Warm White · Gold
   Fonts: Bricolage Grotesque + Source Serif 4
   ============================================ */

:root {
  --navy:       #0A1628;
  --navy-mid:   #122040;
  --navy-light: #1E3A5F;
  --crimson:    #C41E3A;
  --crimson-dk: #9B1530;
  --crimson-lt: #E8324D;
  --gold:       #D4A017;
  --gold-lt:    #F0C040;
  --warm-white: #F8F4EF;
  --off-white:  #EDE8E1;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A6A;
  --text-light: #8A8AAA;
  --white:      #FFFFFF;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Source Serif 4', serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 24px 64px rgba(10,22,40,0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  border: 1.5px solid var(--off-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}
textarea { resize: vertical; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--crimson);
}
.section-label--light { color: var(--gold); }
.section-label--light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,30,58,0.3);
}
.btn--primary:hover {
  background: var(--crimson-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,30,58,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--full { width: 100%; justify-content: center; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(10,22,40,0.3);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 2px;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.05em;
}
.nav__logo-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__cta {
  background: var(--crimson) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--crimson-dk) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__diagonal {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 120px;
  background: var(--warm-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  pointer-events: none;
}
.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero__title-line { color: var(--white); }
.hero__title-line--accent { color: var(--crimson); }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__emblem {
  position: relative;
  flex-shrink: 0;
}
.hero__emblem img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(212,160,23,0.3));
}
.hero__emblem-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__scroll-hint {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-bar {
  background: var(--crimson);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-dot { color: rgba(255,255,255,0.5) !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 7rem 0;
  background: var(--warm-white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about__visual { position: relative; }
.about__img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__img-frame:hover img { transform: scale(1.03); }
.about__img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--crimson);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__img-badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about__img-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about__quote-card {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--navy);
  color: var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-style: italic;
  font-size: 0.9rem;
  max-width: 220px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}
.about__content p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--crimson);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.pillar__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}
.pillar p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* ============================================
   MISSION
   ============================================ */
.mission {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.mission__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
}
.mission .container { position: relative; z-index: 1; }
.mission__header {
  text-align: center;
  margin-bottom: 4rem;
}
.mission__header .section-label { justify-content: center; }
.mission__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.mission__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(10px);
}
.mission__card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.3);
}
.mission__card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212,160,23,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.mission__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.mission__card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.mission__manifesto {
  text-align: center;
  padding: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mission__manifesto blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}
.mission__manifesto blockquote::before {
  content: '"';
  font-size: 6rem;
  color: var(--crimson);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-display);
  line-height: 1;
}

/* ============================================
   IMPACT STATS
   ============================================ */
.impact {
  padding: 7rem 0;
  background: var(--warm-white);
}
.impact__header {
  text-align: center;
  margin-bottom: 4rem;
}
.impact__header .section-label { justify-content: center; }
.impact__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--crimson);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.stat__desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ============================================
   PROGRAMS
   ============================================ */
.programs {
  padding: 7rem 0;
  background: var(--off-white);
}
.programs__header { margin-bottom: 3.5rem; }
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--off-white);
}
.program-card:hover::before { transform: scaleX(1); }
.program-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(196,30,58,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--crimson);
}
.program-card__icon svg { width: 28px; height: 28px; }
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.program-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.program-card__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--crimson);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.program-card__link:hover { gap: 0.5rem; }

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 7rem 0;
  background: var(--warm-white);
}
.team__header { margin-bottom: 3.5rem; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__img {
  height: 220px;
  overflow: hidden;
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-card__img img { transform: scale(1.05); }
.team-card__info { padding: 1.5rem; }
.team-card__info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-card__info span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.75rem;
}
.team-card__info p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================
   DONATE
   ============================================ */
.donate {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.donate__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--crimson-dk) 100%);
}
.donate .container { position: relative; z-index: 1; }
.donate__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.donate__content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.donate__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.donate__list li {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.donate__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.donate__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.amount-btn {
  padding: 0.6rem 0.5rem;
  border: 2px solid var(--off-white);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--crimson);
  background: var(--crimson);
  color: var(--white);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.donate__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ============================================
   VOLUNTEER
   ============================================ */
.volunteer {
  padding: 7rem 0;
  background: var(--off-white);
}
.volunteer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.volunteer__text p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.volunteer__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.volunteer__roles span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--off-white);
  border-radius: 100px;
  color: var(--navy);
  transition: all var(--transition);
}
.volunteer__roles span:hover {
  border-color: var(--crimson);
  color: var(--crimson);
  background: rgba(196,30,58,0.05);
}
.volunteer__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.volunteer__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 7rem 0;
  background: var(--warm-white);
}
.contact__header { margin-bottom: 3.5rem; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(196,30,58,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }
.contact-item .small { font-size: 0.8rem; color: var(--text-light); }
.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact__social a {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.contact__social a:hover { background: var(--crimson); transform: translateY(-2px); }
.contact__social svg { width: 18px; height: 18px; }
.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__motto {
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 0.5rem !important;
  font-size: 0.85rem !important;
}
.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
}
.footer__links h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  z-index: 9999;
  border-left: 4px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon {
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.toast__msg {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__emblem { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__quote-card { display: none; }
  .mission__cards { grid-template-columns: repeat(2, 1fr); }
  .impact__stats { grid-template-columns: repeat(2, 1fr); }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .donate__inner { grid-template-columns: 1fr; gap: 3rem; }
  .volunteer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.25rem; padding: 0.75rem 2rem; }
  .nav__toggle { display: flex; z-index: 1000; }
  .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 7rem 1.5rem 5rem; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .mission__cards { grid-template-columns: 1fr; }
  .impact__stats { grid-template-columns: 1fr 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .donate__amounts { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr; }
  .impact__stats { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}