:root {
  --navy: #07152f;
  --navy-2: #0d2551;
  --blue: #123a78;
  --gold: #cfa85b;
  --gold-2: #f4db9c;
  --cream: #fbf7ef;
  --white: #ffffff;
  --ink: #172033;
  --muted: #687089;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(7, 21, 47, 0.18);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 47, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(94%, 1240px);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 10px 28px rgba(207, 168, 91, 0.22);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: 0.22s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding-inline: 18px;
}

.nav-links .nav-cta:hover {
  background: var(--gold-2);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(207, 168, 91, 0.34), transparent 34%), linear-gradient(135deg, #07152f 0%, #0e2b5c 48%, #061225 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-bg {
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(244, 219, 156, 0.2);
  border-radius: 50%;
  right: -170px;
  top: 60px;
  box-shadow: inset 0 0 0 90px rgba(255,255,255,0.02), inset 0 0 0 180px rgba(255,255,255,0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
  padding: 86px 0 76px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hero h1,
.section-heading h2,
.statement-card h2,
.leadership-copy h2,
.contact-card h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero-translation {
  margin: 20px 0 0;
  color: var(--gold-2);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 42px rgba(207, 168, 91, 0.24);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(244, 219, 156, 0.22);
  pointer-events: none;
}

.seal {
  min-height: 270px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(244, 219, 156, 0.18), rgba(7, 21, 47, 0.32));
  border: 1px solid rgba(244, 219, 156, 0.18);
  text-align: center;
  margin-bottom: 26px;
}

.seal span {
  display: block;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.hero-card h2 {
  margin: 0;
  font-size: 1.55rem;
}

.hero-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.mini-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--gold-2);
}

.mini-stats span {
  color: rgba(255,255,255,0.72);
  font-size: .9rem;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.intro-section {
  background: linear-gradient(180deg, #fbf7ef, #ffffff);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 21, 47, 0.07);
}

.pillar-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(207, 168, 91, 0.15);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pillar-card h3 {
  margin: 46px 0 4px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
}

.pillar-card p {
  margin: 0;
  font-size: 1.35rem;
  color: var(--muted);
  font-weight: 800;
}

.mission-section {
  background: #ffffff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.statement-card {
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff, #f7efe1);
  box-shadow: var(--shadow);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(7, 21, 47, 0.07);
}

.statement-card.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.label {
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(207, 168, 91, 0.16);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.statement-card h2 {
  margin-top: 22px;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.statement-card.dark h2 {
  color: var(--white);
}

.statement-card p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.statement-card.dark p {
  color: rgba(255,255,255,0.78);
}

.highlight-strip {
  padding: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid div {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border-left: 1px solid rgba(7,21,47,0.12);
}

.strip-grid div:first-child {
  border-left: none;
}

.strip-grid span {
  color: var(--navy);
  font-weight: 900;
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.school-card {
  position: relative;
  min-height: 285px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(7, 21, 47, 0.08);
  border: 1px solid rgba(7, 21, 47, 0.07);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.school-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  background: rgba(207, 168, 91, 0.12);
}

.school-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(7, 21, 47, 0.14);
  border-color: rgba(207, 168, 91, 0.36);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.school-card h3 {
  margin: 24px 0 12px;
  color: var(--navy);
  line-height: 1.18;
  font-size: 1.16rem;
}

.school-card p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.programs-section {
  background: linear-gradient(180deg, #ffffff, #f4efe5);
}

.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(207, 168, 91, 0.1));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.step {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  box-shadow: 0 18px 32px rgba(207, 168, 91, 0.22);
}

.timeline-item div {
  padding: 28px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(7, 21, 47, 0.08);
  border: 1px solid rgba(7, 21, 47, 0.07);
}

.timeline h3,
.timeline h4,
.timeline p {
  margin: 0;
}

.timeline h3 {
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.18;
}

.timeline h4 {
  color: var(--gold);
  margin-top: 8px;
  font-size: 1rem;
}

.timeline p {
  color: var(--muted);
  margin-top: 12px;
}

.faith-section {
  color: var(--white);
  background: radial-gradient(circle at bottom left, rgba(207,168,91,0.26), transparent 30%), linear-gradient(135deg, var(--navy), #061124);
}

.faith-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faith-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.faith-card h3 {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 1.45rem;
}

.faith-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.leadership-section {
  background: #ffffff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.leadership-copy h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.leadership-copy p:last-child {
  color: var(--muted);
  margin-top: 20px;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 900;
  border: 1px solid rgba(7, 21, 47, 0.06);
}

.feature-list span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(207, 168, 91, 0.14);
  flex: 0 0 auto;
}

.contact-section {
  background: linear-gradient(180deg, #f4efe5, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.contact-panel {
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(7, 21, 47, 0.07);
}

.contact-card h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

address {
  margin: 26px 0;
  color: var(--muted);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-panel {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel span {
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}

.contact-panel a {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-top: 14px;
}

.contact-panel p {
  color: rgba(255,255,255,0.72);
  margin: 34px 0 8px;
}

.contact-panel strong {
  color: var(--gold-2);
  font-size: 1.18rem;
}

.final-cta {
  padding: 82px 0;
  color: var(--white);
  text-align: center;
  background: radial-gradient(circle at center, rgba(207,168,91,0.34), transparent 35%), linear-gradient(135deg, #09214a, #061225);
}

.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.final-cta p {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 1.28rem;
}

.footer {
  color: rgba(255,255,255,0.76);
  background: #050d1d;
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .7fr;
  gap: 34px;
}

.footer h2,
.footer h3 {
  color: var(--white);
  margin: 0 0 12px;
}

.footer h2 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.footer p {
  margin: 7px 0;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255,255,255,0.76);
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--gold-2);
  font-weight: 900;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(7, 21, 47, .28);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .mission-grid,
  .leadership-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .schools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faith-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .navbar {
    min-height: 72px;
  }

  .brand-text strong {
    font-size: .86rem;
  }

  .brand-text small {
    font-size: .72rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 3%;
    right: 3%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(7, 21, 47, 0.98);
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 16px;
    padding: 14px 16px;
  }

  .hero-grid {
    padding: 62px 0 54px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions.center {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .statement-card,
  .contact-card,
  .contact-panel {
    padding: 26px;
    border-radius: 26px;
  }

  .seal {
    min-height: 210px;
  }

  .mini-stats,
  .pillar-grid,
  .schools-grid,
  .faith-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    text-align: left;
  }

  .statement-card {
    min-height: auto;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    min-height: 84px;
    border-left: none;
    border-top: 1px solid rgba(7,21,47,0.12);
  }

  .strip-grid div:first-child {
    border-top: none;
  }

  .timeline::before {
    left: 26px;
  }

  .timeline-item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .step {
    width: 54px;
    height: 54px;
    font-size: .86rem;
  }

  .timeline-item div {
    padding: 22px;
  }

  .contact-panel a {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-call {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: .85rem;
  }

  .brand-text strong {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .container {
    width: min(91%, var(--max));
  }

  .hero-card::after {
    inset: 12px;
  }

  .pillar-card,
  .school-card,
  .faith-card {
    padding: 22px;
  }

  .pillar-card {
    min-height: 200px;
  }
}
