:root {
  --cream: #fdf8f2;
  --warm-white: #fff9f4;
  --gold: #c8973a;
  --gold-light: #e8c97a;
  --gold-pale: #f7edd5;
  --terra: #b85c3a;
  --terra-light: #f0d5cb;
  --slate: #2c2c2c;
  --slate-mid: #5a5a5a;
  --slate-light: #8a8a8a;
  --rose-soft: #f5e8e4;
  --green-soft: #e8f0ec;
  --green: #4a7a5c;
  --border: #e8dfd4;
  --shadow: 0 4px 24px rgba(44,44,44,0.07);
  --shadow-lg: 0 12px 48px rgba(44,44,44,0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--slate); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--slate); letter-spacing: 0.01em; line-height: 1.1; }
.nav-logo-sub { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.83rem; font-weight: 500; color: var(--slate-mid); letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover { color: var(--terra); }
.nav-ctas { display: flex; gap: 0.75rem; align-items: center; }
.btn-outline { padding: 0.5rem 1.1rem; border: 1.5px solid var(--terra); border-radius: 100px; color: var(--terra); font-size: 0.8rem; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; }
.btn-outline:hover { background: var(--terra); color: #fff; }
.btn-solid { padding: 0.5rem 1.2rem; background: var(--gold); border-radius: 100px; color: #fff; font-size: 0.8rem; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; }
.btn-solid:hover { background: var(--terra); }

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--slate);
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--terra); color: var(--terra); }

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(253,248,242,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1rem 6vw 1.8rem;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(44,44,44,0.1);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-drawer a:hover { color: var(--terra); }
.mobile-drawer-ctas { display: flex; gap: 0.75rem; margin-top: 1.2rem; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 5vw 80px; position: relative; overflow: hidden; background: var(--warm-white); }
.hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bg-circle-1 { width: 600px; height: 600px; background: radial-gradient(circle, #f0d5cb55 0%, transparent 70%); top: -100px; right: -100px; }
.hero-bg-circle-2 { width: 400px; height: 400px; background: radial-gradient(circle, #f7edd588 0%, transparent 70%); bottom: -50px; left: -80px; }
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold-pale); border: 1px solid var(--gold-light); border-radius: 100px; padding: 0.35rem 1rem; font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.13; color: var(--slate); margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--slate-mid); max-width: 480px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { padding: 0.85rem 1.8rem; background: var(--terra); color: #fff; border-radius: 100px; text-decoration: none; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; box-shadow: 0 6px 24px rgba(184,92,58,0.3); transition: all 0.22s; }
.btn-primary:hover { background: #9e4a2c; transform: translateY(-1px); }
.btn-secondary { padding: 0.85rem 1.8rem; border: 1.5px solid var(--border); border-radius: 100px; color: var(--slate); text-decoration: none; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; background: #fff; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--terra); color: var(--terra); }
.hero-cards { display: grid; gap: 1rem; }
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.4rem 1.6rem; box-shadow: var(--shadow); transition: transform 0.2s; }
.hero-card:hover { transform: translateY(-3px); }
.hero-card-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--gold); margin-bottom: 0.5rem; }
.hero-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--slate); margin-bottom: 0.4rem; }
.hero-card-text { font-size: 0.85rem; line-height: 1.65; color: var(--slate-mid); }
.hero-card-dark { background: var(--slate); border-color: var(--slate); }
.hero-card-dark .hero-card-label { color: var(--gold-light); }
.hero-card-dark .hero-card-title { color: #fff; }
.hero-card-dark .hero-card-text { color: #b0b0b0; }

/* SECTIONS */
section { padding: 5rem 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--slate); margin-bottom: 1.2rem; }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--slate-mid); max-width: 620px; }

/* MISSION BAND */
.mission-band { background: var(--terra); padding: 3rem 5vw; }
.mission-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.mission-band blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 2.8vw, 2rem); font-style: italic; font-weight: 600; color: #fff; max-width: 700px; line-height: 1.4; }
.mission-band-cta { white-space: nowrap; padding: 0.9rem 2rem; background: #fff; border-radius: 100px; color: var(--terra); font-weight: 600; font-size: 0.88rem; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; flex-shrink: 0; }
.mission-band-cta:hover { background: var(--gold-pale); }

/* PROGRAMS */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.program-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; box-shadow: var(--shadow); transition: all 0.22s; }
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.program-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem; }
.icon-terra { background: var(--terra-light); }
.icon-gold { background: var(--gold-pale); }
.icon-green { background: var(--green-soft); }
.icon-rose { background: var(--rose-soft); }
.program-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--slate); }
.program-card p { font-size: 0.87rem; line-height: 1.7; color: var(--slate-mid); }

/* PATHWAY */
.pathway-section { background: var(--slate); }
.pathway-section .eyebrow { color: var(--gold-light); }
.pathway-section .section-title { color: #fff; }
.pathway-section .section-body { color: #aaa; }
.pathway-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.pathway-steps::before { content: ''; position: absolute; top: 2rem; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem); height: 2px; background: linear-gradient(90deg, var(--gold), var(--terra)); pointer-events: none; }
.pathway-step { text-align: center; position: relative; }
.step-number { width: 4rem; height: 4rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--terra)); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; position: relative; z-index: 1; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; line-height: 1.65; color: #888; }

/* ABOUT */
.about-section { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.values-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.values-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--slate); }
.values-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem 1.6rem; box-shadow: var(--shadow); }
.about-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--slate); margin-bottom: 0.4rem; }
.about-card p { font-size: 0.85rem; line-height: 1.7; color: var(--slate-mid); }

/* GET HELP */
.gethelp-section { background: var(--rose-soft); }
.gethelp-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.intake-form { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 2.2rem; box-shadow: var(--shadow-lg); }
.intake-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--slate); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--slate-mid); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 0.65rem 0.9rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; color: var(--slate); background: var(--cream); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--terra); color: #fff; border: none; border-radius: 100px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; margin-top: 0.5rem; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.form-submit:hover { background: #9e4a2c; }
.help-info { display: flex; flex-direction: column; gap: 1.5rem; }
.help-note { background: #fff; border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; padding: 1.2rem 1.4rem; }
.help-note h4 { font-size: 0.88rem; font-weight: 600; color: var(--slate); margin-bottom: 0.4rem; }
.help-note p { font-size: 0.83rem; line-height: 1.65; color: var(--slate-mid); }
.crisis-box { background: var(--slate); border-radius: 16px; padding: 1.6rem; color: #fff; }
.crisis-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold-light); margin-bottom: 1rem; }
.crisis-resource { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.9rem; }
.crisis-resource span { font-size: 0.8rem; color: #aaa; }
.crisis-resource a { color: #fff; font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.crisis-resource a:hover { color: var(--gold-light); }

/* GIVE */
.give-section { background: #fff; }
.give-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
.give-card { border: 1px solid var(--border); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); transition: all 0.22s; }
.give-card:hover { border-color: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.give-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.give-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--slate); margin-bottom: 0.6rem; }
.give-card p { font-size: 0.87rem; line-height: 1.7; color: var(--slate-mid); margin-bottom: 1.2rem; }
.give-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.give-card ul li { font-size: 0.83rem; color: var(--slate-mid); display: flex; align-items: center; gap: 0.5rem; }
.give-card ul li::before { content: '→'; color: var(--gold); font-weight: 600; }
.wishlist-box { background: var(--gold-pale); border: 1px solid var(--gold-light); border-radius: 20px; padding: 2rem; grid-column: 1 / -1; }
.wishlist-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--slate); margin-bottom: 1rem; }
.wishlist-items { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wishlist-item { background: #fff; border: 1px solid var(--gold-light); border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.82rem; font-weight: 500; color: var(--slate); }

/* STORIES */
.stories-section { background: var(--warm-white); }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.story-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); }
.story-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem; font-weight: 700; }
.story-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; line-height: 1.65; color: var(--slate); margin-bottom: 1.5rem; }
.story-author { display: flex; align-items: center; gap: 0.75rem; }
.story-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--terra-light), var(--gold-pale)); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--terra); }
.story-name { font-size: 0.88rem; font-weight: 600; color: var(--slate); }
.story-role { font-size: 0.78rem; color: var(--slate-light); }

/* PARTNERS */
.partners-section { background: var(--cream); }
.partners-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; margin-bottom: 3rem; }
.partner-chip { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.2rem; text-align: center; font-size: 0.85rem; font-weight: 500; color: var(--slate-mid); transition: all 0.2s; }
.partner-chip:hover { border-color: var(--gold); color: var(--gold); }
.partner-chip span { display: block; font-size: 1.5rem; margin-bottom: 0.4rem; }
.partner-cta-box { background: var(--terra-light); border-radius: 20px; padding: 2.5rem; text-align: center; }
.partner-cta-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--slate); margin-bottom: 0.8rem; }
.partner-cta-box p { font-size: 0.9rem; color: var(--slate-mid); max-width: 480px; margin: 0 auto 1.5rem; }

/* STATS */
.stats-bar { background: var(--gold-pale); padding: 3rem 5vw; border-top: 1px solid var(--gold-light); border-bottom: 1px solid var(--gold-light); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.82rem; color: var(--slate-mid); font-weight: 500; line-height: 1.4; }

/* CONTACT */
.contact-section { background: var(--slate); }
.contact-section .eyebrow { color: var(--gold-light); }
.contact-section .section-title { color: #fff; }
.contact-section .section-body { color: #aaa; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-form-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; }
.contact-form-card .form-group label { color: #999; }
.contact-form-card .form-group input, .contact-form-card .form-group textarea { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.contact-form-card .form-group input::placeholder, .contact-form-card .form-group textarea::placeholder { color: #666; }
.contact-form-card .form-group input:focus, .contact-form-card .form-group textarea:focus { border-color: var(--gold); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; }
.contact-info-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #777; margin-bottom: 0.3rem; font-weight: 600; }
.contact-info-value { font-size: 0.9rem; color: #ddd; font-weight: 500; }
.newsletter-box { background: rgba(200,151,58,0.15); border: 1px solid rgba(200,151,58,0.3); border-radius: 14px; padding: 1.4rem; margin-top: 1rem; }
.newsletter-box p { font-size: 0.82rem; color: #bbb; margin-bottom: 0.8rem; line-height: 1.6; }
.newsletter-input { display: flex; gap: 0.5rem; }
.newsletter-input input { flex: 1; padding: 0.6rem 0.9rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; background: rgba(255,255,255,0.08); color: #fff; font-size: 0.85rem; font-family: 'DM Sans', sans-serif; outline: none; }
.newsletter-input button { padding: 0.6rem 1.1rem; background: var(--gold); border: none; border-radius: 8px; color: #fff; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.newsletter-input button:hover { background: var(--terra); }

/* FOOTER */
footer { background: #1a1a1a; padding: 3rem 5vw 2rem; border-top: 1px solid #2a2a2a; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.footer-brand-tag { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.9rem; font-weight: 500; }
.footer-brand-mission { font-size: 0.83rem; line-height: 1.7; color: #777; margin-bottom: 1rem; }
.footer-501 { display: inline-block; background: rgba(200,151,58,0.15); border: 1px solid rgba(200,151,58,0.25); border-radius: 6px; padding: 0.3rem 0.7rem; font-size: 0.72rem; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; }
.footer-col-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: #666; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { text-decoration: none; font-size: 0.85rem; color: #888; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid #2a2a2a; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-text { font-size: 0.78rem; color: #555; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 34px; height: 34px; background: #2a2a2a; border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #888; font-size: 0.9rem; transition: all 0.2s; }
.social-link:hover { background: var(--gold); color: #fff; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-2 { animation: fadeUp 0.6s ease 0.15s forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.6s ease 0.45s forwards; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gethelp-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .pathway-steps { grid-template-columns: repeat(2, 1fr); }
  .pathway-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .partners-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 4vw; }
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 3.5rem 4vw; }
  .give-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .pathway-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 100px 4vw 60px; }
}
