:root {
            --navy: #1b305c;
            --navy-light: #162847;
            --maroon: #8B1A2E;
            --maroon-bright: #B02238;
            --orange: #E8611A;
            --orange-light: #FF7A35;
            --gold: #C9A84C;
            --white: #F8F6F2;
            --grey: #9AA0AB;
            --grey-light: #E8E9EC;
            --grey-dark: #3A3F4A;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--white);
            color: var(--navy);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 99;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 66px;
            border-bottom: 2px solid var(--maroon);
        }

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

        .nav-logo-box {
            color: var(--navy);
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            padding: 4px 10px;
            border-radius: 2px;
        }

        .nav-sub {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--grey);
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

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

            .nav-links a {
                font-family: 'DM Sans', sans-serif;
                font-size: 0.8rem;
                font-weight: 600;
                color: var(--grey);
                text-decoration: none;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                transition: color 0.2s;
            }

                .nav-links a:hover {
                    color: var(--orange);
                }

        .nav-cta {
            background: var(--maroon);
            color: #fff !important;
            padding: 9px 22px;
            border-radius: 2px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 700 !important;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s !important;
            white-space: nowrap;
        }

            .nav-cta:hover {
                background: var(--maroon-bright) !important;
            }

        .crm-widget-wrap {
            width: 100%;
            max-width: 420px;
            min-height: 480px;
            background: rgba(255,255,255,0.04);
            border: 2px dashed rgba(255,255,255,0.15);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 32px;
            position: relative;
            z-index: 2;
            text-align: center;
            transition: border-color 0.3s;
        }

            .crm-widget-wrap:hover {
                border-color: rgba(232,97,26,0.4);
            }

        .crm-widget-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .crm-widget-hint {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.25);
            line-height: 1.6;
        }

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

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232,97,26,0.15);
            border: 1px solid var(--orange);
            color: var(--orange);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 2px;
            margin-bottom: 32px;
            width: fit-content;
            animation: fadeUp 0.6s ease both;
        }

        .hero-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.8rem, 7vw, 7.5rem);
            line-height: 1.0;
            color: var(--white);
            letter-spacing: -0.01em;
            font-weight: 900;
            animation: fadeUp 0.6s 0.1s ease both;
        }

            .hero-headline .accent {
                color: var(--orange);
            }

            .hero-headline .accent-gold {
                color: var(--gold);
            }

        .hero-sub {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--grey);
            line-height: 1.65;
            margin: 28px 0 44px;
            max-width: 460px;
            animation: fadeUp 0.6s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp 0.6s 0.3s ease both;
        }

        .btn-primary {
            background: var(--maroon);
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 14px 32px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

            .btn-primary:hover {
                background: var(--maroon-bright);
                transform: translateY(-2px);
            }

        .btn-outline {
            background: transparent;
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 14px 32px;
            border: 1.5px solid rgba(248,246,242,0.3);
            border-radius: 2px;
            cursor: pointer;
            text-decoration: none;
            transition: border-color 0.2s, color 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

            .btn-outline:hover {
                border-color: var(--white);
                transform: translateY(-2px);
            }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 56px;
            animation: fadeUp 0.6s 0.4s ease both;
        }

        .stat-item {
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: var(--white);
            line-height: 1;
        }

            .stat-num span {
                color: var(--orange);
            }

        .stat-label {
            font-size: 0.73rem;
            color: var(--grey);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        .hero-right {
            position: relative;
            display: flex;
            align-items: stretch;
            overflow: hidden;
        }

        .hero-visual {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--navy-light) 0%, #0a1628 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
            
        .hero-card-stack {
            position: relative;
            width: 340px;
            height: 420px;
            animation: floatCards 6s ease-in-out infinite;
        }

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

            50% {
                transform: translateY(-12px);
            }
        }

        .hcard {
            position: absolute;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 24px;
            color: #fff;
        }

        .hcard-1 {
            width: 280px;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, rgba(139,26,46,0.7), rgba(139,26,46,0.3));
            border-color: var(--maroon-bright);
        }

        .hcard-2 {
            width: 260px;
            top: 120px;
            right: 0;
            background: linear-gradient(135deg, rgba(13,31,60,0.9), rgba(22,40,71,0.7));
            border-color: rgba(201,168,76,0.4);
        }

        .hcard-3 {
            width: 220px;
            bottom: 20px;
            left: 20px;
            background: linear-gradient(135deg, rgba(232,97,26,0.6), rgba(232,97,26,0.2));
            border-color: var(--orange);
        }

        .hcard-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .hcard-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            letter-spacing: 0.04em;
            line-height: 1.1;
        }

        .hcard-desc {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.7);
            margin-top: 8px;
            line-height: 1.5;
        }

        .hcard-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .hero-diagonal {
            position: absolute;
            top: 0;
            left: -80px;
            width: 100px;
            height: 100%;
            background: var(--navy);
            transform: skewX(-3deg);
            z-index: 1;
        }

        /* ── SECTION COMMONS ── */
        section {
            padding: 100px 7%;
        }

        .section-tag {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .section-tag::before {
                content: '';
                display: block;
                width: 28px;
                height: 2px;
                background: var(--orange);
            }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 4.5vw, 4.2rem);
            line-height: 1.1;
            color: var(--navy);
            letter-spacing: -0.01em;
            font-weight: 900;
        }

            .section-title .accent {
                color: var(--maroon);
            }

            .section-title .accent-orange {
                color: var(--orange);
            }

        /* ── OVERVIEW ── */
        .overview {
            background: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .overview-text p {
            font-size: 1rem;
            line-height: 1.75;
            color: var(--grey-dark);
            margin-top: 24px;
        }

        .overview-right {
            position: relative;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 32px;
        }

        .highlight-item {
            background: var(--navy);
            border-radius: 4px;
            padding: 22px 20px;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s;
        }

            .highlight-item:hover {
                transform: translateY(-4px);
            }

            .highlight-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 100%;
                background: var(--orange);
            }

            .highlight-item:nth-child(2)::before {
                background: var(--gold);
            }

            .highlight-item:nth-child(3)::before {
                background: var(--maroon);
            }

            .highlight-item:nth-child(4)::before {
                background: var(--orange);
            }

        .hi-icon {
            font-size: 1.3rem;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .highlight-item:nth-child(2) .hi-icon {
            color: var(--gold);
        }

        .highlight-item:nth-child(3) .hi-icon {
            color: var(--maroon-bright);
        }

        .hi-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .hi-desc {
            font-size: 0.78rem;
            color: var(--grey);
            line-height: 1.5;
        }

        /* ── DEAN MESSAGE ── */
        .dean-section {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

            .dean-section::before {
                content: 'DESIGN';
                position: absolute;
                font-family: 'Playfair Display', serif;
                font-size: 22vw;
                color: rgba(255,255,255,0.02);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                white-space: nowrap;
                pointer-events: none;
            }

        .dean-inner {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .dean-photo-wrap {
            position: relative;
        }

        .dean-photo-placeholder {
            width: 240px;
            height: 300px;
            background: linear-gradient(160deg, var(--maroon) 0%, var(--navy-light) 100%);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(201,168,76,0.3);
        }

            .dean-photo-placeholder i {
                font-size: 5rem;
                color: rgba(255,255,255,0.2);
            }

        .dean-name-tag {
            position: absolute;
            bottom: -16px;
            right: -16px;
            background: var(--orange);
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 10px 16px;
            border-radius: 2px;
            line-height: 1.3;
        }

        .dean-quote-mark {
            font-family: 'Playfair Display', serif;
            font-size: 7rem;
            color: var(--maroon);
            line-height: 0.7;
            margin-bottom: 16px;
            opacity: 0.6;
            font-style: italic;
        }

        .dean-quote {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .dean-body {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--grey);
            margin-bottom: 28px;
        }

        .dean-pillars {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .pillar-tag {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            border: 1px solid;
        }

            .pillar-tag.orange {
                color: var(--orange);
                border-color: var(--orange);
            }

            .pillar-tag.gold {
                color: var(--gold);
                border-color: var(--gold);
            }

            .pillar-tag.maroon {
                color: #e05070;
                border-color: #e05070;
            }

            .pillar-tag.grey {
                color: var(--grey);
                border-color: var(--grey);
            }

        .section-tag.light {
            color: var(--gold);
        }

            .section-tag.light::before {
                background: var(--gold);
            }

        .section-title.light {
            color: var(--white);
        }

        /* ── PROGRAMMES ── */
        .programmes {
            background: var(--grey-light);
        }

        .prog-tabs {
            display: flex;
            gap: 0;
            margin: 48px 0 0;
            border-bottom: 2px solid rgba(0,0,0,0.1);
        }

        .prog-tab {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 14px 28px;
            border: none;
            background: transparent;
            color: var(--grey-dark);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            transition: color 0.2s, border-color 0.2s;
        }

            .prog-tab.active {
                color: var(--maroon);
                border-bottom-color: var(--maroon);
            }

            .prog-tab:hover:not(.active) {
                color: var(--navy);
            }

        .prog-panels {
        }

        .prog-panel {
            display: none;
        }

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

        .prog-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 40px;
        }

        .prog-card {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.07);
            transition: transform 0.25s, box-shadow 0.25s;
            cursor: pointer;
        }

            .prog-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 24px 60px rgba(0,0,0,0.12);
            }

        .prog-card-top {
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

            .prog-card-top i {
                font-size: 3.5rem;
                color: rgba(255,255,255,0.9);
                position: relative;
                z-index: 1;
            }

            .prog-card-top.fashion {
                background: linear-gradient(135deg, var(--maroon), #6b1225);
            }

            .prog-card-top.product {
                background: linear-gradient(135deg, var(--navy), #0a1628);
            }

            .prog-card-top.interior {
                background: linear-gradient(135deg, #2a6e4a, #1a4530);
            }

            .prog-card-top.luxury {
                background: linear-gradient(135deg, var(--orange), #c04a00);
            }

        .prog-card-num {
            position: absolute;
            top: 16px;
            right: 16px;
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: rgba(255,255,255,0.12);
            line-height: 1;
        }

        .prog-card-body {
            padding: 30px;
        }

        .prog-card-tag {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .prog-card-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.25;
            margin-bottom: 12px;
        }

        .prog-card-desc {
            font-size: 0.82rem;
            line-height: 1.6;
            color: var(--grey-dark);
            margin-bottom: 18px;
        }

        .prog-card-highlights {
            list-style: none;
        }

            .prog-card-highlights li {
                font-size: 0.78rem;
                color: var(--grey-dark);
                padding: 5px 0;
                border-bottom: 1px dashed rgba(0,0,0,0.06);
                display: flex;
                align-items: center;
                gap: 8px;
            }

                .prog-card-highlights li:last-child {
                    border: none;
                }

                .prog-card-highlights li i {
                    color: var(--orange);
                    font-size: 0.7rem;
                }

        .prog-card-footer {
            padding: 16px 24px;
            background: var(--grey-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .prog-meta {
            font-size: 0.73rem;
            color: var(--grey);
        }

            .prog-meta strong {
                color: var(--navy);
            }

        .prog-arrow {
            width: 34px;
            height: 34px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.75rem;
            transition: background 0.2s;
        }

        .prog-card:hover .prog-arrow {
            background: var(--maroon);
        }

        .pg-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            margin-top: 40px;
        }

        .pg-card {
            background: var(--navy);
            border-radius: 6px;
            padding: 48px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(201,168,76,0.2);
        }

            .pg-card::before {
                content: '';
                position: absolute;
                top: -60px;
                right: -60px;
                width: 280px;
                height: 280px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(232,97,26,0.12), transparent 70%);
            }

        .pg-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .pg-tag {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .pg-tag i {
                color: var(--gold);
            }

        .pg-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

            .pg-title span {
                color: var(--gold);
            }

        .pg-desc {
            font-size: 0.9rem;
            color: var(--grey);
            line-height: 1.7;
        }

        .pg-paths {
            margin-top: 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .pg-path {
            border: 1px solid rgba(201,168,76,0.3);
            border-radius: 4px;
            padding: 20px;
        }

        .pg-path-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .pg-path-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .pg-path-desc {
            font-size: 0.78rem;
            color: var(--grey);
            line-height: 1.5;
        }

        .pg-highlights-list {
            list-style: none;
        }

            .pg-highlights-list li {
                font-size: 0.85rem;
                color: var(--grey);
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.06);
                display: flex;
                align-items: flex-start;
                gap: 12px;
                line-height: 1.5;
            }

                .pg-highlights-list li:last-child {
                    border: none;
                }

                .pg-highlights-list li i {
                    color: var(--gold);
                    margin-top: 2px;
                    font-size: 0.8rem;
                    flex-shrink: 0;
                }

        .pg-eligibility {
            background: rgba(232,97,26,0.1);
            border: 1px solid rgba(232,97,26,0.2);
            border-radius: 4px;
            padding: 16px 20px;
            margin-top: 24px;
            font-size: 0.82rem;
            color: var(--grey);
        }

            .pg-eligibility strong {
                color: var(--orange);
            }

        /* ── PEDAGOGY ── */
        .pedagogy {
            background: var(--white);
        }

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

        .pcard {
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--grey-light);
            transition: transform 0.25s, box-shadow 0.25s;
        }

            .pcard:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 50px rgba(0,0,0,0.09);
            }

        .pcard-top {
            height: 6px;
            background: var(--orange);
        }

        .pcard:nth-child(2) .pcard-top {
            background: var(--maroon);
        }

        .pcard:nth-child(3) .pcard-top {
            background: var(--navy);
        }

        .pcard-body {
            padding: 32px;
        }

        .pcard-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(232,97,26,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .pcard:nth-child(2) .pcard-icon {
            background: rgba(139,26,46,0.1);
            color: var(--maroon);
        }

        .pcard:nth-child(3) .pcard-icon {
            background: rgba(13,31,60,0.1);
            color: var(--navy);
        }

        .pcard-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .pcard-text {
            font-size: 0.85rem;
            line-height: 1.7;
            color: var(--grey-dark);
        }

        /* ── COLLABS ── */
        .collabs {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

            .collabs::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--maroon), var(--orange), var(--gold), var(--maroon));
            }

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

        .collab-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 6px;
            padding: 32px;
            transition: border-color 0.25s, background 0.25s;
        }

            .collab-card:hover {
                border-color: var(--orange);
                background: rgba(232,97,26,0.07);
            }

        .collab-name {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .collab-type {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
            margin-bottom: 14px;
        }

        .collab-desc {
            font-size: 0.83rem;
            line-height: 1.65;
            color: var(--grey);
        }

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

        .kh-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 4px;
            padding: 24px 20px;
            text-align: center;
            transition: border-color 0.2s;
        }

            .kh-item:hover {
                border-color: rgba(232,97,26,0.4);
            }

        .kh-icon {
            font-size: 1.5rem;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .kh-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 6px;
        }

        .kh-desc {
            font-size: 0.75rem;
            color: var(--grey);
            line-height: 1.5;
        }

        /* ── CAREERS ── */
        .careers {
            background: var(--white);
        }

        .career-tabs {
            display: flex;
            gap: 12px;
            margin: 40px 0 0;
            flex-wrap: wrap;
        }

        .ctab {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 10px 22px;
            border-radius: 100px;
            border: 1.5px solid var(--grey-light);
            background: transparent;
            color: var(--grey-dark);
            cursor: pointer;
            transition: all 0.2s;
        }

            .ctab.active {
                background: var(--maroon);
                color: #fff;
                border-color: var(--maroon);
            }

            .ctab:hover:not(.active) {
                border-color: var(--navy);
                color: var(--navy);
            }

        .career-panels {
            margin-top: 36px;
        }

        .career-panel {
            display: none;
        }

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

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

        .career-item {
            background: var(--grey-light);
            border-radius: 4px;
            padding: 20px 16px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.2s;
            cursor: default;
        }

            .career-item:hover {
                border-color: var(--maroon);
                background: var(--white);
            }

            .career-item i {
                font-size: 1.6rem;
                color: var(--navy);
                margin-bottom: 10px;
                display: block;
            }

            .career-item span {
                font-family: 'DM Sans', sans-serif;
                font-size: 0.75rem;
                font-weight: 700;
                color: var(--navy);
                line-height: 1.3;
            }

        /* ── COMPANIES ── */
        .companies {
            background: var(--grey-light);
        }

        .companies-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2px;
            margin-top: 48px;
        }

        .logo-box {
            background: var(--white);
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--navy);
            border: 1px solid rgba(0,0,0,0.05);
            letter-spacing: 0.04em;
            transition: background 0.2s;
            padding: 0 16px;
            text-align: center;
        }

            .logo-box:hover {
                background: var(--navy);
                color: var(--white);
            }

        /* ── ADMISSIONS ── */
        .admissions {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

            .admissions::before {
                content: '';
                position: absolute;
                top: -200px;
                right: -200px;
                width: 600px;
                height: 600px;
                border-radius: 50%;
                border: 1px solid rgba(232,97,26,0.15);
            }

            .admissions::after {
                content: '';
                position: absolute;
                bottom: -100px;
                left: -100px;
                width: 400px;
                height: 400px;
                border-radius: 50%;
                border: 1px solid rgba(201,168,76,0.1);
            }

        .adm-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .adm-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .adm-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 6px;
            padding: 24px 28px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: border-color 0.2s;
        }

            .adm-card:hover {
                border-color: rgba(232,97,26,0.4);
            }

        .adm-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--maroon);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .adm-card-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .adm-card-info {
            font-size: 0.82rem;
            color: var(--grey);
            line-height: 1.5;
        }

        .adm-cta-box {
            background: linear-gradient(135deg, var(--maroon) 0%, #6b1225 100%);
            border-radius: 6px;
            padding: 40px;
            position: sticky;
            top: 80px;
        }

        .adm-cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: var(--white);
            letter-spacing: 0.04em;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .adm-cta-sub {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .adm-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .adm-input {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 3px;
            padding: 13px 16px;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.2s;
            width: 100%;
        }

            .adm-input::placeholder {
                color: rgba(255,255,255,0.4);
            }

            .adm-input:focus {
                border-color: var(--orange);
            }

        select.adm-input option {
            background: var(--navy);
            color: var(--white);
        }

        .adm-submit {
            background: var(--orange);
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 15px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            width: 100%;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

            .adm-submit:hover {
                background: var(--orange-light);
            }

        .adm-disclaimer {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.4);
            text-align: center;
            margin-top: 8px;
        }

        /* ── CONTACT ── */
        .contact {
            background: var(--grey-light);
            padding: 60px 7%;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--navy);
            letter-spacing: 0.04em;
            line-height: 1.1;
        }

            .contact-brand span {
                color: var(--maroon);
                display: block;
            }

        .contact-grid-right {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .contact-block-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .contact-block-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .contact-block-info {
            font-size: 0.82rem;
            color: var(--grey-dark);
            line-height: 1.7;
        }

            .contact-block-info a {
                color: var(--navy);
                text-decoration: none;
            }

                .contact-block-info a:hover {
                    color: var(--maroon);
                }

        /* ── HAMBURGER + MOBILE MENU ── */
        .hamburger {
            display: none;
            background: none;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 3px;
            color: var(--white);
            width: 36px;
            height: 36px;
            font-size: 1rem;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: border-color 0.2s;
        }

            .hamburger:hover {
                border-color: var(--orange);
                color: var(--orange);
            }

        @media(max-width: 900px) {
            .hamburger {
                display: flex;
            }
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            background: var(--navy-light);
            border-bottom: 2px solid var(--maroon);
            padding: 12px 5%;
            gap: 4px;
            position: sticky;
            top: 58px;
            z-index: 98;
        }

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

            .mobile-menu a {
                font-family: 'DM Sans', sans-serif;
                font-size: 0.9rem;
                font-weight: 600;
                color: var(--grey);
                text-decoration: none;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.05);
                letter-spacing: 0.04em;
                transition: color 0.2s;
            }

                .mobile-menu a:hover {
                    color: var(--white);
                }

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

        .mobile-menu-cta {
            color: var(--orange) !important;
            font-weight: 700 !important;
            margin-top: 4px;
        }

        /* ── GALLERY ── */
        .gallery-section {
            background: var(--white);
        }

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

        .gallery-item {
            position: relative;
            aspect-ratio: 3 / 4;
            border-radius: 6px;
            overflow: hidden;
            background: var(--grey-light);
            border: 2px dashed rgba(0,0,0,0.1);
        }

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

            .gallery-img[src=""] {
                display: none;
            }

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

        .gallery-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--grey);
            pointer-events: none;
        }

        .gallery-img[src=""] ~ .gallery-placeholder {
            display: flex;
        }

        .gallery-img:not([src=""]) ~ .gallery-placeholder {
            display: none;
        }

        .gallery-placeholder i {
            font-size: 2rem;
            opacity: 0.4;
        }

        .gallery-placeholder span {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.5;
        }

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

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

        /* ── FOOTER ── */
        footer {
            background: #060e1d;
            padding: 24px 7%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copy {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.3);
            letter-spacing: 0.04em;
        }

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

            .footer-links a {
                font-size: 0.75rem;
                color: rgba(255,255,255,0.4);
                text-decoration: none;
                transition: color 0.2s;
            }

                .footer-links a:hover {
                    color: var(--orange);
                }

        .footer-social {
            display: flex;
            gap: 14px;
        }

            .footer-social a {
                width: 32px;
                height: 32px;
                background: rgba(255,255,255,0.05);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255,255,255,0.4);
                font-size: 0.8rem;
                text-decoration: none;
                transition: background 0.2s, color 0.2s;
            }

                .footer-social a:hover {
                    background: var(--maroon);
                    color: #fff;
                }

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

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

        /* ── RESPONSIVE ── */

        /* Tablet — 900px */
        @media(max-width: 900px) {
            section {
                padding: 72px 5%;
            }

            /* Nav */
            nav {
                padding: 0 4%;
                height: 58px;
            }

                nav .nav-links {
                    display: none;
                }

            .nav-cta {
                padding: 8px 16px;
                font-size: 0.75rem;
            }

            /* Hero */
            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

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

            .hero-right, .hero-diagonal {
                display: block;
            }

            .hero-stats {
                gap: 28px;
                flex-wrap: wrap;
            }

            /* Overview */
            .overview {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

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


            /* Programmes */
            .prog-card-grid {
                grid-template-columns: 1fr;
            }

            .prog-tabs {
                flex-wrap: wrap;
            }

            /* Minors grid inside programmes */
            .overview-right {
                width: 100%;
            }

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

            .key-highlights-grid {
                grid-template-columns: 1fr 1fr;
            }

            /* Careers */
            .career-tabs {
                gap: 8px;
            }

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

            /* Companies */
            .companies-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

                .companies-header div:last-child {
                    text-align: left;
                    max-width: 100%;
                }

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

            /* Footer */
            footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 16px;
            }
        }

        /* Mobile — 600px */
        @media(max-width: 600px) {
            section {
                padding: 56px 4%;
            }

            /* Nav */
            nav {
                padding: 0 4%;
            }

            .nav-sub {
                display: none;
            }

            .nav-cta {
                font-size: 0.72rem;
                padding: 7px 14px;
            }

            /* Hero */
            .hero-left {
                padding: 48px 4% 44px;
            }

            .hero-headline {
                font-size: clamp(3rem, 14vw, 4.5rem);
            }

            .hero-sub {
                font-size: 0.92rem;
                margin: 20px 0 32px;
            }

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

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

            .hero-stats {
                gap: 20px;
                margin-top: 36px;
            }

            .stat-num {
                font-size: 2rem;
            }

            /* Overview */
            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            /* Dean */
            .dean-section {
                padding: 56px 4%;
            }

            .dean-quote {
                font-size: 1.05rem;
            }

            .dean-pillars {
                gap: 8px;
            }

            .pillar-tag {
                font-size: 0.65rem;
                padding: 5px 10px;
            }

            /* Programmes */
            .prog-card-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Minors inside programme card */
            .minors-inner-grid {
                grid-template-columns: 1fr 1fr !important;
            }

            /* Collabs */
            .key-highlights-grid {
                grid-template-columns: 1fr;
            }

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

            .career-tabs {
                gap: 6px;
            }

            .ctab {
                font-size: 0.7rem;
                padding: 8px 14px;
            }

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

            /* Footer */
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }


        @media(max-width: 900px) {
            .hero-right {
                min-height: auto;
            }

            .hero-visual {
                padding: 20px 0 32px;
            }

            #crm-widget {
                padding: 0 16px 20px;
            }

            .dean-photo-placeholder {
                width: 100%;
                max-width: 320px;
                height: auto;
                aspect-ratio: 4 / 5;
            }

            .minor-wrap {
                padding: 28px 22px;
            }

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

            .companies-note {
                text-align: left;
                max-width: 100%;
            }

            .contact-grid-right {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media(max-width: 600px) {
            .nav-actions {
                gap: 8px;
            }

            .nav-cta {
                display: none;
            }

            .hero-right {
                padding: 0 0 12px;
            }

            #crm-widget {
                padding: 0 10px 8px;
            }

            #crm-widget .npf_wgts {
                min-height: 480px;
            }

            .prog-card-top {
                height: 220px;
            }

            .prog-card-body,
            .pg-card,
            .pcard-body,
            .collab-card,
            .adm-card,
            .adm-cta-box {
                padding: 22px;
            }

            .minor-cards,
            .pedagogy-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .dean-name-tag {
                right: 8px;
                bottom: 8px;
                font-size: 0.7rem;
                padding: 8px 12px;
            }

            .contact {
                padding: 50px 4%;
            }

            .companies-note {
                font-size: 0.82rem;
            }

            .apply-center .btn-primary {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
            }
        }

        @media(max-width: 400px) {
            .nav-logo-box img {
                max-height: 38px;
            }

            .minor-cards,
            .careers-grid,
            .logos-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Small mobile — 400px */
        @media(max-width: 400px) {
            .hero-headline {
                font-size: clamp(2.6rem, 13vw, 3.5rem);
            }

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

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

            .career-item span {
                font-size: 0.68rem;
            }
        }

        /* ── RESPONSIVE ENHANCEMENTS ── */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        iframe {
            max-width: 100%;
        }

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

        .nav-logo-box img {
            max-height: 48px;
            width: auto !important;
        }

        #crm-widget {
            width: 500px;
            max-width: 100%;
            padding: 24px;
        }

        #crm-widget .npf_wgts {
            width: 100% !important;
            max-width: 100% !important;
            min-height: 530px;
        }

        .prog-card-top img,
        .dean-photo-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .minor-wrap {
            margin-top: 48px;
            padding: 36px 40px;
            background: var(--navy);
            border-radius: 6px;
        }

        .minor-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 48px;
            align-items: center;
        }

        .minor-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--white);
            letter-spacing: 0.02em;
            line-height: 1.1;
        }

        .minor-desc {
            font-size: 0.85rem;
            color: var(--grey);
            line-height: 1.7;
            margin-top: 14px;
        }

        .minor-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .minor-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 4px;
            padding: 16px;
        }

        .minor-label {
            color: var(--gold);
            font-size: 0.65rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .minor-name {
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .minor-name i {
            color: var(--gold);
            margin-right: 6px;
            font-size: 0.8rem;
        }

        .companies-note {
            font-size: 0.85rem;
            color: var(--grey);
            max-width: 280px;
            text-align: right;
            line-height: 1.6;
        }

        .apply-center {
            text-align: center;
            margin-top: 56px;
        }

        .apply-center .btn-primary {
            display: inline-flex;
            font-size: 1rem;
            padding: 18px 48px;
        }

        @media(max-width: 1100px) {
            .adm-inner,
            .contact-grid,
            .contact-grid-right,
            .pg-inner,
            .minor-grid {
                grid-template-columns: 1fr;
            }

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

            .hero-right {
                min-height: 620px;
            }

            .pedagogy-grid,
            .collab-cards,
            .prog-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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