:root {
  --crimson: #C8102E;
  --crimson-dark: #9E0B23;
  --navy: #1E2A55;
  --navy-deep: #16204A;
  --ink: #1a1c24;
  --muted: #5a6070;
  --line: #e6e8ef;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(30, 42, 85, 0.08);
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Lora", Georgia, "Times New Roman", serif; line-height: 1.15; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 34px; width: auto; display: block; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--crimson);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--crimson);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  font-size: 1rem;
}
.btn:hover { background: var(--crimson-dark); border-color: var(--crimson-dark); transform: translateY(-1px); }
.btn--sm { padding: 8px 16px; font-size: .9rem; }
.btn--lg { padding: 15px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* EYEBROW */
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--crimson); }

/* HERO */
.hero {
  position: relative;
  background: #0d1330 url("/img/hero-bg.jpg") center center / cover no-repeat;
  padding: clamp(90px, 15vw, 165px) 0 clamp(60px, 10vw, 110px);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 520px at 45% 34%, rgba(13,19,48,.55), transparent 72%),
    linear-gradient(180deg, rgba(13,19,48,.72) 0%, rgba(13,19,48,.30) 42%, rgba(9,13,34,.88) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero__inner { max-width: 840px; margin: 0 auto; }
.hero .eyebrow { color: #ffb3c0; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 34px rgba(0,0,0,.45);
}
.hero__title em { color: #ff5d73; font-style: normal; }
.hero__lead {
  margin: 22px auto 0;
  max-width: 650px;
  font-size: clamp(1.05rem, 2.3vw, 1.24rem);
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 20px rgba(0,0,0,.4);
}
.hero__cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.65); }
.hero .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.hero__note { margin-top: 26px; font-style: italic; color: #fff; opacity: .82; }
.hero__media {
  width: 100%; margin: clamp(40px, 6vw, 64px) auto 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  object-fit: cover;
}

/* SECTIONS */
.section { padding: clamp(56px, 9vw, 96px) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 auto clamp(32px, 5vw, 52px); text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--navy); }
.section__head p { margin-top: 12px; color: var(--muted); font-size: 1.08rem; }
.section__head--light h2, .section__head--light p { color: #fff; }
.section__head--light p { opacity: .85; }

/* GRID */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(2, 1fr); }

/* CARDS */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30,42,85,.14); }
.card h3 { font-size: 1.22rem; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* PROGRAMS */
.program {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius);
  padding: 26px 26px;
}
.program__level {
  display: inline-block;
  font-weight: 700; color: var(--crimson);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.program ul { margin: 0; padding-left: 18px; color: var(--ink); }
.program li { margin: 6px 0; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.about__text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 16px; }
.about__text p { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }
.about__faculty strong { color: var(--navy); }
.about__stats { display: grid; gap: 18px; }
.stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; align-items: baseline; gap: 14px;
}
.stat__num { font-family: "Lora", serif; font-size: 2.2rem; font-weight: 700; color: var(--crimson); }
.stat__label { color: var(--muted); font-weight: 500; }

/* CTA / FORM */
.section--cta {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(200,16,46,.25), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.form-wrap { max-width: 660px; }
.form {
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.field input, .field select {
  font: inherit;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(200,16,46,.14);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__status { margin: 4px 0 0; font-weight: 600; text-align: center; min-height: 1.2em; }
.form__status.ok { color: #1a7f4b; }
.form__status.err { color: var(--crimson); }

/* FOUNDER */
.founder {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(200,16,46,.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #eef0f8;
}
.founder .eyebrow { color: #ff8ea0; }
.founder__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.founder__photo { margin: 0; }
.founder__photo img { width: 100%; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.founder__photo figcaption { margin-top: 12px; font-size: .9rem; color: #aab2d0; text-align: center; letter-spacing: .04em; }
.founder__text h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: 16px; }
.founder__text p { color: #cdd3e8; font-size: 1.08rem; margin-top: 14px; }
.founder__text strong { color: #fff; }
.founder__text blockquote {
  margin: 26px 0 0; padding-left: 20px;
  border-left: 3px solid var(--crimson);
  font-family: "Lora", serif; font-style: italic; font-size: 1.2rem; color: #fff;
}

/* CHANCELLOR */
.chancellor {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center;
}
.chancellor__photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: top center; border: 3px solid rgba(255,255,255,.2); }
.chancellor h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.chancellor p { color: #cdd3e8; }
.chancellor .eyebrow { color: #ff8ea0; margin-bottom: 8px; }

/* FACULTY */
.faculty { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.faculty figure { margin: 0; text-align: center; }
.faculty img {
  width: 100%; max-width: 150px; aspect-ratio: 1; object-fit: cover; object-position: top center;
  border-radius: 50%; margin: 0 auto 12px;
  border: 4px solid #fff; box-shadow: var(--shadow);
}
.faculty figcaption { font-weight: 600; color: var(--navy); font-size: .95rem; }

/* FOOTER */
.footer { background: var(--navy-deep); color: #cfd4e6; padding: 48px 0 34px; }
.footer__inner { display: grid; gap: 20px; }
.footer__logo { background: #fff; border-radius: 10px; padding: 10px 14px; width: 170px; }
.footer__contact p { margin: 3px 0; }
.footer__contact a { color: #fff; text-decoration: underline; }
.footer__legal { margin-top: 8px; font-size: .86rem; color: #8b93b3; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .founder__inner { grid-template-columns: 1fr; gap: 28px; }
  .faculty { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .faculty { grid-template-columns: repeat(2, 1fr); }
  .chancellor { grid-template-columns: 90px 1fr; gap: 18px; }
  .chancellor__photo { width: 90px; height: 90px; }
  .nav__brand img { height: 28px; }
  .btn--sm { padding: 7px 13px; }
}
