:root {
  --ink: #102031;
  --muted: #647184;
  --paper: #fbfaf7;
  --navy: #0b2239;
  --blue: #2d6cdf;
  --green: #0f8a72;
  --gold: #d89b27;
  --coral: #e7664c;
  --line: rgba(16, 32, 49, 0.12);
  --shadow: 0 24px 80px rgba(16, 32, 49, 0.16);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.shell {
  width: min(100%, 1220px);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-block: 14px;
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(16, 32, 49, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav .shell {
  display: flex;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
  border-radius: 14px;
  font-weight: 800;
}

.logo-mark {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 32, 49, 0.1);
  box-shadow: 0 10px 28px rgba(16, 32, 49, 0.08);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.1;
}

.brand-lockup strong {
  font-size: 1rem;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav .nav-link {
  color: rgba(16, 32, 49, 0.74);
  font-weight: 700;
  padding-inline: 12px;
}

.site-nav .nav-link:hover {
  color: var(--green);
}

.navbar-toggler {
  border: 0;
}

.btn {
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-admission,
.btn-primary-action {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
}

.btn-admission:hover,
.btn-primary-action:hover {
  color: #fff;
  background: #0b735f;
  border-color: #0b735f;
}

.btn-quiet {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.btn-quiet:hover {
  color: #102031;
  background: #fff;
}

.btn-outline-dark {
  color: var(--navy);
  border: 1px solid rgba(16, 32, 49, 0.2);
  background: #fff;
}

.btn-outline-dark:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.88), rgba(7, 22, 37, 0.46) 48%, rgba(7, 22, 37, 0.08)),
    linear-gradient(0deg, rgba(7, 22, 37, 0.62), rgba(7, 22, 37, 0) 42%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(280px, 360px);
  gap: 56px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 56px;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-block .eyebrow,
.experience-copy .eyebrow,
.admissions .eyebrow,
.contact-copy .eyebrow,
.about-section .eyebrow,
.news-section .eyebrow,
.registered-boards .eyebrow {
  color: var(--green);
  background: rgba(15, 138, 114, 0.09);
  border-color: rgba(15, 138, 114, 0.16);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero .hero-tagline {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.3;
}

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

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
}

.metrics-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 20px;
}

.metrics-grid div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.metrics-grid div::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms ease;
}

.metrics-grid div.is-visible::after {
  transform: scaleX(1);
}

.metrics-grid div:last-child {
  border-right: 1px solid var(--line);
}

.metrics-grid strong {
  display: block;
  color: var(--navy);
  font-size: 2.15rem;
  line-height: 1;
}

.metrics-grid strong small {
  font-size: 0.9em;
  font-weight: 800;
}

.metrics-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding-block: 150px 74px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(15, 36, 54, 0.88)),
    #0f2436;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  max-width: 880px;
  margin: 20px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.about-page-hero img,
.contact-page-hero img {
  width: min(260px, 78%);
  justify-self: center;
  object-fit: contain;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.section-block {
  padding-block: 72px;
}

.section-block + .section-block {
  padding-top: 44px;
}

.metrics-band + .section-block {
  padding-top: 64px;
}

.section-heading {
  display: grid;
  max-width: 880px;
  gap: 16px;
}

.section-heading h2,
.experience-copy h2,
.admissions h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p,
.experience-copy p,
.admissions p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.belief-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.belief-grid article,
.news-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 32, 49, 0.06);
}

.belief-grid span,
.news-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--green);
  background: rgba(15, 138, 114, 0.09);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.belief-grid p,
.news-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.belief-grid p {
  margin: 34px 0 0;
  font-size: 1.02rem;
}

.belief-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.school-photo-showcase {
  grid-template-columns: repeat(3, 1fr);
}

.belief-orbit {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62) 34%, transparent 35%),
    conic-gradient(from 110deg, rgba(15, 138, 114, 0.18), rgba(216, 155, 39, 0.26), rgba(45, 108, 223, 0.18), rgba(231, 102, 76, 0.18), rgba(15, 138, 114, 0.18));
  box-shadow: 0 14px 40px rgba(16, 32, 49, 0.06);
}

.belief-orbit::before,
.belief-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(16, 32, 49, 0.12);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.belief-orbit::before {
  width: 260px;
  height: 260px;
}

.belief-orbit::after {
  width: 330px;
  height: 330px;
  animation-duration: 26s;
  animation-direction: reverse;
}

.belief-orbit img {
  position: relative;
  z-index: 2;
  width: min(220px, 64%);
  filter: drop-shadow(0 18px 28px rgba(16, 32, 49, 0.2));
  animation: logo-float 5s ease-in-out infinite;
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(16, 32, 49, 0.18);
}

.dot-one {
  top: 72px;
  right: 88px;
  background: var(--gold);
}

.dot-two {
  bottom: 92px;
  left: 76px;
  background: var(--green);
}

.dot-three {
  right: 58px;
  bottom: 76px;
  background: var(--coral);
}

.belief-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 32, 49, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.belief-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(16, 32, 49, 0.14);
}

.belief-card > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--green);
  background: rgba(15, 138, 114, 0.09);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.belief-card p {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.photo-belief-card {
  min-height: 430px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.photo-belief-card > span,
.photo-belief-card p {
  margin-inline: 24px;
}

.photo-belief-card > span {
  margin-top: 24px;
}

.photo-belief-card p {
  margin-bottom: 26px;
}

.belief-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #dfe8ef;
}

.belief-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 22, 37, 0.42)),
    linear-gradient(135deg, rgba(15, 138, 114, 0.12), rgba(216, 155, 39, 0.1));
  pointer-events: none;
}

.belief-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 700ms ease;
}

.photo-belief-card:hover .belief-photo img {
  transform: scale(1.1);
}

.vision-card .belief-photo img {
  object-position: center;
}

.values-card .belief-photo img {
  object-position: center 42%;
}

.belief-visual {
  position: relative;
  height: 132px;
  margin-bottom: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 138, 114, 0.1), rgba(216, 155, 39, 0.12)),
    #f7faf8;
}

.visual-sun,
.visual-book,
.visual-path,
.visual-star,
.visual-heart,
.visual-rings {
  position: absolute;
  display: block;
}

.visual-sun {
  width: 58px;
  height: 58px;
  top: 18px;
  right: 26px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 14px rgba(216, 155, 39, 0.16);
  animation: pulse-glow 3.8s ease-in-out infinite;
}

.visual-book {
  width: 112px;
  height: 46px;
  left: 24px;
  bottom: 24px;
  border: 4px solid var(--navy);
  border-top: 0;
  border-radius: 0 0 60px 60px;
}

.visual-book::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 4px;
  height: 44px;
  background: var(--navy);
}

.visual-path {
  inset: 26px 28px 28px 26px;
  border: 4px solid transparent;
  border-left-color: var(--green);
  border-bottom-color: var(--green);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.visual-star {
  width: 34px;
  height: 34px;
  top: 24px;
  right: 34px;
  background: var(--blue);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  animation: twinkle 2.8s ease-in-out infinite;
}

.visual-heart {
  width: 58px;
  height: 58px;
  top: 28px;
  left: 34px;
  background: var(--coral);
  transform: rotate(45deg);
  border-radius: 12px;
}

.visual-heart::before,
.visual-heart::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--coral);
}

.visual-heart::before {
  left: -29px;
}

.visual-heart::after {
  top: -29px;
}

.visual-rings {
  right: 26px;
  bottom: 22px;
  width: 88px;
  height: 88px;
  border: 4px solid rgba(45, 108, 223, 0.8);
  border-radius: 50%;
}

.visual-rings::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 4px solid rgba(15, 138, 114, 0.75);
  border-radius: 50%;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 14px rgba(216, 155, 39, 0.16); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 22px rgba(216, 155, 39, 0.08); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.18) rotate(12deg); opacity: 1; }
}

.registered-boards {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 250, 248, 0.96)),
    var(--paper);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.board-card {
  display: grid;
  min-height: 190px;
  grid-column: span 2;
  align-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 32, 49, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.board-card:nth-child(4),
.board-card:nth-child(5) {
  grid-column: span 3;
}

.board-card:hover {
  border-color: rgba(15, 138, 114, 0.28);
  box-shadow: 0 24px 70px rgba(16, 32, 49, 0.12);
  transform: translateY(-4px);
}

.board-card img {
  width: 100%;
  height: 86px;
  object-fit: contain;
}

.board-card span {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.news-section {
  background: #fff;
}

.news-slider-shell {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-top: 42px;
}

.news-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.news-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.news-control:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
}

.news-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 18px;
  contain: paint;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

.news-track {
  display: flex;
  width: 100%;
  gap: 18px;
  transition: transform 420ms ease;
}

.news-track article {
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  min-height: 350px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(16, 32, 49, 0.06);
  scroll-snap-align: start;
}

.news-track article > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--green);
  background: rgba(15, 138, 114, 0.09);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-track h3 {
  margin: 28px 0 14px;
  font-weight: 800;
  line-height: 1.2;
}

.news-track p {
  color: var(--muted);
  line-height: 1.75;
}

.news-date {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 18px;
}

.news-date strong {
  color: var(--navy);
  font-size: 2.1rem;
  line-height: 0.9;
}

.news-date span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.academic-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(16, 32, 49, 0.08);
}

.academic-feature img {
  width: 100%;
  min-height: 360px;
  height: 100%;
  object-fit: cover;
}

.academic-feature div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 34px 32px 6px;
}

.academic-feature span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.academic-feature h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
  font-weight: 800;
}

.academic-feature p {
  color: var(--muted);
  line-height: 1.75;
}

.program-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 32, 49, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 138, 114, 0.08), transparent 52%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.program-card:hover,
.timeline article:hover {
  border-color: rgba(15, 138, 114, 0.28);
  box-shadow: 0 24px 70px rgba(16, 32, 49, 0.12);
  transform: translateY(-6px);
}

.program-card:hover::after {
  opacity: 1;
}

.program-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
}

.program-card h3 {
  margin: 44px 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
}

.program-card p {
  color: var(--muted);
  line-height: 1.7;
}

.accent-green span { background: var(--green); }
.accent-gold span { background: var(--gold); }
.accent-coral span { background: var(--coral); }
.accent-blue span { background: var(--blue); }

.experience-band {
  padding-block: 78px;
  color: #fff;
  background: #0f2436;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.campus-visual {
  position: relative;
  min-height: 520px;
}

.campus-card {
  position: absolute;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.campus-card.large {
  inset: 60px 70px 40px 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: 420px;
  background: #fff;
  isolation: isolate;
}

.campus-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 36, 54, 0.03), rgba(15, 36, 54, 0.86)),
    linear-gradient(90deg, rgba(15, 138, 114, 0.25), rgba(216, 155, 39, 0.1));
}

.campus-card.large img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-card.large div {
  display: grid;
  gap: 16px;
  padding: 34px;
  color: #fff;
}

.campus-card.large strong {
  max-width: 520px;
  font-size: 1.9rem;
  line-height: 1.14;
}

.campus-card.large span {
  color: #8ff1d9;
  font-weight: 800;
  text-transform: uppercase;
}

.campus-card.small {
  width: 210px;
  padding: 22px;
}

.campus-card.small strong,
.campus-card.small span {
  display: block;
}

.campus-card.small span {
  margin-top: 8px;
  color: var(--muted);
}

.campus-card.top {
  top: 0;
  right: 16px;
}

.campus-card.bottom {
  right: 0;
  bottom: 0;
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.admissions {
  background: #fff;
}

.admissions-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: 52px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.timeline article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms ease;
}

.timeline article.is-visible::after {
  transform: scaleX(1);
}

.timeline span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 800;
}

.timeline h3 {
  margin: 30px 0 10px;
  font-weight: 800;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.timeline a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.bank-note {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(15, 138, 114, 0.18);
  border-radius: 8px;
  background: rgba(15, 138, 114, 0.08);
}

.bank-note strong {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.bank-note span {
  color: var(--ink);
  line-height: 1.6;
  font-weight: 700;
}

.admission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-band {
  padding-block: 78px;
  background:
    linear-gradient(135deg, rgba(45, 108, 223, 0.08), transparent 45%),
    linear-gradient(315deg, rgba(231, 102, 76, 0.11), transparent 42%),
    #f3f7f4;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a,
.contact-details span {
  color: var(--navy);
  font-weight: 800;
}

.campus-slider-shell {
  width: min(100%, 560px);
  margin-top: 28px;
}

.campus-toolbar {
  display: flex;
  gap: 9px;
  margin-bottom: 12px;
}

.campus-control {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.campus-control:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
}

.campus-list {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  padding: 2px 2px 14px;
  contain: paint;
}

.campus-track {
  position: absolute;
  top: 2px;
  left: 2px;
  display: flex;
  width: max-content;
  gap: 12px;
  animation: campus-marquee 30s linear infinite;
  will-change: transform;
}

.campus-list:focus .campus-track {
  animation-play-state: paused;
}

.campus-track article {
  display: grid;
  width: 270px;
  min-height: 142px;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.campus-track strong {
  color: var(--navy);
}

.campus-track span {
  color: var(--muted);
  line-height: 1.55;
}

.campus-track a {
  color: var(--green);
  font-weight: 800;
}

@keyframes campus-marquee {
  to { transform: translateX(calc(-50% - 6px)); }
}

@keyframes news-marquee {
  to { transform: translateX(calc(-50% - 9px)); }
}

.animate-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: reveal-card 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.animate-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body:not(:has(script)) .animate-card {
  opacity: 1;
  transform: none;
}

@keyframes reveal-card {
  from {
    opacity: 1;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.metrics-grid .animate-card:nth-child(2),
.program-grid .animate-card:nth-child(2),
.timeline .animate-card:nth-child(2) {
  --reveal-delay: 90ms;
}

.metrics-grid .animate-card:nth-child(3),
.program-grid .animate-card:nth-child(3),
.timeline .animate-card:nth-child(3) {
  --reveal-delay: 180ms;
}

.metrics-grid .animate-card:nth-child(4),
.program-grid .animate-card:nth-child(4),
.timeline .animate-card:nth-child(4) {
  --reveal-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {
  .animate-card,
  .program-card,
  .timeline article,
  .metrics-grid div::after,
  .timeline article::after {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

.campus-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.inquiry-form h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f9fbfa;
  font: inherit;
  font-weight: 600;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(15, 138, 114, 0.18);
  border-color: var(--green);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-validation-error,
.validation-summary {
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 800;
}

.success-message {
  padding: 13px 15px;
  border: 1px solid rgba(15, 138, 114, 0.22);
  border-radius: 8px;
  color: #075e4d;
  background: rgba(15, 138, 114, 0.1);
  font-weight: 800;
}

.error-message {
  padding: 13px 15px;
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: 8px;
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  font-weight: 800;
}

.site-footer {
  padding-block: 48px 26px;
  color: rgba(255, 255, 255, 0.74);
  background: #071625;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.58fr 0.78fr 0.92fr;
  gap: 32px;
}

.site-footer h2 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

.footer-brand {
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer p {
  max-width: 470px;
  line-height: 1.75;
}

.footer-raaziq p {
  max-width: 320px;
  margin-bottom: 12px;
}

.footer-raaziq a:first-of-type {
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 4px;
}

.footer-bottom a:hover {
  color: #d89b27;
  text-decoration-color: rgba(216, 155, 39, 0.7);
}

@media (max-width: 991px) {
  .site-nav {
    padding-block: 10px;
  }

  .site-nav .shell {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .brand-lockup {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-lockup > span:last-child {
    min-width: 0;
  }

  .brand-lockup strong,
  .brand-lockup small {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 8px;
  }

  .site-nav .navbar-collapse {
    flex-basis: 100%;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .site-nav .navbar-nav {
    align-items: stretch !important;
    gap: 2px !important;
  }

  .site-nav .nav-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .site-nav .nav-link:hover {
    background: rgba(15, 138, 114, 0.08);
  }

  .site-nav .btn-admission {
    width: 100%;
    margin-top: 8px;
  }

  .hero-content,
  .page-hero-grid,
  .experience-layout,
  .admissions-grid,
  .contact-layout,
  .footer-grid,
  .belief-showcase,
  .academic-feature {
    grid-template-columns: 1fr;
  }

  .academic-feature div {
    padding: 0 28px 30px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .metrics-grid,
  .program-grid,
  .news-grid,
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .board-card,
  .board-card:nth-child(4),
  .board-card:nth-child(5) {
    grid-column: auto;
  }

  .news-slider {
    overflow: hidden;
  }

  .news-track article {
    flex-basis: calc((100% - 18px) / 2);
    min-height: 370px;
  }

  .belief-orbit {
    min-height: 300px;
  }

  .photo-belief-card {
    min-height: auto;
  }

  .page-hero {
    padding-block: 126px 62px;
  }

  .page-hero img {
    max-height: 300px;
  }
}

@media (max-width: 680px) {
  .shell {
    padding-inline: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-lockup strong {
    max-width: 170px;
    font-size: 0.94rem;
  }

  .brand-lockup small {
    max-width: 170px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 3.6rem);
  }

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

  .hero .hero-tagline {
    font-size: 1.08rem;
  }

  .hero-actions .btn,
  .admission-actions .btn {
    width: 100%;
  }

  .metrics-grid,
  .program-grid,
  .timeline,
  .form-row,
  .campus-list-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .board-card {
    min-height: 160px;
  }

  .board-card img {
    height: 74px;
  }

  .news-slider {
    overflow-x: auto;
  }

  .news-track article {
    flex-basis: 100%;
    min-height: 360px;
    padding: 22px;
  }

  .news-toolbar {
    justify-content: flex-start;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

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

  .metrics-grid div,
  .metrics-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-block,
  .experience-band,
  .contact-band {
    padding-block: 54px;
  }

  .section-heading h2,
  .experience-copy h2,
  .admissions h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .campus-visual {
    min-height: 430px;
  }

  .campus-card.large {
    inset: 56px 0 72px 0;
  }

  .campus-card.large div {
    padding: 24px;
  }

  .campus-card.large strong {
    font-size: 1.48rem;
  }

  .campus-card.small {
    width: min(188px, 58vw);
    padding: 16px;
  }

  .campus-card.bottom {
    right: 8px;
  }

  .belief-photo {
    height: 210px;
  }

  .academic-feature img {
    min-height: 260px;
  }

  .inquiry-form {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .brand-lockup strong,
  .brand-lockup small {
    max-width: 145px;
  }

  .metrics-grid strong {
    font-size: 1.9rem;
  }

  .news-track h3 {
    font-size: 1.34rem;
  }

  .news-date strong {
    font-size: 1.85rem;
  }
}
