/* ============================================================
   Cornerstone — design system
   ============================================================ */
:root{
  --navy:#15224e; --navy-deep:#0f1a3d; --navy-soft:#22315f;
  --gold:#e9a72c; --gold-deep:#cf9016; --gold-soft:#f6c76a;
  --cream:#f8f6f1; --paper:#ffffff; --line:#e7e3da;
  --ink:#1a2233; --muted:#5c6473; --white:#ffffff;
  --wrap:1200px; --radius:8px;
  --shadow:0 14px 34px rgba(21,34,78,.10);
  --ff-display:"Cormorant Garamond",Georgia,serif;
  --ff-body:"Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --ff-nav:"Cormorant Garamond",Georgia,serif;
  --step:clamp(1rem,.9rem + .5vw,1.125rem);
}
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--ff-body); font-size:var(--step); line-height:1.65; color:var(--ink); background:var(--paper); -webkit-font-smoothing:antialiased; }
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--navy); text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--ff-display); font-weight:700; line-height:1.1; letter-spacing:0; color:var(--navy); margin:0 0 .5em; text-wrap:balance; }
h1{ font-size:clamp(2.1rem,1.4rem + 3vw,3.4rem); }
h2{ font-size:clamp(1.7rem,1.2rem + 2vw,2.5rem); }
h3{ font-size:1.35rem; }
p{ margin:0 0 1em; }
.wrap{ width:min(var(--wrap),92vw); margin-inline:auto; }
.eyebrow{ font-family:var(--ff-body); font-weight:700; font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); }

/* ---- Buttons ---- */
.btn{ display:inline-flex; align-items:center; gap:.5em; font-family:var(--ff-body); font-weight:600; font-size:.95rem; letter-spacing:.01em;
  padding:.8em 1.6em; border-radius:var(--radius); border:2px solid transparent; cursor:pointer; transition:transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn-primary{ background:var(--gold); color:var(--navy); border-color:var(--gold); }
.btn-primary:hover{ background:var(--gold-deep); border-color:var(--gold-deep); color:#fff; transform:translateY(-2px); box-shadow:0 10px 22px rgba(21,34,78,.22); }
.btn-ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }
.btn-ghost:hover{ background:#fff; color:var(--navy); border-color:#fff; transform:translateY(-2px); }

/* ============================================================
   Header
   ============================================================ */
.topbar{ background:var(--navy-deep); color:#cdd3e4; font-size:.85rem; }
.topbar .wrap{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.55rem 0; flex-wrap:wrap; }
.topbar a{ color:#cdd3e4; }
.topbar .tb-left{ display:flex; gap:1.5rem; flex-wrap:wrap; }
.topbar .tb-right{ display:flex; align-items:center; gap:1.2rem; }
.topbar .apply{ background:var(--gold); color:var(--navy); font-weight:700; padding:.35em .9em; border-radius:6px; }
.topbar .apply:hover{ background:var(--gold-soft); }

.site-header{ position:sticky; top:0; z-index:50; background:var(--paper); border-bottom:1px solid var(--line); }
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding:.8rem 0; }
.brand{ display:flex; align-items:baseline; gap:.5rem; font-family:var(--ff-display); font-weight:700; font-size:1.5rem; letter-spacing:-.01em; color:var(--navy); }
.brand b{ color:var(--gold-deep); }
.brand img{ max-height:52px; width:auto; }
.main-nav ul{ list-style:none; display:flex; gap:1.4rem; margin:0; padding:0; align-items:center; }
.main-nav a{ font-family:var(--ff-nav); font-weight:600; font-size:1.18rem; letter-spacing:.005em; color:var(--navy); padding:.4em 0; position:relative; }
.main-nav a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold); transition:width .2s ease; }
.main-nav a:hover::after,.main-nav .current-menu-item > a::after{ width:100%; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:.4rem; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; transition:.2s; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background:var(--navy-deep); color:#c3cadd; margin-top:5rem; }
.site-footer .wrap{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:2.5rem; padding:3.5rem 0 2.5rem; }
.site-footer h4{ color:#fff; font-family:var(--ff-body); font-weight:700; font-size:.85rem; letter-spacing:.12em; text-transform:uppercase; margin:0 0 1.1rem; }
.site-footer a{ color:#c3cadd; }
.site-footer a:hover{ color:var(--gold-soft); }
.site-footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:.6rem; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); }
.footer-bottom .wrap{ display:flex; justify-content:space-between; gap:1rem; padding:1.2rem 0; grid-template-columns:none; font-size:.85rem; color:#8f98b3; }

/* ============================================================
   Generic page
   ============================================================ */
.page-hero{ position:relative; overflow:hidden; background:var(--navy); color:#fff; padding:4rem 0 3.5rem; }
.page-hero h1{ color:#fff; }
.page-hero .eyebrow{ color:var(--gold-soft); }
.page-body{ padding:3.5rem 0; }
.page-body :is(h2,h3){ margin-top:1.6em; }

/* ---- Single article ---- */
.article-hero h1{ font-size:clamp(1.9rem,1.4rem + 2.2vw,2.9rem); }
.article-hero-inner{ display:grid; grid-template-columns:1fr; gap:2.2rem; align-items:center; }
@media (min-width:900px){ .article-hero-inner{ grid-template-columns:1.05fr .95fr; gap:3.2rem; } }
.ah-media{ border-radius:14px; overflow:hidden; box-shadow:0 22px 50px rgba(0,0,0,.32); background:#fff; }
.ah-media img{ width:100%; aspect-ratio:4/3; object-fit:cover; object-position:top center; display:block; }
.article-back{ display:inline-block; color:var(--gold-soft); font-family:var(--ff-body); font-weight:600; font-size:.9rem; margin-bottom:1.1rem; }
.article-back:hover{ color:#fff; }
.article-meta{ display:flex; flex-wrap:wrap; gap:.6rem; align-items:center; color:#dbe0ef; font-size:.9rem; margin-top:1.1rem; }
.article-wrap{ display:grid; grid-template-columns:1fr; gap:2.5rem; }
@media (min-width:960px){ .article-wrap{ grid-template-columns:minmax(0,1fr) 300px; gap:3.5rem; align-items:start; } }
.article-body{ font-size:1.05rem; line-height:1.8; color:var(--ink); min-width:0; }
.article-body > p:first-of-type{ font-size:1.18rem; line-height:1.7; color:var(--navy); }
.article-body > *{ max-width:70ch; }
.article-body p{ margin:0 0 1.3rem; }
.article-body :is(h2,h3,h4){ font-family:var(--ff-display); color:var(--navy); line-height:1.2; }
.article-body h2{ font-size:1.7rem; margin:2rem 0 .8rem; }
.article-body h3{ font-size:1.35rem; margin:1.6rem 0 .6rem; }
.article-body img{ max-width:100%; height:auto; border-radius:12px; margin:1.5rem 0; }
.article-body a{ color:var(--gold-deep); text-decoration:underline; text-underline-offset:2px; }
.article-body a:hover{ color:var(--navy); }
.article-body :is(ul,ol){ margin:0 0 1.3rem 1.2rem; }
.article-body li{ margin:.4rem 0; }
.article-body blockquote{ border-left:4px solid var(--gold); background:var(--cream); padding:1rem 1.4rem; margin:1.6rem 0; border-radius:0 8px 8px 0; font-style:italic; color:var(--navy); max-width:none; }
.article-body figure{ margin:1.5rem 0; max-width:none; }
.article-body figure img{ margin:0; }
.article-aside{ min-width:0; }
@media (min-width:960px){ .article-aside{ position:sticky; top:100px; } }
.aside-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.6rem; margin-bottom:1.4rem; box-shadow:0 10px 26px rgba(21,34,78,.05); }
.aside-card h3{ font-size:1.15rem; color:var(--navy); margin:0 0 .9rem; }
.aside-card ul{ list-style:none; margin:0; padding:0; }
.rp-list li{ padding:.7rem 0; border-bottom:1px solid var(--line); }
.rp-list li:last-child{ border-bottom:0; padding-bottom:0; }
.rp-list li a{ display:flex; gap:.85rem; align-items:center; }
.rp-list li a:hover .rp-title{ color:var(--gold-deep); }
.rp-thumb{ flex:none; width:60px; height:60px; border-radius:9px; overflow:hidden; background:var(--cream); }
.rp-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.rp-text{ min-width:0; }
.rp-title{ display:block; color:var(--navy); font-weight:600; font-size:.9rem; line-height:1.3; transition:color .15s ease; }
.rp-date{ display:block; color:var(--muted); font-size:.78rem; margin-top:.25rem; }
.aside-cta{ background:var(--cream); text-align:center; }
.aside-cta p{ color:var(--muted); font-size:.92rem; margin:0 0 1.1rem; }

/* ---- Wave divider (reusable) ---- */
.wave{ display:block; width:100%; height:56px; }

@media (max-width:900px){
  .site-footer .wrap{ grid-template-columns:1fr 1fr; gap:2rem; }
  .main-nav{ position:fixed; inset:0 0 0 auto; width:min(84vw,340px); background:#fff; transform:translateX(100%); transition:transform .25s ease; padding:4.5rem 1.4rem 2.5rem; box-shadow:var(--shadow); overflow-y:auto; -webkit-overflow-scrolling:touch; overscroll-behavior:contain; }
  .main-nav.open{ transform:none; }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:.2rem; }
  .nav-toggle{ display:block; z-index:60; }
}
@media (max-width:600px){
  .site-footer .wrap{ grid-template-columns:1fr; }
  .topbar .tb-left{ display:none; }
}

/* ============================================================
   MEGA-MENU (full-width brand dropdown panels)
   ============================================================ */
.nav-caret{ display:inline-block; width:.42em; height:.42em; margin-left:.4em; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg) translateY(-2px); opacity:.55; transition:transform .2s ease, opacity .2s ease; }
@media (min-width:901px){
  .site-header .wrap{ position:relative; }        /* not the mega anchor, but keeps layout predictable */
  .main-nav{ position:static; }
  .main-nav .nav-menu > li{ position:static; }
  .has-mega:hover .nav-caret{ transform:rotate(225deg) translateY(3px); opacity:1; }

  .mega-panel{ position:absolute; left:0; right:0; top:100%; background:#fff; border-top:2px solid var(--gold);
    box-shadow:0 26px 44px rgba(21,34,78,.16); opacity:0; visibility:hidden; transform:translateY(8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s; z-index:60; }
  .has-mega:hover > .mega-panel, .has-mega:focus-within > .mega-panel{ opacity:1; visibility:visible; transform:none; }
  .mega-inner{ max-width:var(--wrap); margin:0 auto; padding:2rem 1.5rem; display:grid; grid-template-columns:270px 1fr; gap:2.4rem; }
  .mega-feature{ border-right:1px solid var(--line); padding-right:2rem; }
  .mega-feature .mf-label{ display:block; font-family:var(--ff-display); font-size:1.45rem; font-weight:700; color:var(--navy); line-height:1.15; }
  .mega-feature .mf-desc{ color:var(--muted); font-size:.92rem; line-height:1.65; margin:.6rem 0 1.1rem; }
  .mega-feature .mf-cta{ font-family:var(--ff-nav); font-weight:600; color:var(--gold-deep); font-size:.95rem; }
  .mega-feature .mf-cta::after{ display:none; }
  .mega-links{ display:grid; grid-template-columns:repeat(2,1fr); gap:.3rem 1.4rem; align-content:start; }
  .main-nav .mega-link{ display:block; padding:.7rem .9rem; border-radius:9px; transition:background .15s ease; }
  .main-nav .mega-link::after{ display:none; }
  .main-nav .mega-link:hover{ background:var(--cream); }
  .main-nav .mega-link .ml-title{ display:block; font-family:var(--ff-nav); font-weight:600; font-size:1.02rem; color:var(--navy); }
  .main-nav .mega-link .ml-desc{ display:block; font-family:var(--ff-body); font-size:.82rem; font-weight:400; color:var(--muted); margin-top:.12rem; }
}
@media (max-width:900px){
  .mega-panel{ padding-left:1rem; }
  .mega-inner{ display:block; }
  .mega-feature{ display:none; }
  .mega-links{ display:block; }
  .main-nav .mega-link{ display:block; padding:.45rem 0; }
  .main-nav .mega-link::after{ display:none; }
  .main-nav .mega-link .ml-title{ display:block; font-size:.95rem; color:var(--navy); font-weight:600; }
  .main-nav .mega-link .ml-desc{ display:block; font-size:.78rem; color:var(--muted); margin-top:.05rem; }
}

/* ============================================================
   HERO (background slider + overlay, left-anchored text)
   ============================================================ */
.hero{ position:relative; color:#fff; display:flex; align-items:center; min-height:66vh; padding:5rem 0 6rem; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-slide{ position:absolute; inset:0; background-size:cover; background-position:center 26%; opacity:0; transition:opacity 1.4s ease; transform:scale(1.04); }
.hero-slide.is-active{ opacity:1; animation:heroZoom 7s ease-out forwards; }
@keyframes heroZoom{ from{ transform:scale(1.04); } to{ transform:scale(1.12); } }
.hero-overlay{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg, rgba(12,20,45,.93) 0%, rgba(15,26,61,.78) 44%, rgba(15,26,61,.34) 100%); }
.hero .wrap{ position:relative; z-index:2; }
.hero-content{ max-width:600px; text-align:left; }
.hero h1{ color:#fff; margin:.2em 0 .35em; font-size:clamp(2.3rem,1.4rem + 3.6vw,3.9rem); }
.hero-lead{ color:#dbe0f0; font-size:clamp(1.05rem,1rem + .4vw,1.2rem); max-width:52ch; }
.hero-cta{ display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.8rem; }
@media (min-width:860px){ .hero{ min-height:80vh; } }
@media (prefers-reduced-motion:reduce){ .hero-slide.is-active{ animation:none; transform:none; } }

/* ---- Stats band ---- */
.stats{ background:var(--navy); color:#fff; }
.stats-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem 1rem; padding:2.6rem 0; text-align:center; }
.stat{ display:flex; flex-direction:column; gap:.2rem; }
.stat-num{ font-family:var(--ff-display); font-weight:700; font-size:clamp(2rem,1.5rem + 1.6vw,2.8rem); color:var(--gold); line-height:1; }
.stat-label{ font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; color:#aeb7d2; }
@media (min-width:760px){ .stats-grid{ grid-template-columns:repeat(4,1fr); } .stat + .stat{ border-left:1px solid rgba(255,255,255,.1); } }

/* ---- Faculty slider ---- */
.fac-slider{ position:relative; }
.fac-track{ display:flex; gap:1.6rem; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; padding:.4rem .2rem 1.2rem; scrollbar-width:none; }
.fac-track::-webkit-scrollbar{ display:none; }
.fac-track .fac-card{ scroll-snap-align:center; flex:0 0 86%; }
@media (min-width:720px){ .fac-track .fac-card{ flex:0 0 calc(50% - .8rem); } }
@media (min-width:1080px){ .fac-track .fac-card{ flex:0 0 calc(33.333% - 1.07rem); } }
.fac-nav{ position:absolute; top:42%; transform:translateY(-50%); z-index:5; width:46px; height:46px; border-radius:50%;
  border:0; background:var(--gold); color:var(--navy); font-size:1.6rem; line-height:1; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,.28); transition:background .2s, transform .2s; }
.fac-nav:hover{ background:#fff; transform:translateY(-50%) scale(1.06); }
.fac-prev{ left:-10px; } .fac-next{ right:-10px; }
@media (max-width:600px){ .fac-nav{ display:none; } }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars{ display:grid; gap:1.2rem; margin-top:-3rem; position:relative; z-index:5; }
.pillar{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.8rem; box-shadow:var(--shadow); transition:transform .2s ease, box-shadow .2s ease; }
.pillar:hover{ transform:translateY(-4px); box-shadow:0 20px 40px rgba(21,34,78,.14); }
.pillar-icon{ display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:12px; background:var(--navy); color:var(--gold); margin-bottom:1rem; }
.pillar h3{ margin:0 0 .3em; }
.pillar p{ color:var(--muted); margin:0; font-size:.98rem; }
@media (min-width:760px){ .pillars{ grid-template-columns:repeat(3,1fr); gap:1.6rem; } }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head{ text-align:center; max-width:620px; margin:0 auto 2.6rem; }
.section-head.light h2{ color:#fff; }
section[class]{ }
.services,.news,.pillars,.theology{ padding:4.5rem 0; }

/* ============================================================
   WHY
   ============================================================ */
.why{ background:var(--cream); padding:4.5rem 0; }
.why-grid{ display:grid; gap:2rem; align-items:center; }
.why-media{ aspect-ratio:5/4; border-radius:14px; overflow:hidden; box-shadow:var(--shadow); background-size:cover; background-position:center; background-repeat:no-repeat; }
.why-media img{ display:block; width:100%; height:100%; object-fit:cover; }
.why-panel h2{ margin-top:.2em; }
.why-panel p{ color:var(--muted); }
.why-panel .btn{ margin-top:.6rem; }
@media (min-width:860px){ .why-grid{ grid-template-columns:1fr 1.1fr; gap:3.5rem; } }

/* ============================================================
   CARDS-3 (services, faculty, news)
   ============================================================ */
.cards-3{ display:grid; gap:1.6rem; }
@media (min-width:760px){ .cards-3{ grid-template-columns:repeat(3,1fr); } }
.svc-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:transform .2s ease, box-shadow .2s ease; }
.svc-card:hover{ transform:translateY(-4px); box-shadow:0 18px 38px rgba(21,34,78,.14); }
.svc-icon{ display:inline-flex; align-items:center; justify-content:center; width:66px; height:66px; margin:1.9rem 0 0 1.9rem; border-radius:16px; background:linear-gradient(150deg,var(--navy),var(--navy-soft)); color:var(--gold); }
.svc-body{ padding:1.3rem 1.9rem 2.1rem; }
.svc-body h3{ font-size:1.25rem; }
.svc-body p{ color:var(--muted); font-size:.95rem; margin:0; }

/* ============================================================
   PROGRAMS (navy)
   ============================================================ */
.programs{ position:relative; background:var(--navy); color:#eaeefb; padding:5.5rem 0 4.5rem; margin-top:3rem; }
.fac-card{ background:var(--navy-soft); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); padding:1.8rem; }
.fac-card h3{ color:#fff; font-size:1.2rem; border-bottom:2px solid var(--gold); padding-bottom:.7rem; margin-bottom:1rem; }
.fac-card ul{ list-style:none; margin:0; padding:0; display:grid; gap:.55rem; }
.fac-card li{ position:relative; padding-left:1.3rem; color:#c9d0e6; font-size:.95rem; }
.fac-card li::before{ content:""; position:absolute; left:0; top:.55em; width:7px; height:7px; background:var(--gold); border-radius:2px; }

/* ============================================================
   THEOLOGY
   ============================================================ */
.theology-inner{ background:var(--cream); border-left:5px solid var(--gold); border-radius:var(--radius); padding:2.6rem; max-width:860px; margin:0 auto; text-align:center; }
.theology-inner p{ color:var(--muted); }

/* ============================================================
   FOUNDATION
   ============================================================ */
.foundation{ background:var(--navy-deep); color:#eaeefb; padding:4.5rem 0; }
.found-grid{ display:grid; gap:2rem; align-items:center; }
.found-media{ aspect-ratio:4/3; border-radius:14px; overflow:hidden; box-shadow:0 20px 44px rgba(0,0,0,.35); }
.found-media img{ display:block; width:100%; height:100%; object-fit:cover; }
.found-panel h2{ color:#fff; }
.found-panel p{ color:#c3cadd; }
@media (min-width:860px){ .found-grid{ grid-template-columns:1fr 1.1fr; gap:3.5rem; } }

/* ============================================================
   NEWS
   ============================================================ */
.news-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:transform .2s ease, box-shadow .2s ease; }
.news-card:hover{ transform:translateY(-4px); box-shadow:0 18px 38px rgba(21,34,78,.14); }
.news-thumb{ display:block; }
.news-thumb img,.news-ph{ display:block; aspect-ratio:16/10; object-fit:cover; object-position:top center; width:100%; background:var(--cream); }
.news-ph{ background:linear-gradient(135deg,var(--navy),var(--navy-soft)); }
.news-body{ padding:1.4rem; }
.news-body time{ font-size:.82rem; color:var(--gold-deep); font-weight:600; letter-spacing:.03em; }
.news-body h3{ font-size:1.15rem; margin:.3em 0; }
.news-body p{ color:var(--muted); font-size:.93rem; margin:0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{ background:linear-gradient(120deg,var(--gold) 0%,var(--gold-deep) 100%); color:var(--navy); text-align:center; padding:4rem 0; }
.cta-band h2{ color:var(--navy); }
.cta-band p{ max-width:52ch; margin:0 auto 1.6rem; font-size:1.08rem; }
.cta-band .btn-ghost{ border-color:var(--navy); color:var(--navy); }
.cta-band .btn-ghost:hover{ background:var(--navy); color:#fff; }
.cta-band .btn-primary{ background:var(--navy); border-color:var(--navy); color:#fff; }
.cta-band .btn-primary:hover{ background:var(--navy-deep); border-color:var(--navy-deep); }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce{ background:var(--gold); color:var(--navy); font-size:.85rem; }
.announce .wrap{ display:flex; align-items:center; justify-content:center; gap:.9rem; padding:.5rem 0; flex-wrap:wrap; text-align:center; }
.announce a{ color:var(--navy); font-weight:700; text-decoration:underline; }

/* ============================================================
   Quick actions (overlap hero)
   ============================================================ */
.quick-actions{ position:relative; z-index:6; margin-top:-2.6rem; }
.qa-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.qa{ position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; gap:.6rem; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.4rem 1.1rem; box-shadow:var(--shadow); color:var(--navy); font-family:var(--ff-nav); font-weight:600; font-size:1.22rem; transition:transform .25s ease, box-shadow .25s ease; }
.qa::before{ content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-soft) 100%); transform:translateY(101%); transition:transform .38s cubic-bezier(.2,.7,.2,1); }
.qa:hover{ transform:translateY(-3px); box-shadow:0 20px 40px rgba(21,34,78,.2); border-color:transparent; }
.qa:hover::before{ transform:translateY(0); }
.qa-label,.qa-arrow{ position:relative; z-index:1; transition:color .3s ease, transform .3s ease; }
.qa-arrow{ color:var(--gold-deep); opacity:0; transform:translateX(-6px); }
.qa:hover .qa-label{ color:#fff; }
.qa:hover .qa-arrow{ color:var(--gold); opacity:1; transform:translateX(0); }
@media (min-width:900px){ .qa-grid{ grid-template-columns:repeat(4,1fr); } }
.pillars{ margin-top:0 !important; padding-top:4rem; }

/* ============================================================
   Faculty tabs
   ============================================================ */
.fac-tabs{ display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-bottom:2.2rem; }
.fac-tab{ background:transparent; border:1px solid rgba(255,255,255,.25); color:#dbe0f2; font-family:var(--ff-body); font-weight:600; font-size:.92rem; padding:.6em 1.4em; border-radius:999px; cursor:pointer; transition:.2s; }
.fac-tab:hover{ border-color:var(--gold); color:#fff; }
.fac-tab.is-active{ background:var(--gold); border-color:var(--gold); color:var(--navy); }
.fac-panel{ display:none; }
.fac-panel.is-active{ display:block; animation:fadeUp .4s ease; }
.fac-panel h3{ color:#fff; text-align:center; margin-bottom:1.6rem; }
.prog-grid{ list-style:none; margin:0 auto; padding:0; max-width:940px; display:grid; grid-template-columns:1fr; gap:.7rem; }
@media (min-width:640px){ .prog-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:980px){ .prog-grid{ grid-template-columns:1fr 1fr 1fr; } }
.prog-grid li{ position:relative; padding:.75rem 1rem .75rem 2.2rem; background:var(--navy-soft); border:1px solid rgba(255,255,255,.06); border-radius:8px; color:#dfe4f2; font-size:.95rem; }
.prog-grid li::before{ content:""; position:absolute; left:.95rem; top:50%; transform:translateY(-50%); width:8px; height:8px; background:var(--gold); border-radius:2px; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials{ background:var(--cream); padding:4.5rem 0; }
.tcard{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:2rem 1.9rem 1.7rem; margin:0; box-shadow:0 8px 24px rgba(21,34,78,.06); position:relative; }
.tcard::before{ content:"\201C"; position:absolute; top:.2rem; left:1.2rem; font-family:var(--ff-display); font-size:3.6rem; color:var(--gold); opacity:.55; line-height:1; }
.tcard p{ position:relative; color:var(--ink); font-size:1rem; line-height:1.7; margin:.8rem 0 1.4rem; }
.tcard footer{ display:flex; align-items:center; gap:.9rem; }
.avatar{ flex:0 0 auto; width:46px; height:46px; border-radius:50%; background:var(--navy); color:var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--ff-display); font-weight:700; font-size:1.2rem; }
.tmeta{ display:flex; flex-direction:column; line-height:1.3; }
.tmeta strong{ color:var(--navy); }
.tmeta em{ color:var(--muted); font-style:normal; font-size:.85rem; }

/* ============================================================
   News (text-forward)
   ============================================================ */
.news-card{ background:#fff; border:1px solid var(--line); border-top:4px solid var(--gold); border-radius:var(--radius); overflow:hidden; transition:transform .2s ease, box-shadow .2s ease; }
.news-card:hover{ transform:translateY(-4px); box-shadow:0 18px 38px rgba(21,34,78,.14); }
.news-body{ padding:1.6rem; }
.news-body time{ font-size:.82rem; color:var(--gold-deep); font-weight:600; letter-spacing:.03em; }
.news-body h3{ font-size:1.18rem; margin:.4em 0 .5em; }
.news-body p{ color:var(--muted); font-size:.94rem; }
.news-more{ font-weight:600; color:var(--navy); font-size:.9rem; }
.news-more:hover{ color:var(--gold-deep); }

/* ---- News listing grid + pagination ---- */
.news-grid{ display:grid; grid-template-columns:1fr; gap:1.8rem; }
@media (min-width:640px){ .news-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px){ .news-grid{ grid-template-columns:repeat(3,1fr); } }
.news-grid .news-card{ display:flex; flex-direction:column; }
.news-grid .news-body{ display:flex; flex-direction:column; flex:1; }
.news-grid .news-body h3{ margin-bottom:.4em; }
.news-grid .news-more{ margin-top:auto; padding-top:.8rem; }
.news-pagination{ margin-top:2.6rem; display:flex; justify-content:center; }
.news-pagination .nav-links{ display:flex; flex-wrap:wrap; gap:.4rem; align-items:center; }
.news-pagination .page-numbers{ display:inline-flex; align-items:center; justify-content:center; min-width:42px; height:42px; padding:0 .7rem; border:1px solid var(--line); border-radius:9px; color:var(--navy); font-weight:600; font-size:.95rem; background:#fff; transition:.15s ease; }
.news-pagination a.page-numbers:hover{ border-color:var(--gold); color:var(--gold-deep); }
.news-pagination .page-numbers.current{ background:var(--navy); color:#fff; border-color:var(--navy); }
.news-pagination .page-numbers.dots{ border:0; background:none; min-width:auto; }

/* ============================================================
   Accreditation
   ============================================================ */
.accreditation{ padding:4.5rem 0; text-align:center; background:var(--cream); border-top:1px solid var(--line); }
.accred-grid{ display:grid; grid-template-columns:1fr; gap:1.2rem; max-width:1020px; margin:0 auto 2rem; }
@media (min-width:820px){ .accred-grid{ grid-template-columns:repeat(3,1fr); } }
.accred-card{ display:flex; flex-direction:column; align-items:center; gap:1rem; text-align:center; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.8rem 1.6rem; }
.accred-logo{ height:64px; width:auto; max-width:80%; object-fit:contain; }
.accred-mark{ flex:0 0 auto; width:28px; height:28px; border-radius:50%; background:var(--navy); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:.85rem; font-weight:700; margin-top:.15rem; }
.accred-card p{ margin:0; color:var(--ink); font-size:.98rem; line-height:1.55; }
.accred-statement{ max-width:840px; margin:1.6rem auto 0; color:var(--muted); font-size:.98rem; line-height:1.75; }

/* ============================================================
   Sticky apply + reveal
   ============================================================ */
.sticky-apply{ position:fixed; right:1.2rem; bottom:1.2rem; z-index:80; background:var(--gold); color:var(--navy); font-weight:700; padding:.8em 1.5em; border-radius:999px; box-shadow:0 12px 28px rgba(0,0,0,.28); opacity:0; transform:translateY(20px); pointer-events:none; transition:.3s; }
.sticky-apply.show{ opacity:1; transform:none; pointer-events:auto; }
.sticky-apply:hover{ background:var(--gold-deep); color:#fff; }
.reveal{ opacity:0; transition:opacity .6s ease; }
.reveal.is-visible{ opacity:1; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; } }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none;} }
.brand-logo{ max-height:56px; width:auto; display:block; }

/* ============================================================
   Inner pages — shared + About/Overview
   ============================================================ */
.page-hero-sub{ color:#c9d0e6; font-size:clamp(1.02rem,1rem + .3vw,1.18rem); max-width:60ch; margin-top:.5rem; }
.about-blocks{ padding:4.5rem 0; }
.ab-grid{ display:grid; grid-template-columns:1fr; gap:1.6rem; }
@media (min-width:820px){ .ab-grid{ grid-template-columns:1fr 1fr; } }
.ab-card{ background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:var(--radius); padding:2.2rem; box-shadow:0 8px 24px rgba(21,34,78,.05); }
.ab-tag{ display:inline-block; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; font-weight:700; color:var(--gold-deep); margin-bottom:.7rem; }
.ab-card h3{ font-size:1.5rem; }
.ab-card p{ color:var(--muted); margin:0; }
.vision-band{ position:relative; background:var(--navy); color:#fff; text-align:center; padding:5.5rem 0; }
.vision-band h2{ color:#fff; max-width:22ch; margin:0 auto; font-size:clamp(1.6rem,1.2rem + 1.8vw,2.4rem); }
.about-close{ background:var(--cream); padding:4.5rem 0; }

/* ============================================================
   Fee tables & payment cards (Tuition page)
   ============================================================ */
.fee-table-wrap{ overflow-x:auto; border-radius:12px; box-shadow:0 12px 34px rgba(21,34,78,.09); border:1px solid var(--line); }
.fee-table{ width:100%; border-collapse:collapse; background:#fff; min-width:660px; font-family:var(--ff-body); }
.fee-table thead th{ background:var(--navy); color:#fff; font-weight:600; font-size:.86rem; padding:1rem 1.15rem; text-align:left; letter-spacing:.02em; white-space:nowrap; }
.fee-table th, .fee-table td{ padding:.85rem 1.15rem; border-bottom:1px solid var(--line); }
.fee-table tbody td{ color:var(--ink); font-size:.94rem; white-space:nowrap; }
.fee-table tbody td:first-child{ font-weight:600; color:var(--navy); }
.fee-table tbody tr:nth-child(even){ background:#faf9f5; }
.fee-table tr.fee-total td{ background:var(--navy); color:var(--gold-soft); font-weight:700; font-size:1rem; border-bottom:none; }
.fee-table tr.fee-total td:first-child{ color:#fff; }

.fee-cards{ display:grid; grid-template-columns:1fr; gap:1.4rem; }
@media (min-width:800px){ .fee-cards{ grid-template-columns:repeat(3,1fr); } }
.fee-card{ background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; box-shadow:0 10px 28px rgba(21,34,78,.07); }
.fee-card-head{ background:linear-gradient(150deg,var(--navy),var(--navy-soft)); color:#fff; padding:1.5rem 1.6rem; }
.fee-card-head h4{ margin:0 0 .4rem; color:#fff; font-family:var(--ff-display); font-size:1.35rem; font-weight:700; }
.fee-card-total{ font-family:var(--ff-display); font-size:1.9rem; font-weight:700; color:var(--gold-soft); }
.fee-card-total small{ display:block; font-family:var(--ff-body); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:#aeb7d2; margin-top:.2rem; }
.fee-card ul{ list-style:none; margin:0; padding:.6rem 1.6rem 1.4rem; }
.fee-card li{ display:flex; justify-content:space-between; align-items:center; padding:.75rem 0; border-bottom:1px solid var(--line); color:var(--muted); font-size:.94rem; }
.fee-card li:last-child{ border-bottom:none; }
.fee-card li b{ color:var(--navy); font-weight:700; }
.fee-note{ display:block; background:var(--cream); border-left:4px solid var(--gold); border-radius:8px; padding:1.2rem 1.4rem; color:var(--ink); font-size:.95rem; line-height:1.65; }
.fee-note strong{ color:var(--navy); }
.fee-note a{ color:var(--gold-deep); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.fee-note a:hover{ color:var(--navy); }

/* ---- Pricing cards (cost of study) ---- */
.price-cards{ display:grid; grid-template-columns:1fr; gap:1.8rem; align-items:start; }
@media (min-width:820px){ .price-cards{ grid-template-columns:repeat(3,1fr); } }
.price-card{ position:relative; background:#fff; border:1px solid var(--line); border-radius:16px; padding:2.4rem 2rem; text-align:center; box-shadow:0 12px 30px rgba(21,34,78,.07); transition:transform .22s ease, box-shadow .22s ease; }
.price-card:hover{ transform:translateY(-6px); box-shadow:0 26px 52px rgba(21,34,78,.15); }
.price-card.featured{ border:2px solid var(--gold); box-shadow:0 26px 54px rgba(21,34,78,.18); }
@media (min-width:820px){ .price-card.featured{ transform:scale(1.04); } .price-card.featured:hover{ transform:scale(1.04) translateY(-6px); } }
.price-badge{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--navy); font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:.45em 1.3em; border-radius:999px; white-space:nowrap; }
.price-level{ font-family:var(--ff-display); font-size:1.55rem; font-weight:700; color:var(--navy); }
.price-desc{ color:var(--muted); font-size:.88rem; margin:.3rem 0 1.5rem; min-height:2.4em; }
.price-amount{ font-family:var(--ff-display); font-weight:700; font-size:3rem; color:var(--navy); line-height:1; }
.price-amount span{ font-size:1.3rem; color:var(--gold-deep); vertical-align:top; margin-right:2px; }
.price-amount small{ display:block; font-family:var(--ff-body); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-top:.5rem; }
.price-breakdown{ list-style:none; margin:1.6rem 0; padding:1.4rem 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:grid; gap:.7rem; }
.price-breakdown li{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; font-size:.92rem; color:var(--muted); }
.price-breakdown li b{ color:var(--navy); font-weight:600; white-space:nowrap; }
.price-breakdown li em{ font-style:normal; font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-deep); margin-left:.4em; }
.price-card .btn{ width:100%; justify-content:center; }
.price-foot{ text-align:center; color:var(--muted); font-size:.92rem; margin-top:1.6rem; }

/* ---- Study-level cards (Academic Programs) ---- */
.level-cards{ display:grid; grid-template-columns:1fr; gap:1.4rem; }
@media (min-width:640px){ .level-cards{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .level-cards{ grid-template-columns:repeat(3,1fr); } }
.level-card{ display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-top:3px solid var(--gold); border-radius:14px; padding:1.9rem; box-shadow:0 10px 26px rgba(21,34,78,.06); transition:transform .2s ease, box-shadow .2s ease; }
.level-card:hover{ transform:translateY(-5px); box-shadow:0 22px 44px rgba(21,34,78,.13); }
.level-card .lvl-name{ font-family:var(--ff-display); font-size:1.5rem; font-weight:700; color:var(--navy); line-height:1.15; }
.level-card .lvl-desc{ color:var(--muted); font-size:.95rem; margin:.6rem 0 1.2rem; flex:1; }
.level-card .lvl-meta{ font-size:.9rem; color:var(--muted); margin-bottom:1.1rem; padding-top:1rem; border-top:1px solid var(--line); }
.level-card .lvl-meta b{ color:var(--navy); font-weight:600; }
.level-card .lvl-link{ font-weight:600; color:var(--navy); font-size:.95rem; display:inline-flex; align-items:center; gap:.4em; }
.level-card .lvl-link::after{ content:"\2192"; transition:transform .2s ease; }
.level-card:hover .lvl-link::after{ transform:translateX(4px); color:var(--gold-deep); }

/* ---- Faculty cards (full program lists) ---- */
.faculty-cards{ display:grid; grid-template-columns:1fr; gap:1.6rem; }
@media (min-width:860px){ .faculty-cards{ grid-template-columns:repeat(2,1fr); } }
.faculty-card{ background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; box-shadow:0 10px 26px rgba(21,34,78,.06); }
.faculty-card .fac-head{ background:var(--navy); padding:1.35rem 1.6rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faculty-card .fac-head h3{ color:#fff; font-size:1.32rem; margin:0; line-height:1.2; }
.faculty-card .fac-count{ flex:none; background:rgba(233,167,44,.16); color:var(--gold-soft); border:1px solid rgba(233,167,44,.45); font-size:.7rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:.35em .8em; border-radius:999px; white-space:nowrap; }
.faculty-card .fac-progs{ list-style:none; margin:0; padding:1.3rem 1.6rem 1.7rem; columns:2; column-gap:1.8rem; }
@media (max-width:520px){ .faculty-card .fac-progs{ columns:1; } }
.faculty-card .fac-progs li{ break-inside:avoid; padding:.42rem 0 .42rem 1.4rem; position:relative; font-size:.93rem; color:var(--ink); }
.faculty-card .fac-progs li::before{ content:""; position:absolute; left:0; top:.9em; width:6px; height:6px; border-radius:50%; background:var(--gold); }

/* ---- Compact faculty strip (degree pages) ---- */
.fac-mini{ display:grid; grid-template-columns:1fr; gap:1rem; }
@media (min-width:640px){ .fac-mini{ grid-template-columns:repeat(2,1fr); } }
.fac-mini .fm{ background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:10px; padding:1.2rem 1.4rem; }
.fac-mini .fm h4{ margin:0 0 .25rem; color:var(--navy); font-size:1.16rem; }
.fac-mini .fm span{ color:var(--muted); font-size:.88rem; }

/* ---- Level fee callout (degree pages) ---- */
.lvl-fee{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.2rem; background:var(--cream); border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:12px; padding:1.5rem 1.8rem; }
.lvl-fee .lf-figs{ display:flex; flex-wrap:wrap; gap:2.2rem; }
.lvl-fee .lf-fig .n{ font-family:var(--ff-display); font-weight:700; font-size:1.7rem; color:var(--navy); line-height:1; }
.lvl-fee .lf-fig .n span{ font-size:.85rem; color:var(--gold-deep); }
.lvl-fee .lf-fig .l{ font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-top:.35rem; }

/* ---- FAQ accordion (native <details>) ---- */
.faq-accordion{ display:grid; gap:.9rem; max-width:840px; }
.faq-cat{ font-family:var(--ff-display); font-size:1.5rem; font-weight:700; color:var(--navy); margin:2.4rem 0 .4rem; }
.faq-cat:first-child{ margin-top:0; }
.faq-accordion details{ background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; transition:box-shadow .2s ease, border-color .2s ease; }
.faq-accordion details[open]{ box-shadow:0 12px 30px rgba(21,34,78,.09); border-color:rgba(233,167,44,.55); }
.faq-accordion summary{ list-style:none; cursor:pointer; padding:1.15rem 1.4rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; font-family:var(--ff-display); font-size:1.18rem; font-weight:600; color:var(--navy); }
.faq-accordion summary::-webkit-details-marker{ display:none; }
.faq-accordion summary::after{ content:"+"; font-family:var(--ff-body); font-size:1.5rem; font-weight:400; color:var(--gold-deep); transition:transform .2s ease; flex:none; line-height:1; }
.faq-accordion details[open] summary::after{ transform:rotate(45deg); }
.faq-accordion summary:focus-visible{ outline:2px solid var(--gold); outline-offset:-2px; }
.faq-accordion .faq-body{ padding:0 1.4rem 1.3rem; color:var(--muted); font-size:.96rem; line-height:1.7; }
.faq-accordion .faq-body a{ color:var(--gold-deep); font-weight:600; }

/* ---- Org structure tiers ---- */
.org-tiers{ max-width:720px; margin:0 auto; }
.org-tier{ position:relative; background:#fff; border:1px solid var(--line); border-radius:12px; padding:1.5rem 1.7rem; text-align:center; box-shadow:0 8px 22px rgba(21,34,78,.05); }
.org-tier + .org-tier{ margin-top:2.4rem; }
.org-tier + .org-tier::before{ content:""; position:absolute; top:-2.4rem; left:50%; transform:translateX(-50%); width:2px; height:2.4rem; background:var(--gold); }
.org-tier .ot-label{ font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-deep); }
.org-tier .ot-title{ font-family:var(--ff-display); font-size:1.5rem; font-weight:700; color:var(--navy); margin:.3rem 0 .4rem; line-height:1.2; }
.org-tier .ot-desc{ color:var(--muted); font-size:.94rem; max-width:56ch; margin:0 auto; }
.org-tier.is-navy{ background:var(--navy); border-color:var(--navy); }
.org-tier.is-navy .ot-title{ color:#fff; }
.org-tier.is-navy .ot-desc{ color:#c9d0e6; }

/* ---- Campus cards ---- */
.campus-cards{ display:grid; grid-template-columns:1fr; gap:1.3rem; }
@media (min-width:760px){ .campus-cards{ grid-template-columns:repeat(3,1fr); } }
.campus-card{ background:#fff; border:1px solid var(--line); border-top:3px solid var(--gold); border-radius:12px; padding:1.6rem; }
.campus-card .cc-tag{ display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:.5rem; }
.campus-card h4{ margin:0 0 .5rem; color:var(--navy); font-size:1.3rem; }
.campus-card p{ margin:0; color:var(--muted); font-size:.92rem; line-height:1.65; }

/* ---- Contact location maps (3 campuses) ---- */
.campus-maps{ display:grid; grid-template-columns:1fr; gap:1.6rem; }
@media (min-width:820px){ .campus-maps{ grid-template-columns:repeat(3,1fr); } }
.cmap{ display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden; box-shadow:0 10px 26px rgba(21,34,78,.07); }
.cmap-head{ padding:1.1rem 1.3rem; }
.cmap-head h4{ margin:0; color:var(--navy); font-size:1.2rem; display:flex; align-items:baseline; gap:.55rem; }
.cmap-head h4 span{ font-family:var(--ff-body); font-size:.66rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-deep); }
.cmap-head p{ margin:.3rem 0 0; color:var(--muted); font-size:.88rem; }
.cmap-embed{ line-height:0; margin-top:auto; }
.cmap-embed iframe{ width:100%; height:240px; border:0; display:block; }

/* ---- Process timeline (How to Apply) ---- */
.timeline{ max-width:720px; margin:0 auto; }
.timeline-step{ position:relative; padding:0 0 2.2rem 4.6rem; }
.timeline-step:last-child{ padding-bottom:0; }
.timeline-step::before{ content:""; position:absolute; left:22px; top:10px; bottom:-6px; width:2px; background:linear-gradient(var(--gold), rgba(233,167,44,.2)); }
.timeline-step:last-child::before{ display:none; }
.timeline-step .ts-num{ position:absolute; left:0; top:0; width:46px; height:46px; border-radius:50%; background:var(--navy); color:#fff; font-family:var(--ff-display); font-weight:700; font-size:1.25rem; display:grid; place-items:center; box-shadow:0 6px 16px rgba(21,34,78,.22); z-index:1; }
.timeline-step .ts-title{ font-family:var(--ff-display); font-size:1.35rem; font-weight:700; color:var(--navy); margin:.35rem 0 .4rem; }
.timeline-step .ts-desc{ color:var(--muted); font-size:.96rem; line-height:1.7; margin:0; }

/* ---- Feature grid (icon cards) ---- */
.feature-grid{ display:grid; grid-template-columns:1fr; gap:1.4rem; }
@media (min-width:600px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px){ .feature-grid{ grid-template-columns:repeat(3,1fr); } }
.feature-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.9rem; transition:transform .2s ease, box-shadow .2s ease; }
.feature-card:hover{ transform:translateY(-5px); box-shadow:0 20px 42px rgba(21,34,78,.12); }
.feature-card .fi{ width:52px; height:52px; border-radius:12px; background:rgba(233,167,44,.12); display:grid; place-items:center; margin-bottom:1.1rem; }
.feature-card .fi svg{ width:26px; height:26px; stroke:var(--gold-deep); stroke-width:1.7; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.feature-card h3{ font-size:1.2rem; color:var(--navy); margin:0 0 .5rem; }
.feature-card p{ color:var(--muted); font-size:.94rem; line-height:1.65; margin:0; }

/* ---- Stat band (on navy) ---- */
.stat-band{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.8rem 1rem; }
@media (min-width:760px){ .stat-band{ grid-template-columns:repeat(4,1fr); } }
.stat-band .sb{ text-align:center; }
.stat-band .sb .n{ font-family:var(--ff-display); font-weight:700; font-size:2.9rem; color:#fff; line-height:1; }
.stat-band .sb .n span{ color:var(--gold-soft); }
.stat-band .sb .l{ color:#c9d0e6; font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; margin-top:.55rem; }

/* ---- Pull-quote (navy band) ---- */
.pullquote{ max-width:820px; margin:0 auto; text-align:center; }
.pullquote .pq-mark{ font-family:var(--ff-display); font-size:3.4rem; color:var(--gold); line-height:.9; }
.pullquote blockquote{ font-family:var(--ff-display); font-size:1.7rem; font-weight:600; font-style:italic; color:#fff; line-height:1.42; margin:.2rem 0 1rem; }
.pullquote cite{ display:block; font-style:normal; font-family:var(--ff-body); font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-soft); }

/* ---- Checklist ---- */
.checklist{ list-style:none; margin:1rem 0 0; padding:0; display:grid; grid-template-columns:1fr; gap:.75rem; max-width:660px; }
@media (min-width:600px){ .checklist{ grid-template-columns:repeat(2,1fr); } }
.checklist li{ display:flex; gap:.65rem; align-items:flex-start; color:var(--ink); font-size:.95rem; }
.checklist li svg{ flex:none; width:21px; height:21px; stroke:var(--gold-deep); stroke-width:2; fill:none; margin-top:2px; stroke-linecap:round; stroke-linejoin:round; }

/* ---- Empty state (e.g. Faculty & Board directory pending) ---- */
.empty-state{ max-width:580px; margin:0 auto; text-align:center; background:var(--cream); border:1px dashed var(--line); border-radius:16px; padding:3rem 2rem; }
.empty-state .es-icon{ width:64px; height:64px; border-radius:50%; background:#fff; display:grid; place-items:center; margin:0 auto 1.2rem; box-shadow:0 8px 20px rgba(21,34,78,.08); }
.empty-state .es-icon svg{ width:30px; height:30px; stroke:var(--gold-deep); stroke-width:1.6; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.empty-state h3{ color:var(--navy); font-size:1.5rem; margin:0 0 .5rem; }
.empty-state p{ color:var(--muted); margin:0 0 1.4rem; }

/* ---- Welcome pack (celebratory band on navy) ---- */
.welcome-pack{ display:grid; grid-template-columns:1fr; gap:1.2rem; }
@media (min-width:600px){ .welcome-pack{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:940px){ .welcome-pack{ grid-template-columns:repeat(4,1fr); } }
.wp-item{ text-align:center; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.13); border-radius:14px; padding:1.9rem 1.2rem; transition:transform .2s ease, background .2s ease; }
.wp-item:hover{ transform:translateY(-5px); background:rgba(255,255,255,.09); }
.wp-item .wp-ic{ width:60px; height:60px; margin:0 auto 1.1rem; border-radius:50%; background:var(--gold); display:grid; place-items:center; box-shadow:0 8px 22px rgba(233,167,44,.4); }
.wp-item .wp-ic svg{ width:28px; height:28px; stroke:var(--navy); stroke-width:1.8; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.wp-item h4{ color:#fff; font-family:var(--ff-display); font-size:1.18rem; margin:0 0 .35rem; }
.wp-item p{ color:#c9d0e6; font-size:.85rem; margin:0; line-height:1.5; }

/* ---- Photo gallery grid ---- */
.photo-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
@media (min-width:820px){ .photo-grid{ grid-template-columns:repeat(4,1fr); } }
.photo-grid img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:12px; display:block; box-shadow:0 10px 26px rgba(21,34,78,.08); transition:transform .25s ease; }
.photo-grid img:hover{ transform:scale(1.02); }

/* ---- Elementor Pro form styling (Contact + Request Information) ---- */
.elementor-form .elementor-field-group{ margin-bottom:1.05rem; }
.elementor-form .elementor-field-group > label{ font-family:var(--ff-body); font-weight:600; font-size:.82rem; color:var(--navy); margin-bottom:.4rem; }
.elementor-field-textual,
.elementor-form select,
.elementor-form textarea{ width:100%; padding:.85rem 1rem !important; border:1px solid var(--line) !important; border-radius:10px !important; background:#fff !important; font-family:var(--ff-body); font-size:.95rem; line-height:1.4; color:var(--ink) !important; box-shadow:none !important; transition:border-color .15s ease, box-shadow .15s ease; }
.elementor-field-textual:focus,
.elementor-form select:focus,
.elementor-form textarea:focus{ border-color:var(--gold) !important; box-shadow:0 0 0 3px rgba(233,167,44,.18) !important; outline:none; }
.elementor-field-textual::placeholder,
.elementor-form textarea::placeholder{ color:#9aa1ad; }
.elementor-form .elementor-select-wrapper select{ -webkit-appearance:none; appearance:none; background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2315224e'%20stroke-width='2'%3E%3Cpath%20d='M6%209l6%206%206-6'/%3E%3C/svg%3E") !important; background-repeat:no-repeat !important; background-position:right 1rem center !important; background-size:15px !important; padding-right:2.6rem !important; }
.elementor-form .elementor-select-wrapper::before{ display:none !important; }
.elementor-form .elementor-button,
.elementor-form button[type="submit"]{ font-family:var(--ff-body) !important; font-weight:600 !important; font-size:.95rem !important; padding:.9em 1.9em !important; border-radius:10px !important; background:var(--gold) !important; color:var(--navy) !important; border:2px solid var(--gold) !important; transition:transform .18s ease, background .2s ease, box-shadow .2s ease; }
.elementor-form .elementor-button:hover,
.elementor-form button[type="submit"]:hover{ background:var(--gold-deep) !important; border-color:var(--gold-deep) !important; color:#fff !important; transform:translateY(-2px); box-shadow:0 10px 22px rgba(21,34,78,.2); }

/* Standalone Elementor button widgets (CTA, page buttons) — structural only; colours come from each button's own settings */
.elementor-widget-button .elementor-button{ display:inline-flex; align-items:center; justify-content:center; gap:.4em; font-family:var(--ff-body); font-weight:600; font-size:.95rem; padding:.85em 1.9em; transition:transform .18s ease, background .2s ease, box-shadow .2s ease; }
.elementor-widget-button .elementor-button:hover{ transform:translateY(-2px); box-shadow:0 10px 22px rgba(21,34,78,.18); }

/* ---- Form card wrapper ---- */
.form-card{ background:#fff !important; border:1px solid var(--line) !important; border-radius:16px !important; box-shadow:0 16px 40px rgba(21,34,78,.08); }
.form-card > .elementor-widget-wrap,
.form-card > .elementor-element-populated{ padding:2.2rem !important; }
@media (max-width:600px){ .form-card > .elementor-widget-wrap, .form-card > .elementor-element-populated{ padding:1.5rem !important; } }
