/* ============================================================
   Promise Ridge Learning Academy — Stylesheet v2
   ============================================================ */

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

/* ---------- Variables ---------- */
:root {
  --green:        #1A5C39;
  --green-mid:    #00963A;
  --green-light:  #E0F5EA;
  --amber:        #F026A0;
  --amber-dark:   #D01F86;
  --amber-light:  #FCE4F3;
  --rust:         #E8614A;
  --rust-light:   #FEF0ED;
  --sky:          #3B9ED4;
  --sky-light:    #EBF6FD;

  --cream:        #FDFAF6;
  --sand:         #F5EDD7;
  --sand-light:   #FAF6ED;
  --dark:         #1A2E25;
  --mid:          #4D6659;
  --muted:        #7A9A8C;
  --pale:         #D1E3DB;
  --white:        #FFFFFF;

  --font:         'Poppins', sans-serif;

  --r-xs:         4px;
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         20px;
  --r-xl:         28px;

  --shadow-sm:    0 2px 10px rgba(30,99,71,.08);
  --shadow-md:    0 6px 24px rgba(30,99,71,.12);
  --shadow-lg:    0 16px 48px rgba(30,99,71,.16);
  --shadow-warm:  0 6px 24px rgba(240,38,160,.28);

  --ease:         cubic-bezier(.22,.68,0,1.2);
  --nav-h:        72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Type Scale ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--mid); line-height: 1.75; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }

/* Section eyebrow (replaces pill labels) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: rgba(255,255,255,.65); }
.eyebrow.light::before { background: var(--amber); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 560px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-amber {
  background: var(--amber);
  color: var(--dark);
  box-shadow: var(--shadow-warm);
}
.btn-amber:hover { background: var(--amber-dark); box-shadow: 0 8px 32px rgba(245,166,35,.4); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-green:hover { background: var(--green-mid); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline-amber {
  background: transparent;
  color: var(--amber-dark);
  border: 2px solid var(--amber);
}
.btn-outline-amber:hover { background: var(--amber); color: var(--dark); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .8rem; }

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(253,250,246,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,99,71,.08);
  transition: box-shadow .25s ease;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  position: relative;
}
.nav-logo .logo-mark::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 14px; height: 14px;
  background: var(--amber);
  border-radius: 3px;
}
.nav-logo .logo-words { font-weight: 800; font-size: .95rem; color: var(--dark); line-height: 1.2; }
.nav-logo .logo-words span { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-weight: 500;
  font-size: .88rem;
  color: var(--mid);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green);
  background: var(--green-light);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--pale);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  padding: 11px 14px;
  border-radius: var(--r-md);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--green); background: var(--green-light); }
.mobile-menu .mobile-cta { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }

.page-body { padding-top: var(--nav-h); }

/* ---------- Wave Dividers ---------- */
.wave-top, .wave-bottom { display: block; line-height: 0; overflow: hidden; }
.wave-top  svg { display: block; }
.wave-bottom svg { display: block; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 0;
  overflow: hidden;
  background: var(--cream);
}

/* Background shapes */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hs-1 { width: 600px; height: 600px; background: radial-gradient(circle, #A8E0C4, transparent); top: -120px; right: -120px; }
.hs-2 { width: 400px; height: 400px; background: radial-gradient(circle, #FDE8B0, transparent); bottom: 60px; left: -80px; }
.hs-3 { width: 300px; height: 300px; background: radial-gradient(circle, #FEC5BB, transparent); top: 30%; left: 10%; }

/* Dot grid pattern */
.hero-dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,99,71,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--pale);
  border-radius: var(--r-sm);
  padding: 7px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-location .dot {
  width: 7px; height: 7px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Trust chips */
.hero-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--pale);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--mid);
  box-shadow: var(--shadow-sm);
}
.chip .chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Hero stats row */
.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border: 1.5px solid var(--pale);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: auto;
}
.stat-cell {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--pale);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num em { font-style: normal; color: var(--green-mid); }
.stat-label { font-size: .75rem; color: var(--muted); font-weight: 500; }

/* ---------- Programs (Home) — Image Cards ---------- */
.programs-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prog-img-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
  transition: transform .3s ease, box-shadow .3s ease;
}
.prog-img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.prog-img-card .prog-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.prog-img-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prog-img-card:hover img { transform: scale(1.05); }

.prog-img-card .prog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,37,.85) 0%, rgba(26,46,37,.25) 55%, transparent 100%);
}
.prog-img-card .prog-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: #fff;
}
.prog-age {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.prog-img-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s, gap .2s;
}
.prog-link:hover { color: var(--amber); gap: 10px; }
.prog-link::after { content: '→'; }

/* placeholder gradient bg per card */
.pb-1 { background: linear-gradient(135deg, #A8D8BC, #2D8A62); }
.pb-2 { background: linear-gradient(135deg, #FDE8B0, #F5A623); }
.pb-3 { background: linear-gradient(135deg, #FEC5BB, #E8614A); }
.pb-4 { background: linear-gradient(135deg, #BDD5F5, #3B9ED4); }

/* ---------- Why Choose Us — Numbered Layout ---------- */
.reasons-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reason-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--pale);
  transition: border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: transform .3s ease;
}
.reason-card:hover { border-color: var(--pale); box-shadow: var(--shadow-md); }
.reason-card:hover::before { transform: scaleY(1); }
.reason-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
  font-feature-settings: "tnum";
}
.reason-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.reason-card p  { font-size: .88rem; }

/* ---------- Testimonials — Featured Layout ---------- */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-featured {
  background: var(--green);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 24px;
  font-family: Georgia, serif;
  font-size: 14rem;
  color: rgba(255,255,255,.07);
  line-height: 1;
  pointer-events: none;
}
.tf-stars { color: var(--amber); font-size: 1rem; margin-bottom: 20px; letter-spacing: 3px; }
.tf-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.tf-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.tf-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  background: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.tf-name { font-weight: 700; color: #fff; font-size: .95rem; }
.tf-role { font-size: .78rem; color: rgba(255,255,255,.6); }

.testimonials-stack { display: flex; flex-direction: column; gap: 16px; }
.testimonial-small {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1.5px solid var(--pale);
  transition: box-shadow .25s;
}
.testimonial-small:hover { box-shadow: var(--shadow-md); }
.ts-stars { color: var(--amber); font-size: .8rem; letter-spacing: 2px; margin-bottom: 10px; }
.ts-text { font-size: .88rem; color: var(--mid); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.ts-author { display: flex; align-items: center; gap: 10px; }
.ts-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}
.ts-name { font-size: .85rem; font-weight: 700; color: var(--dark); }
.ts-role { font-size: .72rem; color: var(--muted); }

/* ---------- Gallery Strip (Home) ---------- */
.gallery-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 460px;
}
.g-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.g-item.span-rows { grid-row: 1 / 3; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.gph-a { background: linear-gradient(135deg, #A8D8BC, #6CC4A0); }
.gph-b { background: linear-gradient(135deg, #FDE8B0, #F9CF70); }
.gph-c { background: linear-gradient(135deg, #FEC5BB, #F7957E); }
.gph-d { background: linear-gradient(135deg, #BDD5F5, #7DB5EA); }
.gph-e { background: linear-gradient(135deg, #D5B8F5, #B590E8); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--pale);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  background: none;
}
.faq-icon {
  width: 26px; height: 26px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .2s ease;
}
.faq-item.open .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; font-size: .9rem; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .cb-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-banner .cb-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cb-c1 { width: 350px; height: 350px; top: -120px; right: -60px; }
.cb-c2 { width: 220px; height: 220px; bottom: -80px; left: 5%; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--sand-light);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 36px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--mid);
}
.trust-item .ti-icon {
  width: 30px; height: 30px;
  background: var(--white);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.trust-divider { color: var(--pale); font-size: 1.4rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .brand-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-brand .nav-logo-img {
  width: 48px; height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand .logo-mark {
  width: 42px; height: 42px;
  background: var(--green-mid);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  position: relative;
}
.footer-brand .logo-mark::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 13px; height: 13px;
  background: var(--amber);
  border-radius: 3px;
}
.footer-brand .logo-words { font-weight: 800; font-size: .95rem; color: #fff; line-height: 1.2; }
.footer-brand .logo-words span { display: block; font-weight: 500; font-size: .72rem; color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.f-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, transform .2s;
}
.f-social:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); }

.footer-col h5 {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-links a::before { content: '–'; font-size: .75rem; color: var(--green-mid); }

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.f-contact-item .f-ci-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.f-contact-item a { color: rgba(255,255,255,.55); }
.f-contact-item a:hover { color: var(--amber); }

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--sand-light);
  border-bottom: 1px solid var(--sand);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(30,99,71,.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; color: var(--muted);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: var(--green-mid); }
.page-hero .breadcrumb span { color: var(--pale); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 540px; font-size: 1.05rem; }

/* ---------- Story / About layouts ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-img-wrap { position: relative; }
.story-img, .story-img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.story-img-ph {
  background: linear-gradient(135deg, #A8D8BC 0%, #FDE8B0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.story-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--green);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.story-badge .sb-num { font-size: 2.2rem; line-height: 1; color: var(--amber); }
.story-badge .sb-txt { font-size: .72rem; opacity: .8; font-weight: 500; }

.values-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.val-item { display: flex; gap: 12px; align-items: flex-start; }
.val-dot {
  width: 32px; height: 32px; border-radius: var(--r-xs); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; margin-top: 2px;
}
.vd-green  { background: var(--green-light); }
.vd-amber  { background: var(--amber-light); }
.vd-rust   { background: var(--rust-light); }
.vd-sky    { background: var(--sky-light); }
.val-item h5 { font-size: .88rem; margin-bottom: 3px; }
.val-item p  { font-size: .82rem; margin: 0; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--pale);
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-av {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
}
.av-g { background: linear-gradient(135deg, var(--green), var(--green-mid)); }
.av-a { background: linear-gradient(135deg, var(--amber), #E8920A); }
.av-r { background: linear-gradient(135deg, var(--rust), #C84A34); }
.av-s { background: linear-gradient(135deg, var(--sky), #2A8EC0); }
.av-t { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.team-card h4 { margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--green-mid); font-weight: 700; margin-bottom: 10px; }
.team-card p  { font-size: .82rem; }

/* ---------- Programs Page ---------- */
.program-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--pale);
}
.program-section:last-of-type { border-bottom: none; }
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.program-grid.flipped { direction: rtl; }
.program-grid.flipped > * { direction: ltr; }

.prog-detail-img, .prog-detail-ph {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.prog-detail-ph {
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

.prog-age-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-xs);
  margin-bottom: 14px;
}
.prog-features { margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.prog-feat {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .9rem; color: var(--mid);
}
.prog-feat .pf-check {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .6rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* Daily schedule */
.schedule-table {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--pale);
}
.sched-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.sched-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--pale);
}
.sched-time {
  font-weight: 700; font-size: .78rem;
  color: var(--green); min-width: 72px;
}
.sched-icon { font-size: 1rem; }
.sched-act  { font-size: .85rem; color: var(--mid); font-weight: 500; }

/* ---------- Enrollment Page ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-light));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--pale);
  position: relative;
  z-index: 1;
  transition: box-shadow .25s, transform .25s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}
.step-card h4 { margin-bottom: 8px; }
.step-card p  { font-size: .85rem; }

.req-list { display: flex; flex-direction: column; gap: 10px; }
.req-row {
  display: flex; gap: 12px; align-items: center;
  padding: 13px 16px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1.5px solid var(--pale);
  font-size: .9rem; color: var(--mid); font-weight: 500;
}
.req-row .ri { font-size: 1.1rem; flex-shrink: 0; }

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--pale);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--pale);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
}

/* ---------- Gallery ---------- */
.gallery-masonry { columns: 3; column-gap: 14px; }
.gm-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gm-item img { width: 100%; display: block; transition: transform .4s ease; }
.gm-item:hover img { transform: scale(1.04); }
.gm-ph { width: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.gm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,37,.6), transparent 60%);
  opacity: 0; transition: opacity .25s;
  display: flex; align-items: flex-end; padding: 14px;
  border-radius: var(--r-md);
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay span { color: #fff; font-size: .82rem; font-weight: 600; }

.gallery-filter { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  font-size: .8rem; font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--pale);
  color: var(--mid);
  background: var(--white);
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(26,46,37,.95); z-index: 2000;
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: var(--r-lg); object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lb-close {
  position: fixed; top: 18px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: var(--rust); }
.lb-caption {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600;
  background: rgba(0,0,0,.4); padding: 7px 18px; border-radius: var(--r-sm);
  white-space: nowrap;
}

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: flex-start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.cc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  border: 1.5px solid var(--pale);
  transition: box-shadow .25s;
}
.cc-card:hover { box-shadow: var(--shadow-md); }
.cc-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cc-card h4 { font-size: .9rem; margin-bottom: 4px; }
.cc-card p  { font-size: .85rem; margin: 0; }
.cc-card a  { color: var(--green); font-weight: 600; font-size: .92rem; }

.hours-tbl { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-tbl td { padding: 5px 0; font-size: .85rem; color: var(--mid); }
.hours-tbl td:first-child { font-weight: 600; color: var(--dark); width: 44%; }
.hours-tbl tr.closed td { color: var(--muted); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; margin-top: 18px; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 240px; border: none; }
.map-ph {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--green-light), var(--sky-light));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
  font-weight: 600; color: var(--mid); font-size: .88rem;
}
.map-ph .mp-icon { font-size: 2rem; }

/* ---------- Scroll Fade ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fd-1 { transition-delay: .08s; }
.fd-2 { transition-delay: .16s; }
.fd-3 { transition-delay: .24s; }
.fd-4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .reasons-layout    { grid-template-columns: 1fr 1fr; }
  .testimonials-layout { grid-template-columns: 1fr; }
  .testimonials-stack { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .gallery-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .g-item.span-rows { grid-row: auto; }
  .g-item img, .g-item .g-ph { height: 200px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta .btn-green { display: none; }
  .hamburger { display: flex; }
  .nav-logo .logo-words { display: none; }
  .nav-logo-img { width: 44px; height: 44px; }

  .hero { padding: 56px 20px 0; min-height: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--pale); }
  .stat-cell { border-bottom: 1px solid var(--pale); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }

  .programs-image-grid { grid-template-columns: 1fr; }
  .reasons-layout    { grid-template-columns: 1fr; }
  .testimonials-stack { flex-direction: column; }
  .story-grid        { grid-template-columns: 1fr; }
  .program-grid      { grid-template-columns: 1fr; gap: 32px; }
  .program-grid.flipped { direction: ltr; }
  .steps-row         { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .gallery-masonry   { columns: 2; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .sched-grid        { grid-template-columns: 1fr; }
  .form-grid         { grid-template-columns: 1fr; }
  .form-card         { padding: 28px 20px; }
  .section-pad       { padding: 60px 0; }
  .gallery-row       { display: none; }
  .values-items      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-stack { flex-direction: column; }
}
