:root {
  --navy: #0a2a5c;
  --navy-deep: #071e44;
  --navy-soft: #e8eef7;
  --gold: #e8a820;
  --gold-deep: #d4920f;
  --gold-soft: #fff3d1;
  --topbar-red: #9b1b1b;
  --topbar-red-deep: #7a1515;
  --white: #ffffff;
  --off: #eef1f7;
  --text: #1a2b3c;
  --muted: #6b7c8f;
  --line: #e3e8f0;
  --peach: #ffe4d6;
  --mint: #d9f0e4;
  --blush: #fde0e6;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(7, 30, 68, 0.08);
  --container: min(1140px, calc(100% - 2rem));
  --font-display: "Lexend", system-ui, sans-serif;
  --font-script: "Lexend", system-ui, sans-serif;
  --font-body: "Lexend", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Logo shimmer — header, footer, enter page */
@keyframes logoShimmer {
  0% {
    transform: translateX(-130%) skewX(-15deg);
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  42% {
    transform: translateX(130%) skewX(-15deg);
    opacity: 0;
  }

  100% {
    transform: translateX(130%) skewX(-15deg);
    opacity: 0;
  }
}

.logo-shimmer::after,
.brand__logo::after,
.footer-brand__logo::after {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: linear-gradient(105deg,
      transparent 38%,
      rgba(255, 255, 255, .7) 47%,
      rgba(232, 168, 32, .5) 52%,
      transparent 62%);
  animation: logoShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.lazy {
  opacity: 1;
  transition: opacity .35s ease, filter .35s ease;
}

img.lazy[data-src] {
  opacity: .4;
  filter: blur(2px);
}

img.lazy.is-loaded,
img.lazy:not([data-src]) {
  opacity: 1;
  filter: none;
}

html.js .section,
html.js .site-footer {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

html.js .section.is-inview,
html.js .site-footer.is-inview {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.45rem;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 600;
  transition: .25s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, .85);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--block {
  width: 100%;
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}

.section--light {
  background: var(--white);
}

.section--off {
  background: var(--off);
  box-shadow: inset 0 1px 0 rgba(10, 42, 92, .05);
}

.section--dark {
  background: linear-gradient(165deg, #051533 0%, var(--navy-deep) 42%, var(--navy) 100%);
  color: rgba(255, 255, 255, .9);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .95;
}

.section--light .section-title,
.section--off .section-title {
  color: var(--navy);
}

.section--off .about-eyebrow,
.section--light .about-eyebrow {
  color: var(--gold-deep);
}

.section--dark .section-title,
.section--dark .section-title--left,
.section--dark .about-copy h2,
.section--dark .events-head h2 {
  color: #fff;
}

.section--dark .about-copy p,
.section--dark .stage-node p {
  color: rgba(255, 255, 255, .76);
}

.section--dark .stage-node h3,
.section--dark .toppers-head h3 {
  color: #fff;
}

.section--dark .view-all,
.section--dark .session-tag {
  color: var(--gold);
}

.section--dark .view-all:hover {
  color: var(--gold-soft);
}

.section--dark .stage-node__icon {
  background: rgba(255, 255, 255, .06);
  border-color: var(--gold);
  color: var(--gold);
}

.section--dark .stage-node:hover .stage-node__icon {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.section--dark .stage-timeline::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), var(--gold), rgba(255, 255, 255, .08));
}

.section--dark .stage-node__step {
  color: var(--gold-soft);
}

.section--dark .toppers-col:first-child {
  border-right-color: rgba(255, 255, 255, .15);
}

.section--dark .toppers-head h3 span {
  color: var(--gold-soft);
}

.section--dark .lead-card__body .role {
  color: var(--gold);
}

.section--dark .bday-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(232, 168, 32, .35);
  border-radius: var(--radius);
  box-shadow: none;
}

.section--dark .bday-panel .card__head h3 {
  color: var(--gold);
}

.section--dark .bday-person strong {
  color: #fff;
}

.section--dark .bday-person span {
  color: rgba(255, 255, 255, .65);
}

.section--alt {
  background: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: .55rem auto 0;
  border-radius: 2px;
}

.view-all {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

.view-all:hover {
  color: var(--gold-deep);
}

/* TOPBAR — brand red */
.topbar {
  background: linear-gradient(90deg, var(--topbar-red-deep), var(--topbar-red) 40%, var(--topbar-red-deep));
  color: rgba(255, 255, 255, .92);
  font-size: .8rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem 1rem;
  padding: .45rem 0;
  min-height: 38px;
}

.topbar__left {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}

.topbar__contact-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: inherit;
  white-space: nowrap;
  font-weight: 600;
}

.topbar__contact-link:hover {
  color: var(--gold);
}

.topbar__contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(232, 168, 32, .2);
  border: 1px solid rgba(232, 168, 32, .65);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: .82rem;
  transition: .22s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.topbar__contact-link:hover .topbar__contact-icon {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: scale(1.06);
}

.topbar__contact-text {
  font-size: .78rem;
}

.topbar__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .92);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: nowrap;
}

.topbar__portals {
  display: flex;
  gap: .45rem;
}

.portal-btn {
  padding: .32rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.portal-btn--student {
  background: var(--gold);
  color: var(--navy-deep);
  animation: studentPortalFlash 2.8s ease-in-out infinite;
}

.portal-btn--student:hover {
  animation: none;
  background: var(--gold-deep);
}

@keyframes studentPortalFlash {

  0%,
  100% {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 0 0 0 rgba(232, 168, 32, .45);
  }

  50% {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 0 0 6px rgba(232, 168, 32, .18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-btn--student {
    animation: none;
  }
}

.portal-btn--staff {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.portal-btn--staff:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.portal-btn--disclosure {
  background: #fff;
  color: var(--navy-deep);
  border-color: rgba(255, 255, 255, .4);
}

.portal-btn--disclosure:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.portal-btn__short {
  display: none;
}

.header-portals {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  margin-left: .55rem;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.topbar__social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  display: grid;
  place-items: center;
  font-size: .82rem;
  color: #fff;
  transition: .22s;
}

.topbar__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.portal-btn .bi {
  font-size: .75rem;
}

/* SITE TOP — topbar + header wrapper */
.site-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

body:not(.page-home) .site-top {
  position: sticky;
  top: 0;
}

/* Homepage: soft top shadow so transparent menu stays readable over slider */
.page-home .site-top:not(.is-scrolled) {
  background: linear-gradient(180deg,
      rgba(5, 16, 40, 0.78) 0%,
      rgba(5, 16, 40, 0.48) 48%,
      rgba(5, 16, 40, 0.12) 78%,
      rgba(5, 16, 40, 0) 100%);
}

.page-home .site-top.is-scrolled {
  position: fixed;
  background: transparent;
  animation: headerSlideDown 0.48s var(--ease) forwards;
  box-shadow: 0 10px 36px rgba(7, 30, 68, .18);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* HEADER */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: none;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  z-index: 100;
}

body:not(.page-home) .site-header {
  position: sticky;
  top: 0;
}

.page-home .site-top:not(.is-scrolled) .site-header {
  background: transparent;
  border-bottom-color: rgba(232, 168, 32, 0.55);
  box-shadow: none;
}

.page-home .site-top.is-scrolled .site-header {
  background: var(--navy);
  border-bottom-color: var(--gold);
  box-shadow: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.brand__logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  overflow: hidden;
}

.brand__logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .2));
}

.brand__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .01em;
}

.brand__text span {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav>a,
.nav-item>a {
  padding: .4rem .58rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav>a:hover,
.nav-item:hover>a {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.nav>a.is-active,
.nav-item>a.is-active {
  background: var(--gold);
  color: var(--navy-deep);
}

.nav-item {
  position: relative;
}

.nav-item>a::after {
  content: "▾";
  font-size: .65rem;
  opacity: .7;
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--navy-deep);
  border-radius: 12px;
  padding: .45rem;
  box-shadow: 0 16px 40px rgba(7, 30, 68, .28);
  border: 1px solid rgba(255, 255, 255, .12);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s var(--ease);
  z-index: 40;
}

.nav-item:hover .submenu,
.nav-item.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.submenu a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92) !important;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.submenu a:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: rgba(255, 255, 255, .08);
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .2s;
}

.navbar-collapse {
  flex-grow: 0;
}

@media (min-width: 901px) {
  #mainNavCollapse.collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: .55rem;
    height: auto !important;
    visibility: visible !important;
    flex: 1;
  }

  .navbar-collapse .nav {
    display: flex;
  }
}

.navbar-collapse.show .nav,
.navbar-collapse.collapsing .nav {
  display: flex;
}

/* HERO BLOCK — simple slider + floating notifications + quick row */
.hero-block {
  position: relative;
  background: var(--navy-deep);
}

.hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}

.hero-slider .item,
.hero-slide {
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  max-height: none;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-slider--empty {
  min-height: 42vh;
  background: var(--navy-deep);
}

.topper-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-slide--simple::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(5, 16, 40, 0.82) 0%,
      rgba(5, 16, 40, 0.52) 38%,
      rgba(5, 16, 40, 0.18) 58%,
      transparent 72%);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(5, 16, 40, 0.12) 0%,
      transparent 30%,
      rgba(5, 16, 40, 0.18) 62%,
      rgba(5, 16, 40, 0.62) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform-origin: center center;
  backface-visibility: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.hero-slider .owl-item.active .hero-media img {
  animation: heroKenBurns 11s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.hero-slide__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: clamp(5.5rem, 11vw, 7rem);
  padding-bottom: clamp(9rem, 16vw, 11rem);
}

.hero-copy--simple {
  max-width: min(58%, 520px);
  color: #fff;
}

.hero-line1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: .45rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-line2 {
  font-size: clamp(.92rem, 1.6vw, 1.08rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

/* Bottom dock — col-9 buttons + col-4 notification, overlapping slider */
.hero-dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 14;
  padding-bottom: clamp(.85rem, 2vw, 1.35rem);
  pointer-events: none;
}

.hero-dock__grid {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 4fr);
  gap: .85rem;
  align-items: end;
  pointer-events: none;
}

.hero-dock__buttons,
.hero-dock__news {
  pointer-events: auto;
}

.hero-dock__buttons .quick-row {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: .65rem .7rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 40px rgba(7, 30, 68, 0.2);
  backdrop-filter: blur(8px);
}

.hero .owl-dots {
  position: absolute;
  left: 42%;
  bottom: clamp(6.5rem, 11vw, 8.5rem);
  transform: translateX(-50%);
  z-index: 9;
}

.hero .owl-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 1rem;
  z-index: 6;
}

.hero .owl-nav button {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  background: rgba(7, 30, 68, .55) !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  margin: 0 !important;
}

.hero .owl-nav button:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.hero .owl-dots .owl-dot span {
  background: transparent !important;
  border: 2px solid #fff !important;
  width: 8px !important;
  height: 8px !important;
  margin: 3px !important;
}

.hero .owl-dots .owl-dot.active span {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* HERO FOLLOW — kept for reference, hidden on home */
.hero-follow {
  position: relative;
  z-index: 8;
  margin-top: 0;
  padding: 1rem 0 1.35rem;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(7, 30, 68, .08);
}

.quick-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
}

.quick-row .quick-btn {
  min-height: 78px;
  padding: .55rem .35rem;
}

.quick-row .quick-btn__icon {
  width: 34px;
  height: 34px;
  font-size: .88rem;
}

@media (min-width: 992px) {
  .hero-copy--simple {
    max-width: min(52%, 480px);
  }
}

.quick-row .quick-btn__label {
  font-size: .64rem;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem .45rem;
  border-radius: 12px;
  text-align: center;
  color: var(--navy);
  transition: .22s var(--ease);
  min-height: 90px;
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(7, 30, 68, .1);
}

.quick-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(7, 30, 68, .16);
  color: var(--navy);
}

.quick-btn__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(7, 30, 68, .15);
}

.quick-btn__label {
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .02em;
}

.quick-btn--peach {
  background: linear-gradient(155deg, #fff6f0 0%, #ffcaa6 100%);
  border-color: #f5a06a;
}

.quick-btn--peach .quick-btn__icon {
  background: #e8874a;
  color: #fff;
}

.quick-btn--mint {
  background: linear-gradient(155deg, #f0faf5 0%, #a8e4c4 100%);
  border-color: #5cb88a;
}

.quick-btn--mint .quick-btn__icon {
  background: #3a9d6e;
  color: #fff;
}

.quick-btn--blush {
  background: linear-gradient(155deg, #fff5f7 0%, #ffb8c8 100%);
  border-color: #e87892;
}

.quick-btn--blush .quick-btn__icon {
  background: #d85a78;
  color: #fff;
}

.quick-btn--gold {
  background: linear-gradient(155deg, #fffbf0 0%, #ffd978 100%);
  border-color: #e8a820;
}

.quick-btn--gold .quick-btn__icon {
  background: var(--gold-deep);
  color: var(--navy-deep);
}

.quick-btn--sky {
  background: linear-gradient(155deg, #f0f8ff 0%, #a8d4f5 100%);
  border-color: #5a9fd4;
}

.quick-btn--sky .quick-btn__icon {
  background: #3d8bc4;
  color: #fff;
}

.quick-btn--lavender {
  background: linear-gradient(155deg, #f7f4ff 0%, #c9b8ff 100%);
  border-color: #8b7fd4;
}

.quick-btn--lavender .quick-btn__icon {
  background: #6f5fc4;
  color: #fff;
}

/* NEWS panel — hero float + inner pages */
.news-panel--hero {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: .75rem .85rem .7rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 42px rgba(7, 30, 68, 0.22);
  height: 228px;
  min-height: 228px;
  max-height: 228px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.news-panel--hero .news-panel__head {
  margin-bottom: .5rem;
}

.news-panel--hero h2 {
  font-size: .88rem;
}

.news-panel--hero .news-panel__viewall {
  padding: .32rem .65rem;
  font-size: .66rem;
}

.news-vscroll {
  flex: 1;
  min-height: 0;
  height: 158px;
  overflow: hidden;
}

.news-slider--v {
  height: 100%;
}

.news-slider--v .owl-stage-outer {
  height: 100% !important;
  overflow: hidden;
}

.news-slider--v .owl-item {
  opacity: 1;
}

.news-slider--v .owl-item.active {
  animation: newsSlideUpIn .55s var(--ease);
}

@keyframes newsSlideUpIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

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

.news-item--compact {
  min-height: 42px !important;
  padding: .42rem .6rem !important;
  gap: .55rem !important;
}

.news-item--compact .news-item__date {
  width: 38px;
  padding: .28rem .15rem;
  border-radius: 8px;
}

.news-item--compact .news-item__date strong {
  font-size: .88rem;
}

.news-item--compact .news-item__date em {
  font-size: .52rem;
}

.news-item--compact .news-item__title {
  font-size: .78rem;
  -webkit-line-clamp: 1;
}

.news-panel {
  background: var(--off);
  border-radius: 14px;
  padding: 1rem 1rem .85rem;
  border: 1px solid var(--line);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.news-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.news-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  color: var(--navy);
  margin-bottom: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex: 1;
  min-width: 0;
}

.news-panel h2 .bi {
  color: var(--gold-deep);
  font-size: .95rem;
}

.news-panel__head .view-all {
  font-size: .78rem;
  white-space: nowrap;
}

.news-panel__viewall {
  padding: .42rem .85rem;
  font-size: .72rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(7, 30, 68, .12);
}

.news-slider {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-slider .owl-stage-outer {
  overflow: hidden;
  order: 1;
}

.news-slider .owl-nav {
  position: static;
  order: 2;
  margin: .65rem 0 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: .35rem;
}

.news-slider .owl-dots {
  order: 3;
  margin-top: .35rem;
}

/* News items — date + title only */
.news-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .85rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 58px;
  transition: .22s var(--ease);
}

.news-item:hover {
  background: var(--navy-soft);
  border-color: rgba(10, 42, 92, .15);
  transform: translateX(3px);
  color: var(--navy);
}

.news-item__date {
  flex-shrink: 0;
  width: 46px;
  text-align: center;
  border-radius: 10px;
  padding: .42rem .2rem;
  line-height: 1.1;
  background: var(--navy-soft);
  color: var(--navy);
  border: 1px solid rgba(10, 42, 92, .08);
}

.news-item__date strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.news-item__date em {
  font-style: normal;
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
}

.news-item__title {
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.news-item:hover .news-item__title {
  color: var(--navy-deep);
}

/* legacy news-card (inner pages) */
.news-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: .55rem;
  align-items: center;
  padding: .75rem .65rem;
  border-radius: 12px;
  background: var(--white);
  transition: .25s;
  min-height: 78px;
  border: 1px solid var(--line);
}

.news-card:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.news-card__date {
  border-radius: 10px;
  text-align: center;
  padding: .55rem .25rem;
  line-height: 1.1;
  background: var(--navy-soft);
  color: var(--navy);
}

.news-card--peach .news-card__date {
  background: var(--peach);
}

.news-card--mint .news-card__date {
  background: var(--mint);
}

.news-card--blush .news-card__date {
  background: var(--blush);
  color: #b42318;
}

.news-card--gold .news-card__date {
  background: var(--gold-soft);
}

.news-card__date strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.news-card__date span {
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}

.news-card h3 {
  font-size: .84rem;
  color: var(--navy);
  margin-bottom: .12rem;
  line-height: 1.25;
}

.news-card p {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.35;
}

.news-card .arr {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
}

.timings-card {
  margin-top: 1.5rem;
  max-width: 420px;
}

.info-triad {
  display: grid;
  grid-template-columns: 1fr 1.15fr .9fr;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}

.card__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .45rem;
}

.timing-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}

.timing-row:last-of-type {
  margin-bottom: 1rem;
}

.timing-row .ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.timing-row .meta {
  flex: 1;
}

.timing-row strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
}

.timing-row .time {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.bday-person {
  text-align: center;
  padding: .4rem 0 1rem;
}

.bday-person .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto .75rem;
  background: linear-gradient(145deg, var(--navy), #1a4a8a);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  position: relative;
}

.bday-person .avatar.avatar--user .bi {
  font-size: 2.55rem;
  line-height: 1;
  opacity: .9;
}

.bday-person .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bday-person .avatar::after {
  content: "🎂";
  position: absolute;
  top: -4px;
  right: -2px;
  font-size: 1rem;
}

.bday-person .wish {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .35rem;
}

.bday-person strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  font-family: var(--font-display);
}

.bday-person span {
  font-size: .78rem;
  color: var(--muted);
}

.quick-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 2px solid var(--gold);
  height: 100%;
}

.quick-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: .85rem;
}

.quick-card a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .88rem;
  color: rgba(255, 255, 255, .92);
}

.quick-card a:last-child {
  border-bottom: none;
}

.quick-card a:hover {
  color: var(--gold);
}

.quick-card .ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(232, 168, 32, .18);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.about-copy .eyebrow {
  margin-bottom: .35rem;
}

.about-lead {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: .85rem;
}

.about-copy h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin-top: .5rem;
  border-radius: 2px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: .8rem;
  font-size: .92rem;
}

.home-rich p,
.home-rich span,
.home-rich strong,
.home-rich em,
.home-rich li {
  color: inherit;
}

.about-rich {
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.65;
}

.about-rich p {
  margin-bottom: .75rem;
}

.about-rich p:last-child,
.home-rich p:last-child {
  margin-bottom: 0;
}

.home-rich img {
  max-width: 100%;
  height: auto;
}

.home-rich ul,
.home-rich ol {
  padding-left: 1.2rem;
  margin: .4rem 0 .8rem;
}

.about-pillars {
  list-style: none;
  display: grid;
  gap: .65rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.about-pillars li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem .85rem;
  background: var(--off);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.about-pillars__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.about-pillars strong {
  display: block;
  color: var(--navy);
  font-size: .88rem;
  margin-bottom: .08rem;
}

.about-pillars span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
}

.about-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-media__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 12px;
  padding: .65rem .85rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(7, 30, 68, .15);
}

.about-media__badge strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

.about-media__badge span {
  display: block;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: .15rem;
}

.values-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: .85rem;
}

.value-item {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}

.value-item:last-child {
  border-bottom: none;
}

.value-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .95rem;
}

.value-item strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: .1rem;
}

.value-item span {
  font-size: .78rem;
  color: var(--muted);
}

/* LEADERSHIP + TIMINGS */
.lead-split {
  align-items: stretch;
}

.lead-split>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.timings-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(232, 168, 32, .32);
  border-radius: var(--radius);
  padding: 1.15rem 1rem 1.25rem;
  position: sticky;
  top: 96px;
  align-self: start;
}

.section--dark .timings-panel .section-title--left {
  margin-bottom: 1rem;
}

.timing-cards {
  display: grid;
  gap: .65rem;
}

.timing-card {
  display: flex;
  gap: .7rem;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(232, 168, 32, .25);
  border-radius: 12px;
  padding: .75rem .8rem;
  transition: .22s;
}

.timing-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(232, 168, 32, .45);
}

.timing-card__ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(232, 168, 32, .18);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.timing-card__body strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  margin-bottom: .1rem;
}

.timing-card__body p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  margin: 0 0 .2rem;
}

.timing-card__time {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
}

.timings-panel .timing-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.timings-panel .timing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timings-panel .timing-row .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 168, 32, .16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.timings-panel .timing-row strong {
  display: block;
  font-size: .92rem;
  color: #fff;
  margin-bottom: .08rem;
}

.timings-panel .timing-row span.meta {
  font-size: .78rem;
  color: rgba(255, 255, 255, .62);
  display: block;
}

.timings-panel .timing-row .time {
  margin-left: auto;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 300px);
  gap: 1.35rem;
  align-items: start;
}

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

.section-title--left::after {
  margin-left: 0;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.35rem;
}

.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .3s var(--ease);
}

.lead-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(7, 30, 68, .12);
}

.lead-card__photo {
  aspect-ratio: 1/1.05;
  overflow: hidden;
  background: var(--off);
  position: relative;
}

.lead-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.lead-card:hover .lead-card__photo img {
  transform: scale(1.06);
}

.lead-badge {
  position: absolute;
  left: .7rem;
  bottom: .7rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.lead-card__body {
  padding: 1rem 1rem 1.25rem;
}

.lead-card__body .role {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .25rem;
  font-weight: 600;
}

.lead-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.lead-card__body p {
  font-size: .8rem;
  color: var(--muted);
}

.lead-card__more {
  margin-top: .65rem;
}

.profile-page {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.profile-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: sticky;
  top: 108px;
}

.profile-card__photo {
  aspect-ratio: 3 / 3.7;
  background: var(--navy-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.profile-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-card__photo span {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy);
  font-weight: 700;
}

.profile-card__meta {
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}

.profile-card__meta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

.profile-card__meta p {
  margin: .3rem 0 0;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profile-card__meta small {
  display: block;
  margin-top: .25rem;
  color: rgba(255, 255, 255, .7);
}

.profile-article {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.25rem) clamp(1.4rem, 3.2vw, 2.4rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.profile-article__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.profile-article__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: .15rem 0 .15rem 1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.profile-article .inner-content {
  max-width: none;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.profile-article .inner-content p,
.profile-article .inner-content span,
.profile-article .inner-content li {
  line-height: inherit;
}

.profile-article .inner-content p {
  margin-bottom: 1rem;
}

.profile-more {
  margin-top: 2.25rem;
}

.profile-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.profile-more__card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .75rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .7rem;
  box-shadow: var(--shadow);
}

.profile-more__card:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.profile-more__photo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-soft);
  display: grid;
  place-items: center;
}

.profile-more__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-more__card small {
  display: block;
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.profile-more__card strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
}

.bday-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1rem 1.25rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: sticky;
  top: 96px;
}

.bday-panel .owl-nav {
  margin-top: .35rem;
}

.bday-panel .owl-nav [class*="owl-"] {
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  font-size: 1rem !important;
}

/* VALUES NOTE + BIRTHDAY */
.values-bday-row {
  align-items: stretch;
}

.values-bday-row>[class*="col-"] {
  min-width: 0;
}

.values-note {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  border-radius: 18px;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(232, 168, 32, .35);
  box-shadow: var(--shadow);
  height: 100%;
}

.values-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.values-note__icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: .85;
  margin-bottom: .65rem;
  line-height: 1;
}

.values-note blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 .65rem;
  color: rgba(255, 255, 255, .95);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.values-note__attr {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}

.values-note .view-all {
  margin-top: .85rem;
  color: var(--gold);
  align-self: flex-start;
}

.values-note .view-all:hover {
  color: var(--gold-soft);
}

.values-note--slider {
  padding-right: 3.4rem;
}

.values-note .thought-slider {
  position: relative;
}

.values-note .thought-slider .owl-nav {
  position: absolute;
  right: -2.7rem;
  top: 42%;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.values-note .thought-slider .owl-nav [class*="owl-"] {
  width: 34px !important;
  height: 34px !important;
  line-height: 34px !important;
  background: rgba(255, 255, 255, .12) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(232, 168, 32, .45) !important;
}

.values-note .thought-slider .owl-nav [class*="owl-"]:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.bday-panel--featured {
  background: var(--white);
  border-radius: 18px;
  padding: .95rem .85rem 1rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  height: 100%;
  max-width: 100%;
}

.bday-panel--featured .card__head h3 {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
  font-size: 1rem;
}

.bday-panel--featured .card__head .bi {
  color: var(--gold-deep);
  font-size: 1rem;
}

.bday-panel--featured .bday-person .avatar {
  width: 72px;
  height: 72px;
  font-size: 1.45rem;
  margin-bottom: .55rem;
}

.bday-panel--featured .bday-person strong {
  font-size: .92rem;
}

.bday-panel--featured .bday-person span {
  font-size: .72rem;
}

.bday-slider-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.bday-slider {
  width: 100%;
}

.bday-slider .owl-stage-outer {
  overflow: hidden;
}

.bday-slider .item {
  width: 100%;
}

.bday-slider .bday-person {
  padding: .15rem 0 .35rem;
  width: 100%;
}

.bday-panel--featured .card__head {
  margin-bottom: .25rem;
}

.bday-panel--featured .bday-person .avatar::after {
  content: "\1F382";
  font-size: .85rem;
}

/* HOME MEDIA — albums + featured video */
.home-media,
.home-media--single {
  display: block;
}

.home-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-media--single .home-albums {
  max-width: 920px;
}

.home-media__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  min-height: 4.7rem;
  margin-bottom: .9rem;
}

.home-media__head .eyebrow {
  margin: 0 0 .3rem;
}

.home-media__head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.home-media__head .view-all {
  flex-shrink: 0;
  margin-top: 1.35rem;
}

.home-albums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-album {
  display: block;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.home-album:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(7, 30, 68, .14);
  color: inherit;
}

.home-album__media {
  position: relative;
  display: block;
  height: 248px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), #163a78);
}

.home-album__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.home-album:hover .home-album__media img {
  transform: scale(1.06);
}

.home-album__ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
}

.home-album__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1rem .95rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: linear-gradient(180deg, transparent, rgba(7, 22, 52, .92));
  color: #fff;
  z-index: 1;
}

.home-album__body strong {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.3;
}

.home-album__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .75rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
}

.home-album__meta .bi {
  color: var(--gold);
  margin-right: .2rem;
}

.home-media__video {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-video {
  display: block;
  width: 100%;
  flex: 1;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: left;
}

.home-video__thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 248px;
  background: var(--navy-deep);
  overflow: hidden;
}

.home-video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.home-video:hover img {
  transform: scale(1.05);
}

.home-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(7, 30, 68, .15), rgba(7, 30, 68, .55));
}

.home-video__play .bi {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  padding-left: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  transition: transform .25s var(--ease);
}

.home-video:hover .home-video__play .bi {
  transform: scale(1.08);
}

.home-video__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.2rem 1rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(7, 22, 52, .92));
  color: #fff;
  pointer-events: none;
}

.home-video__cap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
}

.home-albums-slider,
.home-videos-slider {
  position: relative;
}

.home-albums-slider .owl-stage-outer,
.home-videos-slider .owl-stage-outer {
  overflow: hidden;
}

.home-albums-slider .item,
.home-videos-slider .item,
.home-albums-slider .home-album,
.home-videos-slider .home-video {
  height: 100%;
}

.home-albums-slider.owl-carousel .owl-item img,
.home-videos-slider.owl-carousel .owl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-albums-slider .owl-nav,
.home-videos-slider .owl-nav {
  position: absolute;
  top: 42%;
  left: -6px;
  right: -6px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-albums-slider .owl-nav [class*="owl-"],
.home-videos-slider .owl-nav [class*="owl-"] {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  margin: 0;
  background: rgba(10, 42, 92, .88) !important;
  color: #fff !important;
  border-radius: 50%;
}

.yt-modal[hidden] {
  display: none !important;
}

.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.yt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 40, .78);
}

.yt-modal__box {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}

.yt-modal__close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.yt-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.yt-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.yt-modal-open {
  overflow: hidden;
}

/* GALLERY */
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.gallery-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.gallery-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.gallery-box--photo .gallery-box__head {
  background: linear-gradient(135deg, rgba(10, 42, 92, .06), rgba(232, 168, 32, .08));
}

.gallery-box--video .gallery-box__head {
  background: linear-gradient(135deg, rgba(232, 168, 32, .1), rgba(10, 42, 92, .06));
}

.gallery-box__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding: 1rem 1.15rem .85rem;
  border-bottom: 1px solid var(--line);
}

.gallery-box__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .65rem;
  min-height: 0;
  padding: .85rem 1.15rem 1.15rem;
  align-content: start;
}

.gallery-box__head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .45rem;
}

.gallery-box__head h3 .bi {
  color: var(--gold-deep);
  font-size: 1.05rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .55rem;
  margin-bottom: 1rem;
  min-height: 240px;
}

.photo-grid--sym {
  min-height: 0;
  margin-bottom: 0;
  height: auto;
}

.photo-grid--sym a {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
  box-shadow: 0 4px 14px rgba(7, 30, 68, .12);
}

.photo-grid--sym img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  transition: transform .45s var(--ease);
}

.photo-grid--sym a:first-child {
  grid-row: auto;
}

.photo-grid:not(.photo-grid--sym) a:first-child {
  grid-row: 1 / 3;
}

.photo-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: block;
  min-height: 110px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 110px;
  transition: transform .45s var(--ease);
}

.photo-grid a:hover img {
  transform: scale(1.05);
}

.photo-zoom {
  position: absolute;
  inset: auto .55rem .55rem auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s;
}

.photo-grid a:hover .photo-zoom {
  opacity: 1;
  transform: none;
}

.video-grid {
  height: auto;
}

.video-card {
  display: block;
  height: auto;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  box-shadow: 0 4px 14px rgba(7, 30, 68, .12);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.video-card:hover img {
  transform: scale(1.06);
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 30, 68, .42);
  color: #fff;
  font-size: 1.25rem;
  transition: background .25s;
}

.video-card:hover .play {
  background: rgba(7, 30, 68, .55);
}

.play::before {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .85);
  position: absolute;
  transition: transform .25s;
}

.video-card:hover .play::before {
  transform: scale(1.08);
}

.play .bi {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  margin-left: 2px;
}

.video-card h4 {
  display: none;
}

/* FACILITIES — homepage strip */
.facilities-home__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}

.facilities-home__head .view-all {
  flex-shrink: 0;
  margin-top: 1.85rem;
}

.section-intro {
  max-width: 46rem;
}

.section-intro .section-title {
  margin: 0;
}

.section-intro .section-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.section-intro .section-lead {
  margin: .75rem 0 0;
  max-width: 40rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--muted);
}

.facilities-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.facilities-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.facilities-slider {
  position: relative;
}

.facilities-slider .owl-stage-outer {
  overflow: hidden;
}

.facilities-slider.owl-carousel .owl-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilities-slider .owl-nav {
  position: absolute;
  top: 42%;
  left: -8px;
  right: -8px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.facilities-slider .owl-nav [class*="owl-"] {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  margin: 0;
  background: rgba(10, 42, 92, .88) !important;
  color: #fff !important;
  border-radius: 50%;
}

.facility-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(7, 30, 68, .16);
}

.facility-card__media {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}

.facility-card--page .facility-card__media {
  height: 260px;
}

.facility-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,.45);
  font-size: 2.4rem;
}

.facility-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.6rem 1rem .85rem;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 42, .92));
  color: #fff;
}

.facility-card__overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.facility-card__overlay p {
  margin: .28rem 0 0;
  font-size: .82rem;
  line-height: 1.4;
  color: rgba(255,255,255,.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* STAGES TIMELINE */
.stage-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.stage-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-soft), var(--gold), var(--navy-soft));
}

.stage-node {
  text-align: center;
  padding: 0 .75rem;
  position: relative;
  z-index: 1;
}

.stage-node__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.stage-node__icon svg {
  width: 40px;
  height: 40px;
}

.stage-node__step {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-deep);
  margin-bottom: .35rem;
}

.stage-node h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: .35rem;
  font-family: var(--font-display);
}

.stage-node p {
  font-size: 13px;
  margin: 0;
}

.stage-node:hover .stage-node__icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--gold);
}

/* TOPPERS */
.toppers-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.toppers-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.toppers-section-head,
.toppers-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.session-tag {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.toppers-view {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.btn--sm {
  padding: .55rem 1rem;
  font-size: .8rem;
}

.session-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.25rem;
}

.session-tab {
  padding: .45rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--off);
  border: 1px solid var(--line);
  transition: .2s;
}

.session-tab:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.session-tab.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.class-tabs {
  margin-bottom: .7rem;
}

.topper-empty {
  text-align: center;
  color: var(--muted);
  padding: 1.5rem 0;
  margin: 0;
}

.thought-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.thought-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 10px 28px rgba(7, 30, 68, .06);
}

.thought-card__icon {
  color: var(--gold);
  font-size: 1.4rem;
  display: block;
  margin-bottom: .45rem;
}

.thought-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: .7rem;
}

.thought-card blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
}

.thought-card__author {
  margin: .7rem 0 0;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: .86rem;
}

.resource-search {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.25rem;
}

.resource-search input {
  flex: 1 1 240px;
  min-height: 44px;
  border: 1px solid rgba(10, 42, 92, .16);
  border-radius: 10px;
  padding: .55rem .85rem;
}

@media (max-width: 767px) {
  .thought-grid {
    grid-template-columns: 1fr;
  }
}

.announce-list {
  display: grid;
  gap: 1.1rem;
}

.announce-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  background: #fff;
  border-radius: 16px;
  padding: 1.05rem 1.15rem 1.15rem;
  box-shadow: 0 10px 28px rgba(7, 30, 68, .06);
  border-top: 4px solid var(--gold);
}

.announce-card:has(.announce-card__media) {
  grid-template-columns: 72px 160px minmax(0, 1fr);
}

.announce-card__date {
  width: 72px;
  min-height: 72px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: .45rem .3rem;
}

.announce-card__date strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold);
}

.announce-card__date em {
  display: block;
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.announce-card__media img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.announce-card__body h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.12rem;
  margin: 0 0 .3rem;
}

.announce-card__meta {
  color: var(--gold-deep);
  font-size: .78rem;
  font-weight: 700;
  margin: 0 0 .45rem;
}

.announce-card__body p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 .7rem;
}

.announce-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.announce-modal .modal-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}

.announce-modal .inner-content {
  max-width: none;
  margin: 0;
}

.cms-layout {
  display: block;
}

.cms-layout--nav {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.cms-nav {
  background: #fff;
  border-radius: 16px;
  padding: 1rem .85rem;
  box-shadow: 0 10px 28px rgba(7, 30, 68, .06);
  border-top: 4px solid var(--gold);
  position: sticky;
  top: 1rem;
}

.cms-nav__label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin: 0 .4rem .65rem;
}

.cms-nav a {
  display: block;
  padding: .55rem .7rem;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: .92rem;
}

.cms-nav a:hover,
.cms-nav a.is-active {
  background: var(--navy);
  color: #fff;
}

.cms-article {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 10px 28px rgba(7, 30, 68, .06);
}

.cms-article .inner-content {
  max-width: none;
  margin: 0;
}

.cms-article .inner-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: .75rem 0;
}

.cms-article .inner-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cms-article .inner-content table th,
.cms-article .inner-content table td {
  border: 1px solid var(--line);
  padding: .55rem .7rem;
  text-align: left;
}

.cms-related {
  margin-top: 2.25rem;
}

@media (max-width: 900px) {

  .announce-card,
  .announce-card:has(.announce-card__media) {
    grid-template-columns: 1fr;
  }

  .announce-card__media img {
    width: 100%;
    height: 180px;
  }

  .cms-layout--nav {
    grid-template-columns: 1fr;
  }

  .cms-nav {
    position: static;
  }
}

.topper-session {
  display: none;
}

.topper-session.is-active {
  display: block;
}

.topper-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.topper-list .topper-empty {
  grid-column: 1 / -1;
}

.toppers-block+.toppers-block {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.toppers-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  gap: 1rem;
}

.toppers-head h3 {
  font-size: 1.05rem;
  color: var(--navy);
}

.topper-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem;
}

.topper-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.toppers-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.toppers-col {
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.toppers-col:first-child {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.toppers-col--x,
.toppers-col--xii {
  border-left: none;
}

#toppers .toppers-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.toppers-head h3 span {
  color: var(--gold-deep);
  font-weight: 500;
  font-size: .85rem;
}

.topper-scroll {
  margin-top: .25rem;
  width: 100% !important;
  max-width: 100%;
}

.topper-scroll.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.topper-scroll .owl-stage-outer {
  padding: .35rem 0 .15rem;
}

.toppers-col--xii .topper-scroll .owl-stage-outer {
  padding-top: .85rem;
}

.toppers-soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 168px;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(10, 42, 92, .06), rgba(232, 168, 32, .1));
  border: 1px dashed rgba(10, 42, 92, .18);
}

.toppers-soon .bi {
  font-size: 1.35rem;
  color: var(--gold-deep);
  margin-bottom: .45rem;
}

.toppers-soon strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
}

.toppers-soon p {
  margin: .2rem 0 0;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .toppers-split {
    gap: .65rem;
  }

  .toppers-col:first-child {
    padding-right: .45rem;
  }

  .toppers-head h3 {
    font-size: .88rem;
  }

  .topper-avatar {
    width: 62px;
    height: 62px;
    font-size: 1.25rem;
  }

  .topper-card {
    padding: 1rem .45rem .75rem;
  }
}

.topper-card {
  text-align: center;
  position: relative;
  padding: 1rem .65rem .85rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(7, 30, 68, .06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.topper-card--stream {
  padding-top: 1.15rem;
}

.topper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(7, 30, 68, .12);
  border-color: rgba(232, 168, 32, .45);
}

#toppers .topper-medal {
  display: none;
}

.topper-medal {
  position: absolute;
  top: .55rem;
  left: calc(50% - 44px);
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--off);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(7, 30, 68, .15);
  border: 2px solid #fff;
}

.topper-medal--1 {
  background: linear-gradient(145deg, #ffd86b, var(--gold));
  color: var(--navy-deep);
}

.topper-medal--2 {
  background: linear-gradient(145deg, #e8edf5, #b8c4d8);
  color: var(--navy);
}

.topper-medal--3 {
  background: linear-gradient(145deg, #f0c89a, #c8844a);
  color: #fff;
}

.topper-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto .55rem;
  background: linear-gradient(145deg, var(--navy), #1a4a8a);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}

.topper-tag {
  display: none;
}

.topper-stream {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: var(--radius-pill);
  margin: 0;
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(7, 30, 68, .12);
  white-space: nowrap;
}

.topper-card h4 {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .2rem;
  line-height: 1.3;
}

.topper-card .pct {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-display);
}

/* EVENTS */
.events-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.events-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
}

.events-head h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin-top: .45rem;
  border-radius: 2px;
}

.event-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 280px;
  display: block;
}

.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.event-tile:hover img {
  transform: scale(1.08);
}

.event-tile__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.15rem 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(7, 30, 68, .92));
  color: #fff;
  transform: translateY(8px);
  transition: .35s var(--ease);
}

.event-tile:hover .event-tile__cap {
  transform: none;
}

.event-tile__cap span {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: .3rem;
}

.event-tile__cap h3 {
  font-size: 1.05rem;
  margin-bottom: .25rem;
  font-family: var(--font-display);
}

.event-tile__cap p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .78);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.event-tile:hover .event-tile__cap p {
  max-height: 4rem;
}

/* ADMISSIONS */
.admit-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 1.75rem 2rem;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.admit-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 14px 36px rgba(7, 30, 68, .18);
  border: 1px solid rgba(232, 168, 32, .28);
  border-top: 3px solid var(--gold);
}

.admit-strip__content {
  flex: 1;
  min-width: min(100%, 280px);
}

.admit-strip__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
}

.admit-strip__content h2 .bi {
  color: var(--gold);
  font-size: 1.1rem;
}

.admit-strip__content p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
  font-size: .88rem;
  max-width: 42rem;
}

.admit-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  flex-shrink: 0;
}

.admit-strip__actions .btn {
  white-space: nowrap;
}

.btn--outline-dark {
  border: 1.5px solid rgba(255, 255, 255, .75);
  color: var(--white);
  background: transparent;
}

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

.admit-banner h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: .55rem;
}

.admit-banner p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 1rem;
  max-width: 36rem;
  margin-inline: auto;
}

.admit-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}

.admit-side {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(232, 168, 32, .45);
  border-radius: 12px;
  padding: 1.15rem;
}

.admit-side strong {
  color: var(--gold);
  display: block;
  margin-bottom: .55rem;
}

/* Generic inner page — keep editor colors/spacing unless inline styles exist */
.inner-content {
  max-width: 820px;
  margin-inline: auto;
}

.inner-content.editor-html,
.cms-article .inner-content {
  color: var(--text);
  line-height: 1.7;
  word-wrap: break-word;
}

.inner-content h1,
.inner-content h2,
.inner-content h3,
.inner-content h4,
.inner-content h5,
.inner-content h6 {
  margin: 1em 0 .5em;
  line-height: 1.3;
  font-size: 21px;
}

.inner-content h1:first-child,
.inner-content h2:first-child,
.inner-content h3:first-child {
  margin-top: 0;
}

.inner-content p {
  margin: 0 0 1em;
  font-size: 14px;
}

.inner-content p:last-child {
  margin-bottom: 0;
}

.inner-content ul,
.inner-content ol {
  padding-left: 1.25rem;
  margin: 0 0 1em;
}

.inner-content li {
  margin-bottom: .35rem;
}

.inner-content a {
  font-weight: inherit;
}

.inner-content img {
  max-width: 100%;
  height: auto;
}

.inner-content iframe,
.inner-content video {
  max-width: 100%;
}

/* Mandatory Public Disclosure */
.disclosure-page {
  background: linear-gradient(180deg, #f4f7fb 0%, var(--off, #f7f4ee) 100%);
}

.disclosure-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .8fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.disclosure-intro__card,
.disclosure-intro__note {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(10, 42, 92, .08);
  box-shadow: 0 10px 28px rgba(7, 30, 68, .06);
}

.disclosure-intro__card {
  padding: 1.4rem 1.5rem 1.3rem;
  border-top: 4px solid var(--gold);
}

.disclosure-intro__card h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin: 0 0 .45rem;
}

.disclosure-intro__card p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.disclosure-intro__note {
  padding: 1.25rem 1.3rem;
  background: var(--navy);
  color: #fff;
  border: 0;
}

.disclosure-intro__note span {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .4rem;
}

.disclosure-intro__note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.disclosure-intro__note p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
}

.disclosure-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.disclosure-nav a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(10, 42, 92, .12);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
}

.disclosure-nav a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.disclosure-section {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(10, 42, 92, .08);
  box-shadow: 0 10px 28px rgba(7, 30, 68, .05);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.disclosure-section__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.disclosure-section__index {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.disclosure-section__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: #fff;
}

.disclosure-section__head small {
  display: block;
  color: var(--gold-soft);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.disclosure-table {
  width: 100%;
  border-collapse: collapse;
}

.disclosure-table th,
.disclosure-table td {
  padding: .85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(10, 42, 92, .08);
  vertical-align: middle;
}

.disclosure-table thead th {
  background: var(--navy-soft);
  color: var(--navy);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.disclosure-table tbody tr:nth-child(even) {
  background: #fbf8f1;
}

.disclosure-table tbody tr:hover {
  background: var(--gold-soft);
}

.disclosure-table td:first-child {
  width: 70px;
  color: var(--gold-deep);
  font-weight: 800;
}

.disclosure-table td:nth-child(2) {
  color: var(--navy);
  font-weight: 700;
  width: 38%;
}

.disclosure-table td:last-child {
  color: var(--muted);
}

.disclosure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .35rem;
}

.disclosure-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .32rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy-deep);
}

.disclosure-btn:hover {
  background: var(--gold-deep);
  color: var(--navy-deep);
}

.disclosure-btn--ghost {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.disclosure-btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

.disclosure-empty {
  padding: 2rem 1.2rem;
  text-align: center;
  color: var(--muted);
}

.disclosure-empty i {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

/* ACADEMIC CALENDAR */
.acal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.15rem;
  margin: 0 0 1.35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.acal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: .35rem;
  vertical-align: middle;
}

.acal-dot--today {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--navy);
}

.acal-dot--holiday {
  background: #c45c26;
}

.acal-dot--vacation {
  background: #1f7a5c;
}

.acal-dot--exam {
  background: #5b4bb3;
}

.acal-dot--sun {
  background: #b42318;
}

.acal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.acal-month {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem .8rem 1rem;
  box-shadow: var(--shadow);
}

.acal-month h3 {
  margin: 0 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  text-align: center;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--gold);
}

.acal-week,
.acal-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.acal-week span {
  text-align: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .2rem 0 .45rem;
}

.acal-day,
.acal-empty {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 8px;
  color: var(--navy);
}

.acal-day.is-sunday {
  color: #b42318;
  background: rgba(180, 35, 24, .08);
}

.acal-day.is-holiday {
  background: rgba(196, 92, 38, .18);
  color: #8a3a14;
}

.acal-day.is-vacation {
  background: rgba(31, 122, 92, .18);
  color: #145c44;
}

.acal-day.is-exam {
  background: rgba(91, 75, 179, .18);
  color: #3d3280;
}

.acal-day.is-today {
  box-shadow: inset 0 0 0 2px var(--navy);
  background: var(--gold);
  color: var(--navy-deep);
}

.acal-list {
  margin-top: 2rem;
}

/* STAFF */
.staff-block {
  margin-bottom: 2rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.staff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  padding-bottom: 1.1rem;
}

.staff-card__photo {
  aspect-ratio: 1 / 1.05;
  background: var(--navy-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__photo span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}

.staff-card h3 {
  margin: .9rem .7rem .2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.staff-card__role {
  margin: 0 .7rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.staff-card__meta {
  margin: .25rem .7rem 0;
  font-size: .8rem;
  color: var(--muted);
}

.class-block {
  margin-bottom: 1.75rem;
}

.class-filter {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .disclosure-intro {
    grid-template-columns: 1fr;
  }

  .disclosure-table thead {
    display: none;
  }

  .disclosure-table,
  .disclosure-table tbody,
  .disclosure-table tr,
  .disclosure-table td {
    display: block;
    width: 100%;
  }

  .disclosure-table tr {
    padding: .75rem 1rem 1rem;
    border-bottom: 1px solid rgba(10, 42, 92, .08);
  }

  .disclosure-table td {
    padding: .2rem 0;
    border: 0;
    width: auto !important;
  }

  .disclosure-table td:first-child::before {
    content: "SL ";
    color: var(--muted);
    font-weight: 600;
  }
}

/* FOOTER */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .78);
  padding-top: 3rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.05fr;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  gap: .7rem;
  align-items: center;
  margin-bottom: .75rem;
}

.footer-brand__logo {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
}

.footer-brand__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
}

.footer-brand span {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: .75rem;
  font-size: .92rem;
}

.footer-col a {
  display: block;
  padding: .28rem 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

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

.footer-contact p {
  margin-bottom: .55rem;
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}

.footer-contact p a {
  display: inline-flex;
  align-items: flex-start;
  gap: .45rem;
  color: rgba(255, 255, 255, .88);
}

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

.footer-contact .bi {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer-about {
  margin: 0;
  max-width: 22rem;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-social__icons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-social__icons a {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 1rem;
}

.footer-social__icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.footer-app {
  text-align: center;
  padding: 1.75rem 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-app__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .02em;
}

.footer-app__stores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: transform .2s, background .2s, border-color .2s;
  min-width: 168px;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: var(--gold);
  color: #fff;
}

.store-badge .bi {
  font-size: 1.65rem;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}

.store-badge small {
  font-size: .58rem;
  letter-spacing: .04em;
  opacity: .85;
}

.store-badge strong {
  font-size: .92rem;
  font-weight: 700;
}

.store-badge--play .bi {
  color: #34a853;
}

.store-badge--apple .bi {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .5rem;
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, .55);
}

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

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.back-top .bi {
  font-size: 1.1rem;
  line-height: 1;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* INNER PAGES */
.page-hero {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(5, 21, 51, .92) 0%, rgba(7, 30, 68, .88) 45%, rgba(10, 42, 92, .72) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 1rem 3rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: .35rem 0 .6rem;
  font-weight: 700;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero p {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero .eyebrow {
  color: var(--gold-soft);
}

.page-hero--compact .page-hero__content {
  padding: 2.15rem 0 1.7rem;
  text-align: left;
}

.page-hero--compact .crumb {
  justify-content: flex-start;
}

.page-hero--compact h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  margin-bottom: .25rem;
}

.page-hero--compact .page-hero__content>p:not(.crumb):not(.eyebrow):not(.page-hero__role) {
  margin-left: 0;
}

.page-hero__role {
  display: inline-block;
  margin-top: .35rem !important;
  padding: .28rem .85rem;
  border-radius: 999px;
  background: rgba(232, 168, 32, .18);
  color: var(--gold) !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section--light .eyebrow,
.section--off .eyebrow {
  color: var(--gold-deep);
}

.crumb {
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .4rem;
}

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

.section--alt {
  background: var(--white);
}

.section--sage {
  background: var(--off);
}

.album-grid,
.event-grid,
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.album-card,
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  transition: .25s var(--ease);
}

.album-card:hover,
.event-card:hover {
  transform: translateY(-4px);
}

.album-card img,
.event-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.album-card__body,
.event-card__body {
  padding: 1rem 1.05rem 1.15rem;
}

.album-card h3,
.event-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: .3rem;
}

.album-card p,
.event-card p {
  font-size: .86rem;
  color: var(--muted);
}

.album-meta,
.event-meta {
  display: flex;
  gap: .7rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.notice-list {
  display: grid;
  gap: .75rem;
}

.notice-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  transition: .22s;
}

.notice-item:hover {
  transform: translateX(4px);
}

.notice-item h3 {
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: .2rem;
}

.notice-item p {
  font-size: .86rem;
  color: var(--muted);
}

.notice-tag {
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy-deep);
  white-space: nowrap;
}

.photos-all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
}

.photos-all a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.photos-all img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s var(--ease);
}

.photos-all a:hover img {
  transform: scale(1.06);
}

.video-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.video-page .video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-page .video-card h4 {
  padding: .9rem 1rem 1.05rem;
  color: var(--navy);
}

.event-detail {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1.5rem;
  align-items: start;
}

.event-detail__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.event-detail__media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.event-detail__copy {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.event-detail__copy h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.7rem;
  margin: .4rem 0 .7rem;
}

.event-detail__copy p {
  margin-bottom: .75rem;
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.staff-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
}

.staff-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .35rem;
}

.staff-cta p {
  color: rgba(255, 255, 255, .78);
}

.lead-card__role {
  color: var(--gold-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.stage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.stage-card__label {
  color: var(--gold-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.stage-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: .4rem;
}

.stage-card ul {
  margin-top: .7rem;
}

.stage-card li {
  font-size: .86rem;
  color: var(--muted);
  padding: .2rem 0 .2rem 1rem;
  position: relative;
}

.stage-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.approach-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.4rem;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.approach-panel__copy {
  padding: 1.6rem;
}

.approach-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: .4rem 0 .7rem;
}

.approach-list {
  margin-top: .8rem;
}

.approach-list li {
  padding: .3rem 0;
  color: rgba(255, 255, 255, .85);
}

.approach-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

.contact-block {
  background: var(--white);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.contact-block .label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-block h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: .3rem 0 .45rem;
}

.contact-block .more {
  color: var(--navy);
  font-weight: 700;
  font-size: .86rem;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.4rem 0;
}

.contact-chips span {
  background: var(--navy-soft);
  color: var(--navy);
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .86rem;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.admit-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1.2rem;
  background: var(--white);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.enquiry-form {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.enquiry-form label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  display: grid;
  gap: .3rem;
}

.enquiry-form input,
.enquiry-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem .8rem;
  font-family: inherit;
}

.admit-aside {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 1.2rem;
}

.admit-aside h3 {
  font-family: var(--font-display);
  margin-bottom: .4rem;
}

.admit-contact {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
}

.admit-contact a {
  color: #fff;
}

.admit-contact strong {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn--red {
  background: #b42318;
  color: #fff;
}

.section-lead {
  color: var(--muted);
  margin-bottom: .4rem;
  line-height: 1.65;
}

.facility-card,
#calendar,
#facilities,
#leadership {
  scroll-margin-top: 96px;
}

@media (max-width: 700px) {
  .notice-item {
    grid-template-columns: 58px 1fr;
  }

  .notice-tag {
    grid-column: 2;
    justify-self: start;
  }
}

.owl-theme .owl-nav [class*=owl-] {
  background: var(--navy) !important;
  color: #fff !important;
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  line-height: 38px !important;
  margin: 0 3px !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.owl-theme .owl-nav [class*=owl-] .bi {
  font-size: 1rem;
  line-height: 1;
}

.owl-theme .owl-dots,
.owl-dots {
  display: none !important;
}

@media (max-width: 1050px) {

  .hero-slide,
  .about-grid,
  .info-triad,
  .info-duo,
  .gallery-split,
  .home-media,
  .home-albums,
  .footer-grid,
  .stages-row,
  .topper-row,
  .admit-banner,
  .toppers-split,
  .lead-layout,
  .page-grid,
  .album-grid,
  .facility-grid,
  .event-grid,
  .photos-all,
  .video-page,
  .event-detail,
  .approach-panel,
  .admit-panel,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stage-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
  }

  .stage-timeline::before {
    display: none;
  }

  .facilities-home-grid,
  .facilities-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topper-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .topper-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-access {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-follow__strip .row {
    --bs-gutter-x: .85rem;
  }

  .hero-copy--simple {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .hero-slide__inner {
    padding-bottom: clamp(11rem, 22vw, 13rem);
  }

  .hero-dock__grid {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .hero-slider .item,
  .hero-slide {
    min-height: 100svh;
    height: 100svh;
  }

  .news-panel--hero {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }

  .news-vscroll {
    height: 132px;
  }

  .hero .owl-dots {
    left: 50%;
    bottom: clamp(10rem, 20vw, 12rem);
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .topbar__contact-text {
    display: none;
  }

  .topbar__left {
    gap: .4rem;
  }

  .topbar__marquee {
    grid-column: 2;
  }

  .topbar__right {
    grid-column: 3;
  }

  .nav-toggle {
    display: flex;
  }

  .header__inner {
    position: static;
  }

  .site-header {
    position: relative;
  }

  .page-home .site-top:not(.is-scrolled) .site-header {
    background: rgba(7, 30, 68, 0.45);
    backdrop-filter: blur(6px);
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--navy-deep);
    border-top: 2px solid var(--gold);
    box-shadow: 0 16px 36px rgba(7, 30, 68, .35);
    z-index: 50;
  }

  .navbar-collapse .nav {
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    width: 100%;
  }

  .header-portals {
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0 .75rem .85rem;
    gap: .4rem;
  }

  .header-portals .portal-btn {
    justify-content: center;
    text-align: center;
  }

  .portal-btn__full {
    display: none;
  }

  .portal-btn__short {
    display: inline;
  }

  .nav>a,
  .nav-item>a {
    width: 100%;
    color: rgba(255, 255, 255, .92) !important;
  }

  .nav>a.is-active,
  .nav-item>a.is-active {
    background: var(--gold);
    color: var(--navy-deep) !important;
  }

  .nav-item:hover .submenu {
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: none;
  }

  .submenu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-top: none;
    background: transparent;
    padding: .15rem 0 .35rem .75rem;
    transform: none;
  }

  .submenu a {
    color: rgba(255, 255, 255, .82) !important;
    padding: .45rem .7rem;
  }

  .submenu a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--gold) !important;
  }

  .nav-item.is-open .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hero-slider .item,
  .hero-slide {
    min-height: 100svh;
    height: 100svh;
    max-height: none;
  }

  .quick-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values-bday-row .col-lg-3 {
    margin-top: 0;
  }

  .lead-layout {
    grid-template-columns: 1fr;
  }

  .timings-panel {
    position: static;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .admit-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .admit-strip__actions {
    width: 100%;
  }

  .admit-strip__actions .btn {
    flex: 1;
    justify-content: center;
    min-width: calc(50% - .3rem);
  }

  .about-grid,
  .gallery-split,
  .home-media,
  .home-albums,
  .home-videos-grid,
  .lead-grid,
  .info-triad,
  .info-duo,
  .footer-grid,
  .admit-banner,
  .lead-layout,
  .page-grid,
  .album-grid,
  .facility-grid,
  .event-grid,
  .photos-all,
  .video-page,
  .event-detail,
  .approach-panel,
  .admit-panel,
  .contact-grid,
  .stage-grid,
  .acal-grid,
  .staff-grid,
  .profile-page,
  .profile-more__grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  .why-grid,
  .stage-grid,
  .contact-grid,
  .acal-grid,
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .enquiry-form__row {
    grid-template-columns: 1fr;
  }

  .photos-all {
    grid-template-columns: 1fr 1fr;
  }

  .facilities-home-grid,
  .facilities-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
  }

  .facility-card__media,
  .facility-card--page .facility-card__media {
    height: 200px;
  }

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

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

  .news-panel__head {
    flex-wrap: wrap;
    row-gap: .4rem;
  }
}

@media (max-width: 640px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .facilities-home-grid,
  .facilities-page-grid {
    grid-template-columns: 1fr;
  }

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

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

  .profile-more__grid {
    grid-template-columns: 1fr;
  }

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

  .quick-row .quick-btn {
    min-height: 70px;
  }

  .admit-strip__actions {
    flex-direction: column;
  }

  .admit-strip__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .stages-row,
  .topper-row,
  .topper-row--3,
  .bday-grid,
  .video-grid,
  .stage-timeline,
  .album-grid,
  .facility-grid,
  .event-grid,
  .photos-all,
  .video-page {
    grid-template-columns: 1fr 1fr;
  }

  .video-item {
    grid-template-columns: 1fr;
  }
}