:root{
    --navy:#071a33;
    --navy2:#0b2748;
    --gold:#d4a646;
    --gold2:#f0c96b;
    --white:#ffffff;
    --paper:#f6f4ef;
    --text:#1f2937;
    --muted:#64748b;
    --line:#e5e7eb;
    --shadow:0 24px 70px rgba(7,26,51,.18);
    --radius:24px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:var(--paper);
    color:var(--text);
    line-height:1.6;
}

a{color:inherit;text-decoration:none}

img{max-width:100%;display:block}

.container{
    width:min(1180px,92%);
    margin:0 auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(7,26,51,.96);
    backdrop-filter:blur(12px);
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.header-inner{
    height:94px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand{
    display:flex;
    align-items:center;
    gap:16px;
    color:var(--white);
}

.brand-mark{
    width:62px;
    height:62px;
    border:2px solid rgba(212,166,70,.75);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:var(--gold);
    font-weight:900;
    letter-spacing:-1px;
}

.brand-text strong{
    display:block;
    font-family:Georgia,serif;
    text-transform:uppercase;
    line-height:.95;
    font-size:22px;
    color:var(--gold2);
}

.brand-text small{
    display:block;
    margin-top:8px;
    font-size:12px;
    color:#e7edf7;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:24px;
}

.main-nav a{
    position:relative;
    color:#fff;
    font-weight:700;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.04em;
    padding:12px 0;
}

.main-nav a.active,
.main-nav a:hover{
    color:var(--gold2);
}

.main-nav a.active:after,
.main-nav a:hover:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:2px;
    height:2px;
    background:var(--gold);
}

.menu-toggle{
    display:none;
    background:none;
    border:0;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#fff;
    margin:6px 0;
    border-radius:4px;
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(110deg,#071a33 0%,#0b2748 52%,#122f54 100%);
    color:#fff;
}

.hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 65% 25%,rgba(212,166,70,.15),transparent 33%),
        linear-gradient(90deg,rgba(7,26,51,.35),rgba(7,26,51,.1));
    pointer-events:none;
}

.flag-ribbon{
    position:absolute;
    left:-20px;
    top:0;
    width:150px;
    height:100%;
    background:linear-gradient(180deg,#123e8a 0 33%,#f2cd43 33% 66%,#c82127 66%);
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
    transform:skewX(-10deg);
    opacity:.96;
}

.hero-grid{
    position:relative;
    min-height:520px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:50px;
    padding:70px 0;
}

.eyebrow{
    display:inline-block;
    color:var(--gold2);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:14px;
}

.hero h1{
    font-family:Georgia,serif;
    font-size:clamp(42px,6vw,76px);
    line-height:.95;
    margin:0 0 22px;
    text-transform:uppercase;
    max-width:760px;
    color:#ffffff !important;
    text-shadow:0 3px 20px rgba(0,0,0,.55);
}

.hero h1 span{
    color:var(--gold2) !important;
}

.hero p{
    font-size:20px;
    color:#e9eef7 !important;
    margin:0 0 34px;
    text-shadow:0 2px 12px rgba(0,0,0,.35);
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 28px;
    border-radius:2px;
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.04em;
    border:1px solid transparent;
    transition:.2s;
}

.btn.gold{
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#071a33;
}

.btn.navy{
    background:var(--navy);
    color:#fff;
}

.btn.outline{
    border-color:rgba(212,166,70,.8);
    color:#fff;
}

.btn.outline:hover,
.btn.gold:hover,
.btn.navy:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.btn.light{
    color:#fff;
}

/* PORTRAIT */
.portrait-card{
    width:100%;
    max-width:520px;
    justify-self:end;
    display:flex;
    align-items:flex-end;
    justify-content:center;

        border:1px solid rgba(212,166,70,.75);
    border-radius:18px;
    overflow:hidden;

    box-shadow:
        0 0 25px rgba(212,166,70,.15),
        0 20px 50px rgba(0,0,0,.30);
}

.portrait-img{
    width:100%;
    height:auto;
    display:block;
}

.portrait-placeholder{
    width:82%;
    height:86%;
    border-radius:22px;
    background:linear-gradient(160deg,#d7dce5,#f6f4ef 45%,#b9c5d6);
    display:grid;
    place-items:center;
    font-family:Georgia,serif;
    font-size:82px;
    color:#0b2748;
    font-weight:900;
}

/* SECTIONS */

.section{
    padding:72px 0;
}

.two-col{
    display:grid;
    grid-template-columns:.82fr 1fr 1.45fr;
    gap:42px;
    align-items:start;
}

.photo-box{
    min-height:310px;
    border-radius:6px;
    overflow:hidden;
    box-shadow:var(--shadow);
    background:#fff;
}

.photo-placeholder{
    height:310px;
    display:grid;
    place-items:center;
    text-align:center;
    font-family:Georgia,serif;
    text-transform:uppercase;
    font-size:34px;
    line-height:1.05;
    color:#fff;
    background:linear-gradient(135deg,#0b2748,#071a33 50%,#d4a646);
}

h1,h2,h3{
    line-height:1.12;
}

body:not(.home) h1,
h2,
h3{
    color:var(--navy);
}

h2{
    font-family:Georgia,serif;
    font-size:34px;
    margin:0 0 22px;
    position:relative;
}

h2:after{
    content:"";
    display:block;
    width:48px;
    height:3px;
    background:var(--gold);
    margin-top:12px;
}

.vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:24px;
}

.vision-item{
    display:grid;
    grid-template-columns:38px 1fr;
    gap:2px 12px;
}

.vision-item span{
    grid-row:1/3;
    font-size:28px;
}

.vision-item strong{
    color:var(--navy);
    text-transform:uppercase;
    font-size:14px;
}

.vision-item p{
    margin:0;
    color:var(--muted);
    font-size:14px;
}

/* DARK BAND */

.dark-band{
    background:linear-gradient(110deg,#071a33,#0b2748);
    color:#fff;
    padding:68px 0;
}

.dark-band h2{
    color:#fff;
}

.dark-band p{
    color:#d9e5f5;
}

.band-grid{
    display:grid;
    grid-template-columns:1.4fr repeat(3,1fr);
    gap:28px;
    align-items:stretch;
}

.stat-card{
    border-left:1px solid rgba(255,255,255,.18);
    padding:28px;
    text-align:center;
}

.stat-card span{
    display:block;
    font-size:38px;
    color:var(--gold2);
    margin-bottom:10px;
}

.stat-card strong{
    display:block;
    text-transform:uppercase;
    color:#fff;
}

/* NEWS */

.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.section-head a{
    color:var(--navy);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
}

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

.news-card{
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 12px 32px rgba(7,26,51,.08);
}

.news-card .news-img{
    height:160px;
    background:linear-gradient(135deg,#071a33,#d4a646);
}

.news-card .img2{
    background:linear-gradient(135deg,#111827,#64748b);
}

.news-card .img3{
    background:linear-gradient(135deg,#0b2748,#f0c96b);
}

.news-card small,
.news-card h3,
.news-card p,
.news-card a{
    display:block;
    margin-left:20px;
    margin-right:20px;
}

.news-card small{
    margin-top:16px;
    color:var(--muted);
    text-transform:uppercase;
    font-size:11px;
}

.news-card h3{
    font-size:18px;
    margin-top:8px;
}

.news-card a{
    margin-bottom:20px;
    color:var(--navy);
    font-weight:900;
    font-size:13px;
    text-transform:uppercase;
}

/* PAGE HERO */

.page-hero{
    background:linear-gradient(110deg,#071a33,#0b2748);
    color:#fff;
    padding:82px 0;
}

.page-hero h1{
    font-family:Georgia,serif;
    font-size:clamp(38px,5vw,62px);
    color:#fff !important;
    margin:0 0 12px;
    text-transform:uppercase;
}

.page-hero p{
    margin:0;
    color:#dce8f6;
    font-size:20px;
}

.content-page{
    max-width:850px;
}

.content-page p{
    font-size:18px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.feature-list>div,
.contact-form,
.contact-grid>div{
    background:#fff;
    border:1px solid var(--line);
    padding:30px;
    box-shadow:0 12px 32px rgba(7,26,51,.08);
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.media-grid div{
    height:210px;
    background:linear-gradient(135deg,#0b2748,#d4a646);
    border-radius:8px;
}

/* CONTACT */

.contact-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:28px;
}

.contact-form{
    display:grid;
    gap:14px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid var(--line);
    padding:15px 16px;
    font:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid rgba(212,166,70,.3);
    border-color:var(--gold);
}

/* FOOTER */

.site-footer{
    background:#071a33;
    color:#dce8f6;
    padding-top:56px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr .8fr;
    gap:36px;
    padding-bottom:38px;
}

.footer-logo{
    font-family:Georgia,serif;
    color:var(--gold2);
    font-size:26px;
    text-transform:uppercase;
    line-height:1;
}

.site-footer h3{
    color:#fff;
    text-transform:uppercase;
    font-size:14px;
}

.site-footer a:hover{
    color:var(--gold2);
}

.socials{
    display:flex;
    gap:10px;
}

.socials a{
    width:34px;
    height:34px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    display:grid;
    place-items:center;
}

.footer-watermark{
    font-family:Georgia,serif;
    font-size:58px;
    color:rgba(212,166,70,.25);
    align-self:center;
    text-align:center;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:20px 0;
    font-size:13px;
    color:#b8c7d9;
}

/* FINAL HERO SAFETY FIX */

.hero *,
.hero h1,
.hero p,
.hero .eyebrow{
    color:#ffffff;
}

.hero h1{
    color:#ffffff !important;
}

.hero h1 span{
    color:var(--gold2) !important;
}

/* RESPONSIVE */

@media(max-width:1050px){
    .header-inner{
        height:78px;
    }

    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        left:0;
        right:0;
        top:78px;
        background:#071a33;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        padding:18px 4%;
        gap:4px;
        border-top:1px solid rgba(255,255,255,.1);
    }

    .main-nav.open{
        display:flex;
    }

    .main-nav a{
        width:100%;
        padding:13px 0;
    }

    .hero-grid,
    .two-col,
    .band-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .flag-ribbon{
        width:70px;
    }

.portrait-card{
        justify-self:center;
        max-width:420px;
        margin-top:30px;
    }

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

@media(max-width:700px){
    .brand-mark{
        width:50px;
        height:50px;
    }

    .brand-text strong{
        font-size:17px;
    }

    .brand-text small{
        font-size:10px;
    }

    .hero-grid{
        min-height:auto;
        padding:54px 0;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p,
    .page-hero p{
        font-size:17px;
    }

    .section{
        padding:48px 0;
    }

    .vision-grid,
    .cards-grid,
    .feature-list,
    .media-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .section-head{
        display:block;
    }

    .footer-bottom{
        display:block;
    }

    .btn{
        width:100%;
    }

    .hero-actions{
        width:100%;
    }
        .portrait-card{
        max-width:550px;
        margin:auto;
    }
}

.site-lock-blur{
    position:fixed;
    inset:0;
    backdrop-filter:blur(18px);
    background:rgba(7,26,51,.65);
    z-index:999998;
}

.site-lock{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.site-lock-box{
    width:min(420px,92%);
    padding:38px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    box-shadow:0 40px 80px rgba(0,0,0,.35);
}

.site-lock-box h2{
    margin:0 0 10px;
    color:#071a33;
}

.site-lock-box p{
    margin:0;
    color:#64748b;
}

.site-lock-box input{
    width:100%;
    height:50px;
    padding:0 15px;
    margin:25px 0 15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.site-lock-box button{
    width:100%;
    height:50px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    background:#d4a646;
    color:#071a33;
}

.site-lock-error{
    color:#d30000;
    margin-top:15px;
}


.clean-intro{
    grid-template-columns:1fr 1.35fr .82fr;
}

.clean-vision .vision-item{
    grid-template-columns:1fr;
    padding:16px 18px;
    background:#fff;
    border-left:3px solid var(--gold);
    box-shadow:0 10px 24px rgba(7,26,51,.06);
}

.clean-vision .vision-item strong{
    margin-bottom:5px;
}

.clean-vision .vision-item span{
    display:none;
}

.photo-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}

@media(max-width:1050px){
    .clean-intro{
        grid-template-columns:1fr 1fr;
    }

    .clean-intro .photo-box{
        grid-column:2;
        grid-row:1 / span 2;
    }
}

@media(max-width:700px){
    .clean-intro{
        grid-template-columns:1fr;
    }

    .clean-intro .photo-box{
        grid-column:auto;
        grid-row:3;
    }
}