:root {
  --burgundy: #7b0f1a;
  --burgundy-dark: #5d0912;
  --navy: #071f3d;
  --navy-2: #0b2b52;
  --gold: #bd8426;
  --gold-soft: #e4c17a;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --gray: #eef0f3;
  --ink: #101828;
  --muted: #5f6877;
  --border: #ded6c9;
  --shadow: 0 18px 45px rgba(7, 31, 61, .13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(860px, calc(100% - 32px)); }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 20; background: var(--navy); color: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.topbar { background: linear-gradient(90deg, #4b0710, var(--burgundy) 48%, #081d38); color: #fff; font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.topbar a, .topbar span { opacity: .94; }
.site-header { position: sticky; top: 0; z-index: 15; box-shadow: 0 2px 18px rgba(7,31,61,.08); transition: box-shadow .25s ease, transform .25s ease; }
.site-header[data-scrolled="true"] { box-shadow: 0 18px 40px rgba(7,31,61,.16); }
.scroll-progress { position: absolute; left: 0; top: 0; width: calc(var(--scroll-progress, 0) * 100%); height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft), #fff3bf); box-shadow: 0 0 18px rgba(228,193,122,.54); z-index: 2; transform-origin: left center; }
.nav-shell { background: rgba(255,253,248,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(222,214,201,.78); }
.nav-shell__inner { min-height: 96px; display: flex; align-items: center; gap: 28px; transition: min-height .25s ease; }
.site-header[data-scrolled="true"] .nav-shell__inner { min-height: 76px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 292px; border-radius: 8px; padding: 7px 10px 7px 6px; transition: background .25s ease, transform .25s ease; }
.brand:hover { background: rgba(189,132,38,.08); transform: translateY(-1px); }
.brand img { width: 76px; height: 76px; object-fit: contain; padding: 4px; border: 1px solid rgba(189,132,38,.38); border-radius: 7px; background: rgba(255,255,255,.72); box-shadow: 0 10px 24px rgba(7,31,61,.08); transition: width .25s ease, height .25s ease; }
.site-header[data-scrolled="true"] .brand img { width: 58px; height: 58px; }
.brand strong { display: block; font-family: var(--serif); color: var(--navy); font-size: 22px; line-height: 1.03; letter-spacing: .02em; transition: font-size .25s ease; }
.site-header[data-scrolled="true"] .brand strong { font-size: 19px; }
.brand small { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-weight: 800; font-size: 12px; }
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; font-size: 14px; font-weight: 800; color: var(--navy); }
.main-nav a { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 11px 12px; border-radius: 6px; overflow: hidden; transition: color .2s ease, background .2s ease, transform .2s ease; }
.main-nav a::before { content: ""; position: absolute; inset: auto 12px 7px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--burgundy)); transform: scaleX(0); transform-origin: left center; transition: transform .22s ease; }
.main-nav a::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(228,193,122,.16), transparent 56%); opacity: 0; transition: opacity .2s ease; }
.main-nav a:hover { color: var(--burgundy); background: rgba(189,132,38,.08); transform: translateY(-1px); }
.main-nav a:hover::before, .main-nav a[aria-current="page"]::before { transform: scaleX(1); }
.main-nav a:hover::after { opacity: 1; }
.main-nav a[aria-current="page"] { color: var(--burgundy); background: rgba(123,15,26,.07); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 20px; border-radius: 4px; border: 1px solid transparent; font-weight: 800; line-height: 1.1; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.btn--primary:hover { background: var(--burgundy-dark); }
.btn--outline { color: var(--burgundy); border-color: var(--gold); background: transparent; }
.btn--light { background: #fff; color: var(--burgundy); }
.btn--outline-light { color: #fff; border-color: var(--gold-soft); background: transparent; }
.nav-cta { margin-left: 8px; box-shadow: 0 12px 24px rgba(123,15,26,.18); position: relative; overflow: hidden; }
.nav-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 42%, transparent 68%); transform: translateX(-120%); transition: transform .5s ease; }
.nav-cta:hover::after { transform: translateX(120%); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: #fff; border-radius: 4px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; }
.hero { min-height: 650px; position: relative; overflow: hidden; display: flex; align-items: stretch; background: var(--ivory); }
.hero__media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.88) 33%, rgba(255,253,248,.12) 58%, rgba(255,253,248,0) 100%), url("../images/hero-campus.jpg") center right / cover no-repeat; transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0) scale(1.02); transition: transform .08s linear; }
.hero__inner { position: relative; display: flex; align-items: center; min-height: 650px; padding: 70px 0; }
.hero__copy { max-width: 640px; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; color: var(--navy); margin: 0 0 18px; }
h1 { font-size: clamp(44px, 6vw, 74px); letter-spacing: 0; }
.hero h1 { color: var(--navy); }
.hero h1::after, .section-kicker::after { content: ""; display: block; width: 220px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: 24px; }
.hero p { max-width: 620px; font-size: 18px; color: #263449; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.trust-bar { background: linear-gradient(90deg, var(--navy), var(--navy-2)); color: #fff; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(6, 1fr); }
.trust-bar__inner div { min-height: 88px; display: flex; align-items: center; gap: 14px; justify-content: center; border-left: 1px solid rgba(255,255,255,.22); font-weight: 800; }
.trust-bar__inner div:first-child { border-left: 0; }
.icon { width: 28px; height: 28px; color: var(--gold); flex: 0 0 auto; }
.section { padding: 86px 0; }
.section--soft { background: var(--ivory); border-top: 1px solid rgba(222,214,201,.6); border-bottom: 1px solid rgba(222,214,201,.6); }
.scroll-reveal.is-visible { animation: revealUp .72s ease both; }
.scroll-reveal.is-visible:nth-child(2n) { animation-delay: .04s; }
.scroll-reveal.is-visible:nth-child(3n) { animation-delay: .08s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.two-col--top { align-items: start; }
.section-kicker { color: var(--burgundy); text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 900; margin: 0 0 12px; }
.section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-heading--left { margin-inline: 0; text-align: left; }
.section h2, .page-hero h1 { font-size: clamp(32px, 4vw, 50px); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card, .article-card, .info-panel, .template-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 28px; box-shadow: 0 12px 28px rgba(7,31,61,.06); }
.program-card h3 { font-size: 25px; margin-top: 14px; }
.program-card p { color: var(--muted); }
.text-link { color: var(--burgundy); font-weight: 900; display: inline-flex; margin-top: 8px; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-list div { background: var(--paper); border-left: 4px solid var(--gold); padding: 22px; font-weight: 800; box-shadow: 0 8px 20px rgba(7,31,61,.05); }
.article-mini-list { display: grid; gap: 14px; }
.article-mini-list a { display: grid; gap: 4px; border-left: 4px solid var(--gold); background: #fff; padding: 18px 20px; box-shadow: var(--shadow); }
.article-mini-list span, .article-card span, .article-meta { color: var(--burgundy); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.article-mini-list small { color: var(--muted); }
.cta-band { background: linear-gradient(90deg, var(--burgundy-dark), var(--burgundy) 48%, var(--navy)); color: #fff; padding: 42px 0; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.map-placeholder { min-height: 340px; background: linear-gradient(135deg, var(--navy), #092746); color: #fff; display: grid; place-items: center; padding: 28px; border-radius: 6px; box-shadow: var(--shadow); }
.map-placeholder > div { text-align: center; display: grid; gap: 14px; justify-items: center; max-width: 420px; }
.entity-summary { background: #fff; }
.entity-summary h2 { font-size: 28px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0 18px; }
.faq-item summary { padding: 18px 0; cursor: pointer; font-weight: 900; color: var(--navy); }
.faq-item p { margin: 0 0 18px; color: var(--muted); }
.page-hero { background: linear-gradient(120deg, var(--navy), #0b315c 58%, var(--burgundy)); color: #fff; padding: 74px 0; }
.page-hero h1, .page-hero p { color: #fff; max-width: 820px; }
.page-hero p { font-size: 19px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.82); font-weight: 700; margin-bottom: 18px; font-size: 14px; }
.breadcrumbs a::after { content: "/"; margin-left: 10px; color: var(--gold-soft); }
.page-hero .breadcrumbs a, .article-hero .breadcrumbs a { color: #fff; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border: 2px solid var(--gold); border-radius: 50%; }
.large { font-size: 18px; font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps article { background: #fff; border-top: 4px solid var(--gold); padding: 24px; }
.steps span { color: var(--burgundy); font-weight: 900; }
.timeline { display: grid; gap: 12px; }
.timeline div { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border); padding: 16px; }
.timeline strong { display: grid; place-items: center; width: 44px; height: 44px; background: var(--burgundy); color: #fff; border-radius: 50%; }
.academy-toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { border: 1px solid var(--border); background: #fff; color: var(--navy); border-radius: 999px; padding: 9px 14px; font-weight: 800; cursor: pointer; }
.filter-btn.is-active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; flex-direction: column; min-height: 310px; }
.article-card h2 { font-size: 25px; }
.article-card p { color: var(--muted); flex: 1; }
.article-card dl { display: flex; gap: 22px; margin: 0 0 18px; }
.article-card dt { font-size: 12px; text-transform: uppercase; color: var(--muted); font-weight: 900; }
.article-card dd { margin: 0; font-weight: 900; }
.template-card ol { margin: 0; padding-left: 22px; font-weight: 700; }
.contact-form { display: grid; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 28px; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 4px; padding: 13px 14px; font: inherit; background: #fff; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 3px solid rgba(189,132,38,.45); outline-offset: 3px; }
.form-note { color: var(--muted); font-size: 14px; margin: 0; }
.form-status { margin: 0; font-weight: 800; color: var(--burgundy); }
.article-hero { background: var(--navy); color: #fff; padding: 70px 0; }
.article-hero h1 { color: #fff; }
.article-hero p { font-size: 19px; color: rgba(255,255,255,.86); }
.article-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; padding: 70px 0; }
.article-toc { position: sticky; top: 130px; align-self: start; display: grid; gap: 10px; border-left: 3px solid var(--gold); padding-left: 18px; }
.article-toc a { color: var(--muted); font-weight: 700; font-size: 14px; }
.article-content { max-width: 820px; }
.article-content section { margin-bottom: 42px; }
.article-content h2 { font-size: 34px; }
.study-plan { display: grid; gap: 10px; padding-left: 22px; }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-links a { border: 1px solid var(--border); padding: 16px; background: #fff; }
.related-links span { display: block; color: var(--burgundy); font-size: 12px; font-weight: 900; margin-bottom: 6px; }
.site-footer { background: #061a34; color: rgba(255,255,255,.82); padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .8fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: #fff; font-family: var(--serif); font-size: 21px; font-weight: 800; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; background: #fff; border-radius: 4px; }
.site-footer h2 { color: #fff; font-size: 22px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer a { display: block; color: rgba(255,255,255,.86); }
.site-footer address { font-style: normal; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 38px; padding: 18px 0 86px; font-size: 14px; }
.back-to-top { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; display: grid; place-items: center; background: var(--burgundy); color: #fff; border-radius: 50%; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 14; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.mobile-contact-bar { display: none; }
.intro-overlay {
  --intro-duration: 7000ms; /* Change this and INTRO_DURATION in main.js together to adjust total runtime. */
  position: fixed;
  inset: 0;
  z-index: 100;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 62%, rgba(228,193,122,.24), transparent 25%),
    radial-gradient(circle at 18% 18%, rgba(123,15,26,.65), transparent 34%),
    linear-gradient(135deg, #061a34 0%, #071f3d 46%, #5d0912 100%);
}
body.intro-active { overflow: hidden; }
.intro-overlay::before,
.intro-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro-overlay::before {
  background-image:
    linear-gradient(rgba(228,193,122,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,193,122,.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 68%);
}
.intro-overlay::after {
  background: linear-gradient(180deg, rgba(5,18,36,.2), rgba(5,18,36,.78));
}
.intro-scene {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.intro-skip {
  position: absolute;
  top: 24px;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 3;
  border: 1px solid rgba(228,193,122,.55);
  color: var(--ivory);
  background: rgba(7,31,61,.56);
  border-radius: 999px;
  padding: 10px 18px;
  font: 800 14px var(--sans);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.intro-theater {
  position: absolute;
  bottom: 12vh;
  left: 50%;
  width: min(1020px, 104vw);
  transform: translateX(-50%);
  opacity: .18;
  color: var(--gold-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.theater-arc { stroke: url(#theaterGold); stroke-width: 8; }
.theater-arc--two { stroke-width: 4; opacity: .7; }
.theater-stage { fill: rgba(228,193,122,.1); stroke: rgba(228,193,122,.42); }
.theater-columns path { fill: rgba(228,193,122,.12); stroke: rgba(228,193,122,.52); }
.intro-light {
  position: absolute;
  left: 50%;
  bottom: 21vh;
  width: 34vw;
  max-width: 430px;
  aspect-ratio: 1;
  transform: translateX(-50%) scale(.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,236,177,.85), rgba(228,193,122,.26) 35%, transparent 67%);
  filter: blur(2px);
  opacity: 0;
}
.intro-timeline {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--gold-soft), #fff4c7, var(--gold), transparent);
  box-shadow: 0 0 30px rgba(228,193,122,.62);
}
.intro-timeline::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(50%, -50%) rotate(45deg);
  background: var(--gold-soft);
  box-shadow: 0 0 30px rgba(255,236,177,.8);
}
.intro-figure {
  position: absolute;
  width: clamp(82px, 13vw, 150px);
  color: rgba(251,247,239,.88);
  fill: rgba(251,247,239,.06);
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.32));
}
.intro-figure--left { left: 9%; top: 39%; transform: translateY(22px); }
.intro-figure--right { right: 9%; top: 38%; transform: translateY(22px); }
.intro-symbols {
  position: absolute;
  inset: 18% 7% 20%;
  pointer-events: none;
}
.intro-symbols span,
.intro-symbols svg {
  position: absolute;
  color: rgba(228,193,122,.82);
  width: 34px;
  height: 34px;
  opacity: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  font: 700 24px var(--serif);
}
.intro-symbols span:nth-child(1) { left: 22%; top: 24%; }
.intro-symbols span:nth-child(2) { right: 18%; top: 18%; font-size: 21px; width: auto; }
.intro-symbols span:nth-child(3) { left: 45%; top: 16%; }
.intro-symbols span:nth-child(4) { right: 37%; top: 33%; }
.intro-symbols span:nth-child(5) { left: 34%; bottom: 18%; }
.intro-symbols span:nth-child(6) { right: 28%; bottom: 22%; }
.intro-symbols svg:nth-of-type(1) { left: 14%; bottom: 28%; }
.intro-symbols svg:nth-of-type(2) { left: 50%; bottom: 12%; }
.intro-symbols svg:nth-of-type(3) { right: 11%; bottom: 34%; }
.intro-line {
  position: absolute;
  width: min(780px, 88vw);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(28px, 4.8vw, 58px);
  line-height: 1.12;
  margin: 0;
  color: var(--ivory);
  text-shadow: 0 20px 46px rgba(0,0,0,.34);
  opacity: 0;
}
.intro-line--one { top: 22%; }
.intro-line--two { bottom: 20%; }
.intro-logo-reveal {
  position: absolute;
  top: 44%;
  left: 50%;
  width: clamp(118px, 17vw, 184px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(.72);
  display: grid;
  place-items: center;
  opacity: 0;
}
.intro-logo-reveal img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,253,248,.96);
  padding: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
}
.intro-logo-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(228,193,122,.72);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(228,193,122,.36), inset 0 0 30px rgba(228,193,122,.18);
}
.intro-final-copy {
  position: absolute;
  bottom: 10vh;
  width: min(760px, 90vw);
  text-align: center;
  opacity: 0;
}
.intro-final-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1.08;
  color: #fff;
}
.intro-final-copy span {
  display: block;
  margin-top: 12px;
  color: var(--gold-soft);
  font: 800 clamp(15px, 2.2vw, 22px) var(--sans);
}
.intro-final-copy small {
  display: block;
  margin-top: 14px;
  color: rgba(251,247,239,.86);
  font: 700 15px var(--sans);
}
.intro-replay {
  border: 0;
  background: transparent;
  color: var(--burgundy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  padding: 12px 2px;
}
.intro-overlay.is-playing .intro-theater { animation: theaterRise 1200ms ease-out 120ms both; }
.intro-overlay.is-playing .intro-light { animation: lightRise 5900ms cubic-bezier(.2,.8,.18,1) 260ms both; }
.intro-overlay.is-playing .intro-figure--left { animation: figureIn 1200ms ease-out 900ms both, figureOut 650ms ease-in 3150ms forwards; }
.intro-overlay.is-playing .intro-figure--right { animation: figureIn 1200ms ease-out 3300ms both, figureOut 650ms ease-in 5000ms forwards; }
.intro-overlay.is-playing .intro-line--one { animation: copyIn 900ms ease-out 700ms both, copyOut 600ms ease-in 3050ms forwards; }
.intro-overlay.is-playing .intro-timeline { animation: timelineDraw 2600ms cubic-bezier(.2,.8,.16,1) 2300ms both; }
.intro-overlay.is-playing .intro-line--two { animation: copyIn 900ms ease-out 3350ms both, copyOut 600ms ease-in 5150ms forwards; }
.intro-overlay.is-playing .intro-symbols span,
.intro-overlay.is-playing .intro-symbols svg { animation: symbolFloat 2600ms ease-in-out 2450ms both; }
.intro-overlay.is-playing .intro-symbols span:nth-child(2),
.intro-overlay.is-playing .intro-symbols span:nth-child(4),
.intro-overlay.is-playing .intro-symbols svg:nth-of-type(2) { animation-delay: 2850ms; }
.intro-overlay.is-playing .intro-symbols span:nth-child(5),
.intro-overlay.is-playing .intro-symbols span:nth-child(6),
.intro-overlay.is-playing .intro-symbols svg:nth-of-type(3) { animation-delay: 3200ms; }
.intro-overlay.is-playing .intro-logo-reveal { animation: logoReveal 1250ms cubic-bezier(.18,.9,.22,1) 5350ms both; }
.intro-overlay.is-playing .intro-logo-ring { animation: ringPulse 1350ms ease-out 5350ms both; }
.intro-overlay.is-playing .intro-final-copy { animation: finalCopy 1050ms ease-out 5900ms both; }
.intro-overlay.is-closing { animation: introClose 650ms ease forwards; }
@keyframes theaterRise {
  from { opacity: 0; transform: translate(-50%, 24px) scale(.98); }
  to { opacity: .2; transform: translate(-50%, 0) scale(1); }
}
@keyframes lightRise {
  0% { opacity: 0; transform: translateX(-50%) scale(.25); }
  22% { opacity: .82; transform: translateX(-50%) scale(.72); }
  70% { opacity: .72; transform: translateX(-50%) scale(1.1); }
  100% { opacity: .2; transform: translateX(-50%) scale(.42); }
}
@keyframes figureIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: .86; transform: translateY(0); }
}
@keyframes figureOut {
  to { opacity: 0; transform: translateY(-18px); }
}
@keyframes copyIn {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes copyOut {
  to { opacity: 0; transform: translateY(-14px); filter: blur(5px); }
}
@keyframes timelineDraw {
  0% { opacity: 0; transform: scaleX(0); }
  18% { opacity: 1; }
  100% { opacity: 1; transform: scaleX(1); }
}
@keyframes symbolFloat {
  0% { opacity: 0; transform: translateY(18px) scale(.88); }
  30% { opacity: .9; }
  100% { opacity: 0; transform: translateY(-30px) scale(1.04); }
}
@keyframes logoReveal {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.48); filter: blur(8px); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
}
@keyframes ringPulse {
  from { transform: scale(.72); opacity: 0; }
  55% { opacity: 1; }
  to { transform: scale(1.22); opacity: .52; }
}
@keyframes finalCopy {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes introClose {
  to { opacity: 0; visibility: hidden; }
}
@media (max-width: 1040px) {
  .topbar { display: none; }
  .nav-shell__inner { min-height: 82px; }
  .brand { min-width: 0; }
  .brand img { width: 62px; height: 62px; }
  .brand strong { font-size: 18px; }
  .site-header[data-scrolled="true"] .nav-shell__inner { min-height: 72px; }
  .site-header[data-scrolled="true"] .brand img { width: 54px; height: 54px; }
  .main-nav { position: fixed; inset: 82px 0 auto 0; background: rgba(255,253,248,.98); border-bottom: 1px solid var(--border); display: none; padding: 12px 16px 18px; flex-direction: column; align-items: stretch; gap: 6px; box-shadow: 0 20px 40px rgba(7,31,61,.12); }
  .site-header[data-scrolled="true"] .main-nav { inset-block-start: 72px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { justify-content: space-between; padding: 13px 14px; border: 1px solid rgba(222,214,201,.7); background: #fff; }
  .main-nav a::before { inset: auto 14px 7px; }
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .trust-bar__inner, .program-grid, .article-grid, .feature-list, .steps, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner div { justify-content: flex-start; padding: 0 18px; }
}
@media (max-width: 760px) {
  body { font-size: 15px; padding-bottom: 68px; }
  .container { width: min(100% - 24px, 1180px); }
  .brand small { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero__media { background: linear-gradient(180deg, rgba(255,253,248,.96), rgba(255,253,248,.86)), url("../images/hero-campus.jpg") center / cover no-repeat; transform: none; }
  .hero__inner { min-height: auto; padding: 68px 0; }
  h1 { font-size: 42px; }
  .hero p, .page-hero p, .article-hero p { font-size: 16px; }
  .hero__actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .trust-bar__inner, .program-grid, .article-grid, .feature-list, .steps, .footer-grid, .two-col, .related-links { grid-template-columns: 1fr; }
  .trust-bar__inner div { min-height: 64px; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .section { padding: 58px 0; }
  .cta-band__inner { display: grid; }
  .page-hero, .article-hero { padding: 48px 0; }
  .article-layout { grid-template-columns: 1fr; padding: 42px 0; }
  .article-toc { position: static; }
  .mobile-contact-bar { position: fixed; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; z-index: 18; box-shadow: 0 -8px 22px rgba(7,31,61,.16); }
  .mobile-contact-bar a { background: var(--burgundy); color: #fff; text-align: center; padding: 15px; font-weight: 900; }
  .mobile-contact-bar a + a { background: var(--navy); }
  .footer-bottom { padding-bottom: 24px; }
  .intro-scene { width: min(100% - 20px, 720px); }
  .intro-skip { top: 14px; right: 14px; }
  .intro-theater { width: 150vw; bottom: 13vh; }
  .intro-line--one { top: 18%; }
  .intro-line--two { bottom: 24%; }
  .intro-figure { width: 78px; stroke-width: 6; }
  .intro-figure--left { left: 4%; top: 42%; }
  .intro-figure--right { right: 4%; top: 42%; }
  .intro-symbols { inset: 20% 4% 28%; }
  .intro-timeline { left: 7%; width: 86%; top: 52%; }
  .intro-final-copy { bottom: 9vh; }
  .intro-replay { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none !important; }
  .scroll-reveal.is-visible { animation: none !important; }
  .hero__media { transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
