/* ============================================================
   styles.css — Mini CEO
   Brand: Professional, vibrant, child-forward
   Palette: Navy / Teal / Gold / Orange / Pink / Purple / Green
   Font: Poppins 400 + 700
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --navy:     #0D1B3D;
  --teal:     #00B5A6;
  --gold:     #FFBE00;
  --orange:   #FF6B3D;
  --pink:     #E83E8C;
  --purple:   #6C43FF;
  --green:    #7AC943;
  --offwhite: #FFF7E6;
  --white:    #ffffff;

  --text-dark:  #0D1B3D;
  --text-mid:   #3d4f6e;
  --text-light: #6b7fa3;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(13, 27, 61, 0.07);
  --shadow-md: 0 8px 32px rgba(13, 27, 61, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 27, 61, 0.18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1rem; }
p { line-height: 1.78; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label--gold { color: var(--gold); }
.section-title { margin-bottom: 16px; }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.78;
}
.section-intro--light { color: rgba(255, 255, 255, 0.7); }

/* --- Layout --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--navy  { background: var(--navy);     color: var(--white); }
.section--offwhite { background: var(--offwhite); }
.section--teal  { background: var(--teal);     color: var(--white); }
.section--gold  { background: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: #009e91;
  border-color: #009e91;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 181, 166, 0.32);
}
.btn--gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: #162b5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 27, 61, 0.28);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1fba58;
  border-color: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 48px; width: auto; }
.footer__logo { height: 56px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta .btn { padding: 10px 22px; font-size: 0.85rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition);
}
.nav__mobile a:hover { color: var(--teal); }
.nav__mobile.open a { opacity: 1; transform: translateY(0); }
.nav__mobile.open a:nth-child(1) { transition-delay: 0.08s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.14s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.20s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.26s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.32s; }
.nav__mobile.open a:nth-child(6) { transition-delay: 0.38s; }
.nav__mobile.open a:nth-child(7) { transition-delay: 0.44s; }
.nav__mobile-wa {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease 0.50s, transform 0.4s ease 0.50s;
}
.nav__mobile.open .nav__mobile-wa { opacity: 1; transform: translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer__brand img { height: 56px; margin-bottom: 24px; }
.footer__tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.footer__scripture {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  border-left: 3px solid var(--teal);
  padding-left: 14px;
}
.footer__col-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 22px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--teal); }
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer__contact-row svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); }
.footer__accent-bar { display: flex; gap: 6px; }
.footer__accent-bar span {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 2px;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  transition: all var(--transition);
  aria-label: "Chat on WhatsApp";
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.52);
}
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.055;
  pointer-events: none;
}
.page-hero__bg-circle--1 {
  width: 480px;
  height: 480px;
  background: var(--teal);
  top: -120px;
  right: -100px;
}
.page-hero__bg-circle--2 {
  width: 280px;
  height: 280px;
  background: var(--gold);
  bottom: -60px;
  left: 10%;
}
.page-hero__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.page-hero h1 { color: var(--white); max-width: 620px; }
.page-hero p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.78;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__bg-circle--teal {
  width: 560px; height: 560px;
  background: var(--teal);
  opacity: 0.05;
  bottom: -160px; left: -120px;
}
.hero__bg-circle--gold {
  width: 380px; height: 380px;
  background: var(--gold);
  opacity: 0.05;
  top: -100px; right: -80px;
}
.hero__bg-circle--purple {
  width: 200px; height: 200px;
  background: var(--purple);
  opacity: 0.06;
  top: 40%;
  right: 15%;
}
/* Decorative dashes (mirroring logo confetti) */
.hero__dashes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hdash {
  position: absolute;
  border-radius: 4px;
  opacity: 0.45;
}
/* Hero split layout */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}
.hero__content { position: relative; }
.hero__logo { margin-bottom: 44px; }
.hero__logo img { height: 88px; }

/* Hero image panel */
.hero__image-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(0,181,166,0.35), 0 32px 80px rgba(0,0,0,0.45);
  animation: heroFloat 5s ease-in-out infinite;
  position: relative;
}
.hero__image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); max-width: 680px; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--gold); }
.hero__sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.78;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.38), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* ============================================================
   HOME — STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--teal);
  padding: 44px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-bar__divider { border-right: 1px solid rgba(255, 255, 255, 0.22); }
.stats-bar__item h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.stats-bar__item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* ============================================================
   HOME — WHAT IS MINI CEO
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.scripture-pull {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px 36px 36px 48px;
  position: relative;
  margin-top: 36px;
}
.scripture-pull::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 18px;
  font-size: 6rem;
  color: var(--teal);
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  opacity: 0.9;
}
.scripture-pull p {
  color: rgba(255, 255, 255, 0.84);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
}
.scripture-pull cite {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}
/* Visual info block (right side) */
.info-block {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.info-block__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(13, 27, 61, 0.08);
}
.info-block__row:last-child { border-bottom: none; }
.info-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-block__icon svg { width: 22px; height: 22px; fill: none; stroke-width: 2; }
.info-block__label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; margin-bottom: 2px; }
.info-block__value { font-size: 1rem; font-weight: 700; color: var(--navy); }

/* ============================================================
   HOME — PILLARS
   ============================================================ */
.pillars-header { max-width: 560px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border-top: 4px solid;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pillar-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-card__icon svg { width: 22px; height: 22px; fill: none; stroke-width: 2; }
.pillar-card h3 { font-size: 1rem; margin-bottom: 10px; }
.pillar-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.72; }

/* Pillar colour tokens */
.pillar--purple { border-color: var(--purple); }
.pillar--purple .pillar-card__icon { background: rgba(108,67,255,0.09); stroke: var(--purple); }
.pillar--purple .pillar-card__icon svg { stroke: var(--purple); }

.pillar--orange { border-color: var(--orange); }
.pillar--orange .pillar-card__icon { background: rgba(255,107,61,0.09); }
.pillar--orange .pillar-card__icon svg { stroke: var(--orange); }

.pillar--gold { border-color: var(--gold); }
.pillar--gold .pillar-card__icon { background: rgba(255,190,0,0.09); }
.pillar--gold .pillar-card__icon svg { stroke: var(--gold); }

.pillar--green { border-color: var(--green); }
.pillar--green .pillar-card__icon { background: rgba(122,201,67,0.09); }
.pillar--green .pillar-card__icon svg { stroke: var(--green); }

.pillar--pink { border-color: var(--pink); }
.pillar--pink .pillar-card__icon { background: rgba(232,62,140,0.09); }
.pillar--pink .pillar-card__icon svg { stroke: var(--pink); }

.pillar--teal { border-color: var(--teal); }
.pillar--teal .pillar-card__icon { background: rgba(0,181,166,0.09); }
.pillar--teal .pillar-card__icon svg { stroke: var(--teal); }

/* ============================================================
   HOME — WHO IT'S FOR
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.audience-card {
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform var(--transition);
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card--teal   { background: var(--teal); }
.audience-card--navy   { background: var(--navy); border: 1px solid rgba(255,255,255,0.06); }
.audience-card--gold   { background: var(--gold); }
.audience-card h3      { font-size: 1.25rem; margin-bottom: 12px; color: var(--white); }
.audience-card--gold h3 { color: var(--navy); }
.audience-card p       { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.72; }
.audience-card--gold p { color: rgba(13,27,61,0.72); }
.audience-card__link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.86rem;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid;
  transition: letter-spacing var(--transition);
}
.audience-card__link:hover { letter-spacing: 0.04em; }
.audience-card--teal .audience-card__link { color: var(--white); border-color: rgba(255,255,255,0.5); }
.audience-card--navy .audience-card__link { color: var(--teal);  border-color: var(--teal); }
.audience-card--gold .audience-card__link { color: var(--navy);  border-color: var(--navy); }

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}
.cta-banner__ring--1 {
  width: 500px; height: 500px;
  border-color: rgba(0,181,166,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.cta-banner__ring--2 {
  width: 750px; height: 750px;
  border-color: rgba(0,181,166,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.68); max-width: 480px; margin: 0 auto 40px; font-size: 1.02rem; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE — VISION / MISSION
   ============================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.vm-card {
  border-radius: var(--radius-md);
  padding: 44px;
}
.vm-card--offwhite { background: var(--offwhite); }
.vm-card--teal     { background: var(--teal); }
.vm-card__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text-mid);
}
.vm-card--teal .vm-card__heading { color: rgba(255,255,255,0.62); }
.vm-card p { font-size: 1.04rem; line-height: 1.78; color: var(--text-dark); }
.vm-card--teal p { color: rgba(255,255,255,0.9); }

/* Brand values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-card__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 18px;
}
.value-card h4 { font-size: 0.95rem; }

/* Scripture pull-quote (full width, about page) */
.scripture-full {
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
  margin: 0 auto;
}
.scripture-full__mark {
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
}
.scripture-full p {
  font-size: 1.18rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 20px;
}
.scripture-full cite {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   PROGRAMMES PAGE
   ============================================================ */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.programme-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.programme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.programme-card__num {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  opacity: 0.1;
}
.programme-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.programme-card p  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 16px; }
.programme-card ul { padding: 0; }
.programme-card li {
  font-size: 0.84rem;
  color: var(--text-mid);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.55;
}
.programme-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Format strip */
.format-strip { padding: 52px 0; }
.format-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.format-strip__item h4 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.format-strip__item p  { font-size: 0.84rem; color: rgba(13,27,61,0.68); }

/* Outcomes */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}
.outcome-check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.outcome-item p { font-size: 0.86rem; color: rgba(255,255,255,0.8); line-height: 1.62; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__avatar {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__initials {
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}
.team-card__body { padding: 28px; }
.team-card h3    { font-size: 1.08rem; margin-bottom: 4px; }
.team-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.team-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* Photo team card grid */
.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card-photo {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-photo__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.team-card-photo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.team-card-photo:hover .team-card-photo__img img { transform: scale(1.04); }
.team-card-photo__body { padding: 32px 36px 36px; }
.team-card-photo__body h3 { font-size: 1.3rem; margin-bottom: 6px; }

/* Join CTA */
.join-cta {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  margin-top: 72px;
}
.join-cta h3 { font-size: 1.5rem; margin-bottom: 14px; }
.join-cta p { color: var(--text-mid); max-width: 460px; margin: 0 auto 32px; }

/* ============================================================
   PARENTS PAGE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.why-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-3px); }
.why-card__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  min-width: 36px;
}
.why-card h4 { font-size: 1rem; margin-bottom: 6px; }
.why-card p  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.72; }

/* How it works — 3 steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), transparent);
  opacity: 0.25;
  pointer-events: none;
}
.step-item { text-align: center; }
.step-circle {
  width: 88px;
  height: 88px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step-circle span { font-size: 1.6rem; font-weight: 700; color: var(--teal); }
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.72; }

/* FAQ Accordion */
.faq-wrap { max-width: 700px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid rgba(13,27,61,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(13,27,61,0.1); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 360px; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.78;
  padding-bottom: 22px;
  padding-right: 40px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.contact-detail__icon {
  width: 46px;
  height: 46px;
  background: var(--offwhite);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.contact-detail__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 2px; }
.contact-detail__value { font-size: 0.97rem; font-weight: 600; color: var(--navy); }
.contact-wa-box {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 36px;
}
.contact-wa-box p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.72; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group select { cursor: pointer; -webkit-appearance: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,181,166,0.1);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.08); }
.form-error-msg {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 5px;
  display: none;
}
.form-error-msg.visible { display: block; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bec5; }
.form-submit-row { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--text-light); }
.form-success-msg {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success-msg.visible { display: block; }
.form-success-msg h3 { color: var(--teal); margin-bottom: 12px; }
.form-success-msg p  { color: var(--text-mid); }
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,181,166,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

/* ============================================================
   HOME — WHAT CHILDREN GAIN (10 ITEMS)
   ============================================================ */
.gain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.gain-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gain-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gain-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gain-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2;
}
.gain-item__text {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* Colour modifier classes for the 10 items */
.gain-item--purple { border-left: 4px solid var(--purple); }
.gain-item--purple .gain-item__icon { background: rgba(108,67,255,0.08); stroke: var(--purple); }
.gain-item--purple .gain-item__icon svg { stroke: var(--purple); }

.gain-item--gold { border-left: 4px solid var(--gold); }
.gain-item--gold .gain-item__icon { background: rgba(255,190,0,0.08); stroke: var(--gold); }
.gain-item--gold .gain-item__icon svg { stroke: var(--gold); }

.gain-item--orange { border-left: 4px solid var(--orange); }
.gain-item--orange .gain-item__icon { background: rgba(255,107,61,0.08); stroke: var(--orange); }
.gain-item--orange .gain-item__icon svg { stroke: var(--orange); }

.gain-item--teal { border-left: 4px solid var(--teal); }
.gain-item--teal .gain-item__icon { background: rgba(0,181,166,0.08); stroke: var(--teal); }
.gain-item--teal .gain-item__icon svg { stroke: var(--teal); }

.gain-item--pink { border-left: 4px solid var(--pink); }
.gain-item--pink .gain-item__icon { background: rgba(232,62,140,0.08); stroke: var(--pink); }
.gain-item--pink .gain-item__icon svg { stroke: var(--pink); }

.gain-item--green { border-left: 4px solid var(--green); }
.gain-item--green .gain-item__icon { background: rgba(122,201,67,0.08); stroke: var(--green); }
.gain-item--green .gain-item__icon svg { stroke: var(--green); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-embed {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--offwhite);
  box-shadow: 0 4px 24px rgba(13,27,61,0.06);
  border: 1.5px solid rgba(13,27,61,0.06);
  min-height: 500px;
}

.gallery-drive-frame {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 16px;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
  min-height: 400px;
}

.gallery-placeholder__icon {
  color: rgba(13,27,61,0.15);
  margin-bottom: 24px;
}

.gallery-placeholder h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.gallery-placeholder p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 400px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .gallery-drive-frame { height: 420px; }
  .gallery-embed { min-height: 350px; }
  .gallery-placeholder { padding: 48px 20px; min-height: 300px; }
}

/* ============================================================
   SCROLL-TRIGGERED FADE ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE — 1024px (tablet landscape)
   ============================================================ */
@media (max-width: 1024px) {
  .about-intro-grid   { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid       { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .programme-grid     { grid-template-columns: 1fr; }
  .format-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-layout     { grid-template-columns: 1fr; gap: 52px; }
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-photo-grid    { grid-template-columns: 1fr; max-width: 620px; }

  /* Hero: stack into single column, image goes on top */
  .hero__split        { grid-template-columns: 1fr; gap: 40px; padding: 130px 0 64px; }
  .hero__image-panel  { order: -1; }
  .hero__image-frame  { max-width: 640px; width: 100%; margin: 0 auto; }
}

/* ============================================================
   RESPONSIVE — 768px (tablet portrait / large phone)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Nav */
  .nav__links        { display: none; }
  .nav__cta          { display: none; }
  .nav__hamburger    { display: flex; }

  /* Hero — image shows, stacked above copy on mobile */
  .hero__split       { grid-template-columns: 1fr; gap: 32px; padding: 104px 0 56px; }
  .hero__image-panel { order: -1; display: flex; } /* keep visible, move above text */
  .hero__image-frame { max-width: 100%; width: 100%; animation: none; border-radius: var(--radius-md); }
  .hero__image-frame img { border-radius: var(--radius-md); }
  .hero__logo        { display: none; }
  .hero__actions     { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__scroll      { display: none; }

  /* Stats bar — single column on mobile */
  .stats-bar__grid   { grid-template-columns: 1fr; gap: 0; }
  .stats-bar__divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 20px; margin-bottom: 20px; }

  /* General grids */
  .pillars-grid      { grid-template-columns: 1fr; }
  .gain-grid         { grid-template-columns: 1fr; }
  .audience-grid     { grid-template-columns: 1fr; }
  .vm-grid           { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .team-photo-grid   { grid-template-columns: 1fr; }
  .team-card-photo__body { padding: 22px 24px 28px; }
  .why-grid          { grid-template-columns: 1fr; }
  .steps-row         { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .outcomes-grid     { grid-template-columns: repeat(2, 1fr); }
  .format-strip__grid { grid-template-columns: repeat(2, 1fr); }

  /* Market day grid */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* CTA banner */
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner        { padding: 64px 0; }

  /* Contact */
  .form-card         { padding: 28px; }
  .form-row          { grid-template-columns: 1fr; }
  .form-submit-row   { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer__grid      { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom    { flex-direction: column; text-align: center; gap: 20px; }

  /* Join CTA */
  .join-cta          { padding: 40px 24px; }
}

/* ============================================================
   RESPONSIVE — 480px (small phones)
   ============================================================ */
@media (max-width: 480px) {
  .container          { padding: 0 16px; }
  .section            { padding: 48px 0; }

  /* Hero */
  .hero__split        { padding: 96px 0 48px; gap: 28px; }
  h1                  { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* Stats */
  .stats-bar__grid    { grid-template-columns: 1fr; gap: 0; }
  .stats-bar__divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 20px; margin-bottom: 20px; }

  /* Grids */
  .outcomes-grid      { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .format-strip__grid { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .pillars-grid       { grid-template-columns: 1fr; }

  /* Buttons */
  .btn                { width: 100%; justify-content: center; }
  .hero__actions      { width: 100%; }

  /* Form */
  .form-card          { padding: 20px; }

  /* Team */
  .team-card-photo__body { padding: 18px 20px 24px; }

  /* Footer */
  .footer__grid       { gap: 28px; }
  .footer__brand img  { height: 44px; }
}