/* ================================================================
   THE SOAR FOUNDATION — style.css
   Clean, inspiring non-profit design — sky blue, white, green
   ================================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: #1a2e3b;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── CSS Variables ── */
:root {
  --sky: #3a9bd5;
  --sky-light: #e8f4fd;
  --sky-dark: #1a6fa8;
  --green: #3ab377;
  --green-light: #e6f7f0;
  --green-dark: #1f7a4e;
  --gold: #f5a623;
  --red-soft: #e05c5c;
  --white: #ffffff;
  --off-white: #f7fbff;
  --text-dark: #1a2e3b;
  --text-mid: #4a6070;
  --text-light: #7a92a5;
  --shadow-sm: 0 2px 12px rgba(58,155,213,.10);
  --shadow-md: 0 8px 32px rgba(26,46,59,.12);
  --shadow-lg: 0 20px 60px rgba(26,46,59,.18);
  --radius: 16px;
  --radius-sm: 8px;
  --container: 1160px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-light);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.label-light { color: rgba(255,255,255,.9); background: rgba(255,255,255,.15); }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-header-light h2 { color: #fff; }
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; }
.desc-light { color: rgba(255,255,255,.85); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,155,213,.1);
  transition: box-shadow var(--transition);
}
.nav-header.scrolled { box-shadow: 0 2px 20px rgba(26,46,59,.1); }
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-eagle { font-size: 1.6rem; line-height: 1; }
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: -.01em;
}
.logo-text span { color: var(--sky); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--sky); background: var(--sky-light); }
.nav-cta {
  background: var(--sky);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--sky-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,59,.72) 0%,
    rgba(26,110,168,.55) 50%,
    rgba(31,122,78,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.eagle-icon { font-size: clamp(2.4rem, 6vw, 4.5rem); display: block; margin-bottom: 8px; }
.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-subtitle strong { color: #fff; font-weight: 700; }
.hero-subtitle em { font-style: normal; color: rgba(255,255,255,.8); font-size: .95em; letter-spacing: .05em; }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
}
.btn-primary:hover {
  background: var(--sky-dark);
  border-color: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,155,213,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ── Animations ── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s forwards;
}
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .8s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   WELCOME
   ================================================================ */
.welcome-section { background: var(--off-white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-label { /* already defined */ }
.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.highlight { color: var(--sky); }
.welcome-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 16px;
}
.welcome-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}
.welcome-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.welcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
}
.welcome-pill svg { color: var(--green); flex-shrink: 0; }
.welcome-motto {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}
.motto-icon { font-size: 1.3rem; }
.img-stack { position: relative; height: 440px; }
.img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}

/* ================================================================
   MISSION & VISION
   ================================================================ */
.mission-section { background: #fff; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mission-card {
  background: var(--sky-light);
}
.mission-card::before { background: linear-gradient(90deg, var(--sky), var(--sky-dark)); }
.vision-card {
  background: var(--green-light);
}
.vision-card::before { background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.mission-card .mv-icon { background: rgba(58,155,213,.15); color: var(--sky-dark); }
.vision-card .mv-icon { background: rgba(58,179,119,.15); color: var(--green-dark); }
.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.mv-list { display: flex; flex-direction: column; gap: 20px; }
.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mv-bullet { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.mv-list li strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.mv-list li p { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ================================================================
   PROGRAMS
   ================================================================ */
.programs-section { background: var(--off-white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.program-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.program-card:hover .program-img { transform: scale(1.05); }
.program-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.edu-badge { background: rgba(58,155,213,.9); color: #fff; }
.health-badge { background: rgba(224,92,92,.9); color: #fff; }
.env-badge { background: rgba(58,179,119,.9); color: #fff; }
.program-body { padding: 28px; }
.program-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.program-body p { font-size: .9rem; color: var(--text-mid); margin-bottom: 20px; }
.program-stats { display: flex; flex-direction: column; gap: 10px; }
.program-stats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-mid);
}
.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.stat-dot.stat-red { background: var(--red-soft); }
.stat-dot.stat-green { background: var(--green); }

/* ================================================================
   IMPACT
   ================================================================ */
.impact-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.impact-bg { position: absolute; inset: 0; z-index: 0; }
.impact-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,110,168,.88), rgba(31,122,78,.82));
}
.impact-section .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 40px 24px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.18);
}
.stat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-number span { font-size: .65em; opacity: .85; }
.stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* ================================================================
   LEADERSHIP
   ================================================================ */
.leadership-section { background: #fff; }
.leadership-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--sky-light);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  border-left: 6px solid var(--sky);
  box-shadow: var(--shadow-md);
}
.leader-left { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.leader-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(58,155,213,.3);
  flex-shrink: 0;
}
.leader-info { text-align: center; }
.leader-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.leader-title { font-size: .875rem; color: var(--sky-dark); font-weight: 600; margin-bottom: 4px; }
.leader-sub { font-size: .8rem; color: var(--text-light); }
.leader-quote { position: relative; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--sky);
  opacity: .3;
  line-height: .5;
  margin-bottom: 8px;
  display: block;
}
.leader-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text-dark);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.leader-quote cite {
  font-size: .875rem;
  color: var(--text-mid);
  font-style: normal;
  font-weight: 600;
}

/* ================================================================
   MEDIA
   ================================================================ */
.media-section { background: var(--off-white); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.media-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}
.media-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.media-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}
.media-card p { font-size: .8rem; color: var(--text-light); }

/* ================================================================
   GET INVOLVED
   ================================================================ */
.involved-section { background: #fff; }
.involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.involved-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
.volunteer-card {
  background: var(--sky-light);
  border: 2px solid rgba(58,155,213,.2);
}
.donate-card {
  background: #fffbf2;
  border: 2px solid rgba(245,166,35,.3);
}
.involved-icon { font-size: 3rem; margin-bottom: 20px; }
.involved-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.involved-card p { color: var(--text-mid); margin-bottom: 28px; font-size: .95rem; }
.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--sky-dark);
  background: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all var(--transition);
  justify-content: center;
}
.phone-link:hover {
  background: var(--sky);
  color: #fff;
}
.bank-details {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.bank-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: #fffbf2;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(245,166,35,.2);
}
.bank-list { padding: 8px 0; }
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: .875rem;
  border-bottom: 1px solid #f5f5f5;
}
.bank-row:last-child { border-bottom: none; }
.bank-row dt { color: var(--text-light); font-weight: 500; }
.bank-row dd { color: var(--text-dark); font-weight: 500; }
.highlight-row { background: #fffbf2; }
.highlight-row dd { color: var(--green-dark); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
  display: block;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--sky);
}
.contact-card.no-link { cursor: default; }
.contact-card.no-link:hover { transform: none; box-shadow: var(--shadow-sm); border-top-color: transparent; }
.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--sky-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--sky);
}
.contact-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

/* ================================================================
   SOCIAL MEDIA
   ================================================================ */
.social-section {
  background: var(--text-dark);
  padding: 80px 0;
  text-align: center;
}
.social-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.social-sub { color: rgba(255,255,255,.6); margin-bottom: 48px; }
.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  min-width: 110px;
  transition: all var(--transition);
}
.social-card:hover { transform: translateY(-6px); }
.social-card span { font-size: .8rem; font-weight: 600; }
.social-card.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-card.instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e6683c; }
.social-card.twitter:hover { background: #000; border-color: #333; }
.social-card.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-card.linktree:hover { background: #25c96f; border-color: #25c96f; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #0f1e28;
  padding: 72px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.15rem; }
.footer-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}
.footer-reg { font-size: .82rem; line-height: 1.8; }
.footer-links h4,
.footer-contact h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sky); }
.footer-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact address svg { flex-shrink: 0; margin-top: 3px; color: var(--sky); }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--sky); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(58,155,213,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--sky-dark); transform: translateY(-3px); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-stack { height: 360px; }
  .mv-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .leadership-card { padding: 40px; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(26,46,59,.12);
    border-top: 1px solid rgba(58,155,213,.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; }
  .hero-content { padding: 100px 20px 60px; }
  .programs-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .involved-grid { grid-template-columns: 1fr; }
  .leadership-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
    text-align: center;
  }
  .leader-left { align-items: center; }
  .mv-card { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { gap: 12px; }
  .social-card { padding: 20px 24px; min-width: 90px; }
  .back-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 40px; }
  .welcome-grid { gap: 32px; }
  .img-stack { height: 280px; }
  .involve-card { padding: 32px 24px; }
}

/* ================================================================
   FOCUS / ACCESSIBILITY
   ================================================================ */
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
