*, *::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: 100%
            height: 36px;
            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(--orange);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

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

        .hero-level-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(232,119,34,.12);
            border: 1px solid rgba(232,119,34,.3);
            color: var(--orange);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 24px;
        }

        .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);
            }

        /* 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 */
        .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;
        }

        /* PROGRAMME CARD (single MA) */
        .programmes-section {
            background: var(--cream);
        }

        .campus-tabs {
            display: flex;
            gap: 12px;
        }

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

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

        .campus-panel {
            animation: fadeIn .3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

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

        .programmes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
            gap: 24px;
            margin-top: 0;
        }

        .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: 22px;
            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: 16px;
        }

        .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: 0;
        }

        .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;
        }

        /* 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-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 56px;
        }

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

        .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;
        }

        /* 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;
        }

        /* CAREERS */
        .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-icon {
            width: 40px;
            height: 40px;
            background: var(--navy);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

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

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

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

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

        /* INTERNSHIPS / RESEARCH */
        .internship-section {
            background: white;
        }

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

        .internship-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .internship-logo {
            background: var(--offwhite);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy);
        }

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

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

        .voice-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px;
        }

        .voice-quote {
            font-family: var(--font-serif);
            font-size: 16px;
            color: var(--navy);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

            .voice-quote::before {
                content: '"';
                font-family: var(--font-display);
                font-size: 48px;
                color: var(--red);
                line-height: .8;
                display: block;
                margin-bottom: 8px;
            }

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

        .voice-batch {
            font-size: 12px;
            color: var(--lgray);
            margin-top: 3px;
        }

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

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

        .collab-card {
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 24px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy);
            transition: all .2s;
        }

            .collab-card:hover {
                border-color: var(--navy);
                background: var(--offwhite);
            }

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

            .cta-section::before {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse at 50% 0%, rgba(151,40,54,.2) 0%, transparent 60%);
            }

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

            .cta-section p {
                font-size: 18px;
                color: rgba(255,255,255,.7);
                max-width: 540px;
                margin: 0 auto 40px;
                font-family: var(--font-serif);
                position: relative;
            }

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

        /* FOOTER */
        footer {
            background: #111927;
            padding: 24px 5%;
            text-align: center;
        }

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

        /* HAMBURGER */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            margin-left: 12px;
        }

            .nav-hamburger span {
                display: block;
                width: 22px;
                height: 2px;
                background: white;
                border-radius: 2px;
                transition: all .3s;
            }

            .nav-hamburger.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .nav-hamburger.open span:nth-child(2) {
                opacity: 0;
            }

            .nav-hamburger.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

        /* MOBILE MENU */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--navy);
            z-index: 99;
            flex-direction: column;
            padding: 16px 5% 24px;
            border-top: 1px solid rgba(255,255,255,.1);
            box-shadow: 0 8px 32px rgba(0,0,0,.3);
        }

            .mobile-menu.open {
                display: flex;
            }

            .mobile-menu a {
                color: rgba(255,255,255,.8);
                text-decoration: none;
                font-size: 15px;
                font-weight: 500;
                padding: 13px 0;
                border-bottom: 1px solid rgba(255,255,255,.08);
            }

                .mobile-menu a:last-child {
                    border-bottom: none;
                }

            .mobile-menu .mobile-apply {
                margin-top: 8px;
                background: var(--red);
                color: white;
                text-align: center;
                padding: 12px 0;
                border-radius: 8px;
                font-weight: 600;
                border: none;
            }

        /* REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity .7s ease,transform .7s ease;
        }

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

        /* RESPONSIVE */
        @media(max-width:768px) {
            nav {
                padding: 0 4%;
            }

            .nav-links {
                display: none;
            }

            .nav-apply-desk {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .nav-text {
                font-size: 12px;
            }

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

                .hero h1 {
                    font-size: clamp(34px,8vw,52px);
                }

            .hero-sub {
                font-size: 16px;
                margin-bottom: 28px;
            }

            .hero-badges {
                gap: 8px;
                margin-bottom: 32px;
            }

            .hero-badge {
                font-size: 12px;
                padding: 5px 12px;
            }

            .hero-ctas {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

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

            #crm-widget-container {
                padding: 28px 20px;
                margin-top: 32px;
            }

            .hook-strip-inner {
                flex-direction: column;
            }

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

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

            section {
                padding: 56px 5%;
            }

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

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

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

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

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

            .pillar {
                padding: 24px 20px;
            }

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

            .campus-tabs {
                flex-wrap: wrap;
                gap: 8px;
            }

            .campus-btn {
                font-size: 12px;
                padding: 8px 16px;
            }

            .prog-card-top {
                padding: 24px;
            }

            .prog-card-body {
                padding: 20px 24px;
            }

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

            .spec-card {
                padding: 20px 14px;
            }

            .spec-icon {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }

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

            .year-card {
                padding: 22px 24px;
            }

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

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

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

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

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

            .career-list li {
                font-size: 14px;
            }

            .internship-cols {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .internship-logos {
                gap: 8px;
            }

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

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

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

            .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) {
            .nav-text {
                display: none;
            }

            .nav-logo {
                width: 100%;
                height: 32px;
                font-size: 12px;
            }

            .hero {
                padding: 44px 5% 40px;
            }

                .hero h1 {
                    font-size: clamp(30px,9vw,44px);
                }

            .hero-level-badge {
                font-size: 10px;
            }

            .hero-eyebrow {
                font-size: 11px;
            }

            .hook-item p {
                font-size: 14px;
            }

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

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

            .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;
                }

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

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

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

            .campus-tabs {
                gap: 6px;
            }

            .campus-btn {
                width: 100%;
                text-align: center;
            }

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

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