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

        :root {
            --navy:#1b305c;
            --navy-light:#234070;
            --navy-card:#1b305c;
            --red:#972836;
            --red-light:#b8313f;
            --orange:#E87722;
            --orange-light:#f08c3a;
            --cream:#f4f5f7;
            --cream2:#eceef2;
            --offwhite:#f7f8fa;
            --white:#FFFFFF;
            --gray:#555;
            --lgray:#888;
            --border:#d8dde8;
            --font-display:'Playfair Display',Georgia,serif;
            --font-serif:'Source Serif 4',Georgia,serif;
            --font-sans:'DM Sans',system-ui,sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--offwhite);
            color: var(--navy);
            line-height: 1.6;
        }

        /* NAV */
        nav {
            background: var(--navy);
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0,0,0,.3);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo {
            width: 36px;
            height: 36px;
            background: var(--red);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            color: white;
            font-size: 14px;
        }

        .nav-text {
            color: white;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .3px;
        }

            .nav-text span {
                color: var(--red);
                font-weight: 600;
            }

        .nav-links {
            display: flex;
            gap: 28px;
        }

            .nav-links a {
                color: rgba(255,255,255,.7);
                text-decoration: none;
                font-size: 13px;
                font-weight: 500;
                transition: color .2s;
            }

                .nav-links a:hover {
                    color: white;
                }

        .nav-apply {
            background: var(--red);
            color: white;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: background .2s;
        }

            .nav-apply:hover {
                background: var(--red-light);
            }

        /* HERO */
        .hero {
            background: var(--navy);
            min-height: 88vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 80px 5%;
        }

            .hero::before {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse at 70% 50%, rgba(151,40,54,.15) 0%, transparent 60%),radial-gradient(ellipse at 10% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
                pointer-events: none;
            }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .hero-content {
            max-width: 680px;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--red);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

            .hero-eyebrow::before {
                content: '';
                width: 24px;
                height: 2px;
                background: var(--red);
            }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(42px,5.5vw,72px);
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 24px;
        }

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

        .hero-sub {
            font-size: 18px;
            color: rgba(255,255,255,.7);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 540px;
            font-family: var(--font-serif);
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 44px;
        }

        .hero-badge {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.85);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
        }

        .hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--red);
            color: white;
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all .2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

            .btn-primary:hover {
                background: var(--red-light);
                transform: translateY(-1px);
            }

        .btn-outline {
            border: 1.5px solid rgba(255,255,255,.3);
            color: white;
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all .2s;
        }

            .btn-outline:hover {
                border-color: white;
                background: rgba(255,255,255,.05);
            }

        .hero-visual {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 42%;
            max-width: 580px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            z-index: 1;
        }

        .hero-img {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

            .hero-img img {
                width: 100%;
                height: 200px;
                object-fit: cover;
                display: block;
            }

            .hero-img:first-child {
                grid-column: 1/-1;
                height: 240px;
            }

                .hero-img:first-child img {
                    height: 240px;
                }

        .hero-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,rgba(27,48,92,.5),transparent);
        }

        /* HOOK STRIP */
        .hook-strip {
            background: var(--orange);
            padding: 0;
        }

        .hook-strip-inner {
            display: flex;
            overflow: hidden;
        }

        .hook-item {
            flex: 1;
            padding: 24px 32px;
            border-right: 1px solid rgba(255,255,255,.2);
            text-align: center;
            color: white;
        }

            .hook-item:last-child {
                border-right: none;
            }

            .hook-item p {
                font-size: 15px;
                font-weight: 600;
                line-height: 1.4;
            }

            .hook-item span {
                font-size: 12px;
                opacity: .75;
                display: block;
                margin-top: 4px;
            }

        /* SECTION COMMONS */
        section {
            padding: 88px 5%;
        }

        .section-label {
            color: var(--red);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
            display: block;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(32px,4vw,52px);
            font-weight: 800;
            color: var(--navy);
            line-height: 1.1;
            margin-bottom: 18px;
        }

            .section-title.white {
                color: white;
            }

        .section-body {
            font-size: 17px;
            color: var(--gray);
            line-height: 1.75;
            max-width: 640px;
            font-family: var(--font-serif);
        }

            .section-body.wide {
                max-width: none;
            }

        /* ABOUT — STATS ROW */
        .about-section {
            background: var(--offwhite);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-top: 56px;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 0;
            margin-top: 48px;
            border-top: 1px solid var(--border);
        }

        .stat {
            padding: 32px 0 0;
            border-right: 1px solid var(--border);
        }

            .stat:last-child {
                border-right: none;
                padding-left: 32px;
            }

            .stat:not(:first-child) {
                padding-left: 32px;
            }

        .stat-num {
            font-family: var(--font-display);
            font-size: 44px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
        }

            .stat-num sup {
                font-size: 22px;
                vertical-align: super;
            }

        .stat-label {
            font-size: 14px;
            color: var(--gray);
            margin-top: 6px;
        }

        /* PILLARS */
        .pillars-section {
            background: white;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1px;
            background: var(--border);
            margin-top: 56px;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .pillar {
            background: white;
            padding: 36px 28px;
            transition: background .2s;
        }

            .pillar:hover {
                background: var(--offwhite);
            }

        .pillar-icon {
            width: 52px;
            height: 52px;
            background: var(--navy);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }

        .pillar h3 {
            font-family: var(--font-display);
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .pillar p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.65;
        }

        /* PROGRAMMES */
        .programmes-section {
            background: var(--cream);
        }

        .programmes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 56px;
        }

        .prog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .prog-card-top {
            background: var(--navy);
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

            .prog-card-top.red {
                background: var(--red);
            }

            .prog-card-top::after {
                content: '';
                position: absolute;
                bottom: -30px;
                right: -30px;
                width: 120px;
                height: 120px;
                border: 2px solid rgba(255,255,255,.1);
                border-radius: 50%;
            }

        .prog-badge {
            display: inline-block;
            background: rgba(255,255,255,.15);
            border: 1px solid rgba(255,255,255,.25);
            color: white;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 16px;
        }

        .prog-card-top h3 {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
        }

        .prog-card-top p {
            color: rgba(255,255,255,.8);
            font-size: 14px;
            line-height: 1.65;
            font-family: var(--font-serif);
        }

        .prog-card-body {
            padding: 28px 32px;
        }

        .tags-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag {
            background: var(--offwhite);
            border: 1px solid var(--border);
            color: var(--navy);
            font-size: 12px;
            font-weight: 500;
            padding: 5px 14px;
            border-radius: 100px;
        }

        .minor-bar {
            background: var(--navy);
            border-radius: 12px;
            padding: 24px 32px;
            margin-top: 0;
        }

            .minor-bar p {
                color: rgba(255,255,255,.6);
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 14px;
            }

        .minor-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .minor-tag {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.85);
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 100px;
        }

        /* SPECIALISATIONS */
        .spec-section {
            background: var(--offwhite);
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(5,1fr);
            gap: 16px;
            margin-top: 56px;
        }

        .spec-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px 20px;
            text-align: center;
            transition: all .25s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

            .spec-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: var(--red);
                transform: scaleX(0);
                transition: transform .25s;
            }

            .spec-card:hover {
                border-color: var(--navy);
                transform: translateY(-4px);
                box-shadow: 0 12px 40px rgba(27,48,92,.12);
            }

                .spec-card:hover::before {
                    transform: scaleX(1);
                }

        .spec-icon {
            width: 60px;
            height: 60px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin: 0 auto 18px;
        }

        .spec-card h3 {
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .spec-card p {
            display: none;
        }

        /* CURRICULUM */
        .curriculum-section {
            background: white;
        }

        .curriculum-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 56px;
        }

        .year-card {
            background: var(--offwhite);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px 32px;
            border-left: 3px solid var(--red);
        }

        .year-label {
            color: var(--red);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .year-title {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 18px;
        }

        .course-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .course-tag {
            background: white;
            border: 1px solid var(--border);
            color: var(--navy);
            font-size: 12px;
            padding: 5px 13px;
            border-radius: 8px;
        }

        /* LABS */
        .labs-section {
            background: var(--navy);
            color: white;
        }

            .labs-section .section-title {
                color: white;
            }

            .labs-section .section-body {
                color: rgba(255,255,255,.7);
            }

        .labs-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 16px;
            margin-top: 56px;
        }

        .lab-img {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

            .lab-img img {
                width: 100%;
                height: 220px;
                object-fit: cover;
                display: block;
                transition: transform .4s;
            }

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

            .lab-img.tall img {
                height: 460px;
            }

        .lab-img-cap {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent,rgba(0,0,0,.6));
            padding: 20px 16px 14px;
            color: white;
            font-size: 12px;
            font-weight: 500;
        }

        .labs-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 56px;
        }

        .labs-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* FACULTY */
        .faculty-section {
            background: var(--offwhite);
        }

        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .faculty-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: all .25s;
        }

            .faculty-card:hover {
                box-shadow: 0 8px 32px rgba(27,48,92,.1);
                transform: translateY(-3px);
            }

        .faculty-card-top {
            background: var(--navy);
            height: 80px;
            position: relative;
        }

        .faculty-avatar {
            width: 72px;
            height: 72px;
            background: var(--red);
            border-radius: 50%;
            border: 3px solid white;
            position: absolute;
            bottom: -36px;
            left: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            color: white;
            font-size: 22px;
            z-index: 2;
        }

        .faculty-card-body {
            padding: 48px 24px 24px;
        }

        .faculty-name {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .faculty-role {
            font-size: 13px;
            color: var(--red);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .faculty-creds {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        .faculty-badge {
            display: inline-block;
            background: rgba(27,48,92,.06);
            color: var(--navy);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 100px;
            margin-bottom: 12px;
        }

        /* CAREER OUTCOMES */
        .careers-section {
            background: var(--offwhite);
        }

        .careers-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            margin-top: 56px;
            align-items: start;
        }

        .career-list {
            list-style: none;
        }

            .career-list li {
                padding: 16px 0;
                border-bottom: 1px solid var(--border);
                display: flex;
                align-items: center;
                gap: 14px;
                font-size: 16px;
                color: var(--navy);
                font-weight: 500;
            }

                .career-list li::before {
                    content: '';
                    width: 8px;
                    height: 8px;
                    background: var(--red);
                    border-radius: 50%;
                    flex-shrink: 0;
                }

        .sector-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .sector-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 20px 16px;
        }

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

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

        /* INTERNSHIPS */
        .internships-section {
            background: var(--navy);
        }

            .internships-section .section-title {
                color: white;
            }

            .internships-section .section-body {
                color: rgba(255,255,255,.7);
            }

        .internship-cols {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .intern-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 14px;
            padding: 28px 24px;
        }

        .intern-card-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .intern-card h3 {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,.5);
            margin-bottom: 16px;
        }

        .intern-card ul {
            list-style: none;
        }

            .intern-card ul li {
                color: rgba(255,255,255,.85);
                font-size: 15px;
                padding: 9px 0;
                border-bottom: 1px solid rgba(255,255,255,.08);
            }

                .intern-card ul li:last-child {
                    border-bottom: none;
                }

        /* STUDENT VOICES */
        .voices-section {
            background: var(--cream);
        }

        .voices-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 56px;
        }

        .quote-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px;
            position: relative;
        }

        .quote-mark {
            font-family: var(--font-display);
            font-size: 80px;
            color: var(--red);
            opacity: .15;
            position: absolute;
            top: 8px;
            left: 24px;
            line-height: 1;
        }

        .quote-text {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.75;
            margin-bottom: 20px;
            font-family: var(--font-serif);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .quote-author {
            font-weight: 700;
            font-size: 14px;
            color: var(--navy);
        }

        .quote-prog {
            font-size: 12px;
            color: var(--red);
            font-weight: 600;
            margin-top: 2px;
        }

        /* COLLABORATIONS */
        .collab-section {
            background: white;
        }

        .collab-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 56px;
        }

        .collab-card {
            background: var(--offwhite);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px;
            border-top: 3px solid var(--red);
        }

            .collab-card h3 {
                font-family: var(--font-display);
                font-size: 20px;
                font-weight: 700;
                color: var(--navy);
                margin-bottom: 6px;
            }

        .collab-date {
            font-size: 12px;
            color: var(--red);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .collab-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
        }

        /* RESEARCH */
        .research-section {
            background: var(--offwhite);
        }

        .research-list {
            margin-top: 48px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .research-item {
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 20px;
            align-items: start;
        }

        .research-num {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--red);
            opacity: .3;
            line-height: 1;
            width: 40px;
        }

        .research-title {
            font-weight: 700;
            font-size: 16px;
            color: var(--navy);
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .research-meta {
            font-size: 13px;
            color: var(--gray);
        }

        /* MEDIOSPHERE */
        .mediosphere-section {
            background: var(--navy);
        }

        .mediosphere-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .mediosphere-section .section-title {
            color: white;
        }

        .mediosphere-section .section-body {
            color: rgba(255,255,255,.7);
        }

        .ig-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            margin-top: 24px;
            transition: opacity .2s;
        }

            .ig-link:hover {
                opacity: .9;
            }

        .newsletter-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.2);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            margin-top: 12px;
            transition: background .2s;
        }

            .newsletter-chip:hover {
                background: rgba(255,255,255,.15);
            }

        /* VISIT PHOTOS */
        .visits-section {
            background: var(--cream);
        }

        .visits-img {
            border-radius: 16px;
            overflow: hidden;
            margin-top: 48px;
        }

            .visits-img img {
                width: 100%;
                display: block;
            }

        /* CTA */
        .cta-section {
            background: var(--navy);
            text-align: center;
            padding: 100px 5%;
        }

            .cta-section h2 {
                font-family: var(--font-display);
                font-size: clamp(36px,5vw,60px);
                font-weight: 800;
                color: white;
                margin-bottom: 16px;
                line-height: 1.1;
            }

            .cta-section p {
                font-size: 18px;
                color: rgba(255,255,255,.65);
                margin-bottom: 40px;
                font-family: var(--font-serif);
            }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FOOTER */
        footer {
            background: #0f1f3d;
            color: rgba(255,255,255,.4);
            text-align: center;
            padding: 24px;
            font-size: 13px;
        }

        /* CAMPUS TABS */
        .campus-btn {
            background: white;
            border: 1.5px solid var(--border);
            color: var(--navy);
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
            font-family: var(--font-sans);
        }

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

            .campus-btn:hover:not(.active) {
                border-color: var(--navy);
                background: var(--offwhite);
            }

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

            .reveal.visible {
                opacity: 1;
                transform: none;
            }

        /* ===================== MOBILE RESPONSIVE ===================== */
        @media (max-width: 768px) {

            /* NAV */
            nav {
                padding: 0 4%;
                height: 56px;
            }

            .nav-links {
                display: none;
            }

            .nav-apply {
                padding: 7px 14px;
                font-size: 12px;
            }

            /* HERO */
            .hero {
                min-height: auto;
                padding: 56px 5% 48px;
                align-items: flex-start;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero h1 {
                font-size: clamp(34px,9vw,48px);
                margin-bottom: 16px;
            }

            .hero-sub {
                font-size: 16px;
                margin-bottom: 28px;
                max-width: 100%;
            }

            .hero-ctas {
                flex-direction: column;
                gap: 12px;
            }

            .btn-primary, .btn-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
                padding: 14px 24px;
            }

            .hero-visual {
                display: none;
            }

            /* HOOK STRIP */
            .hook-strip-inner {
                flex-direction: column;
            }

            .hook-item {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,.2);
                padding: 18px 24px;
            }

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

            /* SECTION COMMONS */
            section {
                padding: 56px 5%;
            }

            .section-title {
                font-size: clamp(26px,7vw,38px);
            }

            .section-body {
                font-size: 15px;
            }

            /* ABOUT */
            .about-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stats-row {
                grid-template-columns: 1fr 1fr;
                margin-top: 32px;
            }

            .stat:last-child {
                border-right: none;
            }

            .stat-num {
                font-size: 36px;
            }

            /* PILLARS */
            .pillars-grid {
                grid-template-columns: 1fr 1fr;
            }

            /* PROGRAMMES */
            .programmes-grid {
                grid-template-columns: 1fr;
            }

            .minor-bar {
                padding: 20px 24px;
            }

            /* SPECIALISATIONS */
            .spec-grid {
                grid-template-columns: repeat(2,1fr);
            }

            /* CURRICULUM */
            .curriculum-grid {
                grid-template-columns: 1fr;
            }

            /* LABS */
            .labs-layout {
                grid-template-columns: 1fr;
            }

            .labs-col {
                gap: 12px;
            }

            .lab-img img {
                height: 180px;
            }

            .lab-img.tall img {
                height: 220px;
            }

            /* FACULTY */
            .faculty-grid {
                grid-template-columns: 1fr;
            }

            /* CAREERS */
            .careers-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }

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

            /* INTERNSHIPS */
            .internship-cols {
                grid-template-columns: 1fr;
            }

            /* VOICES */
            .voices-grid {
                grid-template-columns: 1fr;
            }

            /* COLLABORATIONS */
            .collab-grid {
                grid-template-columns: 1fr;
            }

            /* MEDIOSPHERE */
            .mediosphere-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            /* CTA */
            .cta-section {
                padding: 64px 5%;
            }

                .cta-section h2 {
                    font-size: clamp(28px,8vw,42px);
                }

                .cta-section p {
                    font-size: 16px;
                }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

                .cta-buttons .btn-primary, .cta-buttons .btn-outline {
                    width: 100%;
                    max-width: 320px;
                    justify-content: center;
                }
        }

        @media (max-width: 480px) {
            /* PILLARS — single column on small phones */
            .pillars-grid {
                grid-template-columns: 1fr;
            }

            /* SPEC — single column on small phones */
            .spec-grid {
                grid-template-columns: 1fr 1fr;
            }

            /* STATS — stack vertically */
            .stats-row {
                grid-template-columns: 1fr;
            }

            .stat {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding: 20px 0;
            }

                .stat:last-child {
                    border-bottom: none;
                }

                .stat:not(:first-child) {
                    padding-left: 0;
                }
        }