:root {
    --maroon-950: #2d0812;
    --maroon-900: #42101d;
    --maroon-800: #5b1023;
    --maroon-700: #741b32;
    --maroon-100: #f4e8eb;
    --gold: #d9a441;
    --gold-light: #f2d48c;
    --charcoal: #171719;
    --body-text: #3d3b3c;
    --muted: #6f6b6d;
    --surface: #ffffff;
    --surface-soft: #f7f6f4;
    --line: #e7e2df;
    --navy: var(--maroon-800);
    --navy-2: var(--maroon-700);
    --orange: var(--gold);
    --ink: var(--charcoal);
    --soft: var(--surface-soft);
    --radius: 8px;
    --shadow: 0 18px 50px rgba(45, 8, 18, .12);
}

html {
    scroll-behavior: smooth;
}

body.public-site {
    color: var(--body-text);
    background: var(--surface);
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

.public-site h1,
.public-site h2,
.public-site h3,
.public-site h4,
.public-site h5,
.public-site h6,
.public-site .navbar-brand strong {
    color: var(--charcoal);
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.public-site a,
.public-site button,
.public-site .card-clean {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}

.public-site .container {
    max-width: 1320px;
}

.section-padding {
    padding: 96px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--maroon-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.section-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
}

.hero .section-kicker,
.pmb-cta .section-kicker {
    color: var(--gold-light);
}

.section-title {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-title h2 {
    margin-top: 12px;
    color: var(--charcoal);
    font-size: 42px;
    line-height: 1.18;
}

.section-title p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 42px;
    margin-bottom: 40px;
}

.section-heading-row > p {
    width: min(100%, 500px);
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--maroon-800);
    font-weight: 800;
}

.text-link:hover {
    gap: 14px;
    color: var(--maroon-700);
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.btn-lg {
    min-height: 56px;
    padding: 15px 24px;
    font-size: 15px;
}

.btn-primary {
    --bs-btn-bg: var(--maroon-800);
    --bs-btn-border-color: var(--maroon-800);
    --bs-btn-hover-bg: var(--maroon-700);
    --bs-btn-hover-border-color: var(--maroon-700);
    --bs-btn-active-bg: var(--maroon-900);
    --bs-btn-active-border-color: var(--maroon-900);
}

.btn-outline-primary {
    --bs-btn-color: var(--maroon-800);
    --bs-btn-border-color: rgba(91, 16, 35, .35);
    --bs-btn-hover-bg: var(--maroon-800);
    --bs-btn-hover-border-color: var(--maroon-800);
}

.btn-gold {
    color: var(--maroon-950);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(217, 164, 65, .2);
}

.btn-gold:hover {
    color: var(--maroon-950);
    background: #e6b54f;
    border-color: #e6b54f;
    transform: translateY(-2px);
}

/* Header */
.topbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 6px 0;
    color: rgba(255, 255, 255, .82);
    background: var(--maroon-950);
    border-bottom: 1px solid rgba(217, 164, 65, .32);
}

.topbar-contact,
.topbar-links {
    gap: 18px;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 600;
}

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

.topbar-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold-light) !important;
}

.topbar-links a + a {
    position: relative;
}

.topbar-links a + a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .2);
    transform: translateY(-50%);
}

.main-navbar {
    min-height: 92px;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(91, 16, 35, .08);
    box-shadow: 0 10px 35px rgba(45, 8, 18, .06);
}

.main-navbar.is-scrolled {
    min-height: 76px;
    box-shadow: 0 14px 38px rgba(45, 8, 18, .12);
}

.navbar-brand {
    gap: 12px;
    margin-right: 24px;
    color: var(--maroon-800);
}

.navbar-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.navbar-brand strong {
    color: var(--maroon-800);
    font-size: 19px;
    line-height: 1.12;
}

.navbar-brand small {
    margin-top: 3px;
    color: #777173;
    font-size: 13px;
}

.main-navbar .nav-link {
    padding: 34px 10px 31px;
    color: #292527;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.main-navbar .nav-link::after {
    left: 10px;
    right: 10px;
    bottom: 21px;
    height: 2px;
    background: var(--gold);
}

.main-navbar .nav-link.active,
.main-navbar .nav-link:hover {
    color: var(--maroon-800);
}

.header-pmb-button {
    min-width: 142px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-left: 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--maroon-800);
    font-size: 13px;
    font-weight: 800;
}

.header-pmb-button:hover {
    color: #fff;
    background: var(--maroon-700);
    transform: translateY(-2px);
}

.navbar-toggler {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--maroon-800);
    font-size: 25px;
}

.public-dropdown {
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 22px 52px rgba(45, 8, 18, .14);
}

.public-dropdown .dropdown-item {
    border-radius: 5px;
    color: #474143;
    font-size: 14px;
    padding: 11px 14px;
}

.public-dropdown .dropdown-item:hover,
.public-dropdown .dropdown-item:focus {
    color: var(--maroon-800);
    background: var(--maroon-100);
}

.dropdown-submenu .submenu {
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 8px 8px 0;
}

/* Hero */
.hero-modern,
.hero-modern .hero-slide {
    min-height: 690px;
}

.hero-modern {
    background: var(--maroon-950);
}

.hero-modern .hero-slide {
    background-position: center;
}

.hero-modern .hero-slide::before {
    background:
        linear-gradient(90deg, rgba(45, 8, 18, .96) 0%, rgba(66, 16, 29, .88) 42%, rgba(66, 16, 29, .28) 75%, rgba(23, 23, 25, .15) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(45, 8, 18, .38));
}

.hero-modern .hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0 24%, rgba(217, 164, 65, .22) 24% 100%);
}

.hero-layout {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 770px;
    padding: 96px 0 112px;
}

.hero-status {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 5px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
}

.hero-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(217, 164, 65, .14);
}

.hero-modern h1 {
    max-width: 760px;
    margin: 14px 0 22px;
    color: #fff;
    font-size: min(var(--hero-title-size, 64px), 64px);
    line-height: 1.08;
}

.hero-modern p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: min(var(--hero-desc-size, 19px), 19px);
    line-height: 1.75;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 52px;
}

.hero-proof > div {
    min-width: 170px;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.hero-proof > div:first-child {
    padding-left: 0;
    border-left: 0;
}

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

.hero-proof strong {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
}

.hero-proof span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.hero-controls {
    position: absolute;
    right: max(28px, calc((100vw - 1320px) / 2));
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    background: rgba(45, 8, 18, .42);
}

.hero-controls button:hover {
    color: var(--maroon-950);
    background: var(--gold);
    border-color: var(--gold);
}

.hero-controls span {
    min-width: 58px;
    font-size: 12px;
    text-align: center;
}

.hero-controls b {
    color: var(--gold-light);
}

/* Quick access */
.home-quick-access {
    position: relative;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

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

.quick-access-grid > a {
    min-height: 112px;
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-right: 1px solid var(--line);
    color: var(--body-text);
}

.quick-access-grid > a:first-child {
    border-left: 1px solid var(--line);
}

.quick-access-grid > a:hover {
    color: var(--body-text);
    background: var(--maroon-100);
}

.quick-access-grid > a > i:first-child {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--maroon-800);
    background: #fff;
    border: 1px solid #ead7dc;
    font-size: 19px;
}

.quick-access-grid span,
.quick-access-grid small,
.quick-access-grid strong {
    display: block;
}

.quick-access-grid small {
    color: var(--muted);
    font-size: 11px;
}

.quick-access-grid strong {
    margin-top: 3px;
    color: var(--charcoal);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
}

.quick-access-grid > a > i:last-child {
    color: var(--gold);
}

/* PMB */
.home-pmb-section {
    background: var(--surface-soft);
}

.pmb-highlight-grid {
    gap: 16px;
    margin-bottom: 72px;
}

.pmb-highlight-card {
    min-height: 124px;
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    align-items: center;
    gap: 16px;
    padding: 24px;
    color: var(--body-text);
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(45, 8, 18, .05);
}

.pmb-highlight-card::before {
    display: none;
}

.pmb-highlight-card:hover {
    color: var(--body-text);
    background: #fff;
    border-color: rgba(91, 16, 35, .26);
    box-shadow: 0 18px 42px rgba(45, 8, 18, .1);
    transform: translateY(-4px);
}

.pmb-highlight-card > i:first-child {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--maroon-800);
    background: var(--maroon-100);
    font-size: 22px;
}

.pmb-highlight-card > i:last-child {
    color: var(--gold);
}

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

.pmb-highlight-card small {
    color: var(--maroon-700);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.pmb-highlight-card strong {
    margin-top: 5px;
    color: var(--charcoal);
    font-size: 17px;
}

.pmb-home-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
    gap: 72px;
}

.pmb-home-copy h2 {
    max-width: 700px;
    margin: 14px 0 22px;
    color: var(--charcoal);
    font-size: 46px;
    line-height: 1.14;
}

.pmb-home-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 17px;
}

.pmb-step-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 32px;
}

.pmb-step-list span {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4f494b;
    font-weight: 600;
}

.pmb-step-list b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--maroon-800);
    background: #fff;
    border: 1px solid #e6d5da;
    font-size: 11px;
}

.pmb-home-visual {
    border-radius: 8px;
    box-shadow: 18px 18px 0 var(--maroon-100), 0 24px 60px rgba(45, 8, 18, .14);
}

.pmb-home-visual img {
    height: 480px;
}

.pmb-home-visual .carousel-item::after {
    background: linear-gradient(180deg, rgba(45, 8, 18, .02), rgba(45, 8, 18, .8));
}

/* News */
.home-news-section {
    background: #fff;
}

.news-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(380px, .78fr);
    gap: 42px;
}

.featured-news {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, .9fr);
    min-height: 430px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-soft);
}

.featured-news-media {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.featured-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news:hover .featured-news-media img {
    transform: scale(1.035);
}

.featured-news-media span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 7px 10px;
    border-radius: 4px;
    color: var(--maroon-950);
    background: var(--gold);
    font-size: 11px;
    font-weight: 800;
}

.featured-news-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.featured-news-body h3 {
    margin: 14px 0;
    font-size: 27px;
    line-height: 1.3;
}

.featured-news-body h3 a {
    color: var(--charcoal);
}

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

.news-list {
    display: grid;
    align-content: start;
    gap: 0;
}

.news-list-item {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.news-list-item:first-child {
    padding-top: 0;
}

.news-list-item img {
    width: 118px;
    height: 90px;
    border-radius: 6px;
    object-fit: cover;
}

.news-list-item h3 {
    margin: 6px 0 7px;
    font-size: 15px;
    line-height: 1.45;
}

.news-list-item h3 a {
    color: var(--charcoal);
}

.news-list-item span {
    color: var(--maroon-700);
    font-size: 11px;
    font-weight: 700;
}

.meta {
    color: #8a8285;
    font-size: 11px;
    font-weight: 600;
}

.empty-content {
    min-height: 220px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 1px dashed #d9cccf;
    color: var(--muted);
    background: var(--surface-soft);
}

.empty-content i {
    color: var(--gold);
    font-size: 32px;
}

/* Welcome */
.welcome-grid {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: 78px;
    align-items: center;
}

.welcome-media {
    position: relative;
    min-height: 540px;
}

.welcome-media::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 28px;
    width: 4px;
    height: 120px;
    background: var(--gold);
}

.welcome-media img {
    width: 100%;
    height: 540px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.welcome-media-label {
    position: absolute;
    right: -34px;
    bottom: 34px;
    width: min(300px, 75%);
    display: flex;
    gap: 14px;
    padding: 20px;
    border-radius: 6px;
    color: #fff;
    background: var(--maroon-800);
    box-shadow: 0 18px 40px rgba(45, 8, 18, .2);
}

.welcome-media-label i {
    color: var(--gold);
    font-size: 24px;
}

.welcome-media-label span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.welcome-copy h2 {
    margin: 14px 0 22px;
    color: var(--charcoal);
    font-size: 42px;
    line-height: 1.2;
}

.welcome-copy .content-body {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.welcome-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 26px 0 30px;
}

.welcome-values span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b4547;
    font-weight: 700;
}

.welcome-values i {
    color: var(--gold);
}

/* Programs and features */
.soft-section {
    background: var(--surface-soft);
}

.program-showcase {
    grid-template-columns: minmax(310px, 420px) 1fr;
    gap: 24px;
}

.card-clean {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(45, 8, 18, .06);
}

.card-clean:hover {
    box-shadow: 0 22px 54px rgba(45, 8, 18, .12);
}

.program-card {
    padding: 34px;
    border-top: 3px solid var(--gold);
}

.featured-program-card h3 {
    color: var(--charcoal);
    font-size: 30px;
}

.program-tags span {
    border-radius: 4px;
    color: var(--maroon-800);
    background: var(--maroon-100);
    border-color: #ead6dc;
}

.program-side-panel {
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(45, 8, 18, .07);
}

.program-side-content {
    padding: 34px;
}

.program-side-content h3 {
    color: var(--charcoal);
}

.program-mini-card {
    border-radius: 6px;
    background: #fff;
}

.home-features-section {
    background: #fff;
}

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width .3s ease;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #e7dcdf;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    font-weight: 800;
}

.feature-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 6px;
    color: var(--maroon-800);
    background: var(--maroon-100);
}

.feature-card h3 {
    margin-top: 24px;
    color: var(--charcoal);
    font-size: 19px !important;
    line-height: 1.4;
}

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

/* Statistics */
.stats-band {
    position: relative;
    padding: 70px 0;
    color: #fff;
    background: var(--maroon-950);
    overflow: hidden;
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.08) 50%, transparent 50.5%);
    background-size: 96px 100%;
}

.stats-band .container {
    position: relative;
}

.stats-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.stats-heading span {
    color: var(--gold-light);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.stats-heading p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.stat-card {
    min-height: 100px;
    border-left: 2px solid var(--gold);
}

.stat-card strong {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
}

/* Updates */
.home-updates {
    background: var(--surface-soft);
}

.update-card {
    min-height: 132px;
    display: grid;
    grid-template-columns: 50px 1fr 24px;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
}

.update-card > a {
    color: var(--gold);
}

.update-icon,
.agenda-date {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--maroon-800);
    background: var(--maroon-100);
    font-size: 20px;
}

.agenda-card.update-card {
    grid-template-columns: 58px 1fr;
}

.agenda-date {
    height: 62px;
    align-content: center;
    gap: 0;
}

.agenda-date strong,
.agenda-date span {
    display: block;
    text-align: center;
}

.agenda-date strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1;
}

.agenda-date span {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.update-card h3 a,
.update-card h3 {
    color: var(--charcoal);
}

.update-card p {
    color: var(--muted);
    font-size: 13px;
}

/* Video, testimonials, gallery */
.home-testimonials {
    background: #fff;
}

.campus-showcase {
    grid-template-columns: minmax(0, 1.65fr) minmax(360px, .85fr);
    gap: 24px;
}

.campus-video-panel,
.student-review-panel {
    min-height: 500px;
    border-radius: 8px;
}

.campus-video-panel {
    background: var(--charcoal);
    box-shadow: var(--shadow);
}

.campus-video-caption {
    background: linear-gradient(90deg, rgba(45, 8, 18, .94), rgba(45, 8, 18, .7));
}

.student-review-panel {
    border-color: #eadde1;
    background: var(--surface-soft);
    box-shadow: 0 14px 38px rgba(45, 8, 18, .08);
}

.student-avatar {
    border-color: var(--maroon-800);
}

.student-review-name h3,
.student-review-foot strong {
    color: var(--charcoal);
}

.student-review-name p,
.student-review-foot > i,
.student-year {
    color: var(--maroon-700);
}

.student-year,
.review-control {
    border-color: #e5d2d7;
    background: #fff;
}

.student-review-controls .carousel-indicators .active,
.review-control:hover {
    background: var(--maroon-800);
}

.home-gallery {
    background: var(--surface-soft);
}

.home-gallery .row > div:nth-child(1),
.home-gallery .row > div:nth-child(4) {
    width: 50%;
}

.gallery-card {
    position: relative;
    min-height: 300px;
    border: 0;
    box-shadow: none;
}

.gallery-card img {
    height: 300px;
    border-radius: 8px;
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 4px;
    padding: 50px 22px 20px;
    border-radius: 0 0 8px 8px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(45, 8, 18, .88));
}

.gallery-caption span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-caption strong {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
}

.gallery-card:hover img {
    transform: scale(1.035);
}

/* Generic inner pages */
.page-hero {
    position: relative;
    padding: 84px 0;
    background: linear-gradient(90deg, rgba(45, 8, 18, .96), rgba(91, 16, 35, .84)), url('../images/page-hero.svg') center/cover;
    border-bottom: 4px solid var(--gold);
}

.page-hero h1 {
    max-width: 800px;
    color: #fff;
    font-size: 46px;
    line-height: 1.18;
}

.content-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(45, 8, 18, .06);
}

.download-card,
.announcement-card,
.agenda-card,
.news-card,
.program-card {
    overflow: hidden;
}

/* PMB CTA and footer */
.modern-pmb-cta {
    padding: 0;
    color: #fff;
    background: var(--maroon-800);
    border-top: 4px solid var(--gold);
}

.pmb-cta-inner {
    min-height: 230px;
    display: grid;
    grid-template-columns: 84px 1fr auto;
    align-items: center;
    gap: 30px;
}

.pmb-cta-icon {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(255, 255, 255, .06);
    font-size: 34px;
}

.pmb-cta-copy h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 32px;
}

.pmb-cta-copy p {
    max-width: 700px;
}

.pmb-cta-actions {
    display: flex;
    gap: 10px;
}

.site-footer {
    padding: 76px 0 26px;
    background: var(--maroon-950);
    border-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.45fr) .65fr .8fr 1fr;
    gap: 54px;
}

.footer-about {
    padding-right: 28px;
}

.footer-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.footer-brand strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
}

.site-footer h3 {
    margin: 4px 0 20px;
    color: var(--gold-light);
    font-size: 13px;
}

.site-footer a {
    width: fit-content;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
}

.site-footer a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact p {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 9px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact i {
    color: var(--gold);
}

.social-links a {
    width: 38px;
    height: 38px;
}

.social-links a:hover {
    color: var(--maroon-950);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 58px;
    padding-top: 22px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
}

.footer-legal {
    display: flex;
    gap: 18px;
}

.footer-legal a {
    margin: 0;
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 1199.98px) {
    .main-navbar .nav-link {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 12px;
    }

    .header-pmb-button {
        display: none;
    }

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

    .quick-access-grid > a:nth-child(3) {
        border-left: 1px solid var(--line);
        border-top: 1px solid var(--line);
    }

    .quick-access-grid > a:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .news-editorial-grid,
    .pmb-home-showcase,
    .welcome-grid {
        gap: 42px;
    }

    .featured-news {
        grid-template-columns: 1fr;
    }

    .featured-news-media {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 76px 0;
    }

    .topbar-links {
        display: none;
    }

    .topbar-contact {
        width: 100%;
        justify-content: space-between;
    }

    .main-navbar {
        min-height: 78px;
    }

    .navbar-brand img {
        width: 48px;
        height: 48px;
    }

    .navbar-brand strong {
        font-size: 16px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding: 18px 0 24px;
    }

    .main-navbar .nav-link {
        padding: 12px 0;
        font-size: 14px;
    }

    .main-navbar .nav-link::after {
        left: 0;
        bottom: 5px;
        width: 34px;
    }

    .public-dropdown {
        border-top-width: 2px;
        border-radius: 6px;
    }

    .hero-modern,
    .hero-modern .hero-slide {
        min-height: 640px;
    }

    .hero-content {
        padding: 76px 0 94px;
    }

    .hero-modern h1 {
        font-size: min(var(--hero-title-size, 50px), 50px);
    }

    .hero-proof {
        margin-top: 40px;
    }

    .hero-proof > div {
        min-width: 150px;
        padding: 0 18px;
    }

    .hero-controls {
        right: 24px;
        bottom: 22px;
    }

    .pmb-home-showcase,
    .news-editorial-grid,
    .welcome-grid,
    .campus-showcase,
    .program-showcase {
        grid-template-columns: 1fr;
    }

    .pmb-home-copy h2,
    .welcome-copy h2,
    .section-title h2 {
        font-size: 36px;
    }

    .pmb-home-visual {
        width: min(100%, 640px);
    }

    .welcome-media {
        width: min(100%, 660px);
        min-height: 460px;
    }

    .welcome-media img {
        height: 460px;
    }

    .welcome-media-label {
        right: 20px;
    }

    .pmb-cta-inner {
        grid-template-columns: 72px 1fr;
        padding: 38px 0;
    }

    .pmb-cta-actions {
        grid-column: 2;
    }

    .footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr;
        gap: 38px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 62px 0;
    }

    .topbar-status,
    .topbar-contact a:first-of-type {
        display: none;
    }

    .topbar-contact {
        justify-content: center;
    }

    .navbar-brand small {
        display: none;
    }

    .hero-modern,
    .hero-modern .hero-slide {
        min-height: 610px;
    }

    .hero-modern .hero-slide {
        background-position: 62% center;
    }

    .hero-modern .hero-slide::before {
        background: linear-gradient(90deg, rgba(45, 8, 18, .97), rgba(66, 16, 29, .82));
    }

    .hero-content {
        padding: 58px 0 88px;
    }

    .hero-status {
        margin-bottom: 22px;
    }

    .hero-modern h1 {
        font-size: min(var(--hero-title-size, 40px), 40px);
        line-height: 1.14;
    }

    .hero-modern p {
        font-size: min(var(--hero-desc-size, 16px), 16px);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-proof {
        display: none;
    }

    .hero-controls {
        left: 16px;
        right: auto;
    }

    .quick-access-grid {
        grid-template-columns: 1fr;
    }

    .quick-access-grid > a,
    .quick-access-grid > a:first-child,
    .quick-access-grid > a:nth-child(3),
    .quick-access-grid > a:nth-child(4) {
        min-height: 88px;
        padding: 16px 18px;
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 30px;
    }

    .section-title h2,
    .pmb-home-copy h2,
    .welcome-copy h2 {
        font-size: 30px;
    }

    .pmb-highlight-grid {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }

    .pmb-home-visual img {
        height: 350px;
    }

    .news-editorial-grid {
        gap: 28px;
    }

    .featured-news-body {
        padding: 26px;
    }

    .featured-news-body h3 {
        font-size: 23px;
    }

    .news-list-item {
        grid-template-columns: 96px 1fr;
    }

    .news-list-item img {
        width: 96px;
        height: 82px;
    }

    .welcome-media,
    .welcome-media img {
        min-height: 360px;
        height: 360px;
    }

    .welcome-media::before {
        display: none;
    }

    .welcome-media-label {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .welcome-values {
        grid-template-columns: 1fr;
    }

    .program-side-panel {
        grid-template-columns: 1fr;
    }

    .program-side-panel img {
        min-height: 260px;
        max-height: 320px;
    }

    .feature-card {
        min-height: auto;
    }

    .stats-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .stat-card strong {
        font-size: 36px;
    }

    .update-card {
        grid-template-columns: 46px 1fr;
    }

    .update-card > a {
        display: none;
    }

    .campus-video-caption {
        position: static;
    }

    .student-review-card {
        padding: 26px 24px 88px;
    }

    .student-year {
        display: none;
    }

    .home-gallery .row > div:nth-child(1),
    .home-gallery .row > div:nth-child(4) {
        width: 100%;
    }

    .gallery-card,
    .gallery-card img {
        min-height: 250px;
        height: 250px;
    }

    .pmb-cta-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .pmb-cta-icon {
        margin: auto;
    }

    .pmb-cta-actions {
        grid-column: 1;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .navbar-brand strong {
        max-width: 205px;
        font-size: 14px;
    }

    .hero-modern h1 {
        font-size: min(var(--hero-title-size, 34px), 34px);
    }

    .btn-lg {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1;
    }
}

/* Alumni registration */
.alumni-page-hero {
    background:
        linear-gradient(105deg, rgba(45, 8, 18, .98) 0%, rgba(91, 16, 35, .94) 58%, rgba(116, 27, 50, .82) 100%),
        url('../images/page-hero.svg') center/cover;
}

.alumni-page-hero .container {
    max-width: 900px;
    margin-left: max(calc((100vw - 1320px) / 2), 12px);
}

.alumni-registration-section {
    background: var(--surface-soft);
}

.alumni-success {
    align-items: center;
    background: #edf8f1;
    border: 1px solid #b9dfc7;
    border-radius: var(--radius);
    color: #174b2a;
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px 22px;
}

.alumni-success i {
    font-size: 28px;
}

.alumni-success strong,
.alumni-success p {
    display: block;
    margin: 0;
}

.alumni-form-layout {
    align-items: start;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, .8fr) minmax(620px, 1.2fr);
}

.alumni-intro {
    position: sticky;
    top: 140px;
}

.alumni-intro h2 {
    font-size: 42px;
    line-height: 1.12;
    margin: 18px 0;
}

.alumni-intro > p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.alumni-benefits {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    margin-top: 32px;
}

.alumni-benefits > div {
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 16px;
    grid-template-columns: 42px 1fr;
    padding: 20px 0;
}

.alumni-benefits i {
    color: var(--maroon-700);
    font-size: 24px;
}

.alumni-benefits strong,
.alumni-benefits small {
    display: block;
}

.alumni-benefits strong {
    color: var(--charcoal);
    margin-bottom: 5px;
}

.alumni-benefits small {
    color: var(--muted);
    line-height: 1.55;
}

.alumni-private-form {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 42px;
}

.alumni-private-form .form-heading {
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
    padding-bottom: 24px;
}

.alumni-private-form .form-heading span {
    color: var(--maroon-700);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.alumni-private-form .form-heading h2 {
    font-size: 30px;
    margin: 7px 0;
}

.alumni-private-form .form-heading p,
.form-privacy-note {
    color: var(--muted);
    margin: 0;
}

.alumni-private-form .form-label {
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 700;
}

.alumni-private-form .form-control {
    border-color: #d9d2d4;
    min-height: 50px;
}

.alumni-private-form textarea.form-control {
    min-height: auto;
}

.alumni-private-form .form-control:focus {
    border-color: var(--maroon-700);
    box-shadow: 0 0 0 3px rgba(116, 27, 50, .1);
}

.alumni-consent {
    align-items: flex-start;
    background: var(--maroon-100);
    border-radius: var(--radius);
    color: #51474a;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    gap: 12px;
    line-height: 1.6;
    margin: 24px 0;
    padding: 16px;
}

.alumni-consent input {
    accent-color: var(--maroon-700);
    flex: 0 0 auto;
    height: 18px;
    margin-top: 2px;
    width: 18px;
}

.form-privacy-note {
    font-size: 12px;
    margin-top: 14px;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .alumni-form-layout {
        gap: 40px;
        grid-template-columns: minmax(0, .75fr) minmax(540px, 1.25fr);
    }
}

@media (max-width: 991.98px) {
    .alumni-page-hero .container {
        margin-left: auto;
    }

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

    .alumni-intro {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .alumni-intro h2 {
        font-size: 32px;
    }

    .alumni-private-form {
        padding: 28px 20px;
    }
}
