:root {
  --sky: #55b8ef;
  --sky-light: #eaf8ff;
  --sky-soft: #cdeeff;
  --navy: #071f4b;
  --navy-2: #0b3476;
  --gold: #e3ac32;
  --cream: #fffaf0;
  --white: #fff;
  --ink: #17233c;
  --muted: #61708b;
  --line: rgba(7, 31, 75, .12);
  --shadow: 0 24px 70px rgba(7, 31, 75, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--navy-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 9px; background: var(--gold); }
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.section-copy { max-width: 660px; color: var(--muted); font-size: 1.05rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-head .section-copy { margin: 0 0 4px; }

.topbar { background: var(--navy); color: rgba(255,255,255,.86); font-size: .8rem; }
.topbar .wrap { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links, .topbar-note { display: flex; align-items: center; gap: 20px; }
.topbar a:hover { color: var(--sky); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(7,31,75,.08);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 250px; }
.brand img { width: 60px; height: 60px; object-fit: contain; }
.brand strong { display: block; color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: 1.13rem; line-height: 1.08; }
.brand span { display: block; margin-top: 4px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a { color: #2e3c58; font-size: .9rem; font-weight: 700; }
.nav-links > a:not(.button):hover, .nav-links > a.active { color: var(--navy-2); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 1.6rem; }
.portal-button { background: var(--sky) !important; color: var(--navy) !important; box-shadow: 0 12px 24px rgba(25,141,204,.22); }
.portal-button:hover { background: #8cd4f7 !important; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(7,31,75,.15);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-2); box-shadow: 0 18px 32px rgba(7,31,75,.22); }
.button.sky { background: var(--sky); color: var(--navy) !important; }
.button.ghost { border-color: rgba(7,31,75,.2); background: transparent; color: var(--navy) !important; box-shadow: none; }
.button.ghost:hover { background: var(--sky-light); }
.portal-dock {
  position: fixed; right: 22px; bottom: 22px; z-index: 48;
  display: flex; align-items: center; gap: 12px; min-height: 58px;
  padding: 8px 20px 8px 9px; border: 3px solid #fff; border-radius: 999px;
  background: var(--sky); color: var(--navy); font-size: .88rem; font-weight: 900;
  box-shadow: 0 18px 42px rgba(7,31,75,.3); transition: transform .2s ease, background .2s ease;
}
.portal-dock:hover { transform: translateY(-3px); background: #8cd4f7; }
.portal-dock i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 1rem; }

.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #f8fdff 0%, #e7f7ff 57%, #c4ebff 100%); }
.hero::before { content: ""; position: absolute; left: -90px; bottom: -130px; width: 320px; height: 320px; border: 70px solid rgba(85,184,239,.12); border-radius: 50%; }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 54px; padding-block: 70px; }
.hero h1 { max-width: 650px; margin: 0; color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(3.15rem, 6.2vw, 6.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.hero h1 em { color: #198dcc; font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 590px; margin: 26px 0; color: #53627b; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 27px; color: var(--muted); font-size: .83rem; font-weight: 700; }
.hero-note span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--navy-2); box-shadow: 0 8px 20px rgba(7,31,75,.1); }
.hero-visual { position: relative; min-height: 540px; }
.hero-image { position: absolute; inset: 0 0 0 35px; overflow: hidden; border-radius: 180px 24px 24px 24px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,31,75,.22)); }
.hero-badge { position: absolute; left: 0; bottom: 36px; z-index: 2; width: 164px; padding: 22px; border: 8px solid #eaf8ff; border-radius: 24px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.hero-badge strong { display: block; color: var(--sky); font-family: "DM Serif Display", Georgia, serif; font-size: 2.3rem; font-weight: 400; line-height: 1; }
.hero-badge span { display: block; margin-top: 7px; font-size: .75rem; line-height: 1.4; }
.motto-ribbon { background: var(--navy); color: #fff; }
.motto-ribbon .wrap { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.motto-ribbon span { color: var(--sky); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.motto-ribbon strong { font-family: "DM Serif Display", Georgia, serif; font-size: 1.45rem; font-weight: 400; }

section { padding-block: 100px; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.story-image { position: relative; }
.story-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px 90px 24px 24px; box-shadow: var(--shadow); }
.story-year { position: absolute; right: -24px; bottom: 30px; padding: 18px 22px; border-radius: 18px; background: var(--gold); color: var(--navy); font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 18px 40px rgba(143,98,0,.2); }
.story-copy p { color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.value { padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.value strong { color: var(--navy); }
.value span { display: block; color: var(--muted); font-size: .82rem; }

.levels { background: var(--cream); }
.level-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.level-card { position: relative; overflow: hidden; min-height: 325px; padding: 26px; border: 1px solid rgba(7,31,75,.08); border-radius: 22px; background: #fff; }
.level-card::before { content: attr(data-number); position: absolute; right: 12px; bottom: -26px; color: rgba(85,184,239,.13); font-family: "DM Serif Display", Georgia, serif; font-size: 8rem; line-height: 1; }
.level-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 46px; border-radius: 14px; background: var(--sky-light); color: var(--navy-2); font-size: 1.25rem; }
.level-card h3 { margin: 0 0 8px; color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: 1.75rem; font-weight: 400; }
.level-card p { color: var(--muted); font-size: .9rem; }
.level-card a { position: relative; z-index: 2; color: var(--navy-2); font-size: .82rem; font-weight: 900; }

.learning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.learning-card { display: flex; align-items: flex-start; gap: 18px; padding: 24px; border-radius: 20px; background: var(--sky-light); }
.learning-card:nth-child(2n) { background: #f5f2ff; }
.learning-card i { display: grid; place-items: center; flex: 0 0 46px; height: 46px; border-radius: 14px; background: #fff; color: var(--navy-2); }
.learning-card h3 { margin: 0 0 5px; color: var(--navy); font-size: 1rem; }
.learning-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.mission { overflow: hidden; background: var(--navy); color: #fff; }
.mission .section-title { color: #fff; }
.mission .eyebrow { color: var(--sky); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card { padding: 36px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: rgba(255,255,255,.065); }
.mission-card h3 { margin: 0 0 14px; color: var(--sky); font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; font-weight: 400; }
.mission-card p { margin: 0; color: rgba(255,255,255,.72); }

.campus-strip { padding: 0; background: var(--navy); }
.campus-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; }
.campus-panel { position: relative; overflow: hidden; min-height: 460px; }
.campus-panel:first-child { border-radius: 0 28px 0 0; }
.campus-panel:last-child { border-radius: 28px 0 0 0; }
.campus-panel img { width: 100%; height: 100%; object-fit: cover; }
.campus-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,31,75,.82)); }
.campus-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; color: #fff; }
.campus-caption span { color: var(--sky); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.campus-caption h3 { margin: 5px 0 0; font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.05; }

.anthem-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.anthem-photo { position: sticky; top: 120px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.anthem-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.song-card { padding: 38px; border-radius: 26px; background: var(--sky-light); }
.song-card h3 { margin: 0; color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: 2.25rem; font-weight: 400; }
.song-card p { color: #40506b; }
.prayer-card { margin-top: 18px; padding: 30px; border: 1px solid var(--line); border-radius: 26px; }
.prayer-card h3 { margin-top: 0; color: var(--navy); }

.cta { padding-block: 76px; background: linear-gradient(120deg, var(--sky), #bfeaff); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.cta .section-title { max-width: 740px; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.site-footer { padding: 70px 0 22px; background: #041632; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .9fr; gap: 60px; padding-bottom: 42px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 72px; }
.footer-brand strong { color: #fff; font-family: "DM Serif Display", Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.site-footer h3 { margin: 0 0 18px; color: var(--sky); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.site-footer a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }

.page-hero { padding: 86px 0 70px; background: linear-gradient(120deg, var(--navy) 0 55%, var(--navy-2)); color: #fff; }
.page-hero .eyebrow { color: var(--sky); }
.page-hero .section-title { max-width: 800px; color: #fff; }
.page-hero p { max-width: 630px; color: rgba(255,255,255,.72); }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 42px; align-items: start; }
.contact-details { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.contact-item i { color: var(--navy-2); font-size: 1.25rem; }
.contact-item strong { display: block; color: var(--navy); }
.contact-item span, .contact-item a { color: var(--muted); font-size: .9rem; }
.form-shell { padding: 38px; border-radius: 26px; background: var(--sky-light); }
.form-shell h2 { margin: 0 0 8px; color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: 2.4rem; font-weight: 400; }
.form-shell > p { margin: 0 0 26px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid rgba(7,31,75,.15); border-radius: 12px; outline: none; background: #fff; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(85,184,239,.2); }
.field textarea { min-height: 140px; resize: vertical; }
.map-card { margin-top: 34px; padding: 30px; border-radius: 24px; background: var(--navy); color: #fff; }
.map-card p { color: rgba(255,255,255,.7); }

@media (max-width: 1020px) {
  .nav-links { position: fixed; inset: 84px 0 auto; display: none; padding: 26px 30px 34px; flex-direction: column; align-items: stretch; gap: 17px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; max-height: calc(100vh - 74px); overflow-y: auto; }
  .nav-links .button { width: 100%; }
  .menu-toggle { display: block; }
  .hero-grid, .story-grid, .anthem-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 55px; }
  .hero-visual { min-height: 510px; }
  .story-image { max-width: 620px; }
  .story-year { right: 20px; }
  .level-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .wrap { width: min(100% - 26px, 1180px); }
  .topbar-note { display: none; }
  .topbar-links { width: 100%; justify-content: space-between; gap: 8px; }
  .topbar-links a:last-child { display: none; }
  .nav { min-height: 74px; }
  .brand { min-width: 0; gap: 9px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: .9rem; line-height: 1.05; }
  .brand > span { display: block; }
  .brand > span > span { display: none; }
  .nav-links { inset: 74px 0 auto; }
  .hero-grid { min-height: auto; gap: 30px; padding-block: 42px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.8rem); }
  .hero-copy > p:not(.eyebrow) { margin: 20px 0; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; margin-top: 20px; line-height: 1.5; }
  .hero-visual { min-height: 390px; }
  .hero-image { left: 18px; border-radius: 100px 20px 20px; }
  .hero-badge { width: 140px; padding: 17px; bottom: 20px; }
  .motto-ribbon .wrap { padding-block: 16px; flex-direction: column; gap: 2px; }
  section { padding-block: 62px; }
  .section-head { display: block; }
  .section-head .section-copy { margin-top: 18px; }
  .story-grid { gap: 46px; }
  .value-grid, .level-grid, .learning-grid, .mission-grid, .form-grid { grid-template-columns: 1fr; }
  .level-card { min-height: 0; padding: 22px; }
  .level-icon { margin-bottom: 24px; }
  .level-card::before { font-size: 6rem; bottom: -18px; }
  .anthem-grid { gap: 36px; }
  .campus-grid { grid-template-columns: 1fr; }
  .campus-panel { min-height: 360px; border-radius: 0 !important; }
  .anthem-photo { position: static; }
  .song-card, .mission-card, .form-shell { padding: 26px; }
  .cta-grid, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 66px 0 54px; }
  .portal-dock { left: 13px; right: 13px; bottom: 10px; min-height: 58px; justify-content: center; padding: 7px 18px; }
  .portal-dock i { width: 38px; height: 38px; }
}

@media (max-width: 380px) {
  .brand strong { max-width: 175px; font-size: .8rem; }
  .hero h1 { font-size: 2.85rem; }
  .section-title { font-size: 2.12rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
