@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

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

:root {
  --bg: #F6FAF8;
  --white: #FFFFFF;
  --green: #0D4B34;
  --green-mid: #1C7A56;
  --green-light: #2ECC8A;
  --green-pale: #E3F5EE;
  --coral: #F07A5A;
  --coral-pale: #FEF0EB;
  --gold: #E8A020;
  --dark: #081A10;
  --mid: #2A4035;
  --muted: #6E8C7C;
  --border: rgba(13, 75, 52, 0.1);
  --shadow-sm: 0 2px 16px rgba(8, 26, 16, 0.06);
  --shadow-md: 0 8px 32px rgba(8, 26, 16, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  transition: box-shadow 0.3s;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Figtree', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 600; }

.nav-btn {
  background: var(--green) !important;
  color: white !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-btn:hover { background: #0a3927 !important; color: white !important; }
.nav-btn:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; }

/* ─── HERO (home page) ─── */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  padding-left: clamp(1.5rem, 8vw, 7rem);
  padding-right: clamp(1.5rem, 6vw, 5rem);
  padding-bottom: 5rem;
  padding-top: calc(70px + 3rem);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 640px; height: 640px;
  background: rgba(46, 204, 138, 0.13);
  top: -120px; right: -180px;
  animation: drift 9s ease-in-out infinite;
}

.blob-2 {
  width: 420px; height: 420px;
  background: rgba(240, 122, 90, 0.07);
  bottom: -80px; left: -80px;
  animation: drift 12s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px; height: 300px;
  background: rgba(13, 75, 52, 0.06);
  top: 40%; left: 40%;
  animation: drift 15s ease-in-out infinite 3s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  padding-right: clamp(0rem, 2vw, 2rem);
}

.h-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s;
}

.h-card:hover { transform: translateY(-4px); }

.h-card.span2 { grid-column: 1 / -1; background: var(--green); }

.h-card .c-icon { font-size: 1.75rem; margin-bottom: 0.65rem; display: block; }
.h-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.h-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.h-card.span2 h4 { color: white; }
.h-card.span2 p { color: rgba(255,255,255,0.7); }

.h-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.03em;
}

.h-card.span2 .h-card-num { color: var(--green-light); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-family: 'Figtree', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  animation: fadeIn 0.7s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.85s 0.1s ease both;
}

.hero h1 .hl {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero h1 .hl::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 5px;
  background: var(--green-light);
  border-radius: 3px;
  opacity: 0.45;
}

.hero-p {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.85s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeSlideUp 0.85s 0.3s ease both;
  margin-bottom: 4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13, 75, 52, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13, 75, 52, 0.38);
}

.btn-primary:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green);
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.btn-secondary:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.hero-stats {
  display: flex;
  animation: fadeSlideUp 0.85s 0.4s ease both;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 680px;
  box-shadow: var(--shadow-sm);
}

.hero-stat {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── MISSION STRIP ─── */
.mission-strip {
  background: var(--green);
  padding: 5rem clamp(1.5rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.mission-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(46, 204, 138, 0.18), transparent 60%);
}

.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mission-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mission-quote .accent { color: var(--green-light); }

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.pillar:hover { background: rgba(255,255,255,0.13); }

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

/* ─── SHARED SECTION STYLES ─── */
section { padding: 6rem clamp(1.5rem, 8vw, 7rem); }

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

.eyebrow {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1.02rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}

/* ─── CURRICULUM ─── */
.curriculum { background: white; }

.curriculum-header {
  text-align: center;
  margin-bottom: 4rem;
}

.curriculum-header .section-body { margin: 0 auto; }

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

.week-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.week-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.week-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  background: var(--green-light);
}

.week-card:hover::before { transform: scaleX(1); }

.week-card:nth-child(1)::before { background: var(--green-light); }
.week-card:nth-child(2)::before { background: var(--coral); }
.week-card:nth-child(3)::before { background: var(--gold); }
.week-card:nth-child(4)::before { background: #7B6FE8; }
.week-card:nth-child(5)::before { background: #4BBAD6; }
.week-card:nth-child(6)::before { background: var(--green); }

.week-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(13, 75, 52, 0.12);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.04em;
}

.week-tag {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.week-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.week-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ─── BUSINESS FAIR ─── */
.fair { background: var(--bg); }

.fair-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.fair-header .section-body { margin: 0 auto; }

.fair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.fair-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.fair-card.winter {
  background: linear-gradient(140deg, #0D4B34 0%, #1C7A56 100%);
}

.fair-card.spring {
  background: white;
  border: 1px solid var(--border);
}

.fair-season {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.8rem;
}

.fair-card.winter .fair-season { color: var(--green-light); }
.fair-card.spring .fair-season { color: var(--green-mid); }

.fair-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.fair-card.winter h3 { color: white; }
.fair-card.spring h3 { color: var(--dark); }

.fair-card p {
  font-size: 0.9rem;
  line-height: 1.72;
  font-weight: 300;
}

.fair-card.winter p { color: rgba(255,255,255,0.72); }
.fair-card.spring p { color: var(--mid); }

.charity-tags {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.c-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-family: 'Figtree', sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  color: white;
}

.spring-raise {
  margin-top: 1.5rem;
}

.raise-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.raise-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
}

.fair-banner {
  background: var(--green);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.banner-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.banner-stat .lbl {
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ─── OUTCOMES / IMPACT ─── */
.outcomes { background: white; }

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

.outcomes-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.o-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.7rem;
  border: 1px solid var(--border);
}

.o-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.o-card .lbl {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.o-card.span2 {
  grid-column: span 2;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.o-card.span2 .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.o-card.span2 .text-block .num {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.15rem;
  letter-spacing: 0;
  font-family: 'Figtree', sans-serif;
}

.o-card.span2 .text-block .lbl {
  font-size: 0.83rem;
  color: var(--mid);
}

/* ─── PARTNERSHIPS TEASER (home page) ─── */
.partnerships-teaser { background: var(--bg); }

.pt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.pt-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pt-card.light {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pt-card.dark {
  background: linear-gradient(140deg, #0D4B34 0%, #1C7A56 100%);
}

.pt-card.dark::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(46,204,138,0.18), transparent 70%);
}

.pt-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.pt-card.light .pt-label { color: var(--green-mid); }
.pt-card.dark .pt-label { color: var(--green-light); }

.pt-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pt-card.light h3 { color: var(--dark); }
.pt-card.dark h3 { color: white; }

.pt-card p {
  font-size: 0.88rem;
  line-height: 1.72;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.pt-card.light p { color: var(--muted); }
.pt-card.dark p { color: rgba(255,255,255,0.7); }

.pt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}

.pt-card:hover .pt-link { gap: 10px; }

.pt-card.light .pt-link { color: var(--green); }
.pt-card.dark .pt-link { color: var(--green-light); }

/* ─── WHO WE SERVE ─── */
.serve { background: white; }

.serve-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.s-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}

.s-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.s-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.s-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--bg);
  text-align: center;
}

.cta-box {
  background: var(--dark);
  border-radius: 1.75rem;
  padding: 5rem 3rem;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,204,138,0.18), transparent 70%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240,122,90,0.14), transparent 70%);
}

.cta-box .section-title { color: white; position: relative; z-index: 1; }

.cta-box .section-body {
  color: rgba(255,255,255,0.58);
  margin: 0 auto 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--dark);
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.btn-white:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.22);
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
}

.btn-ghost:focus-visible { outline: 3px solid rgba(255,255,255,0.6); outline-offset: 3px; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 3.5rem clamp(1.5rem, 8vw, 7rem) 2rem;
  color: rgba(255,255,255,0.48);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand .f-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-head {
  font-family: 'Figtree', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
  display: block;
}

.footer-col a {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

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

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px;
  margin: 2.5rem auto 1.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.76rem;
  text-align: center;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: none; }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding-left: clamp(1.5rem, 8vw, 7rem);
  padding-right: clamp(1.5rem, 6vw, 5rem);
  padding-bottom: 5rem;
  padding-top: calc(70px + 4.5rem);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.page-hero .hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-hero-blob.b1 {
  width: 500px; height: 500px;
  background: rgba(46, 204, 138, 0.1);
  top: -100px; right: -100px;
  animation: drift 10s ease-in-out infinite;
}

.page-hero-blob.b2 {
  width: 300px; height: 300px;
  background: rgba(240, 122, 90, 0.06);
  bottom: -60px; left: 30%;
  animation: drift 14s ease-in-out infinite reverse;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--green); }

.breadcrumb .sep { opacity: 0.5; }

/* ─── ABOUT PAGE ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--green-pale);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-wrap .img-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(8, 26, 16, 0.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  line-height: 1.5;
}

.about-text .eyebrow { margin-bottom: 0.65rem; }

.about-text h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.val-card {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(13, 75, 52, 0.08);
}

.val-card .v-icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.6rem;
}

.val-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.val-card p {
  font-size: 0.79rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── PARTNERSHIPS PAGE ─── */
.partnerships-intro {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.partnerships-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.partnerships-intro p {
  font-size: 1.02rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}

.partner-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pcard {
  border-radius: var(--radius);
  padding: 2.75rem;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(8,26,16,0.14);
}

.pcard.pcard-light {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pcard.pcard-dark {
  background: linear-gradient(140deg, #0D4B34 0%, #1C7A56 100%);
}

.pcard.pcard-dark::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(46,204,138,0.2), transparent 70%);
}

.pcard-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.pcard-light .pcard-label { color: var(--green-mid); }
.pcard-dark .pcard-label { color: var(--green-light); }

.pcard h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pcard-light h3 { color: var(--dark); }
.pcard-dark h3 { color: white; }

.pcard p {
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin-bottom: 0.7rem;
}

.pcard-light p { color: var(--muted); }
.pcard-dark p { color: rgba(255,255,255,0.72); }

.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.pcard-tag {
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 500;
}

.pcard-light .pcard-tag {
  background: var(--green-pale);
  color: var(--green);
}

.pcard-dark .pcard-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.82);
}

.pcard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}

.pcard:hover .pcard-arrow { gap: 10px; }

.pcard-light .pcard-arrow { color: var(--green); }
.pcard-dark .pcard-arrow { color: var(--green-light); }

.partnerships-cta {
  margin-top: 4rem;
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(13, 75, 52, 0.12);
}

.partnerships-cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.partnerships-cta p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
}

/* ─── PARTNER DETAIL PAGES ─── */
.partner-detail-header {
  max-width: 720px;
}

.partner-detail-header .eyebrow { margin-bottom: 0.65rem; }

.partner-detail-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.detail-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sidebar-card .sc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

.sidebar-card .sc-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.sidebar-card .sc-value a {
  color: var(--green);
  text-decoration: none;
}

.sidebar-card .sc-value a:hover { text-decoration: underline; }

/* ─── CONTACT PAGE ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-col h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-info-col > p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type { border-top: 1px solid var(--border); }

.ci-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.2rem;
}

.ci-value {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--dark);
}

.ci-value a {
  color: var(--green);
  text-decoration: none;
}

.ci-value a:hover { text-decoration: underline; }

.contact-form-col {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-col iframe {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}

.form-placeholder {
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-placeholder .fp-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-placeholder h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.form-placeholder p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 320px;
}

.form-placeholder code {
  font-size: 0.78rem;
  background: var(--green-pale);
  color: var(--green);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pt-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 4 / 3; max-width: 480px; }
  .partner-cards-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .partner-detail-body { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .partnerships-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .curriculum-grid { grid-template-columns: 1fr; }
  .fair-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .outcomes-right { grid-template-columns: 1fr; }
  .o-card.span2 { grid-column: span 1; }
  .nav-links li:not(:last-child) { display: none; }
  .hero-stats { flex-direction: column; max-width: 100%; border-radius: var(--radius-sm); }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .partnerships-cta { padding: 2rem; }
}
