:root{
     --navy:green;
    --navy-dark:#013220;
    --gold:#d4a84f;
    --gold-light:#efd69a;
     --cream:#f8f6f0;
    --white:#fff;
    --text:#233142;
    --muted:#6d7885;
    --border:#e6e4de;
     --shadow:0 20px 60px rgba(16,45,79,.12);
    --radius:18px 
}
 *{
    box-sizing:border-box
}
 html{
    scroll-behavior:smooth
}
 body{
    margin:0;
    color:var(--text);
    font-family:"DM Sans",sans-serif;
    background:#fff;
    line-height:1.65
}
img{
    display:block;
    width:100%;
    object-fit:cover
}
a{
    text-decoration:none;
    color:inherit
}
button,input,select,textarea{
    font:inherit
}

/**/
.page-hero{
    min-height:360px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    color:#fff
}
.page-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(1,50,32,.93),rgba(1,50,32,.6),rgba(1,50,32,.15))
}
.page-hero .container{
    position:relative
}
.breadcrumb{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#e2ebe6
}
.breadcrumb a{
    color:var(--gold-light)
}
.page-hero h1{
    font:700 clamp(42px,6vw,68px)/1.05 Georgia;
    margin:14px 0
}
.page-hero p{
    max-width:680px;
    color:#e6eee9;
    font-size:15px
}
 .section{
    padding:90px 0
}
.light{
    background:var(--cream)
}
.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center
}
.section-heading{
    max-width:720px;
    margin-bottom:45px
}
.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto
}
.label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2.4px;
    font-weight:700;
    color:var(--gold)
}
.lead{
    font-size:17px;
    color:#526171
}
.muted{
    color:var(--muted)
}
 .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 20px;
    border-radius:5px;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    border:0
}
.btn-primary{
    background:var(--gold);
    color:#fff
}
.btn-outline{
    border:1px solid var(--navy);
    color:var(--navy);
    background:#fff
}
.btn-dark{
    background:var(--navy);
    color:#fff
}
.btn:hover{
    transform:translateY(-2px)
}
/**/

.container{
    width:min(1180px,calc(100% - 40px));
    margin:auto
}
 .topbar{
    background:var(--navy-dark);
    color:#fff;
    font-size:12px
}
.topbar-inner{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:space-between
}
.top-links{
    display:flex;
    gap:25px;
    color:#dbe4ee
}
.site-header{
    height:88px;
    background:#fff;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 4px 25px rgba(0,0,0,.06)
}
.nav-wrap{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between
}
.brand{
    display:inline-flex;
    align-items:center;
    gap:11px;
    color:var(--navy)
}
.brand-mark{
    width:72px;
    height:72px;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-family:"Playfair Display";
    font-weight:700;
    color:var(--navy);
    font-size:14px
}
.brand strong,.brand small{
    display:block
}
.brand strong{
    font-family:"Playfair Display";
    font-size:18px;
    line-height:1.1
}
.brand small{
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:8px;
    font-weight:700;
    color:var(--gold);
    margin-top:3px
}
.main-nav{
    display:flex;
    align-items:center;
    gap:26px;
    font-size:13px;
    font-weight:600
}
.main-nav>a,.dropdown-toggle{
    color:#324052
}
.main-nav>a:hover,.dropdown-toggle:hover,.main-nav>a.active{
    color:var(--gold)
}
.dropdown-toggle{
    border:0;
    background:none;
    padding:31px 0;
    cursor:pointer
}
.nav-dropdown{
    position:relative
}
.dropdown-menu{
    position:absolute;
    top:76px;
    left:-18px;
    min-width:210px;
    background:#fff;
    border-top:3px solid var(--gold);
    box-shadow:var(--shadow);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.2s
}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:none
}
.dropdown-menu a{
    display:block;
    padding:9px 18px;
    font-size:12px
}
.dropdown-menu a:hover{
    background:var(--cream);
    color:var(--gold)
}
.nav-cta{
    background:var(--gold)!important;
    color:#fff!important;
    padding:12px 19px;
    border-radius:5px
}
.menu-toggle{
    display:none;
    background:none;
    border:0
}
.menu-toggle span{
    width:25px;
    height:2px;
    background:var(--navy);
    display:block;
    margin:5px
}
 .hero{
    height:min(720px,calc(100vh - 126px));
    min-height:600px;
    position:relative;
    overflow:hidden;
    background:#172b40
}
.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.04);
    transition:opacity 1s ease,transform 7s ease
}
.hero-slide.active{
    opacity:1;
    transform:scale(1)
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(5,25,46,.88) 0%,rgba(5,25,46,.58) 48%,rgba(5,25,46,.08) 100%)
}
.hero-content{
    position:relative;
    height:100%;
    display:flex;
    justify-content:center;
    flex-direction:column;
    color:#fff;
    max-width:1180px
}
.eyebrow,.section-label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2.4px;
    font-weight:700;
    color:var(--gold)
}
.hero h1{
    font-family:"Playfair Display";
    font-size:clamp(44px,6vw,76px);
    line-height:1.03;
    max-width:760px;
    margin:17px 0 22px
}
.hero h1 em{
    font-style:normal;
    color:var(--gold-light)
}
.hero p{
    max-width:600px;
    font-size:16px;
    color:#e7edf3;
    margin:0 0 30px
}
.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    border:0;
    border-radius:5px;
    padding:14px 21px;
    font-weight:700;
    font-size:12px;
    cursor:pointer;
    transition:.2s
}
.btn span{
    font-size:17px
}
.btn-primary{
    background:var(--gold);
    color:#fff
}
.btn-primary:hover{
    background:#bd8e36;
    transform:translateY(-2px)
}
.btn-light-outline{
    border:1px solid rgba(255,255,255,.55);
    color:#fff
}
.btn-light-outline:hover{
    background:#fff;
    color:var(--navy)
}
.btn-dark{
    background:var(--navy);
    color:#fff
}
.btn-light{
    background:#fff;
    color:var(--navy)
}
.hero-controls{
    position:absolute;
    bottom:28px;
    right:max(20px,calc((100% - 1180px)/2));
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff
}
.hero-controls button,.testimonial-slider>button{
    background:transparent;
    border:1px solid rgba(255,255,255,.45);
    color:#fff;
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer
}
.hero-dots{
    display:flex;
    gap:7px
}
.hero-dot{
    width:28px;
    height:2px;
    border:0;
    background:rgba(255,255,255,.4);
    cursor:pointer
}
.hero-dot.active{
    background:var(--gold);
    width:42px
}
.quick-strip{
    background:var(--navy);
    color:#fff
}
.quick-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr)
}
.quick-grid a{
    min-height:100px;
    padding:20px 22px;
    display:flex;
    align-items:center;
    gap:13px;
    border-right:1px solid rgba(255,255,255,.12);
    transition:.2s
}
.quick-grid a:hover{
    background:#173c65
}
.quick-icon{
    width:35px;
    height:35px;
    border:1px solid var(--gold);
    color:var(--gold);
    display:grid;
    place-items:center;
    font-size:10px
}
.quick-grid small,.quick-grid strong{
    display:block
}
.quick-grid small{
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#aebdcb
}
.quick-grid strong{
    font-size:12px
}
.quick-grid b{
    margin-left:auto;
    color:var(--gold)
}
 .section{
    padding:105px 0
}
.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:95px;
    align-items:center
}
.image-stack{
    position:relative;
    padding:0 45px 35px 0
}
.main-photo{
    height:500px;
    border-radius:3px;
    position:relative;
    z-index:2
}
.shape{
    position:absolute;
    right:0;
    bottom:0;
    width:80%;
    height:82%;
    background:var(--gold-light)
}
.floating-card{
    position:absolute;
    z-index:3;
    bottom:0;
    left:15px;
    background:#fff;
    padding:20px 24px;
    box-shadow:var(--shadow);
    display:flex;
    align-items:center;
    gap:14px
}
.floating-card strong{
    font-family:"Playfair Display";
    font-size:42px;
    color:var(--navy)
}
.floating-card span{
    font-size:10px;
    line-height:1.5;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--muted)
}
.content-block h2,.section-heading h2{
    font-family:"Playfair Display";
    font-size:clamp(34px,4vw,51px);
    line-height:1.12;
    color:var(--navy);
    margin:13px 0 22px
}
.content-block h2 span,.section-heading h2 span{
    color:var(--gold)
}
.lead{
    font-size:17px;
    color:#526171
}
.content-block p{
    max-width:570px
}
.text-link{
    font-size:12px;
    font-weight:700;
    color:var(--navy);
    display:inline-flex;
    gap:12px;
    margin-top:16px
}
.text-link span{
    color:var(--gold);
    font-size:18px
}
.light-section{
    background:var(--cream)
}
.section-heading{
    max-width:700px;
    margin-bottom:48px
}
.section-heading.centered{
    text-align:center;
    margin-left:auto;
    margin-right:auto
}
.section-heading p{
    color:var(--muted);
    max-width:600px
}
.centered p{
    margin-left:auto;
    margin-right:auto
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px
}
.feature-card{
    background:#fff;
    padding:36px;
    min-height:300px;
    border-bottom:3px solid transparent;
    transition:.25s;
    box-shadow:0 5px 25px rgba(0,0,0,.03)
}
.feature-card:hover{
    border-bottom-color:var(--gold);
    transform:translateY(-5px);
    box-shadow:var(--shadow)
}
.feature-number{
    font-family:"Playfair Display";
    color:var(--gold);
    font-size:24px
}
.feature-card h3{
    font-family:"Playfair Display";
    color:var(--navy);
    font-size:23px
}
.feature-card p{
    font-size:13px;
    color:var(--muted)
}
.feature-card a,.academic-card a,.news-card a{
    font-size:11px;
    font-weight:700;
    color:var(--navy)
}
.academic-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.academic-card{
    border:1px solid var(--border);
    background:#fff;
    overflow:hidden
}
.academic-card img{
    height:210px
}
.academic-card>div{
    padding:25px
}
.academic-card small,.news-card small{
    color:var(--gold);
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-weight:700
}
.academic-card h3,.news-card h3{
    font-family:"Playfair Display";
    color:var(--navy);
    font-size:25px;
    margin:7px 0
}
.academic-card p,.news-card p{
    font-size:12px;
    color:var(--muted)
}
.stats-section{
    background:var(--navy);
    padding:55px 0;
    color:#fff
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center
}
.stats-grid div{
    border-right:1px solid rgba(255,255,255,.12)
}
.stats-grid div:last-child{
    border:0
}
.stats-grid strong{
    font-family:"Playfair Display";
    font-size:45px;
    color:var(--gold);
    display:block;
    line-height:1
}
.stats-grid span{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#c2cfda;
    display:block;
    margin-top:10px
}
 .gallery{
    background:#fff
}
.gallery-heading{
    display:flex;
    justify-content:space-between;
    align-items:end;
    max-width:none
}
.gallery-heading>p{
    max-width:390px
}
.gallery-grid{
    display:grid;
    grid-template-columns:1.35fr .85fr .85fr;
    grid-auto-rows:220px;
    gap:12px
}
.gallery-item{
    position:relative;
    margin:0;
    overflow:hidden
}
.gallery-item.large{
    grid-row:span 2
}
.gallery-item img{
    height:100%;
    transition:.6s
}
.gallery-item:hover img{
    transform:scale(1.07)
}
.gallery-item:after{
    content:"";
    position:absolute;
    inset:45% 0 0;
    background:linear-gradient(transparent,rgba(0,0,0,.65))
}
.gallery-item figcaption{
    position:absolute;
    z-index:2;
    bottom:17px;
    left:18px;
    color:#fff;
    font-size:12px;
    font-weight:700
}
.center-action{
    text-align:center;
    margin-top:38px
}
 .testimonial-section{
    background:var(--cream)
}
.testimonial-slider{
    display:flex;
    align-items:center;
    gap:25px;
    max-width:900px;
    margin:auto
}
.testimonial-slider>button{
    border-color:var(--navy);
    color:var(--navy);
    flex:none
}
.testimonial-track{
    position:relative;
    flex:1;
    min-height:260px
}
.testimonial{
    display:none;
    text-align:center
}
.testimonial.active{
    display:block;
    animation:fade .5s
}
.quote{
    font-family:"Playfair Display";
    font-size:70px;
    color:var(--gold);
    height:60px
}
.testimonial p{
    font-family:"Playfair Display";
    font-size:23px;
    line-height:1.5;
    color:var(--navy);
    margin:0 auto 25px;
    max-width:760px
}
.person{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:11px;
    text-align:left
}
.avatar{
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:10px
}
.person strong,.person span{
    display:block;
    font-size:11px
}
.person span{
    color:var(--muted)
}
 .admission-section{
    background:var(--navy);
    padding:100px 0;
    color:#fff
}
.admission-wrap{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:80px;
    align-items:center
}
.admission-copy h2{
    font-family:"Playfair Display";
    font-size:52px;
    line-height:1.08;
    margin:14px 0 20px
}
.admission-copy h2 span{
    color:var(--gold-light)
}
.admission-copy>p{
    color:#c5d0dc;
    max-width:470px
}
.admission-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:28px;
    font-size:11px;
    color:#e1e8ef
}
.admission-form{
    background:#fff;
    color:var(--text);
    padding:35px;
    border-radius:4px;
    box-shadow:var(--shadow)
}
.admission-form h3{
    font-family:"Playfair Display";
    font-size:28px;
    color:var(--navy);
    margin:0
}
.admission-form>p{
    font-size:12px;
    color:var(--muted);
    margin-top:3px
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px
}
.admission-form label{
    display:block;
    font-size:10px;
    font-weight:700;
    color:#4e5b69;
    margin:12px 0
}
.admission-form input,.admission-form select,.admission-form textarea{
    width:100%;
    border:1px solid #dfe2e5;
    border-radius:3px;
    padding:12px;
    margin-top:6px;
    outline:none;
    background:#fff;
    font-size:12px
}
.admission-form input:focus,.admission-form select:focus,.admission-form textarea:focus{
    border-color:var(--gold)
}
.form-submit{
    margin-top:10px
}
.form-message{
    font-size:11px;
    margin-top:12px;
    color:#38805b
}
 .news-heading{
    display:flex;
    align-items:end;
    justify-content:space-between;
    max-width:none
}
.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.news-card{
    border:1px solid var(--border);
    background:#fff
}
.news-card img{
    height:220px
}
.news-card>div{
    padding:23px
}
.news-card h3{
    font-size:21px;
    line-height:1.3
}
.cta-section{
    background:var(--gold);
    color:#fff;
    padding:65px 0
}
.cta-inner{
    display:flex;
    justify-content:space-between;
    align-items:center
}
.cta-inner h2{
    font-family:"Playfair Display";
    font-size:39px;
    line-height:1.1;
    margin:10px 0 0
}
.cta-inner h2 em{
    font-style:normal;
    color:var(--navy)
}
.cta-inner .section-label{
    color:var(--navy)
}
 footer{
    background:var(--navy-dark);
    color:#c0cbd6
}
.footer-main{
    padding:65px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:50px
}
.footer-main .brand{
    color:#fff
}
.footer-brand p{
    font-size:12px;
    max-width:240px;
    margin-top:20px
}
.footer-main h4{
    color:#fff;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin:0 0 18px
}
.footer-main>div:not(.footer-brand)>a{
    display:block;
    font-size:11px;
    margin:9px 0;
    color:#b8c3ce
}
.footer-main p{
    font-size:11px;
    line-height:1.8
}
.socials{
    display:flex;
    gap:7px;
    margin-top:20px
}
.socials a{
    width:31px;
    height:31px;
    border:1px solid #415166;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:10px
}
.footer-bottom{
    border-top:1px solid #25374c;
    padding:17px 0;
    font-size:9px
}
.footer-bottom .container{
    display:flex;
    justify-content:space-between
}
.back-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    display:none;
    z-index:90;
    cursor:pointer
}
.back-top.show{
    display:block
}
 .reveal{
    opacity:0;
    transform:translateY(25px);
    transition:.7s
}
.reveal.visible{
    opacity:1;
    transform:none
}
@keyframes fade{
    from{
        opacity:0
    }
    to{
        opacity:1
    }
}
 @media(max-width:1000px){
    .main-nav{
        gap:14px
    }
    .two-col{
        gap:50px
    }
    .quick-grid a{
        padding:15px
    }
    .footer-main{
        gap:25px
    }
}
 @media(max-width:820px){
     .top-links{
        display:none
    }
    .container{
        width:min(100% - 30px,680px)
    }
    .site-header{
        height:72px
    }
    .menu-toggle{
        display:block
    }
    .main-nav{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        background:#fff;
        padding:12px 20px 25px;
        box-shadow:0 20px 30px rgba(0,0,0,.1);
        flex-direction:column;
        align-items:stretch;
        gap:0
    }
    .main-nav.open{
        display:flex
    }
    .main-nav>a,.dropdown-toggle{
        padding:12px 5px;
        text-align:left
    }
    .dropdown-menu{
        position:static;
        box-shadow:none;
        border-top:0;
        background:var(--cream);
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        padding:0
    }
    .nav-dropdown.open .dropdown-menu{
        display:block
    }
    .dropdown-menu a{
        padding:8px 20px
    }
    .nav-cta{
        text-align:center!important;
        margin-top:8px
    }
    .hero{
        min-height:620px;
        height:calc(100vh - 110px)
    }
    .hero h1{
        font-size:47px
    }
    .quick-grid{
        grid-template-columns:1fr 1fr
    }
    .quick-grid a:nth-child(2){
        border-right:0
    }
    .two-col,.admission-wrap{
        grid-template-columns:1fr
    }
    .section{
        padding:75px 0
    }
    .feature-grid,.academic-grid,.news-grid{
        grid-template-columns:1fr
    }
    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:35px
    }
    .stats-grid div:nth-child(2){
        border:0
    }
    .stats-grid div{
        border-bottom:1px solid rgba(255,255,255,.12);
        padding-bottom:25px
    }
    .gallery-heading,.news-heading,.cta-inner{
        display:block
    }
    .gallery-heading>p{
        margin-top:-20px
    }
    .gallery-grid{
        grid-template-columns:1fr 1fr;
        grid-auto-rows:190px
    }
    .gallery-item.large{
        grid-row:span 2
    }
    .admission-copy h2,.cta-inner h2{
        font-size:42px
    }
    .footer-main{
        grid-template-columns:1fr 1fr
    }
    .footer-brand{
        grid-column:1/-1
    }
}
 @media(max-width:520px){
    .topbar{
        font-size:10px
    }
    .topbar-inner{
        justify-content:center
    }
    .hero{
        min-height:590px
    }
    .hero h1{
        font-size:40px
    }
    .hero p{
        font-size:14px
    }
    .hero-actions{
        flex-direction:column;
        align-items:flex-start
    }
    .hero-controls{
        right:15px
    }
    .quick-grid{
        grid-template-columns:1fr
    }
    .quick-grid a{
        border-right:0!important;
        border-bottom:1px solid rgba(255,255,255,.1)
    }
    .image-stack{
        padding-right:20px
    }
    .main-photo{
        height:390px
    }
    .floating-card{
        left:0
    }
    .feature-card{
        min-height:auto
    }
    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:220px
    }
    .gallery-item.large{
        grid-row:span 1
    }
    .form-row,.admission-points{
        grid-template-columns:1fr
    }
    .admission-form{
        padding:24px
    }
    .testimonial-slider{
        gap:8px
    }
    .testimonial p{
        font-size:18px
    }
    .testimonial-slider>button{
        width:32px;
        height:32px
    }
    .footer-main{
        grid-template-columns:1fr
    }
    .footer-bottom .container{
        display:block
    }
    .footer-bottom span{
        display:block;
        margin:5px 0
    }
}
 
  .photo-frame img{
    height:470px
}
.checks{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:25px 0
}
.checks div{
    font-size:12px;
    font-weight:700
}
.checks div:before{
    content:"✓";
    color:var(--gold);
    margin-right:8px
}
 .cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.card{
    background:#fff;
    border:1px solid var(--border);
    padding:30px;
    transition:.25s
}
.card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
    border-bottom:3px solid var(--gold)
}
.card .num{
    font:24px Georgia;
    color:var(--gold)
}
.card p{
    font-size:12px;
    color:var(--muted)
}
 .team-card{
    background:#fff;
    border:1px solid var(--border)
}
.team-card img{
    height:300px
}
.team-card-content{
    padding:20px
}
.team-card h3{
    margin:0 0 3px;
    font-size:22px
}
.team-card small{
    font-size:10px;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:1px
}
 .program-card{
    background:#fff;
    border:1px solid var(--border);
    overflow:hidden
}
.program-card img{
    height:230px
}
.program-content{
    padding:25px
}
.program-content h3{
    font-size:25px;
    margin:5px 0
}
.program-content p{
    font-size:12px;
    color:var(--muted)
}
 .steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px
}
.step{
    background:#fff;
    padding:28px;
    border-top:3px solid var(--gold);
    box-shadow:0 8px 30px rgba(0,0,0,.04)
}
.step strong{
    font:35px Georgia;
    color:var(--gold)
}
.step h3{
    margin:5px 0
}
.step p{
    font-size:12px;
    color:var(--muted)
}
 .form-card{
    background:#fff;
    padding:35px;
    box-shadow:var(--shadow);
    border-radius:4px
}
.form-card h3{
    font-size:28px;
    margin-top:0
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px
}
.form-card label{
    display:block;
    font-size:10px;
    font-weight:700;
    color:#4e5b69;
    margin:12px 0
}
.form-card input,.form-card select,.form-card textarea{
    width:100%;
    border:1px solid #dfe2e5;
    border-radius:3px;
    padding:12px;
    margin-top:6px;
    font-size:12px;
    outline:none
}
.form-message{
    font-size:11px;
    color:#38805b;
    margin-top:10px
}
 .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:230px;
    gap:12px
}
.gallery-item{
    margin:0;
    position:relative;
    overflow:hidden
}
.gallery-item.large{
    grid-row:span 2
}
.gallery-item img{
    height:100%;
    transition:.6s
}
.gallery-item:hover img{
    transform:scale(1.07)
}
.gallery-item:after{
    content:"";
    position:absolute;
    inset:45% 0 0;
    background:linear-gradient(transparent,rgba(0,0,0,.7))
}
.gallery-item figcaption{
    position:absolute;
    z-index:2;
    left:17px;
    bottom:15px;
    color:#fff;
    font-size:12px;
    font-weight:700
}
 .news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.news-card{
    background:#fff;
    border:1px solid var(--border);
    overflow:hidden
}
.news-card img{
    height:220px
}
.news-content{
    padding:22px
}
.news-content small{
    color:var(--gold);
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:1.3px;
    font-weight:700
}
.news-content h3{
    font-size:21px;
    line-height:1.3
}
.news-content p{
    font-size:12px;
    color:var(--muted)
}
 .event{
    display:grid;
    grid-template-columns:88px 1fr;
    gap:24px;
    padding:25px 0;
    border-bottom:1px solid var(--border)
}
.event-date{
    background:var(--navy);
    color:#fff;
    text-align:center;
    padding:12px;
    height:82px
}
.event-date strong{
    font:30px Georgia;
    display:block;
    color:var(--gold)
}
.event-date small{
    font-size:9px;
    text-transform:uppercase
}
.event h3{
    margin:0
}
.event p{
    font-size:12px;
    color:var(--muted);
    margin:5px 0
}
 .faq{
    max-width:850px;
    margin:auto
}
.faq-item{
    border-bottom:1px solid var(--border)
}
.faq-question{
    width:100%;
    border:0;
    background:none;
    padding:20px 0;
    display:flex;
    justify-content:space-between;
    text-align:left;
    color:var(--navy);
    font-weight:700;
    cursor:pointer
}
.faq-question span{
    color:var(--gold);
    font-size:20px
}
.faq-answer{
    display:none;
    color:var(--muted);
    font-size:12px;
    padding:0 30px 20px 0
}
.faq-item.open .faq-answer{
    display:block
}
 .cta{
    background:var(--gold);
    padding:58px 0;
    color:#fff
}
.cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px
}
.cta h2{
    color:#fff;
    font-size:39px;
    margin:6px 0
}
.cta h2 em{
    font-style:normal;
    color:var(--navy)
}
 .contact-list .contact-item{
    padding:18px 0;
    border-bottom:1px solid var(--border)
}
.contact-item strong{
    display:block;
    color:var(--navy);
    font-size:12px
}
.contact-item span{
    font-size:12px;
    color:var(--muted)
}
.map-placeholder{
    height:390px;
    background:linear-gradient(135deg,#dce8df,#f1f5f1);
    display:grid;
    place-items:center;
    text-align:center;
    color:var(--navy);
    font:25px Georgia
}
.map-placeholder small{
    display:block;
    font:11px Arial;
    color:var(--muted)
}