/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');



/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Outfit',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fa;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}


.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 18px;
    box-sizing:border-box;
}


/* HEADER */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    background:#071b4b;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,.12);
}

.navbar{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:45px;
}

.logo h2{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

.brand-menu-mark {
    display: none;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#fff;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#e8a400;
}

@media (min-width:992px){

nav ul li a{
    white-space:nowrap;
}

}

/* MOBILE MENU */

#menu{
    display:none;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    position:relative;
    z-index:1002;
    line-height:1;
    user-select:none;
}

.menu-overlay{
    display:none;
}

.drawer-header{
    display:none;
}

/* COMMON BUTTON */

.btn{
    display:inline-block;
    padding:14px 35px;
    background:#e8a400;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#c98d00;
    transform:translateY(-3px);
}

/* PAGE BANNER */

.page-banner{
    margin-top:80px;
    background:#071b4b;
    color:#fff;
    padding:90px 0;
    text-align:center;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:15px;
}

.page-banner p{
    max-width:750px;
    margin:auto;
    color:#ddd;
}

/* HERO */

.hero{
    margin-top:80px;
    /* min-height:90vh; */
    background:#071b4b;
    display:flex;
    align-items:center;
}

.hero .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:56px;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    color:#d9d9d9;
    margin-bottom:35px;
    max-width:560px;
}

.hero-image{
    flex:1;
}

.hero-image img{
    max-width:520px;
    margin:auto;
}

/* SECTION */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:38px;
    color:#071b4b;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}


/* ABOUT SECTION */

.about{
    background:#fff;
}

.about-content{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:15px;
}

.about-text h2{
    font-size:38px;
    color:#071b4b;
    margin-bottom:20px;
}

.about-text p{
    color:#555;
    margin-bottom:18px;
}

.about-list{
    margin-top:25px;
}

.about-list li{
    margin-bottom:15px;
    color:#333;
    font-weight:500;
}

/* FEATURE CARDS */

.features{
    background:#f5f7fa;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card img{
    width:70px;
    margin:0 auto 20px;
}

.feature-card h3{
    color:#071b4b;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
}

/* ARTICLE PREVIEWS */

.latest-stories{
    background:#fff;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
}

.article-card{
    background:#f5f7fa;
    padding:28px 26px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-left:4px solid #e8a400;
    transition:.35s;
    text-align:left;
}

.article-card:hover{
    transform:translateY(-6px);
}

.article-category{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    color:#e8a400;
    text-transform:uppercase;
    letter-spacing:.04em;
    margin-bottom:12px;
}

.article-card h3{
    color:#071b4b;
    font-size:20px;
    line-height:1.35;
    margin-bottom:12px;
}

.article-card p{
    color:#666;
    font-size:15px;
    margin:0;
}

.stories-cta{
    text-align:center;
    margin-top:40px;
}

/* SERVICES */

.services{
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#071b4b;
    color:#fff;
    padding:35px;
    border-radius:15px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:75px;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#ddd;
}

/* CTA SECTION */

.cta{
    background:#071b4b;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    color:#ddd;
    margin-bottom:35px;
}

/* CONTACT */

.contact-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}

.contact-info h3,
.contact-form h3{
    color:#071b4b;
    margin-bottom:25px;
}

.contact-info p{
    margin-bottom:20px;
    color:#555;
}

.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.contact-form textarea{
    height:160px;
    resize:none;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/* FOOTER */

footer{
    background:linear-gradient(180deg,#071b4b 0%,#020d29 100%);
    padding:90px 0 30px;
    color:#fff;
    border-top:1px solid #0d2f7c;
    box-shadow:0 -12px 30px rgba(0,0,0,.18);
}

.footer-content{
    display:grid;
    grid-template-columns:2.2fr 1fr 1fr;
    gap:40px;
    align-items:start;
}

.footer-box{
    padding:32px 28px;
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.footer-box h2,
.footer-box h3{
    color:#fff;
}

.footer-box h2{
    font-size:32px;
    margin-bottom:16px;
    letter-spacing:.2px;
}

.footer-box h3{
    font-size:22px;
    margin-bottom:18px;
}

.footer-box p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:14px;
}

.footer-box ul li{
    margin-bottom:14px;
    display:flex;
    align-items:center;
    color:rgba(255,255,255,.82);
}

.footer-box ul li::before{
    content:'•';
    color:#f3c84b;
    margin-right:10px;
    font-size:18px;
    line-height:1;
}

.footer-box ul li a{
    color:inherit;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#f3c84b;
    transform:translateX(4px);
}

.footer-bottom{
    margin-top:45px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.14);
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.65);
    font-size:15px;
}

@media(max-width:900px){
    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .footer-box{
        padding:26px 22px;
    }
}

@media(max-width:576px){
    footer{
        padding:70px 0 22px;
    }
}

.footer-box h2{

    font-size:26px;

}

.footer-box h3{

    font-size:20px;

}



/* RESPONSIVE */

@media(max-width:1100px){

.hero .container,
.about-content,
.contact-wrapper{
    grid-template-columns:1fr;
    display:grid;
    text-align:center;
}

.hero{
    padding:70px 0;
}

.hero-content h1{
    font-size:46px;
}

.hero-content p{
    margin:auto auto 30px;
}

.hero-image img{
    max-width:420px;
}

.about-image{
    order:1;
}

.about-text{
    order:2;
}

}

/* Tablet */

@media(max-width:991px){

.navbar{
    height:75px;
}

.logo h2{
    font-size:22px;
}

.menu-btn{
    display:block;
}

body:has(#menu:checked){
    overflow:hidden;
}

.menu-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(7,27,75,.55);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .35s ease, visibility .35s ease;
    z-index:1000;
}

#menu:checked~.menu-overlay{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

nav{
    position:fixed;
    top:0;
    right:0;
    left:auto;
    width:min(320px,88vw);
    height:100vh;
    height:100dvh;
    background:#fff;
    border-radius:22px 0 0 22px;
    box-shadow:-8px 0 40px rgba(7,27,75,.18);
    display:flex;
    flex-direction:column;
    transform:translateX(100%);
    transition:transform .38s cubic-bezier(.4,0,.2,1);
    z-index:1001;
    overflow:hidden;
}

#menu:checked~nav{
    transform:translateX(0);
}

.drawer-header{
    display:flex;
    align-items:center;
    gap:10px;
    padding:20px 18px 16px;
    border-bottom:1px solid #eef2f7;
    flex-shrink:0;
}

.drawer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.drawer-logo img{
    width:38px;
    height:38px;
    object-fit:contain;
    flex-shrink:0;
}

.drawer-logo span{
    color:#071b4b;
    font-size:17px;
    font-weight:700;
    white-space:nowrap;
}

.drawer-title{
    display:none;
}

.drawer-close{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin-left:auto;
    border-radius:12px;
    background:#f1f5f9;
    color:#334155;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    transition:background .25s ease, color .25s ease, transform .25s ease;
    flex-shrink:0;
}

.drawer-close:hover{
    background:#e2e8f0;
    color:#071b4b;
    transform:scale(1.04);
}

#menu:checked~.menu-btn{
    display:none;
}

nav ul{
    flex-direction:column;
    gap:8px;
    padding:16px 14px 12px;
    flex:1;
    overflow-y:auto;
}

nav ul li{
    border-top:none;
}

nav ul li a{
    display:block;
    padding:14px 16px;
    border-radius:12px;
    color:#334155;
    font-size:15px;
    font-weight:500;
    transition:background .25s ease, color .25s ease, transform .25s ease;
}

nav ul li a:hover{
    background:#f8fafc;
    color:#1d4ed8;
    transform:translateX(2px);
}

nav ul li a.active{
    background:#eff6ff;
    color:#2563eb;
    font-weight:600;
}

nav ul li:last-child{
    margin-top:auto;
    padding:8px 14px 20px;
}

nav ul li:last-child a{
    text-align:center;
    background:#071b4b;
    color:#fff;
    font-weight:600;
    padding:15px 20px;
    border-radius:14px;
    box-shadow:0 8px 22px rgba(7,27,75,.22);
}

nav ul li:last-child a:hover{
    background:#0a2568;
    color:#fff;
    transform:translateY(-1px);
}

nav ul li:last-child a.active{
    background:#071b4b;
    color:#fff;
}

.hero{
    margin-top:75px;
}

.hero-content h1{
    font-size:40px;
}

.page-banner{
    margin-top:75px;
    padding:70px 0;
}

.page-banner h1{
    font-size:38px;
}

.section-title h2{
    font-size:34px;
}

.about-text h2{
    font-size:34px;
}

.cta h2{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:768px){

.container{
    width:92%;
}

.container{
    padding:0 20px;
}

.hero-text{
    padding:0 5px;
}

.hero{
    min-height:auto;
    padding:60px 0;
}

.hero .container{
    gap:40px;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:15px;
}

.hero-image img{
    max-width:320px;
}

.page-banner{
    padding:60px 0;
}

.page-banner h1{
    font-size:30px;
}

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    font-size:30px;
}

.about-text h2{
    font-size:30px;
}

.cta h2{
    font-size:30px;
}

.feature-card,
.service-card{
    padding:28px 22px;
}

.btn{
    padding:13px 28px;
}

footer{
    text-align:center;
}

.btn{
    width:100%;
    max-width:320px;
}

}

/* Small Mobile */

@media(max-width:480px){

.logo img{
    width:38px;
}

.logo h2{
    font-size:18px;
}

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:14px;
}

.hero-image img{
    max-width:260px;
}

.page-banner h1{
    font-size:26px;
}

.section-title h2{
    font-size:26px;
}

.about-text h2{
    font-size:26px;
}

.cta h2{
    font-size:26px;
}

.btn{
    width:100%;
    text-align:center;
}

.contact-form input,
.contact-form textarea{
    font-size:14px;
}

}

/* Extra Small */

@media(max-width:360px){

.hero-content h1{
    font-size:24px;
}

.page-banner h1{
    font-size:22px;
}

.section-title h2{
    font-size:22px;
}

.about-text h2{
    font-size:22px;
}

.cta h2{
    font-size:22px;
}

}


.logo img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #fff;
}
.contact-info img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}


.hero{
    background:#061b58;
    color:#fff;
    padding:70px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:700;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    color:#d8d8d8;
    max-width:560px;
    margin-bottom:35px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.btn{
    display:inline-block;
    background:#f4b400;
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#d99800;
}

@media(max-width:991px){

.hero-content{
    flex-direction:column-reverse;
    text-align:center;
}

.hero-text h1{
    font-size:42px;
}

.hero-text p{
    margin:auto auto 30px;
}

.hero-image img{
    max-width:520px;
}

}

@media(max-width:576px){

.hero{
    padding:50px 0;
}

.hero-text h1{
    font-size:34px;
}

.hero-text p{
    font-size:16px;
}

}

.hero-image img{
    width:100%;
    display:block;
    border-radius:15px;
}

.hero{
    background:#061b58;
    color:#fff;
    padding:70px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}


@media (max-width:1024px){

.hero{
    padding:50px 0;
}

.hero-content{
    gap:35px;
}

}

@media (max-width:768px){

.hero{
    padding:40px 0;
}

.hero-content{
    flex-direction:column-reverse;
    gap:25px;
}

.hero-text{
    text-align:center;
}

.hero-text p{
    margin:15px auto 25px;
}

}


/* POPUP */

.popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup.active{
    display:flex;
}

.popup-box{
    background:#fff;
    width:90%;
    max-width:420px;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    animation:popup .3s ease;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.popup-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    font-size:36px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.popup-box h2{
    color:#071b4b;
    margin-bottom:15px;
}

.popup-box p{
    color:#666;
    margin-bottom:30px;
    line-height:1.8;
}

.popup-btn{
    width:100%;
    padding:14px;
    background:#e8a400;
    color:#fff;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.popup-btn:hover{
    background:#c98d00;
}

@keyframes popup{

from{
    opacity:0;
    transform:scale(.8);
}

to{
    opacity:1;
    transform:scale(1);
}

}

.feature-image img{
    display:block;
    border-radius:10px;
}

html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* 2026 responsive brand polish */
:root {
    --brand-ink: #07111f;
    --brand-blue: #0057ff;
    --brand-soft: #f3f7ff;
}

body {
    background: #fff;
    color: var(--brand-ink);
}

header {
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.hero {
    min-height: auto;
    background: radial-gradient(circle at 85% 18%, rgba(0, 87, 255, 0.18), transparent 28rem), linear-gradient(135deg, #ffffff 0%, #f6f9ff 48%, #eaf1ff 100%);
}

.hero-content,
.hero .container {
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.hero-text h1,
.hero-content h1 {
    max-width: 760px;
    font-weight: 900;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.hero-image img {
    width: min(100%, 560px);
    aspect-ratio: 4 / 3;
    object-fit: contain;
    filter: drop-shadow(0 24px 45px rgba(0, 87, 255, 0.15));
}

.feature-card,
.article-card,
.story-card {
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
}

footer {
    background: #07111f;
}

.footer-bottom p::after {
    content: " Content is published for educational and informational purposes and is not a substitute for professional medical advice.";
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
        text-align: left;
    }

    .hero-content,
    .hero .container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-text,
    .hero-content {
        text-align: left;
    }

    .hero-text h1,
    .hero-content h1 {
        max-width: 18rem;
        font-size: clamp(2rem, 10.5vw, 3rem);
        line-height: 1;
        letter-spacing: -0.035em;
        text-transform: none;
        overflow-wrap: break-word;
    }

    .hero-image {
        max-width: 18rem;
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        max-height: 330px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Inner page banners: varied existing images + readable text */
.page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #07111f !important;
    background-position: center;
    background-size: cover;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,17,31,0.84), rgba(7,17,31,0.55), rgba(7,17,31,0.18));
}

.page-banner > * {
    position: relative;
    z-index: 1;
}

.page-banner h1,
.page-banner p {
    color: #fff !important;
    text-shadow: 0 3px 18px rgba(0,0,0,0.45);
}

body.page-about .page-banner { background-image: url("images/about.jpg") !important; }
body.page-latest-stories .page-banner { background-image: url("images/community.jpg") !important; }
body.page-public-health .page-banner { background-image: url("images/community.jpg") !important; }
body.page-wellness-headlines .page-banner { background-image: url("images/wellness.jpg") !important; }
body.page-healthcare-trends .page-banner { background-image: url("images/assisted-living.jpg") !important; }
body.page-contact .page-banner { background-image: url("images/contact.jpg") !important; }

/* Full-width image hero override */
.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 44%, rgba(255,255,255,0.18) 100%), url("images/hero.png") center right / contain no-repeat, linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.hero .container {
    width: min(1180px, calc(100% - 32px));
    max-width: none;
    margin-inline: auto;
}

.hero-image {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)), url("images/hero.png") center bottom / 92% auto no-repeat, #eef5ff;
        padding-bottom: 16rem;
    }
}

/* Site visibility cleanup */
.hero {
    min-height: auto;
    padding: 96px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
    color: #07111f;
}

.hero .container,
.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(32px, 5vw, 70px);
}

.hero-text {
    text-align: left;
}

.hero-text h1,
.hero-content h1 {
    color: #071b4b;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
    max-width: 680px;
    margin-bottom: 22px;
}

.hero-text p,
.hero-content p {
    color: #334155;
    font-size: 18px;
    line-height: 1.75;
    max-width: 610px;
    margin: 0 0 34px;
}

.hero-image {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(7, 27, 75, 0.16);
    filter: none;
}

footer {
    background: #071b4b;
    padding: 52px 0 22px;
    border-top: 0;
    box-shadow: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}

.footer-box {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.footer-box h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.footer-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-box p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-box ul li {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-box ul li::before {
    content: none;
}

.footer-box ul li a:hover {
    color: #f4b400;
    transform: none;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
}

.footer-bottom p::after {
    content: none;
}

@media (max-width: 900px) {
    .hero {
        padding: 72px 0;
    }

    .hero .container,
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p,
    .hero-content p {
        margin-inline: auto;
    }

    .hero-image img {
        max-width: 520px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding-inline: 20px;
    }

    .navbar {
        gap: 14px;
        position: relative;
    }

    .navbar::after {
        content: "";
        display: block;
        width: 24px;
        height: 16px;
        margin-left: 12px;
        flex: 0 0 auto;
        background: linear-gradient(#fff, #fff) top / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) center / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) bottom / 100% 2px no-repeat;
    }

    .logo {
        min-width: 0;
    }

    .logo h2 {
        font-size: 20px;
        white-space: nowrap;
    }

    .logo::after {
        content: "";
        position: fixed;
        right: 20px;
        top: 30px;
        width: 24px;
        height: 16px;
        background: linear-gradient(#fff, #fff) top / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) center / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) bottom / 100% 2px no-repeat;
        z-index: 1005;
    }

    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: 12px;
        flex: 0 0 auto;
        font-size: 0;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1004;
    }

    .menu-btn::before {
        content: "";
        width: 24px;
        height: 16px;
        background: linear-gradient(#fff, #fff) top / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) center / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) bottom / 100% 2px no-repeat;
    }

    header::after {
        content: "";
        position: fixed;
        right: 24px;
        top: 30px;
        width: 24px;
        height: 16px;
        background: linear-gradient(#fff, #fff) top / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) center / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) bottom / 100% 2px no-repeat;
        z-index: 1003;
        pointer-events: none;
    }

    .hero {
        padding: 56px 0;
    }

    .hero-text h1,
    .hero-content h1 {
        font-size: 31px;
        line-height: 1.12;
        max-width: 360px;
        margin-inline: auto;
    }

    .hero-text p,
    .hero-content p {
        font-size: 16px;
        max-width: 360px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.2;
        overflow-wrap: break-word;
    }

    .section-title p {
        font-size: 15px;
        max-width: 360px;
        margin-inline: auto;
    }

    .btn {
        max-width: 300px;
    }

    footer {
        padding: 42px 0 20px;
    }
}

@media (max-width: 991px) {
    .brand-menu-mark {
        display: inline-block;
        margin-left: 12px;
        font-size: 24px;
        line-height: 1;
        vertical-align: -1px;
    }

    .navbar::after {
        content: "";
        display: block;
        width: 24px;
        height: 16px;
        margin-left: 12px;
        flex: 0 0 auto;
        background: linear-gradient(#fff, #fff) top / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) center / 100% 2px no-repeat,
            linear-gradient(#fff, #fff) bottom / 100% 2px no-repeat;
    }
}

/* Full-width image hero */
.hero {
    min-height: calc(100vh - 80px);
    padding: 120px 0;
    background:
        linear-gradient(90deg, rgba(7, 27, 75, 1) 0%, rgba(7, 27, 75, 0.98) 48%, rgba(7, 27, 75, 0.52) 100%),
        url("images/hero.png") center top / auto 112% no-repeat;
}

.hero .container,
.hero-content {
    display: block;
}

.hero-text {
    width: min(760px, 100%);
    text-align: left;
}

.hero-text h1,
.hero-content h1 {
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-text p,
.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.hero-image {
    display: none;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 90px 0;
        background:
            linear-gradient(180deg, rgba(7, 27, 75, 0.98) 0%, rgba(7, 27, 75, 0.92) 58%, rgba(7, 27, 75, 0.72) 100%),
            url("images/hero.png") center top / auto 118% no-repeat;
    }

    .hero-text {
        margin-inline: auto;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 72px 0;
    }
}

/* Editorial redesign */
:root {
    --editorial-ink: #111111;
    --editorial-muted: #6f6f6f;
    --editorial-line: #e7e1d8;
    --editorial-paper: #fbfaf7;
    --editorial-soft: #f2eee8;
    --editorial-accent: #b08a45;
}

html,
body {
    background: var(--editorial-paper);
    color: var(--editorial-ink);
}

body {
    font-size: 16px;
    letter-spacing: 0;
}

.container {
    max-width: 1320px;
    padding-inline: clamp(18px, 4vw, 56px);
}

header {
    background: rgba(251, 250, 247, 0.94);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar {
    height: 78px;
}

.logo {
    gap: 14px;
}

.logo img {
    width: 42px;
    height: 42px;
    border: 1px solid var(--editorial-ink);
    background: #fff;
}

.logo h2 {
    color: var(--editorial-ink);
    font-size: clamp(18px, 2.1vw, 30px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.brand-menu-mark {
    display: none !important;
}

nav ul {
    gap: clamp(18px, 2.4vw, 38px);
}

nav ul li a {
    color: var(--editorial-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--editorial-accent);
}

.menu-btn,
.menu-overlay,
.drawer-header {
    color: var(--editorial-ink);
}

section {
    padding: clamp(70px, 8vw, 126px) 0;
}

.hero {
    min-height: calc(100svh - 78px);
    margin-top: 78px;
    padding: clamp(92px, 13vw, 180px) 0 clamp(86px, 11vw, 150px);
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.84) 0%, rgba(17, 17, 17, 0.6) 38%, rgba(17, 17, 17, 0.1) 100%),
        url("images/hero.png") center right / cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.hero .container,
.hero-content {
    display: block;
}

.hero-text {
    width: min(780px, 100%);
    text-align: left;
}

.hero-text h1,
.hero-content h1 {
    color: #fff;
    max-width: 760px;
    font-size: clamp(54px, 8.5vw, 132px);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: none;
}

.hero-text p,
.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 1.65;
    margin: 0 0 32px;
    text-shadow: none;
}

.hero-image {
    display: none;
}

.btn {
    width: auto;
    max-width: none;
    padding: 13px 28px;
    border: 1px solid currentColor;
    border-radius: 0;
    background: var(--editorial-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.btn:hover {
    background: transparent;
    color: var(--editorial-ink);
    transform: none;
}

.hero .btn {
    background: #fff;
    color: var(--editorial-ink);
}

.hero .btn:hover {
    background: transparent;
    color: #fff;
}

.section-title {
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: clamp(42px, 6vw, 76px);
}

.section-title h2 {
    color: var(--editorial-ink);
    font-size: clamp(34px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title p {
    color: var(--editorial-muted);
    font-size: 16px;
    line-height: 1.8;
}

.features,
.latest-stories,
.about,
.contact {
    background: var(--editorial-paper);
}

.feature-grid,
.article-grid {
    gap: clamp(20px, 3vw, 34px);
}

.feature-card,
.article-card,
.story-card,
.service-card {
    background: transparent;
    border: 1px solid var(--editorial-line);
    border-radius: 0;
    box-shadow: none;
    padding: clamp(22px, 3vw, 34px);
    text-align: left;
}

.feature-card:hover,
.article-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--editorial-ink);
}

.feature-image,
.feature-card img,
.about-image img,
.contact-info img {
    border-radius: 0;
}

.feature-image {
    margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 24px;
}

.feature-image img,
.feature-card > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.feature-card h3,
.article-card h3,
.story-card h3,
.about-text h2,
.contact-info h3,
.contact-form h3,
.cta h2 {
    color: var(--editorial-ink);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.feature-card h3 {
    font-size: clamp(25px, 2.4vw, 34px);
}

.article-card h3,
.story-card h3 {
    font-size: clamp(22px, 2vw, 30px);
}

.feature-card p,
.article-card p,
.story-card p,
.about-text p,
.contact-info p,
.footer-box p {
    color: var(--editorial-muted);
    line-height: 1.78;
}

.article-category {
    color: var(--editorial-accent);
    font-size: 11px;
    letter-spacing: 0.14em;
}

.about-content,
.contact-wrapper {
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
}

.about-image img,
.contact-info img {
    aspect-ratio: 5 / 4;
    object-fit: cover;
    box-shadow: none;
}

.about-list li {
    color: var(--editorial-ink);
    border-bottom: 1px solid var(--editorial-line);
    padding: 10px 0;
}

.cta {
    background: var(--editorial-ink);
    color: #fff;
}

.cta p {
    color: rgba(255, 255, 255, 0.72);
}

.cta .btn {
    background: #fff;
    color: var(--editorial-ink);
}

.page-banner {
    margin-top: 78px;
    min-height: clamp(430px, 56vw, 680px);
    padding: clamp(110px, 14vw, 190px) 0 clamp(70px, 9vw, 120px);
    text-align: left;
    background-color: var(--editorial-ink) !important;
}

.page-banner::before {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.54), rgba(17, 17, 17, 0.16));
}

.page-banner h1 {
    max-width: 900px;
    color: #fff !important;
    font-size: clamp(50px, 8vw, 118px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    text-shadow: none;
}

.page-banner p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: clamp(16px, 1.45vw, 20px);
    text-shadow: none;
}

.contact-form input,
.contact-form textarea {
    border-radius: 0;
    border: 1px solid var(--editorial-line);
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid var(--editorial-ink);
}

footer {
    background: var(--editorial-ink);
    padding: clamp(48px, 7vw, 86px) 0 26px;
}

.footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(30px, 6vw, 86px);
}

.footer-box h2,
.footer-box h3 {
    color: #fff;
    letter-spacing: -0.03em;
}

.footer-box h2 {
    font-size: clamp(30px, 4vw, 58px);
    line-height: 0.92;
}

.footer-box h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-box p,
.footer-box ul li {
    color: rgba(255, 255, 255, 0.68);
}

.footer-box ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 991px) {
    .navbar {
        height: 74px;
        justify-content: space-between;
        gap: 12px;
    }

    .logo h2 {
        font-size: 22px;
        letter-spacing: -0.04em;
    }

    .logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: auto;
        flex: 0 0 auto;
        color: transparent;
        font-size: 0;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1002;
    }

    .menu-btn::before {
        content: "";
        width: 24px;
        height: 14px;
        background: linear-gradient(var(--editorial-ink), var(--editorial-ink)) top / 100% 1.5px no-repeat,
            linear-gradient(var(--editorial-ink), var(--editorial-ink)) center / 100% 1.5px no-repeat,
            linear-gradient(var(--editorial-ink), var(--editorial-ink)) bottom / 100% 1.5px no-repeat;
    }

    .navbar::after,
    .logo::after,
    header::after {
        content: none !important;
    }

    nav {
        width: min(420px, 92vw);
        background: var(--editorial-paper);
        border-left: 1px solid var(--editorial-line);
        border-radius: 0;
        box-shadow: none;
    }

    .drawer-header {
        border-bottom: 1px solid var(--editorial-line);
    }

    .drawer-logo span,
    .drawer-close,
    nav ul li a {
        color: var(--editorial-ink);
    }

    nav ul {
        gap: 0;
        padding: 22px;
    }

    nav ul li a {
        border-radius: 0;
        padding: 18px 0;
        border-bottom: 1px solid var(--editorial-line);
        font-size: 13px;
    }

    nav ul li:last-child {
        margin-top: 0;
        padding: 0;
    }

    nav ul li:last-child a {
        background: transparent;
        color: var(--editorial-ink);
        box-shadow: none;
        text-align: left;
        border-radius: 0;
        padding: 18px 0;
    }

    .hero {
        margin-top: 74px;
        min-height: calc(100svh - 74px);
        padding: 92px 0 76px;
        align-items: flex-end;
        background:
            linear-gradient(180deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.78) 52%, rgba(17, 17, 17, 0.88) 100%),
            url("images/hero.png") center / cover no-repeat;
    }

    .hero-text {
        text-align: center;
        margin-inline: auto;
        max-width: 680px;
    }

    .hero-text p,
    .hero-content p {
        margin-inline: auto;
    }

    .page-banner {
        margin-top: 74px;
        text-align: center;
    }

    .page-banner p {
        margin-inline: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .container {
        width: 100%;
        padding-inline: 20px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo h2 {
        font-size: 19px;
        white-space: nowrap;
    }

    .menu-btn {
        width: 34px;
        height: 34px;
        margin-left: auto;
    }

    .hero {
        min-height: 640px;
        padding: 74px 0 54px;
    }

    .hero-text h1,
    .hero-content h1 {
        max-width: 300px;
        margin-inline: auto;
        font-size: clamp(29px, 8vw, 33px);
        line-height: 0.94;
        overflow-wrap: normal;
    }

    .hero-text p,
    .hero-content p {
        max-width: 320px;
        font-size: 14px;
        line-height: 1.65;
    }

    .btn {
        width: 100%;
        max-width: 310px;
        text-align: center;
    }

    .feature-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .feature-image img,
    .feature-card > img {
        aspect-ratio: 16 / 11;
    }

    .section-title h2 {
        max-width: 350px;
        margin-inline: auto;
        font-size: clamp(32px, 9.4vw, 40px);
        line-height: 0.98;
        overflow-wrap: normal;
    }

    .section-title p {
        max-width: 350px;
    }

    .page-banner h1 {
        max-width: 340px;
        margin-inline: auto;
        font-size: clamp(32px, 9vw, 38px);
        line-height: 0.98;
        overflow-wrap: normal;
    }

    .page-banner p {
        max-width: 340px;
        font-size: 14px;
    }

    .footer-content {
        text-align: left;
    }
}

/* Mobile menu position fix */
@media (max-width: 991px) {
    header .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    header .logo {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 64px);
    }

    header .menu-btn {
        display: flex !important;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin-left: auto !important;
        color: transparent !important;
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px !important;
        font-size: 28px !important;
        line-height: 1 !important;
        z-index: 1003;
    }

    header .menu-btn::before {
        content: none !important;
    }

    header .navbar::after {
        content: "☰" !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        color: var(--editorial-ink);
        font-size: 28px;
        line-height: 1;
        pointer-events: none;
    }

    body::before {
        content: "☰";
        position: fixed;
        top: 18px;
        right: 22px;
        z-index: 2000;
        color: var(--editorial-ink);
        font-size: 28px;
        line-height: 1;
        pointer-events: none;
    }
}
