
:root{
    --vvph-navy:#08235b;
    --vvph-navy2:#0f3a80;
    --vvph-pink:#d71962;
    --vvph-gold:#d7a72c;
}

#vvph-header,
#vvph-header *{box-sizing:border-box}

#vvph-header{
    width:100%;
    position:relative;
    z-index:999;
    font-family:Arial,Helvetica,sans-serif;
    background:#fff;
}

.vvph-shell{
    width:min(1480px,calc(100% - 44px));
    margin:0 auto;
}

/* TOP BAR */
.vvph-topbar{
    background:linear-gradient(90deg,#071d4d,#0b2f70);
    color:#fff;
}
.vvph-topbar-inner{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.vvph-contact,.vvph-meta{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
    font-size:13px;
    font-weight:700;
}
.vvph-top-link{
    color:#fff!important;
    text-decoration:none!important;
    display:inline-flex;
    gap:7px;
    align-items:center;
    min-width:0;
}
.vvph-email span:last-child{overflow-wrap:anywhere}
.vvph-meta strong{color:#ffd34f}
.vvph-divider{opacity:.7}

/* BRAND */
.vvph-brand-panel{
    background:
      radial-gradient(circle at 70% 20%,rgba(215,167,44,.06),transparent 35%),
      #fff;
    border-bottom:1px solid #eef1f6;
    overflow:hidden;
}
.vvph-brand-inner{
    min-height:225px;
    display:grid;
    grid-template-columns:205px minmax(0,1fr) 64px;
    align-items:center;
    gap:22px;
    position:relative;
    padding:22px 0;
}
.vvph-logo-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}
.vvph-logo-wrap img{
    display:block;
    width:auto;
    height:auto;
    max-width:185px;
    max-height:185px;
    object-fit:contain;
}
.vvph-brand-copy{
    text-align:center;
    min-width:0;
    position:relative;
    z-index:2;
}
.vvph-trust-row{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:7px;
    color:#17356d;
    font-weight:900;
    font-size:20px;
}
.vvph-school-code{
    display:inline-flex;
    align-items:center;
    min-height:31px;
    padding:0 12px;
    border-radius:6px;
    background:#234b8d;
    color:#fff;
    font-size:12px;
}
.vvph-brand-title{
    color:var(--vvph-pink);
    font-size:clamp(40px,4.8vw,70px);
    line-height:.98;
    font-weight:1000;
    letter-spacing:-1.4px;
    white-space:nowrap;
}
.vvph-brand-subtitle{
    color:#17366f;
    font-size:clamp(31px,3.8vw,55px);
    line-height:1;
    font-weight:1000;
    letter-spacing:-1.1px;
    white-space:nowrap;
    margin-top:3px;
}
.vvph-gold-line{
    width:78%;
    margin:14px auto 10px;
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--vvph-gold);
    font-size:16px;
}
.vvph-gold-line:before,.vvph-gold-line:after{
    content:"";
    height:1px;
    flex:1;
    background:linear-gradient(90deg,transparent,var(--vvph-gold));
}
.vvph-gold-line:after{
    background:linear-gradient(90deg,var(--vvph-gold),transparent);
}
.vvph-affiliation{
    color:#1c2230;
    font-size:15px;
    font-weight:900;
}
.vvph-deco{
    position:absolute;
    width:130px;
    height:130px;
    pointer-events:none;
}
.vvph-deco-left{
    left:-55px;
    bottom:0;
    background:
      linear-gradient(45deg,transparent 48%,var(--vvph-gold) 49% 51%,transparent 52%),
      linear-gradient(135deg,var(--vvph-navy) 0 56%,transparent 57%);
}
.vvph-deco-right{
    right:-55px;
    bottom:0;
    transform:scaleX(-1);
    background:
      linear-gradient(45deg,transparent 48%,var(--vvph-gold) 49% 51%,transparent 52%),
      linear-gradient(135deg,var(--vvph-navy) 0 56%,transparent 57%);
}
.vvph-mobile-toggle{display:none}

/* NAV */
.vvph-nav-wrap{background:linear-gradient(90deg,#06205a,#082e73)}
.vvph-nav-inner{
    min-height:72px;
    display:flex;
    align-items:center;
    gap:22px;
}
.vvph-nav{flex:1 1 auto;min-width:0}
.vvph-menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    gap:6px;
}
.vvph-menu li{position:relative}
.vvph-menu a{
    display:flex;
    align-items:center;
    min-height:72px;
    padding:0 13px;
    color:#fff!important;
    text-decoration:none!important;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
    border-bottom:3px solid transparent;
}
.vvph-menu a:hover,
.vvph-menu .current-menu-item>a,
.vvph-menu .current-menu-ancestor>a{
    color:#ff3b7d!important;
    border-bottom-color:#ff3b7d;
}
.vvph-menu .sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    margin:0;
    padding:8px;
    list-style:none;
    background:#fff;
    border-radius:0 0 12px 12px;
    box-shadow:0 18px 45px rgba(0,0,0,.16);
}
.vvph-menu li:hover>.sub-menu,
.vvph-menu li:focus-within>.sub-menu{display:block}
.vvph-menu .sub-menu a{
    min-height:auto;
    padding:11px 12px;
    color:#17356d!important;
    border-bottom:0;
    white-space:normal;
}
.vvph-apply{
    flex:0 0 auto;
    min-height:54px;
    padding:0 27px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:#fff!important;
    background:linear-gradient(135deg,#e11966,#bc1a58);
    text-decoration:none!important;
    font-size:16px;
    font-weight:900;
    box-shadow:0 14px 30px rgba(215,25,98,.22);
}
.vvph-mobile-menu,.vvph-mobile-apply{display:none}

/* TABLET */
@media(max-width:1180px){
    .vvph-brand-inner{
        grid-template-columns:165px minmax(0,1fr) 58px;
        min-height:205px;
    }
    .vvph-logo-wrap img{max-width:150px;max-height:150px}
    .vvph-trust-row{font-size:16px}
    .vvph-affiliation{font-size:13px}
    .vvph-menu a{padding-inline:8px;font-size:12px}
}

/* MOBILE */
@media(max-width:767px){
    .vvph-shell{
        width:100%;
        padding-left:12px;
        padding-right:12px;
    }

    .vvph-topbar-inner{
        min-height:auto;
        padding-top:7px;
        padding-bottom:7px;
        display:block;
    }
    .vvph-contact{
        display:grid;
        grid-template-columns:auto 1fr;
        gap:4px 9px;
        font-size:10.5px;
    }
    .vvph-contact .vvph-divider{display:none}
    .vvph-top-link{min-height:22px}
    .vvph-meta{display:none}

    .vvph-brand-inner{
        min-height:152px;
        grid-template-columns:82px minmax(0,1fr) 44px;
        gap:9px;
        padding-top:12px;
        padding-bottom:12px;
    }
    .vvph-logo-wrap img{
        max-width:78px;
        max-height:94px;
    }
    .vvph-brand-copy{text-align:left}
    .vvph-trust-row{
        justify-content:flex-start;
        gap:6px;
        margin-bottom:4px;
        font-size:10px;
        line-height:1.15;
    }
    .vvph-school-code{
        min-height:20px;
        padding:0 6px;
        font-size:7px;
        border-radius:4px;
    }
    .vvph-brand-title{
        font-size:clamp(20px,6.4vw,30px);
        line-height:1;
        letter-spacing:-.6px;
        white-space:normal;
    }
    .vvph-brand-subtitle{
        font-size:clamp(17px,5.2vw,25px);
        line-height:1;
        letter-spacing:-.4px;
        white-space:normal;
        margin-top:2px;
    }
    .vvph-gold-line{
        width:100%;
        margin:7px 0 5px;
        font-size:9px;
    }
    .vvph-affiliation{
        font-size:6.8px;
        line-height:1.3;
        letter-spacing:0;
    }
    .vvph-deco{width:75px;height:75px}
    .vvph-mobile-toggle{
        display:flex;
        width:42px;
        height:42px;
        border:0;
        border-radius:11px;
        background:linear-gradient(135deg,#082b68,#0f4a91);
        align-items:center;
        justify-content:center;
        flex-direction:column;
        gap:5px;
        padding:0;
    }
    .vvph-mobile-toggle span{
        width:21px;
        height:3px;
        border-radius:3px;
        background:#fff;
    }
    .vvph-nav-wrap{display:none}

    .vvph-mobile-menu{
        background:#08265f;
        border-top:1px solid rgba(255,255,255,.1);
    }
    .vvph-mobile-menu[hidden]{display:none!important}
    .vvph-mobile-menu:not([hidden]){display:block}
    .vvph-mobile-menu-list{
        list-style:none;
        margin:0;
        padding:10px 0 14px;
    }
    .vvph-mobile-menu-list a{
        display:block;
        padding:12px 4px;
        color:#fff!important;
        text-decoration:none!important;
        font-size:14px;
        font-weight:800;
        border-bottom:1px solid rgba(255,255,255,.09);
    }
    .vvph-mobile-menu-list .sub-menu{
        list-style:none;
        margin:0;
        padding:0 0 0 14px;
    }
    .vvph-mobile-menu-list .sub-menu a{
        font-size:13px;
        color:#dfe8ff!important;
    }

    .vvph-mobile-apply{
        display:block;
        background:#07245a;
        padding:0 10px 10px;
    }
    .vvph-mobile-apply a{
        width:100%;
        min-height:54px;
        display:grid;
        grid-template-columns:34px 1fr 34px;
        align-items:center;
        text-align:center;
        padding:0 12px;
        border:2px solid rgba(255,255,255,.95);
        border-radius:10px;
        background:linear-gradient(135deg,#df1763,#c51659);
        color:#fff!important;
        text-decoration:none!important;
    }
    .vvph-mobile-apply strong{font-size:14px}
}

@media(max-width:390px){
    .vvph-shell{padding-left:9px;padding-right:9px}
    .vvph-brand-inner{
        grid-template-columns:70px minmax(0,1fr) 40px;
        gap:7px;
        min-height:140px;
    }
    .vvph-logo-wrap img{max-width:66px;max-height:82px}
    .vvph-trust-row{font-size:9px}
    .vvph-brand-title{font-size:21px}
    .vvph-brand-subtitle{font-size:18px}
    .vvph-affiliation{font-size:6.2px}
    .vvph-mobile-toggle{width:38px;height:38px}
}
