*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    :root{
      --red:#C0272D;--red-dark:#8B1A1F;--red-lt:#E8535A;
      --blue:#0A3161;--blue-dark:#062043;--blue-lt:#2C5C9E;
      --white:#FFFFFF;--offwhite:#F7F9FC;--gray:#F3F4F6;
      --gray2:#E5E7EB;--text:#000000;--muted:#3A3A3A;
      --radius:10px;
      --shadow:0 4px 24px rgba(10,49,97,0.10);
      --shadow-lg:0 8px 40px rgba(10,49,97,0.16);
    }
    html{scroll-behavior:smooth}
    body{font-family:'Inter',sans-serif;color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
    a{text-decoration:none}
    img{max-width:100%;display:block}
    /* Inline SVG icons (Lucide) — size to surrounding text, colour via currentColor */
    .ico{width:1em;height:1em;display:inline-block;vertical-align:-0.125em;flex-shrink:0}
    .news-img .ico,.dept-icon .ico,.ci-icon .ico,.card-icon .ico{color:#fff}
    .program-icon .ico,.vi .ico{color:var(--blue)}
    .container{max-width:1140px;margin:0 auto;padding:0 24px}
    .section{padding:88px 0}
    .section-alt{background:var(--offwhite)}
    .eyebrow{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--red);margin-bottom:12px}
    .section-title{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,42px);font-weight:700;color:var(--text);line-height:1.15;margin-bottom:16px}
    .section-sub{font-size:17px;color:var(--muted);max-width:600px;line-height:1.75}
    .section-header{margin-bottom:52px}
    .section-header.centered{text-align:center}
    .section-header.centered .section-sub{margin:0 auto}
    .btn{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:15px;padding:13px 28px;border-radius:var(--radius);transition:all .22s;cursor:pointer;border:none;font-family:'Inter',sans-serif;white-space:nowrap;line-height:1}
    .btn-red{background:var(--red);color:var(--white)}
    .btn-red:hover{background:var(--red-dark);transform:translateY(-1px)}
    .btn-white{background:var(--white);color:var(--red)}
    .btn-white:hover{background:var(--offwhite);transform:translateY(-1px)}
    .btn-outline{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.5)}
    .btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,.1)}
    .btn-outline-red{background:transparent;color:var(--red);border:2px solid var(--red)}
    .btn-outline-red:hover{background:var(--red);color:var(--white)}

    /* TOP BAR */
    .topbar{background:var(--blue-dark);padding:8px 0;font-size:12px;color:rgba(255,255,255,.75)}
    .topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
    .topbar-left{display:flex;gap:20px;align-items:center}
    .topbar-right{display:flex;gap:12px;align-items:center}
    .topbar-right a{color:rgba(255,255,255,.75);font-size:12px;transition:color .2s}
    .topbar-right a:hover{color:var(--white)}

    /* HEADER */
    header{position:sticky;top:0;z-index:900;background:var(--white);box-shadow:0 2px 16px rgba(0,0,0,.10)}
    .nav-inner{display:flex;align-items:center;justify-content:space-between;height:76px;gap:24px}
    .nav-logo{display:flex;align-items:center;gap:14px}
    .nav-logo-icon{width:52px;height:52px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
    .nav-logo-text .name{font-family:'Playfair Display',serif;font-size:17px;font-weight:700;color:var(--blue);line-height:1.1}
    .nav-logo-text .tag{font-size:10px;font-weight:600;color:var(--muted);letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
    .nav-links{display:flex;align-items:center;gap:4px;list-style:none}
    .nav-links>li{position:relative}
    .nav-links>li>a{display:flex;align-items:center;gap:5px;color:var(--text);font-size:13.5px;font-weight:600;padding:9px 13px;border-radius:6px;transition:all .2s;white-space:nowrap}
    .nav-links>li>a .caret{font-size:9px;opacity:.55;transition:transform .2s}
    .nav-links .dropdown:hover>a .caret{transform:rotate(180deg)}
    .nav-links>li>a:hover,.nav-links>li>a.active{color:var(--blue);background:var(--offwhite)}
    .dropdown-menu{position:absolute;top:calc(100% + 8px);left:0;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-lg);min-width:200px;padding:8px;opacity:0;visibility:hidden;transform:translateY(-8px);transition:all .2s;z-index:999;list-style:none}
    .dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:none}
    .dropdown-menu li a{display:block;padding:10px 14px;border-radius:6px;color:var(--text);font-size:14px;font-weight:500;transition:all .2s}
    .dropdown-menu li a:hover{background:var(--offwhite);color:var(--blue)}
    .nav-cta{display:flex;align-items:center;gap:10px}
    .hamburger{display:none;background:none;border:none;cursor:pointer;padding:8px;flex-direction:column;gap:5px}
    .hamburger span{display:block;width:24px;height:2px;background:var(--blue);border-radius:2px;transition:all .3s}
    .mobile-nav{display:none;background:var(--white);padding:16px 24px 24px;border-top:1px solid var(--gray2)}
    .mobile-nav a{display:block;padding:12px 0;color:var(--text);font-size:15px;font-weight:600;border-bottom:1px solid var(--gray2);transition:color .2s}
    .mobile-nav a:hover{color:var(--blue)}
    .mobile-nav a:last-child{border-bottom:none}
    .mobile-nav.open{display:block}

    /* HERO */
    .hero{background:var(--blue);position:relative;overflow:hidden;min-height:92vh;display:flex;align-items:center}
    .hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,rgba(6,32,67,.97) 0%,rgba(10,49,97,.90) 55%,rgba(192,39,45,.25) 100%)}
    .hero-geo{position:absolute;right:-80px;top:-80px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.08) 0%,transparent 70%)}
    .hero-geo2{position:absolute;left:-60px;bottom:-60px;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 70%)}
    .hero-stripe{position:absolute;top:0;right:0;width:6px;height:100%;background:rgba(255,255,255,.25)}
    .hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr;gap:64px;align-items:center;padding:80px 0;max-width:760px}
    .hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);border-radius:100px;padding:6px 16px;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--white);margin-bottom:24px}
    .hero h1{font-family:'Playfair Display',serif;font-size:clamp(36px,5.5vw,66px);font-weight:900;color:var(--white);line-height:1.08;margin-bottom:24px}
    .hero h1 em{font-style:italic;color:var(--red-lt);text-decoration:underline;text-decoration-color:rgba(232,83,90,.5)}
    .hero-sub{font-size:17px;color:rgba(255,255,255,.78);line-height:1.75;margin-bottom:36px;max-width:520px}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:48px}
    .hero-stats{display:flex;gap:32px;flex-wrap:wrap}
    .hero-stat .number{font-size:30px;font-weight:900;color:var(--white);line-height:1}
    .hero-stat .label{font-size:12px;color:rgba(255,255,255,.60);font-weight:500;margin-top:2px}
    .hero-visual{display:flex;flex-direction:column;gap:16px}
    .hero-card{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.20);backdrop-filter:blur(12px);border-radius:16px;padding:24px 28px;transition:transform .3s}
    .hero-card:hover{transform:translateX(-6px)}
    .hero-card .card-icon{width:44px;height:44px;border-radius:10px;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:14px}
    .hero-card h3{font-size:16px;font-weight:700;color:var(--white);margin-bottom:4px}
    .hero-card p{font-size:13px;color:rgba(255,255,255,.65)}

    /* WELCOME / DIRECTOR */
    .director-section{background:var(--white);padding:80px 0}
    .director-inner{display:grid;grid-template-columns:1fr 2fr;gap:64px;align-items:center}
    .director-card{background:var(--blue);border-radius:20px;padding:40px;text-align:center;position:relative;overflow:hidden;border-top:6px solid var(--red)}
    .director-card::before{content:'';position:absolute;top:-40px;right:-40px;width:180px;height:180px;border-radius:50%;background:rgba(255,255,255,.08)}
    .director-avatar{width:100px;height:100px;border-radius:50%;background:rgba(255,255,255,.2);border:4px solid rgba(255,255,255,.4);margin:0 auto 20px;display:flex;align-items:center;justify-content:center;font-size:36px;font-weight:900;color:var(--white);position:relative;z-index:1}
    .director-card h3{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:var(--white);margin-bottom:4px;position:relative;z-index:1}
    .director-card .role{font-size:13px;color:rgba(255,255,255,.70);font-weight:600;letter-spacing:.06em;text-transform:uppercase;position:relative;z-index:1}
    .director-quote{padding:0 8px}
    .director-quote .eyebrow{margin-bottom:8px}
    .director-quote h2{font-family:'Playfair Display',serif;font-size:clamp(24px,3vw,34px);font-weight:700;color:var(--text);margin-bottom:20px;line-height:1.25}
    .director-quote blockquote{font-size:17px;line-height:1.8;color:var(--muted);font-style:italic;border-left:4px solid var(--red);padding-left:24px;margin-bottom:20px}
    .director-quote .sig{font-size:14px;font-weight:700;color:var(--red)}

    /* STATS */
    .stats-section{background:var(--blue);padding:72px 0}
    .stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
    .stat-box{text-align:center;padding:32px 16px;border-right:1px solid rgba(255,255,255,.18)}
    .stat-box:last-child{border-right:none}
    .stat-box .num{font-family:'Playfair Display',serif;font-size:52px;font-weight:900;color:var(--white);line-height:1}
    .stat-box .lbl{font-size:14px;color:rgba(255,255,255,.70);font-weight:500;margin-top:8px}

    /* PROGRAMS */
    .programs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
    .program-card{background:var(--white);border-radius:14px;border:1px solid var(--gray2);padding:32px 24px;box-shadow:var(--shadow);transition:all .25s;position:relative;overflow:hidden}
    .program-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--gray2);transition:background .2s}
    .program-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
    .program-card:hover::before{background:var(--red)}
    .program-icon{width:52px;height:52px;border-radius:12px;background:var(--offwhite);display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:18px}
    .program-card h3{font-size:17px;font-weight:700;color:var(--text);margin-bottom:8px}
    .program-card p{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:18px}
    .program-tag{display:inline-block;font-size:11px;font-weight:700;padding:4px 12px;border-radius:100px;background:var(--offwhite);color:var(--red)}
    .program-card-img{height:140px;margin:-32px -24px 18px;border-radius:14px 14px 0 0;overflow:hidden;background-size:cover;background-position:center}
    .hero-card h3,.hero-card p{text-shadow:0 1px 4px rgba(0,0,0,.4)}
    .img-card{width:100%;height:220px;object-fit:cover;border-radius:12px;box-shadow:var(--shadow)}
    .gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .gallery-grid img{width:100%;height:180px;object-fit:cover;border-radius:12px;box-shadow:var(--shadow);transition:transform .25s}
    .gallery-grid img:hover{transform:scale(1.03)}
    @media(max-width:768px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}

    /* WHY */
    .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
    .why-card{padding:36px 28px;border-radius:14px;background:var(--white);border:1px solid var(--gray2);text-align:center;box-shadow:var(--shadow);transition:all .25s}
    .why-card:hover{border-color:var(--red);transform:translateY(-4px)}
    .why-icon{width:64px;height:64px;border-radius:50%;background:var(--blue);color:var(--white);font-size:26px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
    .why-card h3{font-size:17px;font-weight:700;color:var(--text);margin-bottom:10px}
    .why-card p{font-size:14px;color:var(--muted);line-height:1.7}

    /* STORIES */
    .stories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
    .story-card{background:var(--white);border-radius:14px;border:1px solid var(--gray2);padding:32px;box-shadow:var(--shadow)}
    .story-quote{font-size:15px;color:var(--muted);line-height:1.75;font-style:italic;margin-bottom:24px;position:relative;padding-left:20px}
    .story-quote::before{content:'\201C';position:absolute;left:0;top:-4px;font-size:36px;color:var(--red);font-family:'Playfair Display',serif;line-height:1}
    .story-author{display:flex;align-items:center;gap:14px}
    .story-avatar{width:48px;height:48px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;color:var(--white);flex-shrink:0}
    .story-name{font-size:14px;font-weight:700;color:var(--text)}
    .story-role{font-size:12px;color:var(--muted)}

    /* NEWS */
    .news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
    .news-card{background:var(--white);border-radius:14px;border:1px solid var(--gray2);overflow:hidden;box-shadow:var(--shadow);transition:all .25s}
    .news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
    .news-img{height:170px;background:var(--blue);display:flex;align-items:center;justify-content:center;font-size:48px;background-size:cover;background-position:center}
    .news-body{padding:24px}
    .news-meta{display:flex;gap:12px;align-items:center;margin-bottom:12px}
    .news-cat{font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:3px 10px;border-radius:100px;background:var(--offwhite);color:var(--red)}
    .news-date{font-size:12px;color:var(--muted)}
    .news-card h3{font-size:16px;font-weight:700;color:var(--text);margin-bottom:10px;line-height:1.4}
    .news-card p{font-size:13px;color:var(--muted);line-height:1.65;margin-bottom:16px}
    .news-link{font-size:13px;font-weight:700;color:var(--red);border-bottom:2px solid var(--red);padding-bottom:1px;transition:opacity .2s}
    .news-link:hover{opacity:.7}

    /* PARTNERS */
    .partners-section{background:var(--gray);padding:56px 0}
    .partners-label{text-align:center;font-size:13px;font-weight:600;color:var(--muted);letter-spacing:.08em;text-transform:uppercase;margin-bottom:32px}
    .partners-row{display:flex;justify-content:center;align-items:center;gap:20px;flex-wrap:wrap}
    .partner-logo{background:var(--white);border:1px solid var(--gray2);border-radius:10px;padding:14px 22px;font-size:13px;font-weight:700;color:var(--muted);transition:all .2s}
    .partner-logo:hover{border-color:var(--red);color:var(--red)}

    /* CTA BAND */
    .cta-band{background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 100%);padding:80px 0;text-align:center;position:relative;overflow:hidden}
    .cta-band::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 80% at 50% 50%,rgba(192,39,45,.15) 0%,transparent 70%)}
    .cta-band-inner{position:relative;z-index:1}
    .cta-band h2{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,44px);font-weight:700;color:var(--white);margin-bottom:16px}
    .cta-band p{font-size:17px;color:rgba(255,255,255,.75);margin-bottom:36px}
    .cta-band-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

    /* PAGE HERO */
    .page-hero{background:var(--blue);padding:72px 0 56px;position:relative;overflow:hidden}
    .page-hero::after{content:'';position:absolute;bottom:0;left:0;right:0;height:5px;background:linear-gradient(90deg,var(--red) 0%,var(--white) 50%,var(--blue) 100%)}
    .page-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(6,32,67,.95) 0%,rgba(10,49,97,.88) 100%)}
    .page-hero .container{position:relative;z-index:1}
    .page-hero h1{font-family:'Playfair Display',serif;font-size:clamp(32px,5vw,52px);font-weight:700;color:var(--white);margin-bottom:12px}
    .page-hero p{font-size:17px;color:rgba(255,255,255,.72);max-width:560px}
    .breadcrumb{display:flex;gap:8px;align-items:center;font-size:13px;color:rgba(255,255,255,.55);margin-bottom:20px}
    .breadcrumb a{color:rgba(255,255,255,.85)}
    .breadcrumb span{color:rgba(255,255,255,.35)}

    /* ABOUT */
    .about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
    .about-visual-box{background:var(--blue);border-radius:20px;padding:48px;color:var(--white);position:relative;overflow:hidden;border-top:6px solid var(--red)}
    .about-visual-box::before{content:'';position:absolute;top:-40px;right:-40px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,.08)}
    .about-visual-box .av-eyebrow{color:rgba(255,255,255,.6);font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:12px}
    .about-visual-box h2{font-family:'Playfair Display',serif;font-size:26px;font-weight:700;margin-bottom:16px}
    .about-visual-box p{font-size:15px;color:rgba(255,255,255,.72);line-height:1.75}
    .about-text p{font-size:16px;color:var(--muted);line-height:1.8;margin-bottom:20px}
    .values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px}
    .value-card{background:var(--white);border:1px solid var(--gray2);border-radius:10px;padding:24px 20px;text-align:center;box-shadow:var(--shadow);transition:all .2s}
    .value-card:hover{border-color:var(--red)}
    .value-card .vi{font-size:28px;margin-bottom:10px}
    .value-card h4{font-size:14px;font-weight:700;color:var(--text)}
    .timeline{margin-top:48px}
    .timeline-item{display:flex;gap:24px;margin-bottom:32px;position:relative}
    .timeline-item::before{content:'';position:absolute;left:20px;top:44px;bottom:-32px;width:2px;background:var(--gray2)}
    .timeline-item:last-child::before{display:none}
    .timeline-dot{width:42px;height:42px;border-radius:50%;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:12px;flex-shrink:0}
    .timeline-body h4{font-size:15px;font-weight:700;color:var(--text);margin-bottom:4px}
    .timeline-body p{font-size:14px;color:var(--muted);line-height:1.6}
    .leadership-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
    .leader-card{background:var(--white);border:1px solid var(--gray2);border-radius:14px;padding:32px 24px;text-align:center;box-shadow:var(--shadow);transition:all .25s}
    .leader-card:hover{transform:translateY(-4px);border-color:var(--red)}
    .leader-avatar{width:80px;height:80px;border-radius:50%;background:var(--blue);margin:0 auto 16px;display:flex;align-items:center;justify-content:center;font-size:26px;font-weight:700;color:var(--white)}
    .leader-card h3{font-size:16px;font-weight:700;color:var(--text);margin-bottom:4px}
    .leader-card .role{font-size:13px;color:var(--red);font-weight:600;margin-bottom:10px}
    .leader-card p{font-size:13px;color:var(--muted);line-height:1.6}
    .leader-card.clickable{cursor:pointer}
    .leader-card.clickable:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--red)}
    .bio-more{display:inline-block;margin-top:14px;font-size:12px;font-weight:700;letter-spacing:.04em;color:var(--red)}
    /* Leadership bio modal */
    .bio-modal{position:fixed;inset:0;z-index:2000;display:none;align-items:flex-start;justify-content:center;padding:40px 20px;overflow-y:auto;background:rgba(6,32,67,.6)}
    .bio-modal.open{display:flex}
    .bio-modal-card{position:relative;background:var(--white);border-radius:16px;max-width:560px;width:100%;box-shadow:var(--shadow-lg);overflow:hidden;animation:bioIn .25s ease}
    @keyframes bioIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
    .bio-modal-photo{width:100%;height:340px;object-fit:cover;object-position:center 20%;background:var(--blue);display:block}
    .bio-modal-close{position:absolute;top:14px;right:14px;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.92);border:none;cursor:pointer;font-size:22px;line-height:1;display:flex;align-items:center;justify-content:center;color:var(--blue);box-shadow:var(--shadow)}
    .bio-modal-close:hover{background:var(--white)}
    .bio-modal-body{padding:28px 32px 34px}
    .bio-modal-body h3{font-family:'Playfair Display',serif;font-size:27px;color:var(--blue);margin-bottom:2px}
    .bio-modal-body .role{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--red);margin-bottom:18px}
    .bio-modal-body p{font-size:15px;color:var(--muted);line-height:1.85}

    /* PROGRAMS PAGE */
    .program-dept{background:var(--white);border-radius:16px;border:1px solid var(--gray2);margin-bottom:32px;overflow:hidden;box-shadow:var(--shadow)}
    .dept-header{background:var(--blue);padding:28px 36px;display:flex;align-items:center;gap:20px}
    .dept-icon{width:52px;height:52px;background:rgba(255,255,255,.18);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0}
    .dept-header h2{font-size:22px;font-weight:700;color:var(--white);margin-bottom:2px}
    .dept-header p{font-size:14px;color:rgba(255,255,255,.65)}
    .dept-body{padding:32px 36px}
    .dept-programs{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
    .dept-program-item{background:var(--offwhite);border-radius:10px;padding:20px 22px;border-left:3px solid var(--red)}
    .dept-program-item h4{font-size:15px;font-weight:700;color:var(--text);margin-bottom:6px}
    .dept-program-item p{font-size:13px;color:var(--muted);line-height:1.6;margin-bottom:10px}
    .prog-meta{display:flex;gap:10px;flex-wrap:wrap}
    .prog-badge{font-size:11px;font-weight:600;padding:3px 10px;border-radius:100px;background:var(--blue);color:var(--white)}

    /* ADMISSIONS */
    .admission-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:64px}
    .step-card{background:var(--white);border:1px solid var(--gray2);border-radius:14px;padding:32px 24px;text-align:center;box-shadow:var(--shadow)}
    .step-num{width:44px;height:44px;border-radius:50%;background:var(--blue);color:var(--white);font-weight:900;font-size:18px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
    .step-card h3{font-size:15px;font-weight:700;color:var(--text);margin-bottom:8px}
    .step-card p{font-size:13px;color:var(--muted);line-height:1.6}
    .reqs-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;margin-bottom:64px}
    .req-box{background:var(--white);border:1px solid var(--gray2);border-radius:14px;padding:32px;box-shadow:var(--shadow)}
    .req-box h3{font-size:18px;font-weight:700;color:var(--text);margin-bottom:20px;padding-bottom:14px;border-bottom:2px solid var(--red)}
    .req-box ul{list-style:none}
    .req-box ul li{padding:10px 0;border-bottom:1px solid var(--gray2);font-size:14px;color:var(--muted);display:flex;gap:10px;align-items:flex-start}
    .req-box ul li:last-child{border-bottom:none}
    .req-box ul li::before{content:"\2713";color:var(--red);font-weight:700;flex-shrink:0}
    .faq-list{max-width:800px;margin:0 auto}
    .faq-item{background:var(--white);border:1px solid var(--gray2);border-radius:10px;margin-bottom:12px;overflow:hidden}
    .faq-q{width:100%;text-align:left;background:none;border:none;padding:20px 24px;font-size:15px;font-weight:700;color:var(--text);cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background .2s;font-family:'Inter',sans-serif}
    .faq-q:hover{background:var(--offwhite)}
    .faq-q .arrow{font-size:18px;transition:transform .3s;color:var(--red)}
    .faq-a{display:none;padding:0 24px 20px;font-size:14px;color:var(--muted);line-height:1.7}
    .faq-item.open .faq-a{display:block}
    .faq-item.open .arrow{transform:rotate(180deg)}

    /* STUDENT LIFE */
    .life-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
    .life-card{background:var(--white);border:1px solid var(--gray2);border-radius:14px;overflow:hidden;box-shadow:var(--shadow);transition:all .25s}
    .life-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
    .life-img{height:160px;background:var(--blue);display:flex;align-items:center;justify-content:center;font-size:52px;background-size:cover;background-position:center}
    .life-body{padding:22px}
    .life-body h3{font-size:16px;font-weight:700;color:var(--text);margin-bottom:8px}
    .life-body p{font-size:13px;color:var(--muted);line-height:1.65}

    /* CONTACT */
    .contact-layout{display:grid;grid-template-columns:1fr 1.4fr;gap:48px}
    .contact-info-card{background:var(--blue);border-radius:16px;padding:40px;color:var(--white);border-top:6px solid var(--red)}
    .contact-info-card h2{font-family:'Playfair Display',serif;font-size:24px;color:var(--white);margin-bottom:8px}
    .contact-info-card>p{font-size:15px;color:rgba(255,255,255,.68);line-height:1.7;margin-bottom:32px}
    .ci-item{display:flex;gap:16px;margin-bottom:24px;align-items:flex-start}
    .ci-icon{width:44px;height:44px;background:rgba(255,255,255,.18);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
    .ci-item strong{display:block;color:var(--white);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:3px}
    .ci-item span{font-size:14px;color:rgba(255,255,255,.68);line-height:1.5}
    .ci-social{display:flex;gap:10px;margin-top:32px}
    .ci-social a{width:40px;height:40px;border-radius:8px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;transition:background .2s}
    .ci-social a:hover{background:rgba(255,255,255,.35)}
    .contact-form-card{background:var(--white);border:1px solid var(--gray2);border-radius:16px;padding:40px;box-shadow:var(--shadow)}
    .contact-form-card h2{font-family:'Playfair Display',serif;font-size:24px;color:var(--text);margin-bottom:24px}
    .form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    .form-group{margin-bottom:20px}
    .form-group label{display:block;font-size:12px;font-weight:700;color:var(--text);letter-spacing:.06em;text-transform:uppercase;margin-bottom:8px}
    .form-group input,.form-group textarea,.form-group select{width:100%;padding:13px 16px;border:1px solid var(--gray2);border-radius:var(--radius);font-family:'Inter',sans-serif;font-size:15px;color:var(--text);background:var(--offwhite);outline:none;transition:border-color .2s}
    .form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--red);background:var(--white)}
    .form-group textarea{resize:vertical;min-height:130px}
    .map-placeholder{background:var(--offwhite);border-radius:14px;height:280px;margin-top:48px;display:flex;align-items:center;justify-content:center;border:1px solid var(--gray2);font-size:15px;color:var(--muted);flex-direction:column;gap:10px}

    /* FOOTER */
    .site-footer{background:var(--blue-dark)}
    .footer-main{padding:64px 0 40px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px}
    .footer-brand p{font-size:14px;color:rgba(255,255,255,.48);line-height:1.75;margin:16px 0 24px}
    .footer-logo-text .name{font-family:'Playfair Display',serif;font-size:20px;font-weight:700;color:var(--white)}
    .footer-logo-text .tag{font-size:11px;color:rgba(255,255,255,.45);font-weight:600;letter-spacing:.08em;text-transform:uppercase}
    .footer-logo-icon{width:48px;height:48px;background:var(--red);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;border:2px solid rgba(255,255,255,.2)}
    .footer-col h4{font-size:12px;font-weight:700;color:rgba(255,255,255,.35);letter-spacing:.12em;text-transform:uppercase;margin-bottom:20px}
    .footer-col ul{list-style:none}
    .footer-col ul li{margin-bottom:12px}
    .footer-col ul li a{color:rgba(255,255,255,.58);font-size:14px;transition:color .2s}
    .footer-col ul li a:hover{color:var(--white)}
    .footer-social-links{display:flex;gap:10px}
    .footer-social-links a{width:38px;height:38px;border-radius:8px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:background .2s}
    .footer-social-links a:hover{background:var(--red)}
    .footer-divider{border:none;border-top:1px solid rgba(255,255,255,.08)}
    .footer-bottom{padding:20px 0;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
    .footer-bottom p{color:rgba(255,255,255,.30);font-size:13px}
    .footer-bottom-links{display:flex;gap:20px}
    .footer-bottom-links a{color:rgba(255,255,255,.35);font-size:13px;transition:color .2s}
    .footer-bottom-links a:hover{color:var(--white)}

    /* ROUTING */
    .page{display:none}
    .page.active{display:block}

    /* TABLE */
    .data-table{width:100%;border-collapse:collapse;background:var(--white);border-radius:14px;overflow:hidden;box-shadow:var(--shadow);font-size:14px}
    .data-table thead tr{background:var(--blue);color:var(--white)}
    .data-table th{padding:18px 24px;text-align:left;font-weight:700}
    .data-table td{padding:16px 24px;color:var(--muted);border-bottom:1px solid var(--gray2)}
    .data-table tr:last-child td{border-bottom:none}
    .data-table tr:nth-child(even){background:var(--offwhite)}
    .data-table td:first-child{font-weight:600;color:var(--text)}

    /* EVENT CARDS */
    .event-card{background:var(--white);border:1px solid var(--gray2);border-radius:12px;padding:24px 28px;display:flex;gap:24px;align-items:center;box-shadow:var(--shadow)}
    .event-date{background:var(--blue);color:var(--white);border-radius:10px;padding:12px 16px;text-align:center;min-width:64px;flex-shrink:0}
    .event-date .day{font-size:24px;font-weight:900;line-height:1}
    .event-date .month{font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-top:2px;opacity:.85}
    .event-body h4{font-size:15px;font-weight:700;color:var(--text);margin-bottom:4px}
    .event-body p{font-size:13px;color:var(--muted)}

    /* RESPONSIVE */
    @media(max-width:1024px){
      .programs-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
      .hero-inner{grid-template-columns:1fr}
      .hero-visual{display:none}
      .admission-steps{grid-template-columns:repeat(2,1fr)}
      .nav-links,.nav-cta{display:none}
      .hamburger{display:flex}
    }
    @media(max-width:768px){
      .section{padding:56px 0}
      .topbar-left{display:none}
      .why-grid,.stories-grid,.news-grid,.life-grid{grid-template-columns:1fr}
      .stats-grid{grid-template-columns:repeat(2,1fr)}
      .stat-box{border-right:none;border-bottom:1px solid rgba(255,255,255,.15)}
      .about-grid,.contact-layout,.reqs-grid,.form-row{grid-template-columns:1fr}
      .leadership-grid,.values-grid{grid-template-columns:repeat(2,1fr)}
      .dept-programs{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column;text-align:center}
      .programs-grid{grid-template-columns:1fr}
      .admission-steps{grid-template-columns:1fr}
      .director-inner{grid-template-columns:1fr}
    }
