:root {
    --college-bg: #f6f8fb;
    --college-surface: #ffffff;
    --college-ink: #101828;
    --college-muted: #667085;
    --college-line: #d7dfeb;
    --college-primary: #244b5a;
    --college-primary-dark: #17313c;
    --college-accent: #0f9f74;
    --college-gold: #f8bd19;
    --college-wine: #7d1736;
    --college-red: #c93232;
    --college-shadow: 0 22px 55px rgba(16, 24, 40, 0.13);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--college-ink);
    background: var(--college-bg);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(248, 189, 25, 0.75);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 120;
    padding: 12px 16px;
    color: #ffffff;
    background: var(--college-primary-dark);
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.college-shell {
    width: min(1180px, calc(100% - 42px));
    margin-inline: auto;
}

.college-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-top: 5px solid #2e2f33;
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.08);
}

.college-institution-nav {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 138px;
}

.college-logo-mark {
    display: grid;
    place-items: center;
    background: #ffffff;
}

.college-logo-mark img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
}

.college-institution-nav__stack {
    display: grid;
    align-content: start;
}

.college-primary-strip {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 2px;
    padding: 0 28px;
    color: #ffffff;
    background: var(--college-primary-dark);
}

.college-primary-strip a {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    padding: 0 16px;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 160ms ease;
}

.college-primary-strip a:hover,
.college-primary-strip a:focus {
    background: rgba(255, 255, 255, 0.12);
}

.college-header__main {
    border-bottom: 1px solid var(--college-line);
}

.college-header__main-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px;
}

.college-nav ul {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.college-nav__item {
    position: relative;
}

.college-nav__item::after {
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    height: 18px;
    content: "";
}

.college-nav__item > a {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    padding: 0 14px;
    color: #111827;
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease;
}

.college-nav__item:hover > a,
.college-nav__item:focus-within > a {
    color: var(--college-primary-dark);
    background: #eef4f5;
}

.college-nav__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    min-width: 520px;
    gap: 14px 22px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--college-line);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--college-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 170ms ease, transform 170ms ease;
}

.college-nav__item:hover .college-nav__panel,
.college-nav__item:focus-within .college-nav__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.college-nav__panel a {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-weight: 800;
}

.college-nav__panel a::before {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--college-primary);
    background: #eef4f5;
    border: 1px solid var(--college-line);
    border-radius: 9px;
    content: "□";
}

.college-header__cta {
    display: inline-flex;
    min-width: 150px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    color: var(--college-primary-dark);
    background: var(--college-gold);
    border-radius: 999px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.college-header__cta:hover,
.college-header__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(248, 189, 25, 0.25);
}

.college-menu-button {
    display: none !important;
    min-height: 52px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: #ffffff;
    background: var(--college-primary-dark);
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: background 200ms ease, transform 160ms ease;
}

.college-menu-button:hover {
    background: var(--college-primary);
    transform: scale(1.04);
}

.college-menu-button:active {
    transform: scale(0.97);
}

.college-menu-icon--close {
    display: none;
}

.college-menu-button[aria-expanded="true"] .college-menu-icon--hamburger {
    display: none;
}

.college-menu-button[aria-expanded="true"] .college-menu-icon--close {
    display: block;
}

/* ===== CardNav Mobile Drawer ===== */
.college-mobile-cardnav {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}

.college-mobile-cardnav.is-open {
    pointer-events: auto;
    visibility: visible;
}

.college-mobile-cardnav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, 0);
    backdrop-filter: blur(0);
    transition: background 350ms ease, backdrop-filter 350ms ease;
}

.college-mobile-cardnav.is-open .college-mobile-cardnav__overlay {
    background: rgba(16, 24, 40, 0.45);
    backdrop-filter: blur(6px);
}

.college-mobile-cardnav__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(440px, calc(100vw - 24px));
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-left: 1px solid var(--college-line);
    box-shadow: -16px 0 60px rgba(16, 24, 40, 0.18);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.college-mobile-cardnav.is-open .college-mobile-cardnav__drawer {
    transform: translateX(0);
}

.college-mobile-cardnav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--college-line);
    background: #fafbfc;
}

.college-mobile-cardnav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.college-mobile-cardnav__brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.08);
}

.college-mobile-cardnav__brand div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.college-mobile-cardnav__brand strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--college-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.college-mobile-cardnav__brand small {
    font-size: 0.72rem;
    color: var(--college-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.college-mobile-cardnav__close-btn {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--college-line);
    border-radius: 10px;
    color: var(--college-muted);
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.college-mobile-cardnav__close-btn:hover {
    color: var(--college-ink);
    background: #f0f2f5;
    border-color: var(--college-ink);
}

.college-mobile-cardnav__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 16px 8px;
    flex: 1;
}

@media (min-width: 400px) {
    .college-mobile-cardnav__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.college-card-nav-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 120px;
    padding: 18px 16px;
    background: var(--card-bg, #f5f7fa);
    color: var(--card-text, #101828);
    border-radius: 14px;
    transition: transform 200ms ease, box-shadow 200ms ease;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
}

.college-mobile-cardnav.is-open .college-card-nav-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.college-mobile-cardnav.is-open .college-card-nav-item:nth-child(1) { transition: opacity 300ms 80ms ease, transform 300ms 80ms cubic-bezier(0.22,1,0.36,1); }
.college-mobile-cardnav.is-open .college-card-nav-item:nth-child(2) { transition: opacity 300ms 140ms ease, transform 300ms 140ms cubic-bezier(0.22,1,0.36,1); }
.college-mobile-cardnav.is-open .college-card-nav-item:nth-child(3) { transition: opacity 300ms 200ms ease, transform 300ms 200ms cubic-bezier(0.22,1,0.36,1); }
.college-mobile-cardnav.is-open .college-card-nav-item:nth-child(4) { transition: opacity 300ms 260ms ease, transform 300ms 260ms cubic-bezier(0.22,1,0.36,1); }
.college-mobile-cardnav.is-open .college-card-nav-item:nth-child(5) { transition: opacity 300ms 320ms ease, transform 300ms 320ms cubic-bezier(0.22,1,0.36,1); }
.college-mobile-cardnav.is-open .college-card-nav-item:nth-child(6) { transition: opacity 300ms 380ms ease, transform 300ms 380ms cubic-bezier(0.22,1,0.36,1); }

.college-card-nav-item:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.1);
}

.college-card-nav-item__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.college-card-nav-item__title a {
    color: inherit;
    text-decoration: none;
}

.college-card-nav-item__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.college-card-nav-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--card-text, #101828);
    text-decoration: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.college-card-nav-item__link:hover {
    opacity: 0.7;
    transform: translateX(3px);
}

.college-card-nav-item__link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.college-mobile-cardnav__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px 24px;
    border-top: 1px solid var(--college-line);
    background: #fafbfc;
}

.college-mobile-cardnav__btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.college-mobile-cardnav__btn:hover {
    transform: translateY(-1px);
}

.college-mobile-cardnav__btn:active {
    transform: scale(0.98);
}

.college-mobile-cardnav__btn--primary {
    color: #ffffff;
    background: var(--college-primary-dark);
    box-shadow: 0 4px 16px rgba(23, 49, 60, 0.2);
}

.college-mobile-cardnav__btn--primary:hover {
    background: var(--college-primary);
    box-shadow: 0 8px 24px rgba(23, 49, 60, 0.25);
}

.college-mobile-cardnav__btn--secondary {
    color: var(--college-primary-dark);
    background: var(--college-gold);
    box-shadow: 0 4px 16px rgba(248, 189, 25, 0.18);
}

.college-mobile-cardnav__btn--secondary:hover {
    box-shadow: 0 8px 24px rgba(248, 189, 25, 0.3);
}

.college-mobile-cardnav__btn--ghost {
    color: var(--college-muted);
    background: transparent;
    border: 1px solid var(--college-line);
}

.college-mobile-cardnav__btn--ghost:hover {
    color: var(--college-ink);
    background: #f0f2f5;
}

.college-hero--institution {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #ffffff;
    background: #101828;
}

.college-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 550ms ease;
}

.college-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.college-hero__image,
.college-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.college-hero__image {
    object-fit: cover;
    transform: scale(1.04);
    animation: collegeHeroZoom 18s ease-in-out infinite alternate;
}

.college-hero__overlay {
    background:
        linear-gradient(90deg, rgba(7, 16, 25, 0.88), rgba(7, 16, 25, 0.62), rgba(7, 16, 25, 0.24)),
        linear-gradient(180deg, rgba(7, 16, 25, 0.2), rgba(7, 16, 25, 0.72));
}

.college-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: 720px;
    padding: 78px 0 92px;
}

.college-hero__kicker {
    margin: 0 0 18px;
    color: var(--college-gold);
    font-size: 2.05rem;
    font-weight: 800;
    text-transform: uppercase;
}

.college-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: 4.6rem;
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: uppercase;
}

.college-hero__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
}

.college-hero__button,
.college-link-button {
    display: inline-flex;
    width: fit-content;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 30px;
    color: #ffffff;
    background: var(--college-primary);
    border-radius: 12px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.college-hero__button:hover,
.college-hero__button:focus,
.college-link-button:hover,
.college-link-button:focus {
    background: var(--college-accent);
    transform: translateY(-2px);
    box-shadow: var(--college-shadow);
}

.college-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #111827;
    background: rgba(255, 255, 255, 0.86);
    border: 0;
    border-radius: 50%;
    font-size: 1.7rem;
    transform: translateY(-50%);
}

.college-hero-arrow--prev {
    left: 18px;
}

.college-hero-arrow--next {
    right: 18px;
}

.college-hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.college-hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    border-radius: 50%;
}

.college-hero-dots button.is-active {
    background: var(--college-gold);
}

.college-mobile-admissions {
    display: none;
}

.college-section {
    padding: 92px 0;
    background: #ffffff;
}

.college-eyebrow {
    margin: 0 0 10px;
    color: var(--college-accent);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.college-section h2 {
    margin: 0;
    font-size: 3.1rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.college-section__intro {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.college-section__intro p {
    margin: 14px 0 0;
    color: var(--college-muted);
    font-size: 1.08rem;
}

.college-section__intro--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.college-leaders {
    background: #ffffff;
}

.college-leaders__feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 58px;
    align-items: center;
}

.college-leaders__feature > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--college-shadow);
}

.college-leaders__feature p:not(.college-eyebrow) {
    color: #555f6f;
    font-size: 1.08rem;
}

.college-leaders__feature strong {
    display: block;
    margin-top: 16px;
    color: var(--college-primary);
    font-size: 1.3rem;
}

.college-leaders__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.college-leaders__thumbs article {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--college-line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
}

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

.college-leaders__thumbs strong {
    display: block;
    padding: 16px;
}

.college-metrics {
    padding: 78px 0 110px;
    color: #ffffff;
    background: var(--college-primary-dark);
}

.college-metrics h2 {
    margin: 0 0 42px;
    color: var(--college-gold);
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: center;
}

.college-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.college-metric {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    min-height: 122px;
    padding: 24px;
    color: #111827;
    background: #ffffff;
    border-radius: 8px;
}

.college-metric > span {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 10px solid var(--college-primary);
    border-radius: 50%;
}

.college-metric > span::before {
    content: "↗";
    font-size: 1.4rem;
    font-weight: 800;
}

.college-metric--gold > span {
    border-color: var(--college-gold);
}

.college-metric--green > span {
    border-color: var(--college-accent);
}

.college-metric--red > span {
    border-color: var(--college-red);
}

.college-metric strong {
    display: block;
    color: #8a94a3;
    font-weight: 800;
    text-transform: uppercase;
}

.college-metric p {
    margin: 4px 0 0;
    font-size: 1.65rem;
    font-weight: 800;
}

.college-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.college-program-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--college-line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.1);
}

.college-program-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 420ms ease;
}

.college-program-card:hover img {
    transform: scale(1.05);
}

.college-program-card div {
    padding: 24px;
}

.college-program-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.college-program-card p {
    margin: 12px 0 0;
    color: var(--college-muted);
}

.college-program-card span {
    display: block;
    margin-top: 18px;
    color: var(--college-accent);
    font-weight: 800;
    text-transform: uppercase;
}

.college-program-card__button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0 22px;
    color: #ffffff;
    background: var(--college-accent);
    border-radius: 8px;
    font-weight: 800;
    transition: background 160ms ease, transform 160ms ease;
}

.college-program-card__button:hover,
.college-program-card__button:focus {
    background: var(--college-primary);
    transform: translateY(-2px);
}

.college-admissions {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(23, 49, 60, 0.96), rgba(36, 75, 90, 0.94)),
        radial-gradient(circle at 18% 24%, rgba(248, 189, 25, 0.16), transparent 28%);
}

.college-admissions__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.college-admissions h2 {
    color: #ffffff;
}

.college-admissions p {
    color: rgba(255, 255, 255, 0.82);
}

.college-admissions__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.college-button {
    display: grid;
    min-width: 210px;
    min-height: 76px;
    align-content: center;
    gap: 2px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.college-button:hover,
.college-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.college-button small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

.college-button--primary {
    color: var(--college-primary-dark);
    background: var(--college-gold);
}

.college-button--primary small {
    color: rgba(23, 49, 60, 0.72);
}

.college-button--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.college-steps {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.college-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.college-steps li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--college-primary-dark);
    background: var(--college-gold);
    border-radius: 50%;
    font-weight: 800;
}

.college-steps strong {
    display: block;
    color: var(--college-ink);
    font-size: 1.18rem;
}

.college-steps p {
    margin: 6px 0 0;
    color: var(--college-muted);
}

.college-gallery-section {
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, var(--college-primary-dark));
}

.college-gallery-section .college-section__intro p {
    color: rgba(255, 255, 255, 0.78);
}

.college-gallery-controls {
    display: flex;
    gap: 10px;
}

.college-gallery-controls button {
    min-height: 48px;
    padding: 0 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    font-weight: 800;
}

.college-gallery {
    display: grid;
    grid-auto-columns: minmax(320px, 430px);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 4px max(21px, calc((100vw - 1180px) / 2)) 16px;
    scroll-padding-inline: max(21px, calc((100vw - 1180px) / 2));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.college-gallery::-webkit-scrollbar {
    display: none;
}

.college-gallery-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #101828;
    border-radius: 10px;
    scroll-snap-align: center;
}

.college-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 500ms ease, opacity 180ms ease;
}

.college-gallery-card:hover img {
    opacity: 1;
    transform: scale(1.06);
}

.college-gallery-card div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(16, 24, 40, 0.94));
}

.college-gallery-card span {
    color: var(--college-gold);
    font-weight: 800;
}

.college-gallery-card h3 {
    margin: 8px 0 0;
    font-size: 1.5rem;
}

.college-gallery-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.college-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.college-news-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1);
}

.college-news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.college-news-card div {
    padding: 24px;
}

.college-news-card time {
    color: var(--college-accent);
    font-weight: 800;
}

.college-news-card h3 {
    margin: 14px 0 0;
    font-size: 1.35rem;
}

.college-news-card p {
    color: var(--college-muted);
}

.college-news-card a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--college-primary);
    font-weight: 800;
}

.college-news-action {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.college-events-section {
    background: #ffffff;
}

.college-events-section h2 {
    margin-bottom: 54px;
    color: var(--college-primary);
    text-align: center;
    text-transform: uppercase;
}

.college-event-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.college-event-cards article {
    min-height: 420px;
    padding: 44px 34px;
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(16, 24, 40, 0.1);
}

.college-event-cards img {
    width: 150px;
    height: 150px;
    margin: 0 auto 44px;
    object-fit: cover;
    border-radius: 50%;
}

.college-event-cards h3 {
    margin: 0;
    font-size: 1.35rem;
}

.college-event-cards p,
.college-event-cards time {
    display: block;
    margin-top: 16px;
    color: var(--college-muted);
}

.college-final-cta {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
}

.college-final-cta > img,
.college-final-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.college-final-cta > img {
    object-fit: cover;
}

.college-final-cta__overlay {
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.36), rgba(16, 24, 40, 0.72));
}

.college-final-cta .college-shell {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 620px;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.college-final-cta h2 {
    margin: 0 0 54px;
    font-size: 4.2rem;
    line-height: 1;
    text-transform: uppercase;
}

.college-final-cta .college-shell > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.college-final-cta__button {
    display: inline-flex;
    min-width: 245px;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--college-primary);
    border-radius: 999px;
    font-weight: 800;
}

.college-final-cta__button--gold {
    color: var(--college-primary-dark);
    background: var(--college-gold);
}

.college-footer {
    color: #ffffff;
    background: var(--college-primary-dark);
    border-top: 8px solid var(--college-red);
}

.college-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.45fr));
    gap: 44px;
    padding: 64px 0 40px;
}

.college-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.college-brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.college-brand strong,
.college-brand small {
    display: block;
}

.college-brand small,
.college-footer p,
.college-footer a {
    color: rgba(255, 255, 255, 0.78);
}

.college-footer nav {
    display: grid;
    gap: 12px;
    align-content: start;
}

.college-footer nav strong {
    color: #ffffff;
    font-size: 1.2rem;
}

.college-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.college-page-hero {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    color: #ffffff;
    background: #101828;
}

.college-page-hero img,
.college-page-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.college-page-hero img {
    object-fit: cover;
    opacity: 0.72;
}

.college-page-hero__overlay {
    background: linear-gradient(90deg, rgba(16, 24, 40, 0.84), rgba(16, 24, 40, 0.5));
}

.college-page-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 460px;
    align-content: center;
}

.college-page-hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: 3.9rem;
    line-height: 1.08;
}

.college-page-hero p:last-child {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.college-page-section,
.college-section--light {
    background: #ffffff;
}

.college-two-column,
.college-directory,
.college-help-steps,
.college-promise-page,
.college-contact-grid,
.college-help-grid,
.college-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.college-info-stack,
.college-directory > div:last-child {
    display: grid;
    gap: 14px;
}

.college-info-stack article,
.college-directory article,
.college-promise-page article,
.college-contact-card,
.college-help-grid article,
.college-value-grid article {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--college-line);
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
}

.college-contact-card a,
.college-help-grid a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    margin-top: 18px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--college-primary);
    border-radius: 10px;
    font-weight: 800;
}

@keyframes collegeHeroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes collegeWaveFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(3px);
    }

    75% {
        transform: translateY(-2px);
    }
}

@keyframes collegeWaveGlow {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 rgba(248, 189, 25, 0);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 18px 40px rgba(248, 189, 25, 0.22);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 rgba(248, 189, 25, 0);
    }
}

/* ===== Enhanced Micro-Interactions ===== */

/* Staggered reveal for grid children */
.is-revealable .college-program-card,
.is-revealable .college-news-card,
.is-revealable .college-event-cards article,
.is-revealable .college-leaders__thumbs article,
.is-revealable .college-gallery-card,
.is-revealable .college-admissions__grid article,
.is-revealable .college-metrics__grid article,
.is-revealable .college-info-stack article,
.is-revealable .college-value-grid article {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 450ms ease, transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .college-program-card,
.is-visible .college-news-card,
.is-visible .college-event-cards article,
.is-visible .college-leaders__thumbs article,
.is-visible .college-gallery-card,
.is-visible .college-admissions__grid article,
.is-visible .college-metrics__grid article,
.is-visible .college-info-stack article,
.is-visible .college-value-grid article {
    opacity: 1;
    transform: translateY(0);
}

.is-visible .college-program-card:nth-child(1),
.is-visible .college-news-card:nth-child(1),
.is-visible .college-event-cards article:nth-child(1),
.is-visible .college-leaders__thumbs article:nth-child(1),
.is-visible .college-admissions__grid article:nth-child(1),
.is-visible .college-metrics__grid article:nth-child(1) { transition-delay: 60ms; }

.is-visible .college-program-card:nth-child(2),
.is-visible .college-news-card:nth-child(2),
.is-visible .college-event-cards article:nth-child(2),
.is-visible .college-leaders__thumbs article:nth-child(2),
.is-visible .college-admissions__grid article:nth-child(2),
.is-visible .college-metrics__grid article:nth-child(2) { transition-delay: 140ms; }

.is-visible .college-program-card:nth-child(3),
.is-visible .college-news-card:nth-child(3),
.is-visible .college-event-cards article:nth-child(3),
.is-visible .college-leaders__thumbs article:nth-child(3),
.is-visible .college-admissions__grid article:nth-child(3),
.is-visible .college-metrics__grid article:nth-child(3) { transition-delay: 220ms; }

.is-visible .college-program-card:nth-child(4),
.is-visible .college-news-card:nth-child(4),
.is-visible .college-event-cards article:nth-child(4),
.is-visible .college-leaders__thumbs article:nth-child(4),
.is-visible .college-admissions__grid article:nth-child(4),
.is-visible .college-metrics__grid article:nth-child(4) { transition-delay: 300ms; }

/* Hover elevation for cards */
.college-program-card,
.college-news-card,
.college-event-cards article,
.college-gallery-card {
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.college-program-card:hover,
.college-news-card:hover,
.college-event-cards article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}

/* Image zoom on card hover */
.college-news-card img,
.college-program-card img,
.college-gallery-card img {
    transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.college-news-card:hover img,
.college-program-card:hover img,
.college-gallery-card:hover img {
    transform: scale(1.04);
}

/* Link arrow slide on hover */
.college-link-button,
.college-news-card a {
    transition: color 180ms ease, gap 220ms ease;
}

.college-link-button:hover,
.college-news-card a:hover {
    gap: 12px;
}

/* Leader thumb hover */
.college-leaders__thumbs article {
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.college-leaders__thumbs article:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.1);
}

/* Eyebrow shimmer animation */
@keyframes collegeEyebrowShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.college-eyebrow {
    background: linear-gradient(90deg, var(--college-primary) 0%, var(--college-accent) 50%, var(--college-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: collegeEyebrowShimmer 4s ease-in-out infinite;
}

/* Gallery active drag cursor */
.college-gallery:active {
    cursor: grabbing;
}

.college-gallery {
    cursor: grab;
}

/* Smooth scroll lock for mobile nav */
body.college-nav-open {
    overflow: hidden;
    touch-action: none;
}

.is-revealable {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

@media (max-width: 1180px) {
    .college-institution-nav {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .college-primary-strip {
        overflow-x: auto;
        padding-inline: 18px;
    }

    .college-nav ul {
        gap: 4px;
    }
}

@media (max-width: 980px) {
    .college-institution-nav {
        display: block;
        min-height: 0;
    }

    .college-logo-mark {
        position: absolute;
        top: 14px;
        left: 16px;
        z-index: 2;
        width: 80px;
        height: 76px;
        border-radius: 50%;
    }

    .college-logo-mark img {
        width: 64px;
        height: 64px;
    }

    .college-primary-strip,
    .college-nav,
    .college-header__cta {
        display: none;
    }

    .college-header__main-inner {
        min-height: 98px;
        justify-content: flex-end;
        padding-left: 110px;
    }

    .college-menu-button {
        display: inline-flex !important;
    }

    .college-hero--institution,
    .college-hero__content {
        min-height: 640px;
    }

    .college-hero h1 {
        font-size: 3.25rem;
    }

    .college-hero__kicker {
        font-size: 1.45rem;
    }

    .college-leaders__feature,
    .college-admissions__grid,
    .college-metrics__grid,
    .college-program-grid,
    .college-news-grid,
    .college-event-cards,
    .college-footer__grid,
    .college-two-column,
    .college-directory,
    .college-help-steps,
    .college-promise-page,
    .college-contact-grid,
    .college-help-grid,
    .college-value-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    body {
        font-size: 17px;
    }

    .college-header {
        border-top: 0;
    }

    .college-header__main {
        border-bottom: 1px solid #e8edf4;
    }

    .college-header__main-inner {
        min-height: 98px;
        padding-right: 28px;
    }

    .college-logo-mark {
        top: 16px;
        left: 28px;
        width: 72px;
        height: 70px;
        border-radius: 0;
    }

    .college-logo-mark img {
        width: 58px;
        height: 58px;
    }

    .college-menu-button {
        width: 54px;
        min-height: 54px;
        justify-content: center;
        padding: 0;
        color: #111827;
        background: transparent;
        border-radius: 0;
    }

    .college-menu-button strong {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .college-menu-button span {
        width: 32px;
        height: 3px;
        background: #111827;
    }

    .college-shell {
        width: min(100% - 28px, 1180px);
    }

    .college-hero--institution,
    .college-hero__content {
        min-height: 405px;
    }

    .college-hero__content {
        align-content: start;
        padding: 22px 28px 72px;
    }

    .college-hero__overlay {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.16)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62));
    }

    .college-hero__kicker {
        margin-bottom: 8px;
        color: var(--college-gold);
        font-size: 1.15rem;
        animation: collegeWaveFloat 2.8s ease-in-out infinite;
    }

    .college-hero h1,
    .college-page-hero h1 {
        max-width: 92%;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 2.35rem;
        line-height: 1.1;
        color: var(--college-gold);
        text-transform: none;
    }

    .college-hero h1 strong,
    .college-hero h1 em {
        color: #ffffff;
    }

    .college-hero__lead {
        display: none;
    }

    .college-hero__button {
        min-width: 282px;
        min-height: 74px;
        margin-top: 36px;
        color: var(--college-wine);
        background: linear-gradient(90deg, #f8bd19, #ffd85d, #f8bd19);
        background-size: 220% 100%;
        border-radius: 12px;
        font-size: 1.05rem;
        animation: collegeWaveGlow 3.2s ease-in-out infinite;
    }

    .college-hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .college-hero-arrow--prev {
        left: 24px;
    }

    .college-hero-arrow--next {
        right: 24px;
    }

    .college-hero-dots {
        display: none;
    }

    .college-mobile-admissions {
        position: relative;
        display: block;
        overflow: hidden;
        padding: 58px 22px 104px;
        background: #ffffff;
        text-align: center;
    }

    .college-mobile-admissions::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 34px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 32px 32px,
            linear-gradient(225deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 32px 32px,
            var(--college-wine);
        content: "";
    }

    .college-mobile-admissions__inner {
        display: grid;
        justify-items: center;
    }

    .college-mobile-admissions__title {
        margin: 0;
        color: #3a9369;
        font-size: 3.25rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
        animation: collegeWaveFloat 2.6s ease-in-out infinite;
    }

    .college-mobile-admissions__status {
        margin: 26px 0 0;
        color: var(--college-wine);
        font-size: 1.72rem;
        font-weight: 800;
        text-transform: uppercase;
        animation: collegeWaveFloat 2.6s ease-in-out infinite;
        animation-delay: 160ms;
    }

    .college-mobile-admissions__actions {
        display: grid;
        width: min(282px, 100%);
        gap: 28px;
        margin-top: 58px;
    }

    .college-mobile-admissions__button {
        display: inline-flex;
        min-height: 64px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        font-size: 1.18rem;
        font-weight: 700;
        animation: collegeWaveFloat 2.75s ease-in-out infinite, collegeWaveGlow 3.6s ease-in-out infinite;
    }

    .college-mobile-admissions__button--outline {
        color: var(--college-wine);
        background: #ffffff;
        border: 2px solid var(--college-wine);
    }

    .college-mobile-admissions__button--solid {
        color: #ffffff;
        background: linear-gradient(90deg, var(--college-wine), #b32652, var(--college-wine));
        background-size: 220% 100%;
    }

    .college-leaders {
        padding-top: 70px;
    }

    .college-section {
        padding: 62px 0;
    }

    .college-section h2,
    .college-final-cta h2 {
        font-size: 2.25rem;
    }

    .college-leaders__thumbs {
        grid-template-columns: 1fr;
    }

    .college-gallery {
        grid-auto-columns: minmax(280px, 86vw);
        padding-inline: 14px;
    }

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

    .college-final-cta .college-shell > div,
    .college-footer__bottom {
        flex-direction: column;
    }

    .college-final-cta__button {
        width: 100%;
    }
}
