/* ============================================
   THE BLU HOUSE — Redesign (Guardian House Visual Style)
   Fonts: Caveat (headings) + Albert Sans (body)
   Colors: Navy #10316B, Teal #0087BF, Pale Teal #F0FCFC
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;500;600;700;800&family=Caveat:wght@400;600;700;800&display=swap');

:root {
  --navy:        #10316B;
  --navy-dark:   #0A2047;
  --navy-mid:    #1a4590;
  --teal:        #0087BF;
  --teal-dark:   #006A96;
  --teal-light:  #00A8E8;
  --teal-pale:   #F0FCFC;
  --teal-pale2:  #E0F4F8;
  --gold:        #E8A020;
  --gold-light:  #FEF3C7;
  --dark:        #10316B;
  --gray:        #4A5568;
  --gray-light:  #718096;
  --border:      #D4E8F0;
  --bg-light:    #F0FCFC;
  --white:       #FFFFFF;
  --font-head:   'Caveat', cursive;
  --font-body:   'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Compatibility aliases */
  --blue-dark:   var(--navy);
  --blue-mid:    var(--teal);
  --gold-light:  #E8F8FC;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 6px 24px rgba(16,49,107,0.12);
  --shadow-sm:   0 2px 8px rgba(16,49,107,0.08);
  --max-w:       1140px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section--pale  { background: var(--teal-pale); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--teal  { background: var(--teal); color: var(--white); }
.section--white { background: var(--white); }

/* ---- Section Labels & Titles ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section--navy  .section-label,
.section--teal  .section-label { color: rgba(255,255,255,0.70); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.section--navy .section-title,
.section--teal .section-title { color: var(--white); }

/* Flair underline on headings (Guardian House style) */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 10px;
}
.section--navy .section-title::after { background: rgba(255,255,255,0.45); }
.section--teal .section-title::after { background: rgba(255,255,255,0.45); }
.text-center .section-title::after { margin-left: auto; margin-right: auto; }

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.section--navy .section-subtitle,
.section--teal .section-subtitle { color: rgba(255,255,255,0.82); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.22s;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.3px;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-primary   { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

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

.btn-gold      { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #c8880a; border-color: #c8880a; }

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

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

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

.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--teal-pale2);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-pale); text-decoration: none; }
.nav-links a.active { color: var(--teal); }
.nav-cta { margin-left: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  transition: all 0.2s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  gap: 2px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.mobile-menu a:hover { color: var(--teal); text-decoration: none; }
.mobile-menu .btn { margin-top: 14px; text-align: center; }

/* ---- Hero ---- */
.hero {
  background:
    linear-gradient(135deg, rgba(10,32,71,0.90) 0%, rgba(16,49,107,0.84) 55%, rgba(0,100,150,0.80) 100%),
    url('https://images.unsplash.com/photo-1476703993599-0035a21b17a9?w=1600&q=80&fit=crop&crop=center') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(0,135,191,0.18) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,135,191,0.25);
  border: 1px solid rgba(0,135,191,0.50);
  color: rgba(255,255,255,0.90);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 760px;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--teal-light); }
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-services a {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.hero-services a:hover {
  background: var(--teal);
  border-color: var(--teal);
  text-decoration: none;
  transform: translateY(-1px);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Impact Bar ---- */
.impact-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 40px 0;
  border-top: 3px solid var(--teal);
}
.impact-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.impact-stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.impact-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.service-card .learn-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card .learn-more:hover { color: var(--navy); text-decoration: none; }

/* ---- Two-col ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-pale2));
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 48px;
  border: 2px solid var(--border);
}
.two-col-img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; height: 360px; }

/* ---- Credibility ---- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.cred-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.cred-item:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.cred-icon { font-size: 40px; margin-bottom: 14px; }
.cred-item h4 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cred-item p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ---- Testimonials ---- */
.testimonials-placeholder {
  background: var(--teal-pale);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
}
.testimonials-placeholder h3 {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--gray);
  margin-bottom: 10px;
}
.testimonials-placeholder p { color: var(--gray-light); font-size: 16px; }

/* ---- Page Header ---- */
.page-header {
  background:
    linear-gradient(135deg, rgba(10,32,71,0.93) 0%, rgba(16,49,107,0.88) 100%),
    url('https://images.unsplash.com/photo-1491013516836-7db643ee125a?w=1400&q=80&fit=crop&crop=center') center/cover no-repeat;
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
}
.page-header p { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 560px; line-height: 1.65; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; letter-spacing: 0.3px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }

/* ---- Program Detail ---- */
.program-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; align-items: start; }
.info-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.info-box h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.info-box ul { list-style: disc; padding-left: 18px; }
.info-box ul li { font-size: 15px; color: var(--navy); margin-bottom: 7px; line-height: 1.55; }

.sticky-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 92px;
}
.sticky-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 14px;
}
.sticky-card p { font-size: 15px; color: var(--gray); margin-bottom: 18px; }
.sticky-card .btn { display: block; margin-bottom: 10px; text-align: center; }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: all 0.22s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--teal-pale2); }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-pale2));
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
  border: 3px solid var(--border);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ---- Donate ---- */
.donate-impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.22s;
}
.donate-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--teal-pale2); }
.donate-card .amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}
.donate-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}
.donate-card p { font-size: 15px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 32px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 5px;
}
.contact-info-item p,
.contact-info-item a { font-size: 16px; color: var(--navy); font-weight: 500; }

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--navy);
  margin-bottom: 20px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,135,191,0.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--teal);
  padding: 88px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(0,0,0,0.15) 0%, transparent 70%);
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 36px; }
.cta-section .cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.80);
  padding: 72px 0 36px;
  border-top: 4px solid var(--teal);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-brand .nav-logo { font-size: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.70); }
.footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-light);
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul li a { color: rgba(255,255,255,0.65); font-size: 15px; transition: color 0.15s; }
.footer ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}
.footer-partners { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.partner-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- Accordion ---- */
.accordion-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.accordion-item:hover { border-color: var(--teal-pale2); }
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.accordion-btn:hover { background: var(--teal-pale); }
.accordion-btn.open { color: var(--teal); background: var(--teal-pale); }
.accordion-icon { font-size: 22px; line-height: 1; transition: transform 0.2s; color: var(--teal); }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 24px 20px; font-size: 16px; color: var(--gray); line-height: 1.7; background: var(--teal-pale); }
.accordion-body.open { display: block; }

/* ---- Checklist ---- */
.checklist { list-style: none !important; padding: 0 !important; }
.checklist li {
  padding: 11px 0 11px 34px;
  position: relative;
  font-size: 15px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 17px;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-teal    { color: var(--teal); }
.text-navy    { color: var(--navy); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .cred-grid        { grid-template-columns: repeat(2, 1fr); }
  .two-col          { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse  { direction: ltr; }
  .impact-bar .container { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .donate-impact    { grid-template-columns: 1fr; }
  .program-detail-grid { grid-template-columns: 1fr; }
  .sticky-card      { position: static; }
  .contact-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section          { padding: 60px 0; }
  .hero             { padding: 72px 0 64px; min-height: auto; }
  .services-grid    { grid-template-columns: 1fr; }
  .cred-grid        { grid-template-columns: 1fr; }
  .impact-bar .container { grid-template-columns: repeat(2, 1fr); }
  .nav-links        { display: none; }
  .hamburger        { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero-ctas        { flex-direction: column; }
  .hero-ctas .btn   { width: 100%; text-align: center; }
  .footer-grid      { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom    { flex-direction: column; gap: 10px; text-align: center; }
  .team-grid        { grid-template-columns: 1fr; }
  .cta-section .cta-btns { flex-direction: column; align-items: center; }
  .section-title    { font-size: clamp(34px, 8vw, 48px); }
}
