:root {
            --navy: #1b305c;
            --navy-lt: #243f75;
            --maroon: #972836;
            --cream: #f8f6f2;
            --grey: #f2f4f7;
            --orange: #e87722;
            --gold: #c8973a;
            --text: #1a1a1a;
            --muted: #6b7280;
            --font-body: 'DM Sans', Arial, sans-serif;
            --font-display: 'DM Serif Display', Georgia, serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(27,48,92,0.97);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 64px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            text-decoration: none;
        }

            .nav-logo .shield {
                width: 32px;
                height: 32px;
                background: var(--gold);
                clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                font-weight: 700;
                color: var(--navy);
            }

            .nav-logo img {
                width: 70%;
            }

        .nav-cta {
            background: var(--maroon);
            color: #fff;
            padding: 9px 22px;
            border-radius: 4px;
            font-size: .85rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: .3px;
            transition: background .2s;
        }

            .nav-cta:hover {
                background: #7a1f2a;
            }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            background: var(--navy);
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

            .hero::before {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse at 70% 30%, rgba(200,151,58,.12) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(151,40,54,.1) 0%, transparent 50%);
                pointer-events: none;
            }
            /* diagonal accent */
            .hero::after {
                content: '';
                position: absolute;
                right: -80px;
                top: 0;
                bottom: 0;
                width: 220px;
                background: rgba(255,255,255,.03);
                transform: skewX(-6deg);
                pointer-events: none;
            }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 6% 80px 7%;
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200,151,58,.15);
            border: 1px solid rgba(200,151,58,.3);
            color: var(--gold);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 28px;
            animation: fadeUp .6s ease both;
        }

            .hero-eyebrow::before {
                content: '';
                width: 6px;
                height: 6px;
                background: var(--gold);
                border-radius: 50%;
            }

        .hero-h1 {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.5vw, 3.8rem);
            line-height: 1.1;
            color: #fff;
            margin-bottom: 12px;
            animation: fadeUp .6s .1s ease both;
        }

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

        .hero-sub {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: rgba(255,255,255,.55);
            font-style: italic;
            margin-bottom: 24px;
            animation: fadeUp .6s .15s ease both;
        }

        .hero-desc {
            color: rgba(255,255,255,.72);
            font-size: 1.05rem;
            line-height: 1.75;
            max-width: 480px;
            margin-bottom: 40px;
            animation: fadeUp .6s .2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: fadeUp .6s .25s ease both;
        }

        .btn-primary {
            background: var(--maroon);
            color: #fff;
            padding: 14px 32px;
            border-radius: 5px;
            font-size: .92rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 4px 20px rgba(151,40,54,.35);
        }

            .btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 28px rgba(151,40,54,.45);
            }

        .btn-ghost {
            background: transparent;
            color: rgba(255,255,255,.85);
            border: 1px solid rgba(255,255,255,.25);
            padding: 14px 28px;
            border-radius: 5px;
            font-size: .92rem;
            font-weight: 500;
            text-decoration: none;
            transition: border-color .2s, color .2s;
        }

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

        .hero-majors {
            margin-top: 52px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,.1);
            animation: fadeUp .6s .35s ease both;
        }

        .hero-majors-label {
            font-size: .72rem;
            color: rgba(255,255,255,.45);
            letter-spacing: .8px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .hero-majors-wrap {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .major-btn {
            padding: 9px 18px;
            border-radius: 100px;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: .4px;
            text-transform: uppercase;
            cursor: default;
            user-select: none;
            border: none;
        }

        /* hero right — form card */
        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 6% 80px 4%;
            position: relative;
            z-index: 2;
        }

        .form-card {
            background: #fff;
            border-radius: 16px;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 24px 64px rgba(0,0,0,.25);
            animation: fadeUp .7s .3s ease both;
        }

            .form-card h3 {
                font-family: var(--font-display);
                font-size: 1.55rem;
                color: var(--navy);
                margin-bottom: 6px;
            }

            .form-card p {
                font-size: .82rem;
                color: var(--muted);
                margin-bottom: 24px;
            }

        .crm-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px 20px;
            min-height: 320px;
            color: var(--muted);
        }

            .crm-placeholder .crm-icon {
                font-size: 2.5rem;
                margin-bottom: 16px;
            }

            .crm-placeholder h3 {
                font-family: var(--font-display);
                font-size: 1.4rem;
                color: var(--navy);
                margin-bottom: 10px;
            }

            .crm-placeholder p {
                font-size: .82rem;
                line-height: 1.65;
            }

            .crm-placeholder code {
                background: #eef1f8;
                padding: 2px 6px;
                border-radius: 4px;
                font-size: .78rem;
                color: var(--navy-lt);
            }

        /* ── SECTION GENERIC ── */
        section {
            padding: 96px 7%;
        }

        .section-tag {
            display: inline-block;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .section-h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .section-lead {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.75;
            max-width: 600px;
        }

        .section-header {
            margin-bottom: 56px;
        }

        /* ── YEAR JOURNEY ── */
        .journey {
            background: var(--cream);
        }

        .journey-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 0;
            border: 1px solid #e5e2db;
            border-radius: 16px;
            overflow: hidden;
        }

        .year-card {
            padding: 36px 28px;
            border-right: 1px solid #e5e2db;
            position: relative;
            transition: background .25s;
        }

            .year-card:last-child {
                border-right: none;
            }

            .year-card:hover {
                background: #fff;
            }

        .year-tag {
            display: inline-block;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 10px;
        }

        .year-num {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .year-action {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 14px;
        }

        .year-focus-label {
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .year-focus {
            font-size: .85rem;
            color: var(--navy);
            margin-bottom: 16px;
            font-weight: 500;
            line-height: 1.5;
        }

        .year-outcome {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.65;
        }

        .year-bar {
            height: 3px;
            background: var(--grey);
            margin-bottom: 24px;
            border-radius: 2px;
            overflow: hidden;
        }

        .year-bar-fill {
            height: 100%;
            background: var(--orange);
            border-radius: 2px;
        }

        /* ── DEPARTMENTS ── */
        .depts {
            background: var(--grey);
        }

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

        .dept-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,.06);
            transition: transform .25s, box-shadow .25s;
            display: flex;
            flex-direction: column;
        }

            .dept-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 32px rgba(0,0,0,.1);
            }

        .dept-header {
            padding: 32px 32px 0;
            display: flex;
            align-items: flex-start;
            gap: 18px;
        }

        .dept-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

            .dept-icon.design {
                background: #fff8e8;
            }

            .dept-icon.comm {
                background: #eef8f0;
            }

            .dept-icon.psych {
                background: #fef3f0;
            }

            .dept-icon.lib {
                background: #eef1fa;
            }

        .dept-header-text h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .dept-campus {
            font-size: .72rem;
            color: var(--muted);
            font-weight: 500;
            letter-spacing: .5px;
        }

        .dept-body {
            padding: 20px 32px 28px;
            flex: 1;
        }

        .dept-desc {
            font-size: .85rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .dept-programmes {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .prog-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--grey);
            border-radius: 8px;
            padding: 9px 14px;
            font-size: .8rem;
            font-weight: 500;
            color: var(--navy);
        }

        .prog-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* minors row */
        .dept-minors {
            margin-top: 4px;
        }

        .dept-minors-label {
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .minors-wrap {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .minor-tag {
            background: #eef1f8;
            color: var(--navy-lt);
            padding: 4px 10px;
            border-radius: 100px;
            font-size: .72rem;
            font-weight: 600;
        }

        /* ── MAJORS & MINORS TABBED ── */
        .major-minor-section {
            background: var(--cream);
        }

        .mm-intro {
            max-width: 660px;
            font-size: .95rem;
            color: var(--muted);
            line-height: 1.75;
            margin-bottom: 40px;
        }

        .mm-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .mm-tab {
            background: #fff;
            padding: 14px 34px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: .3px;
            cursor: pointer;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            transition: all .2s;
            box-shadow: 0 2px 8px rgba(0,0,0,.06);
            border: 2px solid transparent;
        }

        /* Pure Majors — Navy */
        .mm-tab--pure {
            border-color: #1b305c;
            color: #1b305c;
        }

            .mm-tab--pure:hover,
            .mm-tab--pure.active {
                background: #1b305c;
                color: #fff;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(27,48,92,.28);
            }

        /* Interdisciplinary — Maroon */
        .mm-tab--inter {
            border-color: #972836;
            color: #972836;
        }

            .mm-tab--inter:hover,
            .mm-tab--inter.active {
                background: #972836;
                color: #fff;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(151,40,54,.28);
            }

        /* Minors — Amber */
        .mm-tab--minors {
            border-color: #b5863a;
            color: #b5863a;
        }

            .mm-tab--minors:hover,
            .mm-tab--minors.active {
                background: #b5863a;
                color: #fff;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(181,134,58,.28);
            }

        /* Co-Curriculars — Teal */
        .mm-tab--cocurr {
            border-color: #2e8b6e;
            color: #2e8b6e;
        }

            .mm-tab--cocurr:hover,
            .mm-tab--cocurr.active {
                background: #2e8b6e;
                color: #fff;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(46,139,110,.28);
            }

        .mm-panel {
            display: none;
            overflow: hidden;
        }

            .mm-panel.active {
                display: block;
            }

        /* ── PROGRAMME TILES ── */
        .prog-tile-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .prog-tile {
            background: #fff;
            border: 1.5px solid #e5e2db;
            border-radius: 12px;
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: .84rem;
            color: var(--muted);
            transition: border-color .2s, transform .2s, box-shadow .2s;
        }

            .prog-tile:hover {
                border-color: var(--maroon);
                transform: translateY(-3px);
                box-shadow: 0 8px 24px rgba(151,40,54,.1);
            }

            .prog-tile strong {
                display: block;
                font-size: 1rem;
                font-weight: 700;
                color: var(--navy);
                line-height: 1.35;
            }

        .prog-tile--minor {
            font-size: .95rem;
            font-weight: 600;
            color: var(--navy);
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 18px 16px;
            min-height: unset;
        }

        .prog-tile--cocurr {
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 18px 16px;
        }

            .prog-tile--cocurr strong {
                font-size: .95rem;
                color: var(--navy);
            }

            .prog-tile--cocurr:hover {
                border-color: var(--navy);
            }

        .mm-footnote {
            font-size: .75rem;
            color: var(--muted);
            font-style: italic;
        }

        /* ── AI + LABS ── */
        .labs {
            background: var(--grey);
        }

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

        .lab-card {
            background: #fff;
            border-radius: 12px;
            padding: 28px 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,.05);
            transition: transform .2s;
        }

            .lab-card:hover {
                transform: translateY(-3px);
            }

        .lab-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
        }

            .lab-icon.apple {
                background: #fff3e8;
            }

            .lab-icon.dell {
                background: #e8f0fe;
            }

            .lab-icon.innov {
                background: #fef4e6;
            }

            .lab-icon.media {
                background: #f0f7ee;
            }

        .lab-card h4 {
            font-size: .92rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .lab-card p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.65;
        }

        /* ── PATHWAYS ── */
        .pathways {
            background: var(--cream);
        }

        .pathways-row {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
        }

        .pathway-card {
            border-radius: 14px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            border: 1.5px solid #e5e2db;
            background: #fff;
            transition: border-color .2s, box-shadow .2s;
        }

            .pathway-card:hover {
                border-color: var(--navy);
                box-shadow: 0 8px 28px rgba(27,48,92,.12);
            }

        .pathway-num {
            font-family: var(--font-display);
            font-size: 3.5rem;
            color: var(--grey);
            position: absolute;
            top: 20px;
            right: 24px;
            line-height: 1;
            user-select: none;
        }

        .pathway-icon {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .pathway-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .pathway-card p {
            font-size: .83rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ── GLOBAL PARTNERS ── */
        .global {
            background: var(--navy);
        }

            .global .section-h2 {
                color: #fff;
            }

            .global .section-lead {
                color: rgba(255,255,255,.6);
            }

        .partners-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 48px;
        }

        .partner-pill {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.8);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: .8rem;
            font-weight: 500;
            transition: background .2s;
        }

            .partner-pill:hover {
                background: rgba(255,255,255,.14);
            }

        /* ── CAMPUS GALLERY ── */
        .campus-gallery {
            padding: 0;
            background: var(--navy);
        }

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

        .gallery-item {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
        }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform .4s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.04);
            }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            background: #1a2a45;
            border: 2px dashed rgba(255,255,255,.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            padding: 20px;
            min-height: 300px;
        }

            .gallery-placeholder .gallery-icon {
                font-size: 2rem;
                opacity: .4;
            }

            .gallery-placeholder p {
                color: rgba(255,255,255,.5);
                font-size: .85rem;
                font-weight: 600;
                margin: 0;
            }

            .gallery-placeholder span {
                color: rgba(255,255,255,.25);
                font-size: .72rem;
                font-family: monospace;
            }

        @media (max-width: 700px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ── ADMISSIONS ── */
        .admissions {
            background: var(--grey);
        }

        .admission-steps {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 0;
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 14px rgba(0,0,0,.07);
            margin-top: 0;
        }

        .adm-step {
            padding: 36px 28px;
            border-right: 1px solid #f0ede7;
            position: relative;
        }

            .adm-step:last-child {
                border-right: none;
            }

        .adm-step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--navy);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .adm-step h4 {
            font-size: .92rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .adm-step p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.65;
        }

        .eligibility-box {
            background: var(--navy);
            color: #fff;
            border-radius: 14px;
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .elig-text h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .elig-text p {
            font-size: .88rem;
            color: rgba(255,255,255,.65);
            line-height: 1.6;
            max-width: 480px;
        }

        .elig-badge {
            background: var(--gold);
            color: var(--navy);
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            white-space: nowrap;
        }

        /* ── CONTACT STRIP ── */
        .contact-strip {
            background: var(--maroon);
            padding: 64px 7%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

            .contact-strip h2 {
                font-family: var(--font-display);
                font-size: clamp(1.6rem, 2.5vw, 2.2rem);
                color: #fff;
                max-width: 480px;
                line-height: 1.3;
            }

        .contact-apply-btn {
            background: #fff;
            color: var(--navy);
            padding: 16px 40px;
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: .3px;
            flex-shrink: 0;
            box-shadow: 0 6px 24px rgba(0,0,0,.18);
            transition: transform .2s, box-shadow .2s, background .2s;
        }

            .contact-apply-btn:hover {
                background: var(--cream);
                transform: translateY(-2px);
                box-shadow: 0 10px 32px rgba(0,0,0,.25);
            }

        .contact-info {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .contact-item {
            text-align: left;
        }

            .contact-item .c-label {
                font-size: .7rem;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: rgba(255,255,255,.6);
                margin-bottom: 4px;
            }

            .contact-item .c-val {
                color: #fff;
                font-size: .95rem;
                font-weight: 600;
            }

            .contact-item a.c-val {
                text-decoration: none;
            }

                .contact-item a.c-val:hover {
                    text-decoration: underline;
                }

        /* ── FOOTER ── */
        footer {
            background: var(--navy);
            padding: 32px 7%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

            footer p {
                font-size: .78rem;
                color: rgba(255,255,255,.4);
            }

        .footer-links {
            display: flex;
            gap: 20px;
        }

            .footer-links a {
                font-size: .78rem;
                color: rgba(255,255,255,.45);
                text-decoration: none;
            }

                .footer-links a:hover {
                    color: rgba(255,255,255,.8);
                }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .dept-grid {
                grid-template-columns: 1fr 1fr;
            }

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

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

            .hero-right {
                display: block;
                padding: 0px 6% 80px 4%;
            }

            .hero-left {
                padding: 100px 6% 70px;
            }

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

            .year-card {
                border-right: none;
                border-bottom: 1px solid #e5e2db;
            }

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

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

            .pathways-row {
                grid-template-columns: 1fr;
            }

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

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

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

            .adm-step:nth-child(2) {
                border-right: none;
            }
        }

        @media (max-width: 600px) {
            section {
                padding: 72px 5%;
            }

            .hero-left {
                padding: 88px 5% 56px;
            }

            .hero-right {
                padding: 0 5% 72px;
            }

            .hero-majors-wrap {
                gap: 8px;
            }

            .major-btn {
                font-size: .72rem;
                padding: 7px 13px;
            }

            .mm-tabs {
                flex-direction: column;
            }

            .mm-tab {
                width: 100%;
                text-align: center;
            }

            /* Disable transform on active tabs on mobile — prevents iOS Safari
               stacking-context repaint bug where panel content doesn't appear */
            .mm-tab--pure:hover, .mm-tab--pure.active,
            .mm-tab--inter:hover, .mm-tab--inter.active,
            .mm-tab--minors:hover, .mm-tab--minors.active,
            .mm-tab--cocurr:hover, .mm-tab--cocurr.active {
                transform: none;
                box-shadow: none;
            }

            /* Ensure panels are not clipped or hidden by a parent transform */
            .mm-panel {
                transform: none;
                will-change: auto;
            }

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

            .journey-grid, .labs-grid {
                grid-template-columns: 1fr;
            }

            .admission-steps {
                grid-template-columns: 1fr;
            }

            .adm-step {
                border-right: none;
                border-bottom: 1px solid #f0ede7;
            }

            .partners-row {
                gap: 8px;
            }

            .eligibility-box {
                flex-direction: column;
                text-align: center;
            }

            .elig-text p {
                max-width: 100%;
            }

            .contact-strip {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }
        }

        @media (max-width: 400px) {
            .prog-tile-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── NEW SECTIONS RESPONSIVE ── */
        @media (max-width: 900px) {
            /* Why AI x Liberal Arts — 3 cols → 1 col */
            .why-ai-grid {
                grid-template-columns: 1fr !important;
            }

            /* Career Outcomes — side-by-side → stacked */
            .career-outcomes-inner {
                grid-template-columns: 1fr !important;
            }

            /* Quote cards — full width */
            .quote-stack {
                max-width: 100% !important;
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            /* Override inline padding on new sections */
            .formula-section {
                padding: 56px 5% !important;
            }

            .why-ai-section {
                padding: 64px 5% !important;
            }

            .career-outcomes-section {
                padding: 64px 5% !important;
            }

            /* Formula panels — stack vertically, restore rounded corners */
            .formula-panel {
                border-radius: 12px !important;
                border: 1px solid rgba(255,255,255,.12) !important;
                min-width: 100% !important;
            }

                .formula-panel:last-child {
                    border-color: rgba(200,151,58,.4) !important;
                }

            /* Career roles → single column */
            .career-roles-grid {
                grid-template-columns: 1fr !important;
            }

            /* Quote font size down on small screens */
            .quote-stack div p:first-child {
                font-size: 1rem !important;
            }
        }