/* ========================================================================
   WOLIS — shared stylesheet (consolidated from per-page <style> blocks)
   Sections: tokens & base, buttons, header, hero (home), page-hero (subpages),
   shared section patterns, footer, then one block per page for content
   unique to that page. Page-specific overrides are scoped with the body
   classes added to each page (body.page-home, body.page-about, etc.).
   ======================================================================== */

:root{
  --navy:#0F2A47;
  --navy-deep:#0A2036;
  --gold:#F2B33D;
  --gold-deep:#D89A2A;
  --gold-text:#5A3E0E;
  --teal:#4FA3D4;
  --green:#5FAE8C;
  --green-deep:#3B8C63;
  --purple:#9D8FD1;
  --purple-deep:#7C6FBD;
  --coral:#E27680;
  --coral-deep:#C24B53;
  --blue-deep:#2E86C1;
  --cream:#FBF2E4;
  --ink:#11304F;
  --gray:#5C6675;
  --light-gray:#8A93A1;
  --white:#FFFFFF;
  --border:#EAE3D4;
}

/* ---------- BASE / RESET ---------- */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible{outline:2px solid var(--gold); outline-offset:2px; border-radius:4px;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1; transform:none; transition:none;}
  [data-parallax]{transform:none !important;}
}
body{
  margin:0;
  background:var(--white);
  font-family:'Inter',sans-serif;
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block; max-width:100%;}
a{color:inherit;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
h1,h2,h3,h4{font-family:'Sora',sans-serif; margin:0; letter-spacing:-.015em;}
.c-gold{color:var(--gold);}
.c-white{color:var(--white);}
.c-teal{color:var(--teal);}

/* ---------- SCROLL REVEAL & PARALLAX UTILITIES ---------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);}
.reveal.is-visible{opacity:1; transform:translateY(0);}
[data-parallax]{will-change:transform;}

/* ---------- PLACEHOLDER MEDIA ---------- */
.ph{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.75);
  font-family:'Inter',sans-serif;
  font-size:13px;
  letter-spacing:.04em;
  text-align:center;
}
.ph::after{
  content:attr(data-label);
  position:absolute;
  bottom:14px; left:50%;
  transform:translateX(-50%);
  background:rgba(10,32,54,.55);
  padding:5px 12px;
  border-radius:20px;
  white-space:nowrap;
}
.ph svg{opacity:.55;}
.ph-hero{background:linear-gradient(135deg,#1B3A5C,#0A2036);}
.ph-deep{background:linear-gradient(135deg,#1B3A5C,#0A2036);}
.ph-warm{background:linear-gradient(135deg,#E8C98A,#C99A4E);}
.ph-cool{background:linear-gradient(135deg,#86B6D6,#3E6F94);}
.ph-field{background:linear-gradient(135deg,#6FA76B,#355B3C);}
.ph-map{background:linear-gradient(135deg,#CFE3D2,#9BC0A1);}
.ph-1{background:linear-gradient(135deg,#E8C98A,#C99A4E);}
.ph-2{background:linear-gradient(135deg,#86B6D6,#3E6F94);}
.ph-3{background:linear-gradient(135deg,#9FC9A8,#4F8C5E);}
.ph-4{background:linear-gradient(135deg,#D6A7B0,#A85066);}
.ph-5{background:linear-gradient(135deg,#B9AEDC,#6F5FA8);}
.ph-6{background:linear-gradient(135deg,#E3C7E0,#A165A0);}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Sora',sans-serif;
  font-weight:600;
  font-size:14.5px;
  padding:13px 24px;
  border-radius:30px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), background .35s cubic-bezier(.16,1,.3,1);
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{background:var(--gold); color:var(--gold-text);}
.btn-gold:hover{background:var(--gold-deep);}
.btn-navy{background:var(--navy); color:var(--white);}
.btn-navy:hover{background:var(--navy-deep);}
.btn-outline{background:transparent; color:var(--white); border-color:rgba(255,255,255,.6);}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.btn-outline-navy{background:transparent; color:var(--navy); border-color:var(--navy);}

/* ---------- HEADER ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid #F0ECE2;
  transition:box-shadow .3s ease;
}
.site-header.is-scrolled{box-shadow:0 8px 24px -16px rgba(15,42,71,.25);}
.header-inner{
  max-width:1180px;
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  gap:28px;
}
.logo{display:flex; align-items:center; gap:10px; text-decoration:none; margin-right:auto;}
.site-header .logo-mark{width:79px; height:79px;}
.site-header .logo-text{font-size:19px;}
.site-header .logo-text span{font-size:14px;}
.logo-mark{
  width:63px; height:63px; border-radius:50%;
  object-fit:cover;
  flex:none;
}
.logo-text{font-family:'Sora',sans-serif; font-weight:700; font-size:15px; color:var(--navy); line-height:1.25;}
.logo-text span{display:block; font-weight:500; font-size:11.5px; color:var(--gray); letter-spacing:.02em;}
.main-nav{display:flex; align-items:center; gap:26px;}
.main-nav a{
  font-size:14.5px; font-weight:500; color:var(--ink); text-decoration:none;
  padding-bottom:4px; border-bottom:2px solid transparent;
}
.main-nav a.active{color:var(--navy); border-color:var(--gold); font-weight:600;}
.main-nav a:hover{color:var(--navy);}
.main-nav .nav-apply{padding:13px 24px; border-bottom:none;}
.menu-toggle{display:none; background:none; border:none; padding:4px; cursor:pointer;}
@media(max-width:900px){
  .main-nav{
    display:flex; flex-direction:column; align-items:stretch; gap:2px;
    position:absolute; top:100%; left:0; right:0;
    background:var(--white); border-bottom:1px solid #F0ECE2;
    padding:10px 24px 18px;
    box-shadow:0 16px 28px -20px rgba(15,42,71,.3);
    max-height:0; overflow:hidden; opacity:0;
    transition:max-height .3s ease, opacity .2s ease;
  }
  .main-nav a{padding:12px 0; border-bottom:1px solid #F0ECE2;}
  .main-nav a.active{border-bottom-color:var(--gold);}
  .main-nav .nav-apply{
    width:fit-content; margin-top:14px; border-bottom:none; padding:11px 18px;
  }
  .site-header.is-nav-open .main-nav{max-height:80vh; overflow-y:auto; opacity:1;}
  .menu-toggle{display:flex;}
}

/* ---------- HOME HERO ---------- */
.hero{position:relative; color:var(--white); overflow:hidden;}
.hero-media{position:absolute; inset:0; z-index:0; background-image:url('../img/hero.svg'); background-size:cover; background-position:center; background-attachment:fixed;}
@media(max-width:900px){ .hero-media{background-attachment:scroll;} }
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg, rgba(8,22,38,.92) 8%, rgba(8,22,38,.55) 48%, rgba(8,22,38,.15) 75%);
}
.hero-blob{position:absolute; border-radius:50%; filter:blur(40px); opacity:.3; z-index:1; pointer-events:none;}
body.page-home .hero-blob{opacity:.35;}
.hero-blob-a{width:300px; height:300px; top:-70px; right:-50px; background:var(--gold);}
.hero-blob-b{width:220px; height:220px; bottom:-90px; left:8%; background:var(--teal);}
body.page-home .hero-blob-a{width:340px; height:340px; top:-80px; right:-60px;}
body.page-home .hero-blob-b{width:260px; height:260px; bottom:-100px; left:10%;}
.hero-content{position:relative; z-index:2; max-width:1180px; margin:0 auto; padding:90px 24px 150px;}
.hero-decor{display:flex; gap:14px; margin-bottom:6px; opacity:.8;}
.hero h1{font-size:44px; font-weight:700; line-height:1.16; letter-spacing:-.02em; margin-bottom:18px; max-width:600px;}
.hero p{font-size:16px; line-height:1.65; color:rgba(255,255,255,.88); max-width:430px; margin-bottom:30px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
.hero-wave{position:absolute; left:0; right:0; bottom:-2px; z-index:1; width:100%; height:auto;}
@media(max-width:600px){ .hero h1{font-size:32px;} }

/* ---------- SUBPAGE HERO ---------- */
.page-hero{background:var(--navy); color:var(--white); padding:54px 24px 86px; position:relative; overflow:hidden;}
.page-hero .wrap{max-width:1180px; margin:0 auto; position:relative; z-index:2;}
.breadcrumb{font-size:13px; color:rgba(255,255,255,.6); margin-bottom:14px;}
.breadcrumb a{color:rgba(255,255,255,.85); text-decoration:none;}
.breadcrumb span{margin:0 6px; color:var(--gold);}
.page-hero h1{font-size:38px; font-weight:700; margin-bottom:12px;}
.page-hero p{font-size:15.5px; color:rgba(255,255,255,.8); max-width:520px; margin:0;}
.page-hero-wave{position:absolute; left:0; right:0; bottom:-2px; z-index:1; width:100%;}
body.page-admissions .page-hero p{margin:0 0 24px;}

/* ---------- SHARED SECTION PATTERNS ---------- */
.section{padding:90px 24px;}
.section.cream{background:var(--cream);}
.section-head{text-align:center; max-width:580px; margin:0 auto 50px;}
.eyebrow-gold{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Inter',sans-serif; font-weight:700; font-size:12.5px;
  text-transform:uppercase; letter-spacing:.12em;
  color:var(--gold-deep); margin-bottom:12px;
}
.eyebrow-green{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Inter',sans-serif; font-weight:700; font-size:12.5px;
  text-transform:uppercase; letter-spacing:.12em;
  color:var(--green-deep); margin-bottom:12px;
}
.section-head .eyebrow-green{justify-content:center;}
.section-head h2{font-size:30px; font-weight:700; color:var(--navy); margin-bottom:12px;}
.section-underline{width:50px; height:5px; background:var(--navy); border-radius:4px; margin:0 auto;}

.welcome-text .eyebrow-gold{margin-bottom:14px;}

.programs-grid{
  max-width:1180px; margin:0 auto;
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px;
}
@media(max-width:980px){ .programs-grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:620px){ .programs-grid{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));} }

.stats-grid{
  max-width:1180px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
@media(max-width:780px){ .stats-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:620px){ .page-academics .stats-grid{grid-template-columns:1fr;} .page-academics .stat-item{justify-content:flex-start;} }
.stat-item{display:flex; align-items:center; gap:14px; justify-content:center;}
.stat-icon{width:54px; height:54px; border-radius:50%; flex:none; display:flex; align-items:center; justify-content:center;}
.stat-item h3{font-size:26px; font-weight:700; color:var(--navy); line-height:1.1;}
.stat-item p{font-size:13px; color:var(--gray); margin:2px 0 0;}

.values-row{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media(max-width:780px){ .values-row{grid-template-columns:1fr;} }
.value-item{text-align:center;}
.value-icon{width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto;}
.value-item h4{font-size:16px; font-weight:700; margin-bottom:8px;}
.value-item p{font-size:13.5px; color:var(--gray); line-height:1.6; margin:0; max-width:240px; margin-left:auto; margin-right:auto;}
/* compact variant used inside the homepage values/mission box */
.vm-values .eyebrow-gold{margin-bottom:18px;}
/* Commitments block */
.commitments-wrap{margin-top:48px; border-top:1px solid var(--border); padding-top:36px;}
.commitments-title{font-size:16px; font-weight:700; color:var(--navy); margin:0 0 18px; text-align:center; letter-spacing:-.01em;}
.commitments-list{list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(2,1fr); gap:14px; max-width:680px; margin:0 auto;}
.commitments-list li{display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink); line-height:1.5; background:var(--white); border:1px solid var(--border); border-radius:10px; padding:12px 16px;}
.commitments-list li svg{flex:none; margin-top:2px;}
@media(max-width:580px){.commitments-list{grid-template-columns:1fr;}}

.vm-values .values-row{grid-template-columns:repeat(3,1fr); gap:20px;}
.vm-values .value-item{text-align:left;}
.vm-values .value-icon{width:40px; height:40px; margin:0 0 10px;}
.vm-values .value-item h4{font-size:15px; margin-bottom:6px;}
.vm-values .value-item p{font-size:12.5px; line-height:1.55; max-width:none; margin-left:0; margin-right:0;}
@media(max-width:600px){ .vm-values .values-row{grid-template-columns:1fr;} }

.event-list{display:flex; flex-direction:column; gap:14px;}
body.page-school-life .event-list{max-width:640px; margin:0 auto;}
.event-card{display:flex; gap:16px; align-items:flex-start; text-decoration:none; color:inherit; border:1px solid var(--border); border-radius:14px; padding:16px; background:var(--white); transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), border-color .35s cubic-bezier(.16,1,.3,1);}
.event-card:hover{transform:translateY(-2px); box-shadow:0 12px 24px -16px rgba(15,42,71,.3); border-color:var(--gold);}
.event-date{flex:none; width:58px; height:58px; border-radius:12px; background:var(--navy); display:flex; flex-direction:column; align-items:center; justify-content:center;}
.event-date .day{font-family:'Sora',sans-serif; font-weight:700; font-size:19px; color:var(--gold); line-height:1.1;}
.event-date .month{font-family:'Sora',sans-serif; font-weight:600; font-size:11px; letter-spacing:.05em; text-transform:uppercase; color:var(--white);}
.event-info h4{font-size:15px; font-weight:600; color:var(--navy); margin:0 0 5px;}
.event-info p{font-size:13px; color:var(--gray); margin:0 0 6px; line-height:1.5;}
.event-meta{display:flex; align-items:center; gap:6px; font-size:12px; color:var(--gray);}
.event-meta svg{flex:none;}
.view-cal{display:flex; align-items:center; justify-content:center; gap:8px; width:100%; margin-top:20px; border:none; border-radius:30px; padding:14px 20px; font-family:'Sora',sans-serif; font-weight:600; font-size:14.5px; cursor:pointer; text-decoration:none;}
body.page-school-life .event-date{width:54px; height:54px;}
body.page-school-life .event-date .day{font-size:18px;}
body.page-school-life .event-date .month{font-size:10.5px;}

/* ── Full calendar page ── */
.calendar-list{display:flex; flex-direction:column; gap:38px; max-width:760px; margin:0 auto;}
.month-group h3{display:flex; align-items:center; gap:14px; font-family:'Sora',sans-serif; font-size:16px; font-weight:700; color:var(--navy); margin:0 0 16px;}
.month-group h3::after{content:''; flex:1; height:1px; background:var(--border);}
.month-group .event-list{gap:12px;}
.calendar-empty{text-align:center; color:var(--gray); font-size:14px; padding:40px 0;}

/* ── Single event / news article page ── */
.article-wrap{max-width:720px; margin:0 auto;}
.article-card{background:var(--white); border:1px solid var(--border); border-radius:20px; overflow:hidden;}
.article-top{display:flex; align-items:center; gap:16px; padding:28px 28px 0;}
.article-meta{font-size:13px; color:var(--gray);}
.article-banner{position:relative;}
.article-banner-img{width:100%; height:260px; object-fit:cover; display:block;}
.article-banner-icon{width:100%; height:200px; display:flex; align-items:center; justify-content:center;}
.article-banner .tag{position:absolute; left:20px; bottom:20px; color:var(--white);}
.article-banner + .article-meta{padding:18px 28px 0; font-weight:600; color:var(--navy);}
.article-body{padding:24px 28px 28px;}
.article-body p{font-size:15px; line-height:1.75; color:var(--ink); margin:0 0 16px;}
.article-body p:last-child{margin-bottom:0;}
.article-back{margin-top:28px; text-align:center;}

.cta-band{background:var(--cream); padding:70px 24px; text-align:center;}
.cta-band h2{font-size:26px; font-weight:700; color:var(--navy); margin-bottom:10px;}
.cta-band p{font-size:14.5px; color:var(--gray); margin:0 0 26px;}
.cta-band.dark{background:var(--navy); color:var(--white);}
.cta-band.dark h2{color:var(--white);}
.cta-band.dark p{color:rgba(255,255,255,.75);}
.cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* ---------- FOOTER ---------- */
.footer-cta{background:var(--navy);}
.cta-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 1.3fr; align-items:stretch; gap:40px;}
@media(max-width:780px){ .cta-grid{grid-template-columns:1fr;} }
.cta-media{height:100%; min-height:230px; border-radius:0; overflow:hidden; background-image:url('../img/footer-field.svg'); background-attachment:fixed; background-size:cover; background-position:center;}
@media(max-width:900px){ .cta-media{background-attachment:scroll;} }
.cta-text{padding:36px 24px 36px 0; color:var(--white);}
@media(max-width:780px){ .cta-text{padding:32px 24px;} }
.cta-text p{font-size:23px; font-weight:600; font-family:'Sora',sans-serif; line-height:1.4; margin:0 0 22px; max-width:520px;}

.site-footer{background:var(--navy-deep); color:rgba(255,255,255,.75); padding:60px 24px 26px;}
.footer-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px;}
@media(max-width:880px){ .footer-grid{grid-template-columns:1fr 1fr; row-gap:34px;} }
@media(max-width:520px){ .footer-grid{grid-template-columns:1fr;} }
.footer-brand{display:flex; flex-direction:column; gap:16px;}
.footer-logo-row{display:flex; align-items:center; gap:10px;}
.footer-brand .logo-text{color:var(--white);}
.footer-brand .logo-text span{color:rgba(255,255,255,.55);}
.footer-col h5{font-family:'Sora',sans-serif; font-size:14px; font-weight:600; color:var(--white); margin:0 0 14px;}
.footer-col ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px;}
.footer-col a{font-size:13.5px; color:rgba(255,255,255,.7); text-decoration:none;}
.footer-col a:hover{color:var(--gold);}
.footer-contact p{font-size:13.5px; line-height:1.6; margin:0 0 10px; color:rgba(255,255,255,.7);}
.social-row{display:flex; gap:10px; margin-top:14px;}
.social-row a{
  width:32px; height:32px; border-radius:50%; background:var(--gold);
  display:flex; align-items:center; justify-content:center; color:var(--gold-text);
}
.footer-heart h5{font-family:'Sora',sans-serif; font-size:14px; font-weight:600; color:var(--white); margin:0 0 8px;}
.footer-heart p{font-size:13.5px; line-height:1.7; color:rgba(255,255,255,.7); margin:0;}
.footer-bottom{
  max-width:1180px; margin:44px auto 0; padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12.5px; color:rgba(255,255,255,.5);
  text-align:center;
}

/* ========================================================================
   HOME — page-specific
   ======================================================================== */
.quick-features-wrap{position:relative; z-index:5; margin-top:-58px; padding:0 24px;}
.quick-features{
  max-width:1100px; margin:0 auto;
  background:var(--white);
  border-radius:24px;
  box-shadow:0 20px 45px -20px rgba(15,42,71,.28);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  padding:22px 28px;
}
@media(max-width:880px){ .quick-features{grid-template-columns:repeat(2,1fr); gap:22px;} }
@media(max-width:480px){ .quick-features{grid-template-columns:1fr;} }
.qf-item{display:flex; align-items:center; gap:12px;}
.qf-icon{
  width:46px; height:46px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
}
.qf-item h4{font-size:13.5px; font-weight:600; color:var(--navy); line-height:1.35;}

.welcome{padding:110px 24px 90px;}
.welcome-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
@media(max-width:880px){ .welcome-grid{grid-template-columns:1fr; gap:44px;} }
.welcome-text h2{font-size:34px; font-weight:700; color:var(--navy); line-height:1.22; margin-bottom:18px;}
.welcome-text p{font-size:15px; line-height:1.75; color:var(--gray); max-width:460px; margin-bottom:26px;}
.welcome-media{position:relative;}
.welcome-media .ph{height:340px; border-radius:28px;}
.welcome-media img{width:100%; height:100%; object-fit:cover; border-radius:28px; display:block;}
.faith-badge{
  position:absolute; left:-26px; bottom:-26px;
  width:108px; height:108px; border-radius:50%;
  background:var(--white);
  box-shadow:0 14px 30px -14px rgba(15,42,71,.35);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:10px;
}
.faith-badge .cross-circle{
  width:30px; height:30px; border-radius:50%; background:var(--teal);
  display:flex; align-items:center; justify-content:center; margin-bottom:4px;
}
.faith-badge p{font-family:'Sora',sans-serif; font-size:9.5px; font-weight:600; color:var(--navy); line-height:1.3; margin:0;}
@media(max-width:880px){ .faith-badge{left:16px; bottom:-22px;} }

.programs{background:var(--cream); padding:90px 24px;}
.programs .section-head{max-width:560px;}
.program-card{
  background:var(--white); border-radius:18px; padding:26px 18px 22px;
  text-align:center;
  box-shadow:0 14px 30px -22px rgba(15,42,71,.25);
  transition:transform .35s cubic-bezier(.16,1,.3,1);
}
.program-card:hover{transform:translateY(-4px);}
.program-avatar{
  position:relative; width:84px; height:84px; margin:0 auto 14px;
}
.program-avatar .ph{width:84px; height:84px; border-radius:50%;}
.program-avatar .ph::after{display:none;}
.program-avatar img{width:84px; height:84px; border-radius:50%; object-fit:cover; display:block;}
.program-badge{
  position:absolute; right:-2px; bottom:-2px;
  width:30px; height:30px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:3px solid var(--white);
}
.program-card h4{font-size:15.5px; font-weight:700; margin-bottom:8px;}
.program-card p{font-size:13px; color:var(--gray); line-height:1.6; margin:0;}

.why-choose{background:var(--navy); color:var(--white); padding:90px 24px;}
.why-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.25fr 1fr; gap:54px; align-items:center;}
@media(max-width:880px){ .why-grid{grid-template-columns:1fr; gap:40px;} }
.why-text h2{font-size:30px; font-weight:700; margin-bottom:30px; display:flex; align-items:center; gap:10px;}
.why-list{display:grid; grid-template-columns:1fr 1fr; gap:26px 30px;}
@media(max-width:520px){ .why-list{grid-template-columns:1fr;} }
.why-item{display:flex; gap:14px;}
.why-icon{
  width:42px; height:42px; border-radius:50%; flex:none;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
}
.why-item h4{font-size:14.5px; font-weight:600; margin-bottom:5px;}
.why-item p{font-size:13px; color:rgba(255,255,255,.7); line-height:1.55; margin:0;}
.why-media{position:relative;}
.why-media .ph{height:300px; border-radius:20px; border:2px solid var(--teal); padding:8px;}
.why-media img{width:100%; height:100%; object-fit:cover; border-radius:20px; display:block;}
.why-crown{position:absolute; top:-18px; right:18px;}

.stats{padding:70px 24px;}

.values-mission{padding:10px 24px 90px;}
.vm-box{
  max-width:1180px; margin:0 auto;
  background:var(--cream);
  border-radius:26px;
  padding:46px 44px;
  display:grid; grid-template-columns:1.3fr 1fr; gap:40px;
}
@media(max-width:880px){ .vm-box{grid-template-columns:1fr; gap:36px; padding:36px 26px;} }
.vm-mission{border-left:1px solid var(--border); padding-left:40px; position:relative;}
@media(max-width:880px){ .vm-mission{border-left:none; padding-left:0; border-top:1px solid var(--border); padding-top:30px;} }
.vm-mission h3{font-size:22px; font-weight:700; color:var(--navy); margin-bottom:14px;}
.vm-mission p{font-size:13.5px; color:var(--gray); line-height:1.75; margin:0;}

.news-events{padding:10px 24px 96px;}
.news-events .eyebrow-gold{justify-content:center;}
.news-events .eyebrow-gold svg{margin-right:8px;}
.news-events .section-underline{background:var(--gold);}
.ne-inner{max-width:1180px; margin:0 auto;}
.ne-grid{display:grid; grid-template-columns:1fr; gap:48px;}
@media(min-width:880px){ .ne-grid{grid-template-columns:1.55fr 1fr; gap:40px;} }
.col-label{
  display:flex; align-items:center; gap:10px;
  font-family:'Sora',sans-serif; font-weight:600; font-size:13.5px;
  letter-spacing:.08em; text-transform:uppercase; color:var(--navy); margin-bottom:20px;
}
.col-label .dot{width:9px; height:9px; border-radius:50%;}
.news-col .dot{background:var(--teal);}
.events-col .dot{background:var(--coral);}

.featured-card{display:block; text-decoration:none; color:inherit; border:1px solid var(--border); border-radius:18px; overflow:hidden; background:var(--white); transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);}
.featured-card:hover{transform:translateY(-3px); box-shadow:0 14px 30px -18px rgba(15,42,71,.35);}
.featured-image{width:100%;height:200px; background:linear-gradient(135deg,#1C3E63,#0F2A47); position:relative; display:flex; align-items:flex-end; 
    /* padding:16px; */
}
.featured-image img{min-width: 100%;}
.featured-image svg{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); opacity:.35;}
.tag{position:relative; z-index:1; background:var(--gold); color:var(--gold-text); font-family:'Sora',sans-serif; font-weight:600; font-size:12px; letter-spacing:.06em; text-transform:uppercase; padding:5px 12px; border-radius:20px;}
.featured-body{padding:22px 24px 26px;}
.featured-body h3{font-size:19px; font-weight:600; color:var(--navy); margin:0 0 8px; line-height:1.35;}
.featured-body p{font-size:14.5px; color:var(--gray); line-height:1.6; margin:0 0 14px;}
.read-more{display:inline-flex; align-items:center; gap:6px; font-family:'Sora',sans-serif; font-weight:600; font-size:13.5px; color:var(--navy);}
.featured-card:hover .read-more svg{transform:translateX(3px);}
.read-more svg{transition:transform .35s cubic-bezier(.16,1,.3,1);}

.thumb-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px;}
@media(max-width:560px){ .thumb-grid{grid-template-columns:1fr;} }
.thumb-card{display:block; text-decoration:none; color:inherit; border:1px solid var(--border); border-radius:14px; overflow:hidden; background:var(--white); transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);}
.thumb-card:hover{transform:translateY(-3px); box-shadow:0 12px 24px -16px rgba(15,42,71,.3);}
.thumb-image{height:84px; display:flex; align-items:center; justify-content:center;}
.thumb-body{padding:12px 14px 16px;}
.thumb-tag{font-family:'Sora',sans-serif; font-weight:600; font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:6px; display:block;}
.thumb-body h4{font-size:13.5px; font-weight:600; color:var(--navy); margin:0; line-height:1.4;}

/* ========================================================================
   ABOUT — page-specific
   ======================================================================== */
.story-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
@media(max-width:880px){ .story-grid{grid-template-columns:1fr; gap:36px;} }
.story-text h2{font-size:30px; font-weight:700; color:var(--navy); line-height:1.25; margin-bottom:16px;}
.story-text p{font-size:14.5px; color:var(--gray); line-height:1.8; margin:0 0 14px;}
.story-media .ph{height:340px; border-radius:24px;}
.story-media img{width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block;}

.mv-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px;}
@media(max-width:780px){ .mv-grid{grid-template-columns:1fr;} }
.mv-card{background:var(--white); border-radius:20px; padding:34px 30px; border:1px solid var(--border);}
.mv-icon{width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.mv-card h3{font-size:19px; font-weight:700; color:var(--navy); margin-bottom:10px;}
.mv-card p{font-size:14px; color:var(--gray); line-height:1.75; margin:0;}

.head-message{background:var(--navy); color:var(--white); padding:80px 24px;}
.hm-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:300px 1fr; gap:48px; align-items:center;}
@media(max-width:780px){ .hm-grid{grid-template-columns:1fr;} }
.hm-media .ph{height:300px; border-radius:20px;}
.hm-media img{width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block;}
.hm-quote{position:relative;}
.hm-quote .quote-mark{font-family:'Sora',sans-serif; font-size:54px; color:var(--gold); line-height:1; margin-bottom:6px;}
.hm-quote p{font-size:18px; line-height:1.65; font-weight:500; margin:0 0 22px; color:rgba(255,255,255,.95);}
.hm-name{font-family:'Sora',sans-serif; font-weight:700; font-size:15px;}
.hm-title{font-size:13px; color:rgba(255,255,255,.65);}

.team-section {margin-bottom: 90px;}
.team-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
@media(max-width:880px){ .team-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .team-grid{grid-template-columns:1fr;} }
.team-card{text-align:center;}
.team-card .ph{width:104px; height:104px; border-radius:50%; margin:0 auto 14px;}
.team-card .ph::after{display:none;}
.team-card img{width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block;}
.team-card h4{font-size:15px; font-weight:700; color:var(--navy); margin-bottom:3px;}
.team-card .role{font-size:12.5px; color:var(--gold-deep); font-weight:600; margin-bottom:8px;}
.team-card p{font-size:12.5px; color:var(--gray); line-height:1.55; margin:0;}

/* ========================================================================
   CONTACT — page-specific
   ======================================================================== */
.info-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
@media(max-width:880px){ .info-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .info-grid{grid-template-columns:1fr;} }
.info-card{background:var(--white); border:1px solid var(--border); border-radius:18px; padding:26px 22px; text-align:center; box-shadow:0 14px 30px -24px rgba(15,42,71,.25);}
.info-icon{width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 14px;}
.info-card h4{font-size:14.5px; font-weight:700; color:var(--navy); margin-bottom:8px;}
.info-card p{font-size:13px; color:var(--gray); line-height:1.6; margin:0;}

.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:stretch;}
@media(max-width:880px){ .contact-grid{grid-template-columns:1fr;} }
.contact-form{background:var(--white); border-radius:20px; padding:36px 32px; border:1px solid var(--border);}
.contact-form h3{font-size:21px; font-weight:700; color:var(--navy); margin-bottom:6px;}
.contact-form > p{font-size:13.5px; color:var(--gray); margin:0 0 22px;}
.contact-form .btn-navy{width:100%; justify-content:center;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
@media(max-width:480px){ .form-row{grid-template-columns:1fr;} }
label{display:block; font-size:12.5px; font-weight:600; color:var(--navy); margin-bottom:6px;}
input, select, textarea{
  width:100%; border:1px solid var(--border); border-radius:10px; padding:11px 13px;
  font-family:'Inter',sans-serif; font-size:13.5px; color:var(--ink); background:var(--white);
}
input:focus, select:focus, textarea:focus{outline:none; border-color:var(--gold);}
.field{margin-bottom:16px;}
textarea{resize:vertical; min-height:110px;}
.map-col{display:flex; flex-direction:column; gap:18px; height:100%;}
.map-col .ph{flex:1; border-radius:20px; min-height:240px;}
.map-frame{flex:1; min-height:280px; border-radius:12px; overflow:hidden; border:2px solid var(--gold);}
.map-frame iframe{border:0; display:block; width:100%; height:100%;}
.map-note{background:var(--cream); border-radius:16px; padding:20px 22px;}
.map-note h4{font-size:14px; font-weight:700; color:var(--navy); margin-bottom:6px;}
.map-note p{font-size:13px; color:var(--gray); margin:0; line-height:1.6;}
@media(max-width:480px){
  .contact-form{padding:28px 20px;}
  .map-frame{min-height:220px;}
}

.social-strip{text-align:center;}
.social-strip p{font-size:14px; color:var(--gray); margin-bottom:16px;}
.social-strip .social-row{display:flex; gap:12px; justify-content:center;}
.social-strip .social-row a{width:42px; height:42px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; color:var(--navy); transition:background .35s cubic-bezier(.16,1,.3,1);}
.social-strip .social-row a:hover{background:var(--gold);}

/* ========================================================================
   SCHOOL LIFE — page-specific
   ======================================================================== */
.activity-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media(max-width:880px){ .activity-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .activity-grid{grid-template-columns:1fr;} }
.activity-card{background:var(--white); border:1px solid var(--border); border-radius:18px; padding:26px 22px; box-shadow:0 14px 30px -24px rgba(15,42,71,.25);}
.activity-icon{width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.activity-card h4{font-size:15.5px; font-weight:700; color:var(--navy); margin-bottom:8px;}
.activity-card p{font-size:13px; color:var(--gray); line-height:1.6; margin:0;}

/* School hours */
.hours-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
@media(max-width:640px){ .hours-grid{grid-template-columns:1fr;} }
.hours-card{background:var(--white); border:1px solid var(--border); border-radius:16px; padding:22px 20px;}
.hours-card-full{grid-column:1/-1;}
.hours-badge{display:inline-block; font-family:'Sora',sans-serif; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; padding:5px 12px; border-radius:30px; margin-bottom:14px;}
.hours-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.hours-list li{display:flex; justify-content:space-between; align-items:center; font-size:13.5px; border-bottom:1px solid var(--border); padding-bottom:10px;}
.hours-list li:last-child{border-bottom:none; padding-bottom:0;}
.hours-label{color:var(--gray);}
.hours-val{font-family:'Sora',sans-serif; font-weight:600; color:var(--navy); font-size:13px;}

.daily-portrait{display:flex; flex-direction:column; gap:12px; grid-column:1/-1; margin-top:40px;}

.daily-portrait-img-wrap{border-radius:18px; overflow:hidden; box-shadow:0 14px 40px -16px rgba(15,42,71,.22); }
.daily-portrait-img-wrap img{width:100%; height:100%; object-fit:cover; object-position:top; display:block;}

/* Daily life cards */
.daily-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px;}
@media(max-width:640px){ .daily-grid{grid-template-columns:1fr;} }
.daily-card{background:var(--white); border:1px solid var(--border); border-radius:18px; padding:24px 22px; box-shadow:0 14px 30px -24px rgba(15,42,71,.2);}
.daily-card h4{font-size:15.5px; font-weight:700; color:var(--navy); margin:14px 0 8px;}
.daily-card p{font-size:13px; color:var(--gray); line-height:1.65; margin:0;}

/* Section intro text */
.section-intro{font-size:14.5px; color:var(--gray); line-height:1.7; max-width:680px; margin:0 auto 32px; text-align:center;}

/* Uniform table wrapper */
.uniform-table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch; margin-bottom:32px;}
.uniform-table-wrap .fees-table thead th{font-size:12px;}
.uniform-table-wrap .fees-table tbody td{font-size:13px; vertical-align:middle;}

/* Appearance cards */
.appearance-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:8px;}
@media(max-width:640px){ .appearance-grid{grid-template-columns:1fr;} }
.appear-card{background:var(--navy); border-radius:16px; padding:22px 20px;}
.appear-card h4{font-family:'Sora',sans-serif; font-size:15px; font-weight:700; color:var(--gold); margin:0 0 14px;}
.appear-card ul{margin:0; padding-left:18px; display:flex; flex-direction:column; gap:8px;}
.appear-card li{font-size:13.5px; color:rgba(255,255,255,.85); line-height:1.55;}

/* Requirements checklist */
.req-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:12px;}
@media(max-width:640px){ .req-grid{grid-template-columns:1fr;} }
.req-item{display:flex; align-items:flex-start; gap:10px; background:var(--white); border:1px solid var(--border); border-radius:10px; padding:12px 16px; font-size:13.5px; color:var(--ink); line-height:1.5;}
.req-item svg{flex-shrink:0; margin-top:2px;}
.req-item em{color:var(--gray); font-style:normal; font-size:12.5px;}

.gallery-grid{display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:140px; gap:14px;}
@media(max-width:780px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .gallery-grid{grid-template-columns:1fr;} .g-tall{grid-row:span 1;} }
.gallery-grid .ph{border-radius:16px;}
.g-tall{grid-row:span 2;}
.gallery-item{position:relative; border-radius:16px; overflow:hidden; display:block; margin:0;}
.gallery-item img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s cubic-bezier(.22,1,.36,1);}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-caption{position:absolute; bottom:0; left:0; right:0; padding:10px 14px;
  background:linear-gradient(to top, rgba(10,32,54,.85) 0%, transparent 100%);
  color:#fff; font-size:12.5px; font-family:'Inter',sans-serif; font-weight:500; letter-spacing:.3px;
  display:flex; align-items:flex-end; gap:8px; min-height:52px;}
.gallery-caption svg{flex-shrink:0; opacity:.8;}

.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media(max-width:880px){ .testi-grid{grid-template-columns:1fr;} }
.testi-card{background:var(--white); border:1px solid var(--border); border-radius:18px; padding:26px 24px;}
.testi-card .quote-mark{font-family:'Sora',sans-serif; font-size:34px; color:var(--gold); line-height:1; margin-bottom:8px;}
.testi-card p{font-size:13.5px; color:var(--gray); line-height:1.7; margin:0 0 16px;}
.testi-name{font-size:13.5px; font-weight:700; color:var(--navy);}
.testi-role{font-size:12px; color:var(--gold-deep);}

/* ========================================================================
   ADMISSIONS — page-specific
   ======================================================================== */
#apply .section-head{margin-bottom:40px;}

.timeline{display:grid; grid-template-columns:repeat(5,1fr); gap:18px; position:relative;}
@media(max-width:980px){ .timeline{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .timeline{grid-template-columns:1fr;} }
.tl-step{background:var(--white); border:1px solid var(--border); border-radius:16px; padding:24px 18px; text-align:center; position:relative;}
.tl-num{width:38px; height:38px; border-radius:50%; background:var(--navy); color:var(--gold); font-family:'Sora',sans-serif; font-weight:700; font-size:15px; display:flex; align-items:center; justify-content:center; margin:0 auto 14px;}
.tl-step h4{font-size:14.5px; font-weight:700; color:var(--navy); margin-bottom:8px;}
.tl-step p{font-size:12.5px; color:var(--gray); line-height:1.55; margin:0;}

.checklist-grid{display:grid; grid-template-columns:3fr 7fr; gap:48px; align-items:flex-start;}
@media(max-width:880px){ .checklist-grid{grid-template-columns:1fr; gap:36px;} }
.checklist{display:flex; flex-direction:column; gap:14px;}
.check-item{display:flex; align-items:flex-start; gap:12px; background:var(--white); border:1px solid var(--border); border-radius:12px; padding:14px 16px;}
.check-icon{width:26px; height:26px; border-radius:50%; background:#D9EEE2; flex:none; display:flex; align-items:center; justify-content:center;}
.check-item p{font-size:13.5px; color:var(--ink); margin:0; line-height:1.5;}
.fees-card{background:var(--navy); color:var(--white); border-radius:20px; padding:34px 30px;}
.fees-card h3{font-size:19px; font-weight:700; margin-bottom:14px;}
.fees-card ul{padding:0; margin:0 0 20px; list-style:none; display:flex; flex-direction:column; gap:10px;}
.fees-card li{font-size:13.5px; color:rgba(255,255,255,.82); padding-left:18px; position:relative;}
.fees-card li::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); position:absolute; left:0; top:7px;}
.fees-card p.note{font-size:12.5px; color:rgba(255,255,255,.6); margin:0;}

.faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
.faq-item{background:var(--white); border:1px solid var(--border); border-radius:14px; overflow:hidden;}
.faq-item summary{list-style:none; cursor:pointer; padding:18px 20px; display:flex; align-items:center; justify-content:space-between; font-family:'Sora',sans-serif; font-weight:600; font-size:14.5px; color:var(--navy);}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .chev{transition:transform .35s cubic-bezier(.16,1,.3,1); flex:none;}
.faq-item[open] summary .chev{transform:rotate(180deg);}
.faq-item .faq-body{padding:0 20px 18px; font-size:13.5px; color:var(--gray); line-height:1.7;}

/* ========================================================================
   ACADEMICS — page-specific
   ======================================================================== */
.program-detail-card{background:var(--white); border-radius:18px; padding:24px 18px; text-align:left; box-shadow:0 14px 30px -22px rgba(15,42,71,.25); display:flex; flex-direction:column;}
.program-detail-badge{width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:14px;}
.program-detail-card .age{font-size:11.5px; color:var(--gray); margin-bottom:6px;}
.program-detail-card h4{font-size:15.5px; font-weight:700; margin-bottom:8px;}
.program-detail-card p{font-size:12.5px; color:var(--gray); line-height:1.6; margin:0 0 14px; flex:1;}
.program-detail-card .link{font-size:12.5px; font-weight:600; display:inline-flex; align-items:center; gap:5px;}

.approach-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px;}
@media(max-width:880px){ .approach-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .approach-grid{grid-template-columns:1fr;} }
.approach-item{text-align:center;}
.approach-icon{width:54px; height:54px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; margin:0 auto 16px;}
.approach-item h4{font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px;}
.approach-item p{font-size:13px; color:var(--gray); line-height:1.6; margin:0;}

.subjects-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:16px;}
@media(max-width:880px){ .subjects-grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:520px){ .subjects-grid{grid-template-columns:repeat(2,1fr);} }
.subject-chip{background:var(--white); border:1px solid var(--border); border-radius:14px; padding:18px 12px; text-align:center;}
.subject-chip svg{margin:0 auto;}
.subject-chip span{font-size:12.5px; font-weight:600; color:var(--navy);}

/* ========================================================================
   ALUMNI — page-specific
   ======================================================================== */
.alumni-intro{display:grid; grid-template-columns:1fr auto; gap:48px; align-items:center;}
@media(max-width:780px){ .alumni-intro{grid-template-columns:1fr;} }
.alumni-intro-text .eyebrow-gold{display:inline-block; margin-bottom:10px;}
.alumni-intro-text h2{margin:0 0 16px;}
.alumni-intro-text p{font-size:14.5px; color:var(--gray); line-height:1.7; margin:0 0 14px;}
.alumni-intro-stats{display:flex; flex-direction:column; gap:20px; min-width:180px;}
@media(max-width:780px){ .alumni-intro-stats{flex-direction:row; flex-wrap:wrap;} }
.alumni-stat{background:var(--navy); border-radius:16px; padding:20px 24px; text-align:center;}
.alumni-stat-num{display:block; font-family:'Sora',sans-serif; font-size:30px; font-weight:800; color:var(--gold); line-height:1;}
.alumni-stat-label{display:block; font-size:12px; color:rgba(255,255,255,.7); margin-top:6px; line-height:1.3;}

.alumni-stories{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:18px;}
@media(max-width:860px){ .alumni-stories{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .alumni-stories{grid-template-columns:1fr;} }
.alumni-card{background:var(--white); border:1px solid var(--border); border-radius:18px; padding:24px 22px; box-shadow:0 14px 30px -24px rgba(15,42,71,.2);}
.alumni-avatar{width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.alumni-info h4{font-size:13px; font-weight:700; color:var(--navy); margin:0 0 4px; text-transform:uppercase; letter-spacing:.05em;}
.alumni-field{font-size:13px; color:var(--teal); margin:0 0 12px; font-weight:500;}
.alumni-quote{font-size:13.5px; color:var(--gray); line-height:1.65; margin:0; font-style:italic;}
.alumni-stories-note{font-size:12.5px; color:var(--light-gray); text-align:center; font-style:italic;}

.connect-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px;}
@media(max-width:640px){ .connect-grid{grid-template-columns:1fr;} }
.connect-card{background:var(--white); border:1px solid var(--border); border-radius:18px; padding:28px 24px; box-shadow:0 14px 30px -24px rgba(15,42,71,.18);}
.connect-icon{width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.connect-card h4{font-size:15.5px; font-weight:700; color:var(--navy); margin:0 0 10px;}
.connect-card p{font-size:13.5px; color:var(--gray); line-height:1.65; margin:0;}

/* Alumni gallery */
.alumni-gallery{display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:220px; gap:16px;}
@media(max-width:860px){ .alumni-gallery{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .alumni-gallery{grid-template-columns:1fr; grid-auto-rows:200px;} }
.alumni-gallery-item{display:flex; flex-direction:column; gap:10px;}
.alumni-gallery-item.ag-tall{grid-row:span 2;}
.ag-img-slot{position:relative; flex:1; border-radius:14px; overflow:hidden; background:var(--border); min-height:0;}
.ag-img{width:100%; height:100%; object-fit:cover; display:block;}
.ag-img-empty{display:none;}
.ag-placeholder{position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:var(--light-gray); font-size:12.5px; text-align:center; background:var(--cream); border:2px dashed var(--border);}
/* Hide placeholder once a real image src is set */
.ag-img-slot:has(.ag-img:not(.ag-img-empty)) .ag-placeholder{display:none;}
.ag-img-slot:has(.ag-img:not(.ag-img-empty)) .ag-img{display:block;}
.ag-caption{padding:0 2px;}
.ag-event-tag{display:inline-block; font-family:'Sora',sans-serif; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--gold-deep); background:var(--cream); border:1px solid var(--border); border-radius:20px; padding:3px 10px; margin-bottom:5px;}
.ag-caption p{font-size:12.5px; color:var(--gray); margin:0; line-height:1.5;}

.alumni-form-wrap{max-width:680px; margin:0 auto;}
.alumni-form .alumni-checkboxes{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:8px;}
@media(max-width:480px){ .alumni-form .alumni-checkboxes{grid-template-columns:1fr;} }
.alumni-check{display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--ink); cursor:pointer;}
.alumni-check input[type="checkbox"]{accent-color:var(--navy); width:15px; height:15px; flex-shrink:0;}
.alumni-thanks{text-align:center; padding:48px 24px;}
.alumni-thanks h3{font-size:22px; font-weight:700; color:var(--navy); margin:16px 0 10px;}
.alumni-thanks p{color:var(--gray); font-size:14.5px; line-height:1.65;}

/* ========================================================================
   UTILITIES — soft icon backgrounds / deep text colors used across pages
   for repeated component classes (qf-icon, stat-icon, value-icon, mv-icon,
   info-icon, activity-icon, program-badge, program-detail-badge). Kept last
   so they win cascade ties with the component rules above.
   ======================================================================== */
.bg-blue-soft{background:#D7ECF7;}
.bg-gold-soft{background:#FBE6BD;}
.bg-green-soft{background:#D9EEE2;}
.bg-purple-soft{background:#E6E1F7;}
.bg-coral-soft{background:#FBDADD;}
.bg-amber-tint{background:#FCEFD8;}
.bg-mint-tint{background:#E7F4EF;}
.bg-rose-tint{background:#FBE9EA;}

.text-blue-deep{color:var(--blue-deep);}
.text-gold-deep{color:var(--gold-deep);}
.text-green-deep{color:var(--green-deep);}
.text-purple-deep{color:var(--purple-deep);}
.text-coral-deep{color:var(--coral-deep);}
.text-mint-deep{color:#3B7C61;}
