/* ============================================
   SATINO FOOTBALL ACADEMY - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #0d1b3e;
  --navy-light: #162347;
  --orange: #f47b20;
  --orange-dark: #d4640f;
  --gold: #c9971c;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --gray: #666666;
  --light-gray: #e8e4df;
  --red: #c0392b;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* --- Reset & Base --- */
*, *::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);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--orange);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--orange); }

.nav-links .btn-focus {
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  padding: 0.45rem 1rem;
}

.nav-links .btn-focus:hover { background: var(--orange-dark); color: var(--white); }

.nav-links .btn-donate {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 4px;
  padding: 0.4rem 1rem;
  margin-left: 0.5rem;
}

.nav-links .btn-donate:hover { background: var(--white); color: var(--navy); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.9) 0%, rgba(13,27,62,0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 72px;
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-secondary {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { opacity: 0.4; }

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

/* --- Stats Bar --- */
.stats-bar {
  background: var(--orange);
  padding: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.25rem;
  display: block;
}

/* --- Section Base --- */
section { padding: 6rem 2rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

/* --- Mission Section --- */
.mission {
  background: var(--navy);
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.mission-text h2 em { color: var(--orange); font-style: normal; }

.mission-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.mission-text p strong { color: var(--white); }

.mission-text .btn-primary { margin-top: 1rem; }

.mission-image-stack {
  position: relative;
}

.mission-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.mission-img-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid var(--navy);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.mission-tag {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* --- Free Academy Callout --- */
.callout {
  background: var(--off-white);
  padding: 4rem 2rem;
}

.callout-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 8px;
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.callout-inner::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: var(--orange);
  opacity: 0.08;
  border-radius: 50%;
}

.callout-icon {
  font-size: 5rem;
  flex-shrink: 0;
}

.callout-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.callout-text h2 span { color: var(--orange); }

.callout-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* --- Achievements --- */
.achievements { background: var(--white); }

.achievements-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.achievement-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--orange);
  transition: all 0.2s;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.achievement-card .ach-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.achievement-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.achievement-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.achievement-card.featured {
  background: var(--navy);
  border-left-color: var(--gold);
  grid-column: span 1;
}

.achievement-card.featured h3 { color: var(--white); }
.achievement-card.featured p { color: rgba(255,255,255,0.7); }

/* --- Teams Preview --- */
.teams-preview { background: var(--navy); color: var(--white); }

.teams-header { margin-bottom: 3rem; }
.teams-header h2 { color: var(--white); }
.teams-header h2 em { color: var(--orange); font-style: normal; }
.teams-header p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-size: 1.05rem; }

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.team-card {
  background: var(--navy-light);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.team-card:hover { background: rgba(244,123,32,0.15); }

.team-card .team-age {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.team-card .team-name {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.team-card .team-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

.sisi-ni-timu {
  text-align: center;
  padding: 3rem;
  background: rgba(244,123,32,0.08);
  border: 1px solid rgba(244,123,32,0.2);
  border-radius: 8px;
}

.sisi-ni-timu h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.sisi-ni-timu p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* --- Partners / Focus Foundation --- */
.partners { background: var(--off-white); }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.focus-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.focus-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--orange);
  opacity: 0.1;
  border-radius: 50%;
}

.focus-card .focus-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.focus-card h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.focus-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.focus-card a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.focus-card a:hover { gap: 0.75rem; }

.partners-list h3 { margin-bottom: 1.5rem; }

.partner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.partner-item:last-child { border-bottom: none; }

.partner-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.partner-info { flex: 1; }
.partner-info strong { display: block; font-size: 0.95rem; color: var(--navy); }
.partner-info span { font-size: 0.8rem; color: var(--gray); }

.partner-tag {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--light-gray);
  color: var(--gray);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* --- Donate / CTA --- */
.donate-cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.donate-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.donate-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn-white {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--orange);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.2s;
}

.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* --- Footer --- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--orange); }

/* ============================================
   INNER PAGES
   ============================================ */

.page-hero {
  height: 50vh;
  min-height: 360px;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 30%, transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-hero h1 em { color: var(--orange); font-style: normal; }

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* --- About Page --- */
.about-intro {
  background: var(--white);
  padding: 6rem 2rem;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-text p strong { color: var(--navy); }

.about-text h2 { margin-bottom: 1.5rem; }

.tindiga-block {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.tindiga-block h3 { color: var(--orange); margin-bottom: 0.75rem; }
.tindiga-block p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

/* Objectives */
.objectives {
  background: var(--off-white);
  padding: 6rem 2rem;
}

.objectives-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.objectives-header { text-align: center; margin-bottom: 3rem; }
.objectives-header p { color: var(--gray); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.obj-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--orange);
}

.obj-card .obj-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.obj-card h3 { margin-bottom: 0.75rem; color: var(--navy); font-size: 1.05rem; }
.obj-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* Constitution */
.constitution {
  background: var(--white);
  padding: 6rem 2rem;
}

.constitution-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.constitution-inner p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; margin: 1.5rem 0 2.5rem; }

/* --- Teams Page --- */
.teams-page { background: var(--white); padding: 6rem 2rem; }
.teams-page-inner { max-width: 1200px; margin: 0 auto; }

.team-section { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--light-gray); }
.team-section:last-child { border-bottom: none; }

.team-section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.team-badge {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.team-section-header h3 { font-size: 1.4rem; }
.team-section-header p { color: var(--gray); font-size: 0.95rem; margin-top: 0.25rem; }

.team-story { color: var(--gray); font-size: 1rem; line-height: 1.8; max-width: 800px; }

/* Satino Queens */
.queens-section {
  background: var(--navy);
  border-radius: 8px;
  padding: 3rem;
  color: var(--white);
  margin-bottom: 4rem;
}

.queens-section .section-label { color: var(--gold); }
.queens-section .section-label::before { background: var(--gold); }
.queens-section h2 { color: var(--white); margin-bottom: 1.5rem; }
.queens-section h2 em { color: var(--gold); font-style: normal; }
.queens-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }

/* --- Get Involved --- */
.involved-page { background: var(--white); padding: 6rem 2rem; }
.involved-inner { max-width: 1200px; margin: 0 auto; }

.involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.involved-card {
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  transition: all 0.2s;
}

.involved-card:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.involved-card .card-icon { font-size: 2.5rem; display: block; margin-bottom: 1.25rem; }
.involved-card h3 { margin-bottom: 0.75rem; }
.involved-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.needs-section {
  background: var(--off-white);
  border-radius: 8px;
  padding: 3rem;
  margin-top: 2rem;
}

.needs-section h3 { margin-bottom: 1.5rem; }

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.need-item {
  background: var(--white);
  border-radius: 6px;
  padding: 1.25rem;
  border-left: 3px solid var(--orange);
}

.need-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.need-item span { font-size: 0.85rem; color: var(--gray); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mission-image-stack { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1rem 2rem 2rem; gap: 0.5rem; border-bottom: 2px solid var(--orange); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .achievements-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .callout-inner { flex-direction: column; gap: 2rem; padding: 2.5rem; }
  .callout-icon { font-size: 3.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .objectives-grid { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: 1fr; }
  .needs-grid { grid-template-columns: 1fr; }
  .achievements-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
