        :root {
            --primary: #800000;
            --primary-dark: #4a0404;
            --accent: #c5a059;
            --accent-light: #ecc985;
            --cream: #fdfbf7;
            --charcoal: #1a1a1a;
            --ff-heading: 'Playfair Display', serif;
            --ff-body: 'Outfit', sans-serif
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--ff-body);
            color: var(--charcoal);
            background: var(--cream);
            overflow-x: hidden;
            line-height: 1.6
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--ff-heading);
            line-height: 1.25
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ul {
            list-style: none
        }

        img {
            max-width: 100%;
            display: block
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit
        }

        .glass-panel {
            border-width: 1px;
            border-color: rgba(255, 255, 255, .3);
            background-color: rgba(255, 255, 255, .7);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px)
        }

        .fixed {
            position: fixed
        }

        .top-5 {
            top: 1.25rem
        }

        .left-0 {
            left: 0
        }

        .right-0 {
            right: 0
        }

        .z-50 {
            z-index: 50
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto
        }

        .flex {
            display: flex
        }

        .items-center {
            align-items: center
        }

        .justify-between {
            justify-content: space-between
        }

        .gap-6 {
            gap: 1.5rem
        }

        .max-w-\[95\%\] {
            max-width: 95%
        }

        .rounded-full {
            border-radius: 9999px
        }

        .px-8 {
            padding-left: 2rem;
            padding-right: 2rem
        }

        .py-3 {
            padding-top: .75rem;
            padding-bottom: .75rem
        }

        .pt-24 {
            padding-top: 6rem
        }

        .pb-16 {
            padding-bottom: 4rem
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem
        }

        .max-w-7xl {
            max-width: 80rem
        }

        .text-white {
            color: #fff
        }

        .text-white\/90 {
            color: rgba(255, 255, 255, .9)
        }

        .text-7xl {
            font-size: 4.5rem;
            line-height: 1
        }

        .text-6xl {
            font-size: 3.75rem;
            line-height: 1
        }

        .text-xl {
            font-size: 1.25rem;
            line-height: 1.75rem
        }

        .leading-tight {
            line-height: 1.25
        }

        .leading-relaxed {
            line-height: 1.625
        }

        .mb-6 {
            margin-bottom: 1.5rem
        }

        .mb-8 {
            margin-bottom: 2rem
        }

        .mt-16 {
            margin-top: 4rem
        }

        .border-white\/20 {
            border-color: rgba(255, 255, 255, .2)
        }

        .bg-white\/10 {
            background-color: rgba(255, 255, 255, .1)
        }

        .backdrop-blur-md {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px)
        }

        @media (min-width: 768px) {
            .md\:text-7xl {
                font-size: 4.5rem;
                line-height: 1
            }
            .md\:text-xl {
                font-size: 1.25rem;
                line-height: 1.75rem
            }
            .md\:px-8 {
                padding-left: 2rem;
                padding-right: 2rem
            }
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem
        }

        /* NAV */
        .nav-wrap {
            position: fixed;
            top: 1.25rem;
            left: 0;
            right: 0;
            z-index: 100;
            transition: top .3s
        }

        .nav-wrap.scrolled {
            top: .5rem
        }

        .nav-inner {
            max-width: 95%;
            margin: 0 auto;
            border-radius: 9999px;
            padding: .75rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, .85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
            transition: all .3s
        }

        .nav-wrap.scrolled .nav-inner {
            background: rgba(255, 255, 255, .95);
            box-shadow: 0 8px 40px rgba(0, 0, 0, .12)
        }

        .nav-logo img {
            height: 2.75rem
        }

        .nav-logo .logo-placeholder {
            height: 2.75rem;
            display: flex;
            align-items: center;
            gap: .5rem;
            font-family: var(--ff-heading);
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem
        }

        .nav-logo .logo-placeholder .logo-icon {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.25rem;
            font-weight: 700
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none
            }

            .btn-login {
                display: none
            }

            .nav-inner .hamburger {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                background: rgba(255, 255, 255, .85);
                border: 1px solid rgba(0, 0, 0, .08)
            }
        }

        .nav-links>a,
        .nav-links .dropdown>button {
            font-weight: 500;
            font-size: .9375rem;
            padding: .5rem 0;
            color: #111;
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: transparent;
            border: 0;
            box-shadow: none;
            transition: color .2s
        }

        .nav-links>a:hover,
        .nav-links .dropdown>button:hover {
            color: var(--primary)
        }

        .dropdown {
            position: relative
        }

        .dropdown>button {
            display: flex;
            align-items: center;
            gap: .25rem
        }

        .dropdown>button svg {
            width: 16px;
            height: 16px;
            transition: transform .2s
        }

        .dropdown:hover>button svg {
            transform: rotate(180deg)
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding-top: .75rem;
            opacity: 0;
            visibility: hidden;
            transition: all .25s;
            pointer-events: none;
            z-index: 200
        }

        .dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto
        }

        .mega-grid {
            background: #fff;
            border-radius: .75rem;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
            border: 1px solid #e5e7eb;
            padding: 1.25rem;
            display: grid;
            gap: 1px;
            background-color: #e5e7eb
        }

        .mega-grid.cols-3 {
            width: 48rem;
            grid-template-columns: repeat(3, 1fr)
        }

        .mega-grid.cols-4 {
            width: 56rem;
            grid-template-columns: repeat(4, 1fr)
        }

        .mega-grid.cols-5 {
            width: 64rem;
            grid-template-columns: repeat(5, 1fr)
        }

        .mega-col {
            background: #fff;
            padding: 1rem;
            border-radius: .5rem
        }

        .mega-col:first-child {
            border-radius: 1rem 0 0 1rem
        }

        .mega-col:last-child {
            border-radius: 0 1rem 1rem 0
        }

        .mega-col-title {
            display: flex;
            align-items: center;
            gap: .5rem;
            margin-bottom: .75rem;
            font-family: var(--ff-heading);
            font-size: .9375rem;
            font-weight: 700;
            color: var(--primary)
        }

        .mega-col-title svg {
            width: 18px;
            height: 18px;
            color: var(--primary)
        }

        .mega-col ul li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .375rem .5rem;
            font-size: .875rem;
            color: #374151;
            border-radius: .5rem;
            transition: all .15s
        }

        .mega-col ul li a:hover {
            background: var(--cream);
            color: var(--primary)
        }

        .badge {
            font-size: .7rem;
            font-weight: 700;
            padding: .125rem .5rem;
            border-radius: 9999px
        }

        .badge-gold {
            background: var(--accent);
            color: #000
        }

        .badge-green {
            background: #22c55e;
            color: #fff
        }

        .mega-cta {
            grid-column: 1/-1;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            padding: 1rem;
            border-radius: 0 0 .75rem .75rem;
            text-align: center;
            color: #fff
        }

        .mega-cta p {
            font-size: .875rem;
            margin-bottom: .5rem;
            font-weight: 500
        }

        .mega-cta a {
            display: inline-block;
            background: var(--accent);
            color: #000;
            padding: .5rem 1.5rem;
            border-radius: 9999px;
            font-size: .875rem;
            font-weight: 700;
            transition: background .2s
        }

        .mega-cta a:hover {
            background: var(--accent-light)
        }

        .btn-login {
            background: var(--primary);
            color: #fff;
            padding: .5rem 1.25rem;
            border-radius: 9999px;
            font-size: .875rem;
            font-weight: 500;
            transition: all .2s
        }

        .btn-login:hover {
            background: var(--primary-dark);
            transform: translateY(-2px)
        }

        .hamburger {
            padding: .5rem;
            background: none;
            border-radius: 50%;
            color: #111;
            display: none;
            transition: background .2s
        }

        .hamburger:hover {
            background: #f3f4f6
        }

        .hamburger svg {
            width: 24px;
            height: 24px;
            stroke: currentColor
        }

        /* MOBILE NAV */
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .5);
            z-index: 150
        }

        .mobile-overlay.active {
            display: block
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 300px;
            max-width: 85vw;
            background: #fff;
            z-index: 200;
            transform: translateX(100%);
            transition: transform .3s;
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0, 0, 0, .15)
        }

        .mobile-menu.active {
            transform: translateX(0)
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem
        }

        .mobile-menu-header .logo-placeholder {
            font-family: var(--ff-heading);
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: .5rem
        }

        .mobile-close {
            padding: .5rem;
            background: none;
            border-radius: 50%;
            transition: background .2s
        }

        .mobile-close:hover {
            background: #f3f4f6
        }

        .mobile-close svg {
            width: 24px;
            height: 24px
        }

        .mobile-nav {
            padding: 0 1.5rem 1.5rem
        }

        .mobile-nav>a {
            display: block;
            padding: .75rem 1rem;
            font-size: 1.125rem;
            font-weight: 500;
            border-radius: .5rem;
            transition: background .2s
        }

        .mobile-nav>a:hover {
            background: var(--cream)
        }

        .mobile-accordion {
            margin-bottom: .25rem
        }

        .mobile-accordion-btn {
            width: 100%;
            text-align: left;
            padding: .75rem 1rem;
            font-size: 1.125rem;
            font-weight: 500;
            background: none;
            border-radius: .5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background .2s
        }

        .mobile-accordion-btn:hover {
            background: var(--cream)
        }

        .mobile-accordion-btn svg {
            width: 20px;
            height: 20px;
            transition: transform .2s
        }

        .mobile-accordion-btn.active svg {
            transform: rotate(180deg)
        }

        .mobile-accordion-content {
            display: none;
            padding: .5rem 0 .5rem 1rem
        }

        .mobile-accordion-content.active {
            display: block
        }

        .mobile-accordion-content .sub-title {
            display: flex;
            align-items: center;
            gap: .5rem;
            font-weight: 700;
            color: var(--primary);
            font-size: .875rem;
            margin: .75rem 0 .375rem
        }

        .mobile-accordion-content .sub-title svg {
            width: 16px;
            height: 16px
        }

        .mobile-accordion-content a {
            display: block;
            padding: .5rem .75rem;
            font-size: .875rem;
            color: #374151;
            border-radius: .25rem;
            transition: background .15s
        }

        .mobile-accordion-content a:hover {
            background: var(--cream)
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden
        }

        @media (min-width: 1024px) {
            .hero {
                min-height: 100dvh;
                height: 100dvh
            }

            .hero-content {
                padding-top: 7.5rem;
                padding-bottom: 3.5rem
            }
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url("./images/campus.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, .35));
            opacity: 1
        }

        .hero-decoration {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            opacity: .08;
            z-index: 1
        }

        .hero-decoration.d1 {
            top: -100px;
            right: -100px;
            background: var(--accent)
        }

        .hero-decoration.d2 {
            bottom: -150px;
            left: -150px;
            background: var(--accent)
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            color: #fff
        }

        .animate-up {
            transform: translateY(60px);
            animation: moveUpFade .8s cubic-bezier(.2, .9, .2, 1) forwards
        }

        .hero-badge.animate-up {
            animation-delay: .05s
        }

        .hero-title.animate-up {
            animation-delay: .15s
        }

        .hero-subline.animate-up {
            animation-delay: .25s
        }

        .hero-btns.animate-up {
            animation-delay: .35s
        }

        .animate-left {
            transform: translateX(34px);
            animation: slideInLeft .75s cubic-bezier(.2, .9, .2, 1) forwards
        }

        .hero-stats-card.animate-left {
            animation-delay: .45s
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(34px)
            }

            to {
                transform: translateX(0)
            }
        }

        @keyframes moveUpFade {
            from {
                transform: translateY(60px)
            }

            to {
                transform: translateY(0)
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .animate-up {
                transform: none;
                animation: none
            }

            .animate-left {
                transform: none;
                animation: none
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .5rem 1rem;
            border-radius: 9999px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1.5rem
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
            flex-shrink: 0
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.1;
            max-width: 800px
        }

        .hero h1 span {
            color: var(--accent)
        }

        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 600px;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, .85);
            line-height: 1.7
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: center
        }

        .hero-title {
            font-family: var(--ff-heading);
            font-style: italic;
            font-weight: 700;
            font-size: clamp(2.75rem, 5.5vw, 4.75rem);
            line-height: 1.05;
            margin: 1rem 0 1.25rem;
            text-shadow: 0 10px 30px rgba(0, 0, 0, .35)
        }

        .hero-title span {
            color: var(--accent)
        }

        .hero-subline {
            font-weight: 600;
            font-size: 1rem;
            color: rgba(255, 255, 255, .9);
            margin-bottom: 1.5rem;
            text-shadow: 0 10px 30px rgba(0, 0, 0, .3)
        }

        .btn-hero-primary {
            background: #fff;
            color: #7b0000;
            padding: .85rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, .35);
            transition: transform .25s cubic-bezier(.2, .9, .2, 1)
        }

        .btn-hero-primary:hover {
            transform: translateY(-6px)
        }

        .btn-hero-secondary {
            background: rgba(0, 0, 0, .22);
            color: #fff;
            padding: .85rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, .55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: background .25s, transform .25s cubic-bezier(.2, .9, .2, 1)
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, .12)
        }

        .btn-hero-secondary svg {
            width: 18px;
            height: 18px
        }

        .hero-right {
            display: flex;
            justify-content: flex-end;
            margin-top: 220px
        }

        .hero-stats-card {
            width: min(420px, 100%);
            border-radius: .75rem;
            background: rgba(128, 0, 0, .92);
            border: 2px solid rgba(255, 255, 255, .2);
            box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
            padding: 2.25rem 2.25rem;
            position: relative;
            overflow: hidden
        }

        @media (min-width: 1024px) {
            .hero-stats-card {
                width: 300px;

            }
        }

        .nav-logo img {
            height: 2rem;
            width: auto;
            display: block
        }

        .hero-stat-row {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1rem;
            align-items: center
        }

        .hero-stat-num {
            font-family: var(--ff-heading);
            font-weight: 800;
            font-size: 3rem;
            color: var(--accent);
            line-height: 1
        }

        .hero-stat-text {
            font-weight: 700;
            font-size: 1rem;
            color: rgba(255, 255, 255, .95);
            line-height: 1.2
        }

        .hero-stat-divider {
            height: 1px;
            background: rgba(255, 255, 255, .25);
            margin: 1.25rem 0
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1.2fr .8fr;
                gap: 3rem
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .75rem 1.75rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: .9375rem;
            transition: all .25s
        }

        .btn-accent {
            background: var(--accent);
            color: #000
        }

        .btn-accent:hover {
            background: var(--accent-light);
            transform: translateY(-2px)
        }

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, .4);
            color: #fff;
            background: transparent
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .1)
        }

        .btn svg {
            width: 18px;
            height: 18px
        }

        /* SECTIONS COMMON */
        section {
            padding: 5rem 0
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: .375rem;
            font-size: .8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .075em;
            color: var(--primary);
            background: rgba(128, 0, 0, .08);
            padding: .375rem 1rem;
            border-radius: 9999px;
            margin-bottom: 1rem
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1rem
        }

        .section-sub {
            font-size: 1.0625rem;
            color: #6b7280;
            max-width: 640px;
            line-height: 1.7
        }

        .section-header {
            margin-bottom: 3rem
        }

        .section-header.center {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center
        }

        /* UPDATES */
        .updates {
            background: #fbf7ef;
            padding: 5rem 0
        }

        .updates-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2.5rem
        }

        .updates-eyebrow {
            font-size: .75rem;
            letter-spacing: .18em;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: .5rem
        }

        .updates-title {
            font-family: var(--ff-heading);
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            line-height: 1.05;
            margin: 0;
            color: #111
        }

        .updates-archive {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 42px;
            padding: 0 1.35rem;
            border-radius: 9999px;
            border: 1.5px solid rgba(0, 0, 0, .28);
            color: #111;
            background: rgba(255, 255, 255, .75);
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            transition: background .25s, color .25s, border-color .25s
        }

        .updates-archive:hover {
            background: #111;
            color: #fff;
            border-color: #111
        }

        .updates-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.75rem
        }

        .updates-feature {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            min-height: 420px;
            background: #111;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .18)
        }

        .updates-feature-media {
            position: absolute;
            inset: 0;
            background-image: url("./images/news-featured.webp");
            background-size: cover;
            background-position: center;
            filter: saturate(.9)
        }

        .updates-feature-media {
            transition: transform .9s cubic-bezier(.2, .9, .2, 1)
        }

        .updates-feature:hover .updates-feature-media {
            transform: scale(1.06)
        }

        .updates-feature-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .15))
        }

        .updates-feature-badge {
            position: absolute;
            left: 1.25rem;
            bottom: 8.75rem;
            background: #d6ab52;
            color: #0b0b0b;
            font-weight: 800;
            font-size: .72rem;
            padding: .45rem .85rem;
            border-radius: 9999px
        }

        .updates-feature-badge {
            box-shadow: 0 10px 20px rgba(0, 0, 0, .25)
        }

        .updates-feature-body {
            position: absolute;
            left: 1.25rem;
            right: 1.25rem;
            bottom: 1.25rem;
            color: #fff
        }

        .updates-feature-body h3 {
            font-family: var(--ff-heading);
            font-size: 1.9rem;
            line-height: 1.15;
            margin: 0 0 .65rem
        }

        .updates-feature-body p {
            margin: 0;
            color: rgba(255, 255, 255, .88);
            max-width: 38ch;
            font-weight: 600
        }

        .updates-right {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem
        }

        .updates-note {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, .08);
            border-radius: 1.5rem;
            padding: 1.5rem 1.6rem;
            box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
            transition: transform .25s cubic-bezier(.2, .9, .2, 1), box-shadow .25s
        }

        .updates-note:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 60px rgba(0, 0, 0, .12)
        }

        .updates-note-date {
            font-size: .75rem;
            font-weight: 800;
            color: rgba(0, 0, 0, .55);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: .65rem
        }

        .updates-note h4 {
            font-family: var(--ff-heading);
            font-size: 1.25rem;
            margin: 0 0 .5rem;
            color: #111
        }

        .updates-note p {
            margin: 0 0 .85rem;
            color: rgba(0, 0, 0, .65);
            font-weight: 600;
            font-size: .95rem
        }

        .updates-note-link {
            color: #7b0000;
            font-weight: 800;
            text-decoration: none
        }

        .updates-note-link:hover {
            text-decoration: underline
        }

        .updates-note--maroon {
            background: #7b0000;
            border-color: rgba(255, 255, 255, .1)
        }

        .updates-note--maroon .updates-note-date,
        .updates-note--maroon h4,
        .updates-note--maroon p,
        .updates-note--maroon .updates-note-link {
            color: rgba(255, 255, 255, .92)
        }

        .updates-note--maroon .updates-note-link {
            color: var(--accent)
        }

        .updates-campus {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            min-height: 260px;
            background-image: url("./images/campus-tour.webp");
            background-size: cover;
            background-position: center;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .14);
            transition: background-size .9s cubic-bezier(.2, .9, .2, 1), transform .25s cubic-bezier(.2, .9, .2, 1)
        }

        .updates-campus:hover {
            background-size: 110%;
            transform: translateY(-4px)
        }

        .updates-campus-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(120, 0, 0, .78), rgba(120, 0, 0, .18))
        }

        .updates-campus-body {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1.5rem;
            color: #fff
        }

        .updates-campus-body h3 {
            font-family: var(--ff-heading);
            font-size: 2.15rem;
            margin: 0 0 .35rem
        }

        .updates-campus-body p {
            margin: 0 0 1rem;
            color: rgba(255, 255, 255, .9);
            font-weight: 600
        }

        .updates-campus-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .8rem 1.35rem;
            border-radius: 9999px;
            background: #fff;
            color: #7b0000;
            font-weight: 800;
            text-decoration: none
        }

        .updates-mini-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem
        }

        .updates-mini {
            border-radius: 1.5rem;
            padding: 1.4rem 1.5rem;
            color: #fff;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
            transition: transform .25s cubic-bezier(.2, .9, .2, 1), box-shadow .25s
        }

        .updates-mini:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 60px rgba(0, 0, 0, .16)
        }

        .updates-mini--maroon {
            background: #7b0000
        }

        .updates-mini--charcoal {
            background: #1b1b1b
        }

        .updates-mini-icon {
            width: 44px;
            height: 44px;
            border-radius: .8rem;
            background: rgba(255, 255, 255, .12);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: .9rem
        }

        .updates-mini h4 {
            font-family: var(--ff-heading);
            font-size: 1.15rem;
            margin: 0 0 .5rem
        }

        .updates-mini p {
            margin: 0 0 .85rem;
            color: rgba(255, 255, 255, .82);
            font-weight: 600;
            font-size: .95rem
        }

        .updates-mini-date {
            font-weight: 800;
            color: var(--accent);
            font-size: .85rem
        }

        @media (min-width: 1024px) {
            .updates-grid {
                grid-template-columns: 1.2fr .8fr;
                grid-template-areas:
                    "feature right"
                    "mini mini";
                align-items: start
            }

            .updates-head {
                margin-bottom: 2.75rem
            }

            .updates-feature {
                grid-area: feature;
                min-height: 520px
            }

            .updates-right {
                grid-area: right
            }

            .updates-right {
                grid-template-columns: 1fr 1fr;
                align-items: stretch
            }

            .updates-right .updates-campus {
                grid-column: 1 / -1
            }

            .updates-mini-grid {
                grid-area: mini;
                grid-template-columns: repeat(4, 1fr)
            }
        }

        @media (max-width: 640px) {
            .updates-head {
                flex-direction: column;
                align-items: flex-start
            }
        }

        /* LEADERSHIP */
        .leadership {
            background: #eee9e1;
            padding: 5.5rem 0
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center
        }

        .leadership-left {
            max-width: 640px
        }

        .leadership-eyebrow {
            font-size: .75rem;
            letter-spacing: .18em;
            font-weight: 800;
            color: rgba(197, 160, 89, .95);
            text-transform: uppercase;
            margin-bottom: 1rem
        }

        .leadership-quote {
            margin: 0 0 1.5rem;
            max-width: 34ch
        }

        .leadership-quote-mark {
            display: none
        }

        .leadership-quote-text {
            font-family: var(--ff-heading);
            font-size: clamp(2.2rem, 4.2vw, 3.6rem);
            line-height: 1.05;
            color: #111
        }

        .leadership-quote-text span {
            color: #7b0000;
            font-style: italic
        }

        .leadership-sub {
            max-width: 54ch;
            color: rgba(17, 24, 39, .78);
            font-weight: 600;
            margin: 0 0 1.75rem
        }

        .leadership-person {
            margin-bottom: 1.5rem
        }

        .leadership-name {
            font-family: var(--ff-heading);
            font-size: 1.15rem;
            color: #111
        }

        .leadership-role {
            font-size: .85rem;
            font-weight: 700;
            color: rgba(17, 24, 39, .6)
        }

        .leadership-mark {
            display: flex;
            align-items: center;
            gap: .75rem;
            color: rgba(17, 24, 39, .55)
        }

        .leadership-mark img {
            height: 34px;
            width: auto
        }

        .leadership-mark-text {
            font-size: .7rem;
            font-weight: 800;
            letter-spacing: .06em;
            text-transform: uppercase;
            line-height: 1.2
        }

        .leadership-portrait-wrap {
            position: relative;
            display: flex;
            justify-content: center
        }

        .leadership-portrait-wrap::before {
            content: '';
            position: absolute;
            right: 0;
            top: -30px;
            width: min(760px, 100%);
            height: 620px;
            border-radius: 9999px;
            background: transparent;
            z-index: 0
        }

        .leadership-portrait {
            width: min(620px, 100%);
            height: 460px;
            border-radius: 9999px;
            overflow: hidden;
            background: transparent;
            box-shadow: none
        }

        .leadership-portrait {
            position: relative;
            z-index: 1;
            transform: translateY(42px)
        }

        .right-photo {
            position: relative;
            flex-shrink: 0;
            width: 380px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .photo-circle {
            width: 360px;
            height: 380px;
            border-radius: 50% 50% 0 0 / 55% 55% 0 0;
            overflow: hidden;
            background: #d9d4c8;
            position: relative
        }

        .photo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center
        }

        .quote-mark {
            position: absolute;
            bottom: -10px;
            left: -20px;
            width: 52px;
            height: 52px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10
        }

        .quote-mark span {
            font-family: var(--ff-heading);
            font-size: 32px;
            font-weight: 700;
            color: #7b0000;
            line-height: 1
        }

        .leadership-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 18%
        }

        .leadership-quote-tile {
            position: absolute;
            left: -8px;
            bottom: 88px;
            width: 72px;
            height: 72px;
            border-radius: .85rem;
            background: #fff;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--ff-heading);
            font-size: 2.5rem;
            color: #7b0000
        }

        .leadership-quote-tile {
            z-index: 2
        }

        /* ACHIEVEMENTS */
        .achievements {
            background: #7b0000;
            padding: 6.5rem 0;
            color: #fff
        }

        .achievements-head {
            text-align: center;
            margin-bottom: 4rem
        }

        .achievements-eyebrow {
            font-size: .75rem;
            letter-spacing: .18em;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: 1rem
        }

        .achievements-title {
            font-family: var(--ff-heading);
            font-size: clamp(2.4rem, 4.2vw, 3.6rem);
            line-height: 1.05;
            margin: 0
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: start
        }

        .achievement {
            text-align: center
        }

        .achievement-num {
            font-family: var(--ff-heading);
            font-weight: 800;
            font-size: clamp(3.5rem, 6vw, 5.75rem);
            line-height: 1;
            color: var(--accent);
            margin-bottom: 1rem
        }

        .achievement-label {
            font-family: var(--ff-heading);
            font-size: 1.35rem;
            margin-bottom: .5rem
        }

        .achievement-sub {
            color: rgba(255, 255, 255, .85);
            font-weight: 600
        }

        /* FAQ */
        .faq {
            background: #f7f3eb;
            padding: 6.25rem 0
        }

        .faq-head {
            text-align: center;
            margin-bottom: 3.25rem
        }

        .faq-eyebrow {
            font-size: .75rem;
            letter-spacing: .18em;
            font-weight: 800;
            color: rgba(197, 160, 89, .95);
            text-transform: uppercase;
            margin-bottom: .75rem
        }

        .faq-title {
            font-family: var(--ff-heading);
            font-size: clamp(2.4rem, 4.2vw, 3.75rem);
            line-height: 1.05;
            margin: 0;
            color: #111
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 980px;
            margin: 0 auto
        }

        .faq-item {
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(17, 24, 39, .06);
            border-radius: 2rem;
            padding: 1.75rem 2.25rem;
            display: flex;
            gap: 1.35rem;
            align-items: flex-start;
            box-shadow: 0 18px 55px rgba(0, 0, 0, .06);
            transition: box-shadow .25s cubic-bezier(.2, .9, .2, 1), transform .25s cubic-bezier(.2, .9, .2, 1)
        }

        .faq-item:hover {
            box-shadow: 0 22px 55px rgba(0, 0, 0, .12), 0 14px 24px rgba(0, 0, 0, .08);
            transform: translateY(-2px)
        }

        .faq-icon {
            width: 44px;
            height: 44px;
            border-radius: 9999px;
            background: rgba(255, 0, 68, .08);
            color: #ff0044;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: .15rem
        }

        .faq-q {
            font-family: var(--ff-heading);
            font-size: 1.6rem;
            line-height: 1.15;
            margin: .15rem 0 .75rem;
            color: #111
        }

        .faq-a {
            margin: 0;
            color: rgba(17, 24, 39, .62);
            font-weight: 600;
            line-height: 1.65
        }

        /* TESTIMONIALS */
        .testimonials {
            background: #f7f3eb;
            padding: 6.25rem 0
        }

        .testimonials-head {
            text-align: center;
            margin-bottom: 3.5rem
        }

        .testimonials-eyebrow {
            font-size: .75rem;
            letter-spacing: .18em;
            font-weight: 800;
            color: rgba(197, 160, 89, .95);
            text-transform: uppercase;
            margin-bottom: .75rem
        }

        .testimonials-title {
            font-family: var(--ff-heading);
            font-size: clamp(2.4rem, 4.2vw, 3.75rem);
            line-height: 1.05;
            margin: 0;
            color: #111
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem
        }

        .testimonial {
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(17, 24, 39, .06);
            border-radius: 2rem;
            padding: 1.9rem 2.1rem;
            box-shadow: 0 18px 55px rgba(0, 0, 0, .06)
        }

        .testimonial-quote {
            color: #7b0000;
            font-family: var(--ff-heading);
            font-weight: 900;
            font-size: 2.25rem;
            line-height: 1;
            margin-bottom: 1rem
        }

        .testimonial-text {
            margin: 0 0 1.5rem;
            font-style: italic;
            color: rgba(17, 24, 39, .62);
            font-weight: 600;
            line-height: 1.7
        }

        .testimonial-person {
            display: flex;
            align-items: center;
            gap: .9rem
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 9999px;
            background: #7b0000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: .9rem;
            letter-spacing: .02em;
            flex-shrink: 0
        }

        .testimonial-name {
            font-weight: 800;
            color: #111
        }

        .testimonial-role {
            font-size: .85rem;
            font-weight: 700;
            color: rgba(17, 24, 39, .55)
        }

        /* FOOTER */
        .site-footer {
            background: radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, .08), transparent 60%),
                radial-gradient(900px 500px at 100% -20%, rgba(197, 160, 89, .12), transparent 55%),
                linear-gradient(180deg, #141414, #0f0f0f);
            color: rgba(255, 255, 255, .86);
            padding: 4.25rem 0 1.75rem
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start
        }

        .footer-brand-head {
            display: flex;
            align-items: flex-start;
            gap: .9rem
        }

        .footer-logo {
            width: 44px;
            height: 44px;
            object-fit: contain;
            flex-shrink: 0
        }

        .footer-brand-title {
            font-family: var(--ff-heading);
            font-weight: 800;
            letter-spacing: .02em;
            color: rgba(255, 255, 255, .92);
            line-height: 1.2
        }

        .footer-desc {
            margin: 1.2rem 0 1.4rem;
            max-width: 62ch;
            color: rgba(255, 255, 255, .7);
            font-weight: 600;
            line-height: 1.7
        }

        .footer-ctas {
            display: flex;
            gap: .8rem;
            flex-wrap: wrap
        }

        .footer-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .6rem;
            padding: .75rem 1.15rem;
            border-radius: 9999px;
            font-weight: 800;
            text-decoration: none;
            border: 1px solid transparent;
            transition: background .25s, border-color .25s
        }

        .footer-btn--primary {
            background: var(--accent);
            color: #111
        }

        .footer-btn--primary:hover {
            background: #efe5cf
        }

        .footer-btn--ghost {
            background: transparent;
            border-color: rgba(255, 255, 255, .22);
            color: rgba(255, 255, 255, .92)
        }

        .footer-btn--ghost:hover {
            background: rgba(255, 255, 255, .12);
            border-color: rgba(255, 255, 255, .3)
        }

        .footer-badge {
            justify-self: start;
            width: 160px;
            border-radius: 1.4rem;
            border: 1px solid rgba(197, 160, 89, .35);
            background: rgba(255, 255, 255, .04);
            padding: 1.3rem 1.2rem;
            text-align: center
        }

        .footer-badge-icon {
            font-size: 1.35rem;
            margin-bottom: .75rem
        }

        .footer-badge-title {
            font-weight: 900;
            color: var(--accent);
            letter-spacing: .02em;
            margin-bottom: .25rem
        }

        .footer-badge-sub {
            font-size: .8rem;
            color: rgba(255, 255, 255, .7);
            font-weight: 700;
            line-height: 1.35
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, .1);
            margin: 2.5rem 0
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.25rem
        }

        .footer-col-title {
            font-family: var(--ff-heading);
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 1rem
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, .82);
            text-decoration: none;
            font-weight: 650;
            margin-bottom: .7rem
        }

        .footer-col a:hover {
            color: #fff
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: .8rem
        }

        .footer-contact-item {
            display: flex;
            gap: .65rem;
            align-items: flex-start;
            color: rgba(255, 255, 255, .8);
            font-weight: 650;
            line-height: 1.45
        }

        .footer-contact-ic {
            width: 18px;
            flex-shrink: 0;
            opacity: .9
        }

        .footer-bottom {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            align-items: center;
            padding-top: 2.25rem
        }

        .footer-copy {
            color: rgba(255, 255, 255, .6);
            font-weight: 650;
            font-size: .85rem
        }

        .footer-links {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap
        }

        .footer-links a {
            color: rgba(255, 255, 255, .68);
            text-decoration: none;
            font-weight: 650;
            font-size: .85rem
        }

        .footer-links a:hover {
            color: #fff
        }

        .footer-social {
            display: flex;
            gap: .75rem
        }

        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .92);
            text-decoration: none;
            font-weight: 900
        }

        .footer-social a:hover {
            background: rgba(255, 255, 255, .14)
        }

        .back-to-top {
            position: fixed;
            right: 1.4rem;
            bottom: 1.4rem;
            width: 44px;
            height: 44px;
            border-radius: 9999px;
            background: #7b0000;
            color: #fff;
            border: none;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity .2s, transform .2s, visibility .2s;
            z-index: 100
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0)
        }

        @media (min-width: 768px) {
            .achievements-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .footer-top {
                grid-template-columns: 1.25fr .75fr;
                align-items: start
            }

            .footer-badge {
                justify-self: end
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem
            }

            .footer-col--contact {
                grid-column: span 1
            }

            .footer-bottom {
                grid-template-columns: 1fr auto auto;
                gap: 1.25rem
            }
        }

        @media (min-width: 1024px) {
            .leadership-grid {
                grid-template-columns: 1.05fr .95fr;
                gap: 4rem
            }

            .leadership-left {
                max-width: 720px
            }

            .leadership-right {
                display: flex;
                justify-content: flex-end
            }

            .leadership-portrait-wrap {
                justify-content: flex-end
            }

            .leadership-portrait-wrap::before {
                width: 900px;
                height: 720px;
                top: -40px
            }

            .leadership-portrait {
                width: 720px;
                height: 520px
            }

            .leadership-portrait {
                transform: translateY(56px)
            }

            .leadership-quote-tile {
                left: -10px;
                bottom: 110px
            }
        }

        @media (max-width: 640px) {
            .faq-item {
                padding: 1.35rem 1.35rem;
                border-radius: 1.5rem
            }

            .faq-q {
                font-size: 1.35rem
            }
        }
