:root {
  --purple-deep: #4A1472;
  --purple: #6B2F8C;
  --purple-light: #9B59C8;
  --purple-pale: #F0E8FF;
  --gold: #C9A84C;
  --gold-dark: #A07828;
  --gold-light: #F0D080;
  --gold-pale: #FFF8E8;
  --sunset-orange: #F58C3A;
  --sunset-coral: #E8614A;
  --navy: #1B2F48;
  --white: #FFFFFF;
  --cream: #FFFBF4;
  --gray: #6B7280;
  --gray-light: #F5F3FF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(107,47,140,0.1);
}

.header-main {
  display: flex;
  align-items: center;
  padding: 12px 32px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  color: var(--gold-dark);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: var(--purple);
  letter-spacing: 0.8px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.lang-link:hover { color: var(--purple); }

.header-pills {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  border-radius: 999px;
  padding: 9px 18px;
  border: 2.5px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.pill-hotline {
  background: var(--sunset-orange);
  color: var(--white);
  border-color: var(--sunset-orange);
}

.pill-hotline:hover { background: #d9752a; border-color: #d9752a; }

.pill-donate {
  background: var(--white);
  color: var(--purple);
  border-color: var(--purple);
}

.pill-donate:hover { background: var(--purple); color: var(--white); }

.header-wave {
  height: 40px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.header-wave svg { display: block; width: 100%; height: 100%; }

/* ========================================
   SAFETY BAR
   ======================================== */
.safety-bar {
  background: linear-gradient(90deg, #4A1472 0%, #6B2F8C 50%, #8B3FA8 100%);
  color: white;
  padding: 10px 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.safety-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.safety-urgent { color: #FFD700; }
.safety-sep { opacity: 0.4; }
.safety-bar a { color: #FFD700; font-weight: 800; text-decoration: underline; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/hero/hero.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,20,114,0.90) 0%,
    rgba(107,47,140,0.78) 45%,
    rgba(245,140,58,0.50) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 80px;
  max-width: 680px;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.92;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  border-radius: 999px;
  padding: 16px 32px;
  border: 2.5px solid transparent;
  transition: all 0.2s;
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hero-btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.hero-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.75);
}

.hero-btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 22px;
  opacity: 0.55;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ========================================
   PILLARS — 4-PHASE MODEL
   ======================================== */
.pillars-section {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.pillars-section .section-sub { margin: 0 auto 52px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  border-radius: 20px;
  padding: 40px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: white;
  transition: transform 0.3s;
}

.pillar-card:hover { transform: translateY(-6px); }

.pillar-1 { background: linear-gradient(145deg, #3A0E62 0%, #5A2080 100%); }
.pillar-2 { background: linear-gradient(145deg, #6B2F8C 0%, #9B3FDE 100%); }
.pillar-3 { background: linear-gradient(145deg, #A07828 0%, #C9A84C 100%); }
.pillar-4 { background: linear-gradient(145deg, #C05020 0%, #F58C3A 100%); }

.pillar-num {
  font-size: 64px;
  font-weight: 900;
  opacity: 0.12;
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
}

.pillar-icon-wrap { font-size: 36px; margin-bottom: 16px; }

.pillar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pillar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.pillar-card ul li {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  padding-left: 18px;
  position: relative;
}

.pillar-card ul li::before { content: "→"; position: absolute; left: 0; opacity: 0.65; }

/* ========================================
   WHO WE SERVE
   ======================================== */
.who-section {
  background: linear-gradient(135deg, #3A0E62 0%, #6B2F8C 60%, #8B3FA8 100%);
  padding: 100px 0;
  color: white;
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.who-text p { font-size: 17px; opacity: 0.9; margin-bottom: 24px; }

.who-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }

.who-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}

.who-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-light); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-gold:hover { background: var(--gold-light); }

.who-visual { display: flex; flex-direction: column; gap: 32px; }

.who-quote {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.45;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}

.who-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.who-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.who-stat-icon { font-size: 32px; margin-bottom: 10px; }
.who-stat-label { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }

/* ========================================
   WHAT WE PROVIDE
   ======================================== */
.provide-section {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.provide-section .section-sub { margin: 0 auto 52px; }

.provide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.provide-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: left;
  border-top: 4px solid transparent;
  transition: all 0.3s;
}

.provide-card:nth-child(1) { border-top-color: var(--purple-deep); }
.provide-card:nth-child(2) { border-top-color: var(--purple-light); }
.provide-card:nth-child(3) { border-top-color: var(--gold); }
.provide-card:nth-child(4) { border-top-color: var(--sunset-orange); }
.provide-card:nth-child(5) { border-top-color: var(--sunset-coral); }
.provide-card:nth-child(6) { border-top-color: var(--gold-dark); }

.provide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107,47,140,0.12);
}

.provide-icon { font-size: 40px; margin-bottom: 16px; }

.provide-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.provide-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ========================================
   INTAKE PROCESS
   ======================================== */
.intake-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #FFF5E0 100%);
  text-align: center;
}

.intake-section .section-sub { margin: 0 auto 52px; }

.intake-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.intake-step {
  background: white;
  border-radius: 20px;
  padding: 40px 24px;
  width: 220px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A1472, #6B2F8C);
  color: white;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.intake-step h3 { font-size: 17px; font-weight: 800; color: var(--purple-deep); margin-bottom: 10px; }
.intake-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.intake-arrow {
  font-size: 26px;
  color: var(--gold);
  font-weight: 900;
  padding: 0 16px;
  align-self: center;
  flex-shrink: 0;
}

.intake-note {
  display: inline-block;
  background: white;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-left: 4px solid var(--purple);
}

/* ========================================
   MISSION
   ======================================== */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1B0A3B 0%, #4A1472 45%, #8B3040 80%, #C85020 100%);
  color: white;
  text-align: center;
}

.mission-inner .section-heading {
  color: white;
  font-size: 46px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.mission-inner > p {
  font-size: 18px;
  opacity: 0.88;
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.mission-stat { border-top: 3px solid var(--gold); padding-top: 24px; }

.mission-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
}

.mission-stat-label {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.8;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ========================================
   DUAL CTA
   ======================================== */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cta-card {
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}

.cta-help {
  background: linear-gradient(145deg, #3A0E62 0%, #6B2F8C 100%);
  color: white;
}

.cta-support {
  background: linear-gradient(145deg, #A07828 0%, #C9A84C 100%);
  color: var(--navy);
}

.cta-icon { font-size: 48px; margin-bottom: 20px; }

.cta-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-card p { font-size: 16px; opacity: 0.88; margin-bottom: 32px; line-height: 1.6; }

.cta-btn-light {
  display: inline-block;
  background: white;
  color: var(--purple-deep);
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.2s;
}

.cta-btn-light:hover { background: var(--purple-pale); }

.cta-btn-navy {
  display: inline-block;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.2s;
}

.cta-btn-navy:hover { background: #0F1D30; }

/* ========================================
   PARTNERS
   ======================================== */
.partners-section {
  padding: 80px 0;
  background: white;
  text-align: center;
  border-top: 1px solid #EEE;
}

.partners-section .section-heading { margin-bottom: 16px; }

.partners-placeholder {
  margin-top: 24px;
  padding: 40px;
  border: 2px dashed #C9A84C;
  border-radius: 16px;
  color: var(--gray);
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-placeholder a { color: var(--purple); font-weight: 700; text-decoration: none; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: linear-gradient(135deg, #1B0A3B 0%, #1B2F48 100%);
  color: rgba(255,255,255,0.80);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding: 72px 32px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-text {
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-desc { font-size: 14px; line-height: 1.7; opacity: 0.72; }

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact p { font-size: 14px; margin-bottom: 12px; }
.footer-contact a { color: var(--gold-light); text-decoration: none; }

.footer-safety-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border-left: 3px solid var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.6;
}

.footer-bottom a { color: inherit; text-decoration: underline; }

.footer-exit {
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: inherit;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   FLOATING EXIT
   ======================================== */
.floating-exit {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 2000;
  background: var(--sunset-coral);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 13px;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: all 0.2s;
}

.floating-exit:hover { background: #C54030; transform: scale(1.05); }

/* ========================================
   SUBPAGE HERO
   ======================================== */
.page-hero {
  padding: 100px 32px 80px;
  color: white;
  text-align: center;
}

.page-hero-help {
  background: linear-gradient(135deg, #3A0E62 0%, #6B2F8C 60%, #8B3FA8 100%);
}

.page-hero-support {
  background: linear-gradient(135deg, #8B5A00 0%, #C9A84C 70%, #F0D080 100%);
  color: var(--navy);
}

.page-hero-donate {
  background: linear-gradient(135deg, #C05020 0%, #F58C3A 60%, #F0D080 100%);
  color: var(--navy);
}

.page-hero-privacy {
  background: linear-gradient(135deg, #1B2F48 0%, #4A1472 100%);
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.page-hero .section-eyebrow { margin-bottom: 16px; }

/* ========================================
   GET HELP PAGE
   ======================================== */
.emergency-box {
  background: linear-gradient(135deg, #8B0000, #C0392B);
  color: white;
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.emergency-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.emergency-box p { font-size: 15px; opacity: 0.9; }
.emergency-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-emergency {
  display: inline-block;
  background: white;
  color: #8B0000;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  white-space: nowrap;
}

.btn-hotline-outline {
  display: inline-block;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.7);
  white-space: nowrap;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-for-card {
  background: var(--purple-pale);
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid var(--purple);
}

.who-for-card .card-icon { font-size: 32px; margin-bottom: 14px; }
.who-for-card h3 { font-size: 17px; font-weight: 800; color: var(--purple-deep); margin-bottom: 8px; }
.who-for-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-grid h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 16px;
}

.contact-grid > div > p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.contact-box {
  background: var(--purple-pale);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.contact-box p { font-size: 15px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
.contact-box a { color: var(--purple); font-weight: 800; text-decoration: none; }
.contact-direct { font-size: 20px; font-weight: 900; color: var(--purple-deep); display: block; margin-bottom: 10px; }

/* ========================================
   SUPPORT A RESIDENT / DONATE
   ======================================== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.impact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(107,47,140,0.08);
  border-top: 4px solid var(--gold);
}

.impact-amount {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.impact-covers {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.impact-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.donate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.donate-option-card {
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.donate-option-monthly {
  background: linear-gradient(145deg, #3A0E62, #6B2F8C);
  color: white;
}

.donate-option-onetime {
  background: linear-gradient(145deg, #A07828, #C9A84C);
  color: var(--navy);
}

.donate-option-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.donate-option-card p { font-size: 15px; opacity: 0.88; margin-bottom: 28px; line-height: 1.6; }

.btn-donate-white {
  display: inline-block;
  background: white;
  color: var(--purple-deep);
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-donate-navy {
  display: inline-block;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.2s;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.amount-btn {
  background: var(--purple-pale);
  border: 2.5px solid var(--purple-light);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.amount-btn:hover { background: var(--purple); border-color: var(--purple); }
.amount-btn .amount { font-size: 28px; font-weight: 900; color: var(--purple-deep); display: block; margin-bottom: 6px; }
.amount-btn:hover .amount { color: white; }
.amount-btn .amount-desc { font-size: 12px; color: var(--gray); }
.amount-btn:hover .amount-desc { color: rgba(255,255,255,0.8); }

.donate-form-area {
  background: white;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 12px 40px rgba(107,47,140,0.10);
  text-align: center;
}

.donate-form-area h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.donate-form-area p { color: var(--gray); margin-bottom: 32px; font-size: 15px; }

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #EEE;
}

.trust-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px;
}

.privacy-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple-deep);
  margin: 48px 0 16px;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.privacy-content ul li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.privacy-content ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

.privacy-alert {
  background: linear-gradient(135deg, #3A0E62, #6B2F8C);
  color: white;
  border-radius: 16px;
  padding: 28px 32px;
  margin: 32px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* ========================================
   ICON SYSTEM — Font Awesome Solid
   Colors drawn from the hummingbird logo
   ======================================== */

:root {
  --logo-teal:      #2BB5AE;
  --logo-navy:      #1A3F6A;
  --logo-pink:      #E8175D;
  --logo-rose:      #D45080;
  --logo-deep-rose: #C03468;
  --logo-dark-teal: #0B7F8A;
  --logo-peach:     #F4A090;
}

/* Inline icons — pills, footer, alerts, contact-direct links */
.icon-inline {
  font-size: 0.82em;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -0.06em;
}

/* Pillar card icons — white on the dark colored card backgrounds */
.pillar-icon-wrap { color: rgba(255, 255, 255, 0.92); }

/* Who We Serve stat icons — logo palette on dark gradient */
.who-stat:nth-child(1) .who-stat-icon { color: var(--logo-teal); }
.who-stat:nth-child(2) .who-stat-icon { color: var(--logo-peach); }
.who-stat:nth-child(3) .who-stat-icon { color: #ffffff; }
.who-stat:nth-child(4) .who-stat-icon { color: var(--logo-pink); }

/* What We Provide icons — one logo color per card */
.provide-card:nth-child(1) .provide-icon { color: var(--logo-navy); }
.provide-card:nth-child(2) .provide-icon { color: var(--logo-teal); }
.provide-card:nth-child(3) .provide-icon { color: var(--logo-pink); }
.provide-card:nth-child(4) .provide-icon { color: var(--logo-rose); }
.provide-card:nth-child(5) .provide-icon { color: var(--logo-deep-rose); }
.provide-card:nth-child(6) .provide-icon { color: var(--logo-dark-teal); }

/* CTA section icons */
.cta-help  .cta-icon { color: rgba(255, 255, 255, 0.92); }
.cta-support .cta-icon { color: var(--logo-navy); }

/* Who For card icons (get-help page) */
.who-for-card:nth-child(1) .card-icon { color: var(--logo-pink); }
.who-for-card:nth-child(2) .card-icon { color: var(--logo-navy); }
.who-for-card:nth-child(3) .card-icon { color: var(--logo-teal); }

/* Donate giving-type large icons */
.donate-large-icon { margin-bottom: 20px; font-size: 44px; }
.donate-option-monthly .donate-large-icon { color: var(--logo-teal); }
.donate-option-onetime .donate-large-icon { color: var(--logo-pink); }

/* "What Your Gift Funds" icons — dark purple section */
.gift-icon { margin-bottom: 12px; font-size: 32px; }

/* Support-a-resident "What It Means" icons */
.support-icon { margin-bottom: 16px; font-size: 40px; }

/* Trust badge icons — small, each a distinct logo color */
.trust-badge i { font-size: 12px; vertical-align: middle; margin-right: 5px; }
.trust-badges .trust-badge:nth-child(1) i { color: var(--logo-navy); }
.trust-badges .trust-badge:nth-child(2) i { color: var(--logo-pink); }
.trust-badges .trust-badge:nth-child(3) i { color: var(--logo-teal); }
.trust-badges .trust-badge:nth-child(4) i { color: var(--logo-rose); }

/* Contact option icons (get-help page) */
.contact-option i { font-size: 15px; flex-shrink: 0; }
.contact-options .contact-option:nth-child(1) i { color: var(--logo-pink); }
.contact-options .contact-option:nth-child(2) i { color: var(--logo-teal); }
.contact-options .contact-option:nth-child(3) i { color: var(--logo-navy); }
.contact-options .contact-option:nth-child(4) i { color: var(--logo-rose); }

/* Footer contact icons */
.footer-contact i.icon-inline { color: var(--logo-teal); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-pillars { grid-template-columns: repeat(2, 1fr); }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-main { flex-wrap: wrap; gap: 12px; }
  .nav { order: 3; flex: 100%; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .header-right { margin-left: auto; }
  .brand-logo { height: 60px; }
  .brand-name { font-size: 26px; }
  .hero-inner { padding: 60px 32px; }
  .hero-title { font-size: 48px; }
  .who-inner { grid-template-columns: 1fr; gap: 40px; }
  .provide-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-heading { font-size: 34px; }
  .intake-steps { flex-direction: column; align-items: center; }
  .intake-arrow { transform: rotate(90deg); }
  .impact-grid { grid-template-columns: 1fr; }
  .donate-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-for-grid { grid-template-columns: 1fr; }
  .emergency-box { flex-direction: column; text-align: center; }
  .emergency-actions { justify-content: center; }
  .page-hero h1 { font-size: 40px; }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .provide-grid { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 38px; }
  .safety-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .header-pills { flex-direction: column; }
  .donate-form-area { padding: 32px 24px; }
  .cta-card { padding: 48px 32px; }
}
