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



/* ==================================================
   02 VARIABLES
================================================== */

:root{
    --navy-dark:#071b3d;
    --navy-medium:#12315a;
    --navy-text:#142842;

    --gold:#F3D67A;
    --gold-dark:#a9812f;
    --gold-light:#e6cb83;

    --cream:#f4eee3;
    --cream-light:#fbf8f2;
    --pearl:#fffdf9;
    --sand:#e8dece;

    --medical-blue:#e8f1f4;
    --medical-blue-strong:#d6e7eb;

    --text:#26394e;
    --text-soft:#5b6875;

    --white:#ffffff;

    --light-border:rgba(179,142,63,.28);
    --light-shadow:0 18px 45px rgba(31,47,65,.11);
}



/* ==================================================
   03 BASE
================================================== */

html{
    width:100%;
    min-height:100%;
    scroll-behavior:smooth;
}

body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    background:var(--navy-dark);
}

button,
a{
    -webkit-tap-highlight-color:transparent;
}

a{
    color:inherit;
}

.lang-control:focus-visible,
.main-navigation a:focus-visible,
.portal-card:focus-visible,
.editorial-card:focus-visible,
.footer-nav a:focus-visible,
.scroll-down:focus-visible{
    outline:2px solid var(--gold-light);
    outline-offset:5px;
}
/* ==================================================
   04 HERO / HEADER
================================================== */

.hero{
    position:relative;
    min-height:auto;
    overflow:hidden;

    color:var(--navy-text);
    background:#f4eddf;
}
.hero::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:165px;

    background:#051734;

    z-index:0;

}
.hero > *{
    position:relative;
    z-index:2;
}
.topbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:32px;
    padding:10px 42px 0px 92px;
}

.logo-link{
    display:block;
    line-height:0;
    text-decoration:none;
}

.logo{
    width:440px;
    height:auto;
    display:block;
    margin-top:4px;
}

/* ==================================================
   05 MAIN NAVIGATION
================================================== */

.main-navigation{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:52px;
    margin-top:42px;
}

.main-navigation a{
    position:relative;
    display:inline-block;
    padding:8px 0;

    color:#F3D67A;

    font-family:Georgia,"Times New Roman",serif;
    font-size:27px;
    font-weight:600;
    line-height:1.1;
    letter-spacing:0;

    text-decoration:none;

    transition:
        color .22s ease,
        opacity .22s ease;
}

.main-navigation a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    border-radius:999px;
    background:var(--gold)
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .22s ease;
}

.main-navigation a:hover{
    color:#ffffff;
}

.main-navigation a:hover::after{
    transform:scaleX(1);
}

/* ==================================================
   06 LANGUAGE SWITCH
================================================== */

.lang-buttons{
    display:flex;
    align-items:center;
    gap:0;
    margin-top:24px;
}

.lang-control{
    display:block;
    border:0;
    padding:0;
    background:transparent;
    cursor:pointer;
    opacity:.55;
    transform:scale(.94);
    transition:
        opacity .2s ease,
        transform .2s ease,
        filter .2s ease;
}

.lang-control + .lang-control{
    margin-left:-18px;
}

.lang-control:hover,
.lang-control:focus-visible,
.lang-control.is-active{
    opacity:1;
    transform:scale(1);
    filter:drop-shadow(0 7px 17px rgba(212,175,55,.34));
}

.lang-btn{
    width:128px;
    height:auto;
    display:block;
}

/* ==================================================
   07 HERO CONTENT
================================================== */

.hero-container{
    width:100%;
    max-width:1380px;
    margin:0 auto;
    padding:0 60px 42px;
    display:block;
}

.hero-text{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0;
    text-align:center;
    transform:none;
}
.hero-label{
    display:block;
    margin-top:48px;
    margin-bottom:14px;
    color:#c28a18;
    font-size:18px;
    font-weight:600;
    line-height:1.35;
    letter-spacing:.28em;
    text-transform:uppercase;
}
.hero-text h1{
    max-width:1180px;
    margin:0 auto 22px;
    color:var(--navy-text);
    font-size:clamp(54px,4.5vw,72px);
    line-height:1.04;
    font-weight:600;
    letter-spacing:-.035em;
    text-align:center;
    text-shadow:none;
}
.hero-text p{
    max-width:1120px;
    margin:0 auto 16px;
    color:#344154;
    font-size:21px;
    line-height:1.48;
    font-weight:500;
    text-align:center;
}

.hero-divider{
    width:96px;
    height:2px;
    margin:22px auto 14px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        rgba(230,203,131,0) 0%,
        var(--gold) 50%,
        rgba(230,203,131,0) 100%
    );
}
.hero-quote{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    text-align:center;
}

.hero-quote strong{

    display:block;

    font-family:var(--font-heading);

    font-size:40px;
font-weight:700;
line-height:1.15;

    letter-spacing:-0.03em;

    color:var(--navy-text);

    margin-bottom:14px;

}

.hero-quote span{

    display:block;

    font-family:var(--font-serif);

    font-size:34px;

    line-height:1.18;

    font-weight:500;

   color:var(--gold-dark);

}
/* ==================================================
   10 MAIN CONTENT
================================================== */

.main-content{
    position:relative;
    z-index:2;
    color:var(--text);
    background:#f4eddf;
    box-shadow:none;
}
/* ==================================================
   11 COMMON SECTION TITLES
================================================== */

.portal-sections,
.editorial-section,
.principles-section{
    width:100%;
    padding:86px 24px 104px;
    background:
        linear-gradient(
            180deg,
            #efe6d8 0%,
            #faf7f1 100%
        );
}
.portal-sections{
    padding:28px 24px 36px;
    background:#f4eddf;
}
.editorial-section{
    padding-top:92px;
}

.principles-section{
    padding-top:42px;
    padding-bottom:24px;
}

.section-title{
    max-width:1060px;
    margin:0 auto 48px;
    text-align:center;
}

.section-label{
    display:block;
    margin:0 auto 24px;
    color:#c28a18;
    font-size:15px;
    font-weight:800;
    line-height:1.35;
    letter-spacing:.36em;
    text-transform:uppercase;
    text-align:center;
}

.section-title h2{
    max-width:1060px;
    margin:0 auto;
    color:var(--navy-text);
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(42px,4.2vw,66px);
    font-weight:700;
    line-height:1.08;
    letter-spacing:-.02em;
}

.section-title p{
    max-width:980px;
    margin:24px auto 0;
    color:var(--text);
    font-size:21px;
    line-height:1.62;
}

/* ==================================================
   12 PORTAL SECTIONS CARDS
================================================== */

.portal-grid{
    width:min(1230px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:stretch;
    gap:18px;
}

.portal-card{
    position:relative;
    min-height:650px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:42px 34px 32px;
    border:1px solid rgba(199,161,75,.45);
    border-radius:26px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(199,161,75,.16),
            rgba(199,161,75,0) 38%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf6e9 100%
        );
    box-shadow:0 18px 40px rgba(36,54,73,.10);
    color:var(--text);
    text-decoration:none;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.portal-card:nth-child(2){
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(199,161,75,.13),
            rgba(199,161,75,0) 40%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            var(--medical-blue) 100%
        );
}

.portal-card:hover{
    transform:translateY(-6px);
    border-color:rgba(199,161,75,.70);
    box-shadow:0 28px 54px rgba(36,54,73,.16);
}

.card-number{
    position:absolute;
    top:20px;
    right:28px;
    color:rgba(169,129,47,.20);
    font-family:Georgia, "Times New Roman", serif;
    font-size:92px;
    font-weight:800;
    line-height:1;
}

.portal-card-category{
    position:relative;
    z-index:2;
    display:inline-block;
    margin-bottom:18px;
    padding:7px 15px;
    border:1px solid rgba(199,161,75,.40);
    border-radius:999px;
    color:#b88928;
    background:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.14em;
}

.portal-card h3{
    position:relative;
    z-index:2;
    width:100%;
    max-width:none;
    min-height:94px;
    margin:0;
    color:var(--navy-text);
    font-family:Georgia, "Times New Roman", serif;
    font-size:34px;
    font-weight:700;
    line-height:1.12;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:auto;
}

.card-points{
    position:relative;
    z-index:2;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    margin:24px 0 0;
    padding:0;
    list-style:none;
}

.card-points li{
    position:relative;
    width:100%;
    min-height:46px;
    display:flex;
    align-items:center;
    padding:10px 4px 10px 32px;
    border-bottom:1px solid rgba(199,161,75,.20);
    color:var(--navy-text);
    font-size:16px;
    font-weight:700;
    line-height:1.35;
    text-align:left;
}

.card-points li:first-child{
    border-top:1px solid rgba(199,161,75,.20);
}

.card-points li::before{
    content:"✓";
    position:absolute;
    left:2px;
    top:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:20px;
    height:20px;
    border:1px solid #d4af37;
    border-radius:50%;
    background:#ffffff;
    color:#b88212;
    font-size:12px;
    font-weight:800;
    line-height:1;
    transform:translateY(-50%);
    box-shadow:0 3px 8px rgba(199,161,75,.16);
}

.portal-card .portal-card-description{
    position:relative;
    z-index:2;
    margin:24px 0 0;
    color:var(--text);
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:1.55;
    letter-spacing:0;
}

.portal-card .portal-card-description::after{
    display:none;
}

.portal-card-link{
    position:relative;
    z-index:2;
    width:100%;
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:auto;
    padding:14px 18px;
    border:1px solid rgba(199,161,75,.60);
    border-radius:999px;
    color:var(--navy-text);
    background:rgba(255,255,255,.80);
    font-family:Georgia, "Times New Roman", serif;
    font-size:17px;
    font-weight:700;
    line-height:1.25;
    text-align:center;
    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.portal-card:hover .portal-card-link{
    border-color:#d4af37;
    color:#ffffff;
    background:var(--navy-text);
}

.portal-note{
    max-width:980px;
    margin:42px auto 0;
    padding:26px 34px;
    border-top:1px solid rgba(199,161,75,.34);
    border-bottom:1px solid rgba(199,161,75,.25);
    text-align:center;
}

.portal-note p{
    margin:0;
    color:var(--text);
    font-size:18px;
    line-height:1.62;
}
/* ==================================================
   13 EDITORIAL SECTION
================================================== */

.editorial-grid{
    width:min(1230px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.editorial-card{
    min-height:420px;
    display:flex;
    flex-direction:column;
    padding:38px 34px 36px;
    border:1px solid rgba(199,161,75,.36);
    border-radius:26px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf6e9 100%
        );
    box-shadow:0 16px 36px rgba(36,54,73,.09);
    color:var(--text);
    text-decoration:none;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.editorial-card:nth-child(2){
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            var(--medical-blue) 100%
        );
}

.editorial-card:hover{
    transform:translateY(-5px);
    border-color:rgba(199,161,75,.62);
    box-shadow:0 24px 48px rgba(36,54,73,.14);
}

.editorial-tag{
    display:inline-block;
    width:max-content;
    margin-bottom:26px;
    padding:8px 18px;
    border:1px solid rgba(199,161,75,.44);
    border-radius:999px;
    color:#b88928;
    background:rgba(255,255,255,.70);
    font-size:14px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.editorial-card h3{
    color:var(--navy-text);
    font-family:Georgia, "Times New Roman", serif;
    font-size:32px;
    font-weight:700;
    line-height:1.12;
}

.editorial-card p{
    margin-top:22px;
    color:var(--text);
    font-size:18px;
    line-height:1.68;
}

/* ==================================================
   14 PRINCIPLES
================================================== */

.principles-grid{
    width:min(1230px,100%);
    margin:42px auto 0;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.principle-card{
    position:relative;
    min-height:340px;
    overflow:hidden;
    padding:48px 38px 36px;
    border:1px solid rgba(199,161,75,.36);
    border-top:4px solid #c28a18;
    border-radius:0 0 26px 26px;
    background:
        linear-gradient(
            150deg,
            #ffffff 0%,
            #f5ecdf 100%
        );
    box-shadow:0 16px 36px rgba(38,56,75,.10);
}

.principle-number{
    position:absolute;
    top:26px;
    right:28px;
    color:rgba(169,129,47,.16);
    font-family:Georgia, "Times New Roman", serif;
    font-size:84px;
    font-weight:800;
    line-height:1;
}

.principle-card h3{
    position:relative;
    z-index:1;
    margin-top:60px;
    color:var(--navy-text);
    font-family:Georgia, "Times New Roman", serif;
    font-size:34px;
    font-weight:700;
    line-height:1.18;
}

.principle-card p{
    position:relative;
    z-index:1;
    margin-top:20px;
    color:var(--text);
    font-size:18px;
    line-height:1.68;
}

.principles-note{
    max-width:1040px;
    margin:24px auto 0;
    padding:0 36px;
    text-align:center;
}
.principles-note p{
    margin:0;
    color:var(--text);
    font-size:20px;
    line-height:1.65;
}

/* ==================================================
   14 FOOTER
================================================== */

.site-footer{

    width:100%;

    padding:46px 20px 24px;

    background:#071D3A;

}

.site-footer .content-container{

    max-width:1180px;

    margin:0 auto;

}

.footer-links{

    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;

    gap:110px;

}

.footer-link{

    width:160px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;
    text-decoration:none;

    transition:
        transform .25s ease,
        opacity .25s ease;

}

.footer-link:hover{

    transform:translateY(-4px);

    opacity:.9;

}

.footer-link img{

    width:56px;
    height:56px;

    display:block;

    margin-bottom:10px;

    object-fit:contain;

}

.footer-link span{

    color:#D4AF37;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:26px;
    font-weight:400;

    line-height:1.15;

}

.footer-link::after{

    content:"";

    width:82px;
    height:3px;

    margin-top:14px;

    border-radius:999px;

    background:#D4AF37;

}

.footer-copy{

    margin-top:26px;

    text-align:center;

    color:rgba(255,255,255,.60);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}

.footer-copy p{

    margin:0;

}

.footer-copy p:first-child{

    font-size:14px;
    font-weight:500;

}

.footer-copy p:last-child{

    display:none;

}

/* ==================================================
   16 RESPONSIVE / TABLET
================================================== */

@media (max-width:1050px){

    .topbar{
        align-items:flex-start;
        padding-left:44px;
        gap:24px;
    }

    .logo{
        width:420px;
    }

    .main-navigation{
        gap:30px;
        margin-top:58px;
    }

    .main-navigation a{
        font-size:22px;
    }

    .hero-container{
        padding-left:70px;
    }

    .hero-text{
        width:620px;
        max-width:620px;
    }

    .hero-image{
        right:-20px;
        top:150px;
        width:560px;
    }

 .editorial-grid,
.principles-grid{
    grid-template-columns:1fr;
    max-width:760px;
}

    .portal-card,
    .editorial-card,
    .principle-card{
        min-height:auto;
    }

}

/* ==================================================
   17 RESPONSIVE / MOBILE
================================================== */

@media (max-width:768px){

    html,
    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .hero{
        width:100%;
        min-height:auto;
        overflow:hidden;
        background-position:center top;
    }

    .topbar{
        width:100%;
        padding:20px 16px 12px;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:14px;
    }

    .logo{
        width:240px;
        max-width:88vw;
        margin:0 auto;
        display:block;
    }

   .lang-buttons{
    margin:0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
}

    .lang-btn{
        width:90px;
    }

   .lang-control{
    margin:0;
}
    .main-navigation{
        width:100%;
        margin:6px 0 0;
        display:flex;
        justify-content:center;
        gap:24px;
        order:3;
    }

.main-navigation a{
    color:#c28a18;
    font-size:19px;
    letter-spacing:.02em;
}
.main-navigation a:hover{
    color:#c28a18;
}
   .hero-container{
    width:100%;
    max-width:100%;
    padding:18px 18px 8px;
    margin:0 auto;
    display:block;
    box-sizing:border-box;
}
.hero-text{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto;
    padding:0;
    text-align:center;
    transform:none !important;
}

.hero-label{
    margin-top:0 !important;
    margin-bottom:14px;
}
    .hero-text h1{
        max-width:100%;
        margin:18px auto 24px;
        font-size:40px;
        line-height:1.0;
        text-align:center;
    }

    .hero-text p{
        max-width:100%;
        margin:0 auto 22px;
        font-size:18px;
        line-height:1.65;
        text-align:center;
    }

    .hero-divider{
        margin:28px auto 22px;
    }

    .hero-quote span{
        font-size:22px;
        line-height:1.35;
    }

   .hero-image{
    position:relative;
    right:auto;
    top:auto;
    width:100%;
    max-width:320px;
    margin:20px auto 35px;
    display:flex;
    justify-content:center;
}

    .hero-image img{
        width:100%;
        max-width:320px;
        height:auto;
        display:block;
         transform:none;
    }

   .portal-sections,
   .editorial-section,
   .principles-section{
    width:100%;
    padding:54px 20px;
    box-sizing:border-box;
}
    .section-title{
    margin-bottom:30px;
    text-align:center;
}
    .section-label{
        margin-bottom:18px;
        font-size:12px;
        letter-spacing:.14em;
    }

    .section-title h2{
        font-size:clamp(34px,9vw,44px);
        line-height:1.08;
    }

    .section-title p{
        font-size:17px;
        line-height:1.65;
    }

    .portal-grid,
    .editorial-grid,
    .principles-grid{
        grid-template-columns:1fr;
        gap:22px;
        width:100%;
        max-width:100%;
    }

    .portal-card,
    .editorial-card,
    .principle-card{
        width:100%;
        max-width:100%;
        min-height:auto;
        box-sizing:border-box;
    }

.portal-card{
    min-height:auto;
    padding:34px 24px 26px;
}

.portal-card-category{
    margin-bottom:16px;
    padding:7px 14px;
    font-size:12px;
}

.portal-card h3{
    max-width:260px;
    min-height:auto;
    padding-right:18px;
    font-size:33px;
    line-height:1.12;
}

.card-number{
    top:18px;
    right:20px;
    font-size:72px;
}

.card-points{
    gap:0;
    margin-top:22px;
}

.card-points li{
    min-height:44px;
    padding:9px 2px 9px 30px;
    font-size:15px;
    line-height:1.35;
}

.card-points li::before{
    width:19px;
    height:19px;
    font-size:11px;
}

.portal-card .portal-card-description{
    margin-top:22px;
    font-size:15px;
    line-height:1.55;
}

.portal-card-link{
    min-height:50px;
    margin-top:26px;
    padding:13px 16px;
    font-size:16px;
}

.portal-note,
.principles-note{
    padding:24px 18px;
}

.portal-note p,
.principles-note p{
    font-size:16px;
    line-height:1.6;
}

    .editorial-card{
        padding:34px 26px;
    }

    .editorial-card h3{
        font-size:28px;
    }

    .editorial-card p{
        font-size:17px;
    }

    .principle-card{
        padding:34px 26px;
    }

    .principle-card h3{
        margin-top:54px;
        font-size:28px;
    }

    .principle-card p{
        font-size:17px;
    }

    .site-footer{
        width:100%;
        padding:52px 20px 34px;
        box-sizing:border-box;
    }

   .footer-links{
    flex-direction:row;
    justify-content:center;
    align-items:flex-start;
    gap:22px;
}
.footer-link{
    width:92px;
}

.footer-link img{
    width:38px;
    height:38px;
}

.footer-link span{
    font-size:18px;
}

.footer-link::after{
    width:52px;
    height:2px;
    margin-top:10px;
}
 
    .footer-copy{
        margin-top:32px;
    }
   .hero,
.hero *{
    box-sizing:border-box;
}

.hero-container{
    padding-left:20px !important;
    padding-right:20px !important;
    overflow:hidden;
}

.hero-text{
    width:100% !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    transform:none !important;
}

.hero-text h1,
.hero-text p{
    width:100% !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    transform:none !important;
}
        .hero-container{
        padding-bottom:26px;
    }

    .hero-label{
        margin-top:36px;
        margin-bottom:14px;
    }

    .hero-text h1{
        margin-bottom:20px;
        font-size:40px;
        line-height:1.04;
    }

    .hero-text p{
        margin-bottom:16px;
        font-size:19px;
        line-height:1.55;
    }

    .hero-divider{
        margin-top:20px;
        margin-bottom:14px;
    }

    .hero-quote strong{

  font-size:30px;

    line-height:1.08;

}

.hero-quote span{

    font-size:24px;

    line-height:1.2;

}

     .portal-sections{
        padding-top:24px;
    }
}

