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

html,
body{
    width:100%;
    min-height:100%;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
    color:inherit;
    transition:.25s;
}

button,
input,
textarea,
select{
    font:inherit;
}

/* =========================
   HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:26px 72px;
    background:linear-gradient(to bottom,rgba(0,0,0,.70),rgba(0,0,0,.14),transparent);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-size:26px;
    font-weight:800;
    white-space:nowrap;
}

.logo img{
    width:54px;
    height:auto;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.site-nav>a{
    color:#fff;
    font-size:16px;
    line-height:1;
    font-weight:500;
    opacity:.9;
}

.site-nav>a:hover{
    opacity:1;
}

.search-btn{
    display:inline-flex;
    align-items:center;
    gap:9px;
    min-height:42px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    background:rgba(255,255,255,.05);
}

.search-btn svg{
    width:18px;
    height:18px;
    fill:currentColor;
}

.search-btn:hover{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.45);
}

/* =========================
   HERO
========================= */

.hero-main{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
    padding:160px 80px 100px;
    overflow:hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.90) 24%,
            rgba(0,0,0,.60) 50%,
            rgba(0,0,0,.28) 72%,
            rgba(0,0,0,.36) 100%
        ),
        url("/assets/img/home-hero-bg.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 78% 48%,rgba(255,150,70,.16),transparent 42%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
}

.hero-content h1{
    margin:0 0 42px;
    font-size:110px;
    line-height:.93;
    font-weight:900;
    letter-spacing:-3px;
    text-transform:uppercase;
}

.hero-content p{
    max-width:860px;
    margin-bottom:54px;
    font-size:30px;
    line-height:1.45;
    font-weight:400;
    color:rgba(255,255,255,.92);
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:310px;
    min-height:76px;
    padding:0 44px;
    border-radius:10px;
    font-size:22px;
    font-weight:700;
}

.hero-btn.primary{
    background:#69764a;
    color:#fff;
}

.hero-btn.primary:hover{
    filter:brightness(1.08);
}

.hero-btn.secondary{
    background:rgba(255,255,255,.03);
    border:2px solid rgba(255,255,255,.82);
    color:#fff;
    backdrop-filter:blur(6px);
}

.hero-btn.secondary:hover{
    background:rgba(255,255,255,.08);
}

/* =========================
   MOBILE
========================= */

@media (max-width:1100px){

    .site-header{
        padding:22px;
    }

    .site-nav{
        gap:24px;
    }

    .site-nav>a{
        font-size:16px;
    }

    .nav-btn{
        padding:15px 20px !important;
        font-size:16px !important;
    }

    .hero-content h1{
        font-size:72px;
    }

    .hero-content p{
        font-size:24px;
    }

}

@media (max-width:900px){

    .site-header{
        padding:18px;
    }

    .site-nav{
        display:none;
    }

    .logo{
        font-size:24px;
    }

    .logo img{
        width:46px;
    }

    .hero-main{
        padding:130px 22px 70px;
        align-items:flex-end;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content h1{
        font-size:54px;
        line-height:.98;
        letter-spacing:-1px;
        margin-bottom:26px;
    }

    .hero-content p{
        font-size:20px;
        line-height:1.5;
        margin-bottom:34px;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-btn{
        width:100%;
        min-width:0;
        min-height:60px;
        font-size:18px;
    }

}

.hero-content{
    max-width: 700px;
}

.hero-content h1{
    font-size: 76px;      /* було 110px */
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 28px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-content p{
    font-size: 24px;      /* було 30px */
    line-height: 1.45;
    max-width: 620px;
    margin-bottom: 42px;
}

.hero-btn{
    min-width: 260px;
    min-height: 64px;
    font-size: 18px;
}

.memory-timeline-section{
    background:#f4f1e8;
    color:#1c2228;
    padding:110px 80px;
}

.memory-timeline-inner{
    max-width:1380px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.memory-timeline-left h2{
    font-size:66px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:30px;
    font-family:Georgia,serif;
}

.memory-timeline-left p{
    max-width:480px;
    font-size:21px;
    line-height:1.55;
    color:#5d646b;
    margin-bottom:34px;
}

.memory-actions{
    display:flex;
    align-items:center;
    gap:34px;
}

.memory-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 28px;
    border-radius:7px;
    background:#69764a;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.memory-link{
    color:#4c523b;
    font-size:16px;
    font-weight:600;
}

.memory-link span{
    margin-left:10px;
}

.memory-timeline{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:48px;
}

.memory-timeline:before{
    content:"";
    position:absolute;
    left:11px;
    top:12px;
    bottom:12px;
    width:2px;
    background:#69764a;
    opacity:.45;
}

.timeline-item{
    position:relative;
    display:grid;
    grid-template-columns:24px 1fr;
    gap:34px;
    align-items:start;
}

.timeline-dot{
    position:relative;
    z-index:2;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#69764a;
    border:5px solid #f4f1e8;
    box-shadow:0 0 0 1px rgba(105,118,74,.25);
}

.timeline-item strong{
    display:block;
    font-size:28px;
    line-height:1;
    font-weight:800;
    margin-bottom:8px;
}

.timeline-item span{
    display:block;
    font-size:18px;
    line-height:1.4;
    color:#6a7077;
}

@media(max-width:900px){
    .memory-timeline-section{
        padding:70px 22px;
    }

    .memory-timeline-inner{
        grid-template-columns:1fr;
        gap:50px;
    }

    .memory-timeline-left h2{
        font-size:44px;
    }

    .memory-actions{
        flex-direction:column;
        align-items:flex-start;
    }

    .memory-btn{
        width:100%;
    }

    .timeline-item strong{
        font-size:24px;
    }

    .timeline-item span{
        font-size:16px;
    }
}
.map-memory-section{
    position:relative;
    min-height:850px;
    overflow:hidden;
    background:#080b09;
    color:#fff;
}

.map-memory-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(5,8,7,.96) 0%,rgba(5,8,7,.78) 32%,rgba(5,8,7,.25) 65%,rgba(5,8,7,.55) 100%),
        url("/assets/img/sumy-map-dark.jpg") center center / cover no-repeat;
}

.map-memory-content{
    position:relative;
    z-index:2;
    max-width:1500px;
    min-height:850px;
    margin:0 auto;
    display:flex;
    align-items:center;
    padding:100px 70px;
}

.map-memory-left{
    max-width:620px;
}

.map-memory-left h2{
    font-family:Georgia,serif;
    font-size:76px;
    line-height:1.05;
    font-weight:700;
    letter-spacing:-2px;
    margin-bottom:42px;
}

.map-memory-left p{
    font-size:26px;
    line-height:1.65;
    color:rgba(255,255,255,.78);
    margin-bottom:46px;
}

.map-memory-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:66px;
    padding:0 42px;
    border-radius:8px;
    background:#69764a;
    color:#fff;
    font-size:22px;
    font-weight:600;
}

.map-memory-stats{
    display:flex;
    gap:0;
    margin-top:86px;
}

.map-stat{
    min-width:220px;
    padding:0 40px;
    border-left:1px solid rgba(132,145,91,.7);
}

.map-stat:first-child{
    padding-left:0;
    border-left:0;
}

.map-stat strong{
    display:block;
    font-family:Georgia,serif;
    font-size:46px;
    line-height:1;
    margin-bottom:14px;
}

.map-stat span{
    display:block;
    font-size:21px;
    line-height:1.35;
    color:rgba(255,255,255,.82);
}

@media(max-width:900px){
    .map-memory-section,
    .map-memory-content{
        min-height:auto;
    }

    .map-memory-bg{
        background-position:center right;
    }

    .map-memory-content{
        padding:90px 22px;
    }

    .map-memory-left h2{
        font-size:48px;
    }

    .map-memory-left p{
        font-size:19px;
    }

    .map-memory-btn{
        width:100%;
        font-size:18px;
    }

    .map-memory-stats{
        flex-direction:column;
        gap:26px;
        margin-top:55px;
    }

    .map-stat{
        min-width:0;
        padding:0 0 0 22px;
        border-left:1px solid rgba(132,145,91,.7);
    }

    .map-stat:first-child{
        padding-left:22px;
        border-left:1px solid rgba(132,145,91,.7);
    }
}
/* REQUEST SECTION */

.request-section{
    position:relative;
    background:#f4f1e8;
    color:#1b2228;
    padding:120px 80px;
    overflow:hidden;
}

.request-section:before{
    content:"";
    position:absolute;
    left:0;
    bottom:-40px;
    width:48%;
    height:360px;
    background:url("/assets/img/request-bg-building.png") left bottom / contain no-repeat;
    opacity:.055;
    pointer-events:none;
}

.request-container{
    position:relative;
    z-index:2;
    max-width:1500px;
    margin:0 auto;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:80px;
    align-items:start;
}

.request-label{
    display:inline-block;
    margin-bottom:34px;
    padding-bottom:14px;
    color:#56613a;
    font-size:18px;
    font-weight:800;
    letter-spacing:6px;
    border-bottom:3px solid #56613a;
}

.request-info h2{
    max-width:620px;
    margin-bottom:28px;
    font-family:Georgia,serif;
    font-size:64px;
    line-height:1.08;
    font-weight:700;
    letter-spacing:-2px;
}

.request-info>p{
    max-width:560px;
    margin-bottom:56px;
    color:#5d646b;
    font-size:20px;
    line-height:1.7;
}

.request-feature{
    display:grid;
    grid-template-columns:82px 1fr;
    gap:24px;
    align-items:center;
    max-width:560px;
    margin-bottom:36px;
}

.request-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    background:#e4e7d8;
    color:#56613a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.request-feature h4{
    margin-bottom:8px;
    font-size:21px;
    font-weight:800;
    color:#1b2228;
}

.request-feature p{
    color:#5d646b;
    font-size:17px;
    line-height:1.55;
}

.request-card{
    background:#fff;
    border:1px solid rgba(27,34,40,.08);
    border-radius:24px;
    padding:46px;
    box-shadow:0 14px 36px rgba(27,34,40,.08);
}

.request-submit:hover{
    filter:brightness(1.05);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.form-group{
    margin-bottom:28px;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    color:#1f252b;
    font-size:17px;
    font-weight:600;
    line-height:1.45;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    min-height:62px;
    border:1px solid #d5d9df;
    border-radius:8px;
    background:#fff;
    padding:0 20px;
    color:#1b2228;
    font-size:18px;
    outline:none;
    transition:.2s;
}

.form-group textarea{
    min-height:118px;
    padding-top:18px;
    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#69764a;
    box-shadow:0 0 0 4px rgba(105,118,74,.12);
}

.request-warning{
    margin:8px 0 24px;
    padding:22px 26px;
    border-radius:10px;
    background:#fff0f0;
    color:#d70b35;
    text-align:center;
    font-size:17px;
    line-height:1.55;
    font-weight:600;
}

.request-submit{
    width:100%;
    min-height:66px;
    border:0;
    border-radius:8px;
    background:#69764a;
    color:#fff;
    font-size:22px;
    font-weight:800;
    cursor:pointer;
    transition:.25s;
}

.request-submit:hover{
    filter:brightness(1.08);
    transform:translateY(-1px);
}

@media(max-width:1000px){
    .request-section{
        padding:80px 22px;
    }

    .request-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .request-info h2{
        font-size:44px;
    }

    .request-info>p{
        font-size:18px;
    }

    .request-card{
        padding:26px;
        border-radius:18px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .request-feature{
        grid-template-columns:64px 1fr;
    }

    .request-icon{
        width:64px;
        height:64px;
        font-size:27px;
    }
}
.site-footer{
    background:#090b09;
    color:#fff;
    border-top:1px solid rgba(255,255,255,.08);
    padding:70px 70px 30px;
}

.footer-top{
    max-width:1500px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.3fr 1fr .8fr;
    gap:80px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-brand{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.footer-brand img{
    width:56px;
    flex-shrink:0;
}

.footer-brand h3{
    font-size:28px;
    margin-bottom:12px;
    font-weight:800;
}

.footer-brand p{
    max-width:460px;
    color:rgba(255,255,255,.62);
    font-size:17px;
    line-height:1.7;
}

.footer-nav{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-nav a{
    color:rgba(255,255,255,.82);
    font-size:17px;
    transition:.2s;
}

.footer-nav a:hover{
    color:#8d9a67;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-contact a{
    color:rgba(255,255,255,.82);
    font-size:17px;
}

.footer-bottom{
    max-width:1500px;
    margin:28px auto 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:rgba(255,255,255,.45);
    font-size:14px;
}

@media(max-width:900px){

    .site-footer{
        padding:60px 22px 24px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}
.about-page{
    background:#080b09;
    color:#fff;
}

.about-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:160px 80px 100px;
    background:
        linear-gradient(90deg,rgba(5,8,7,.96),rgba(5,8,7,.72),rgba(5,8,7,.35)),
        url("/assets/img/about-flag-bg.jpg") center / cover no-repeat;
}

.about-hero-content{
    max-width:760px;
}

.section-kicker{
    display:inline-block;
    margin-bottom:28px;
    color:#d9b84f;
    font-size:15px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
}

.about-hero h1{
    margin-bottom:30px;
    font-family:Georgia,serif;
    font-size:68px;
    line-height:1.08;
    font-weight:700;
}

.about-hero p{
    max-width:520px;
    margin-bottom:38px;
    color:rgba(255,255,255,.78);
    font-size:20px;
    line-height:1.7;
}

.about-actions{
    display:flex;
    gap:18px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 28px;
    border-radius:7px;
    font-size:16px;
    font-weight:800;
}

.about-btn.primary{
    background:#d9b84f;
    color:#15170f;
}

.about-btn.secondary{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}

.about-intro{
    max-width:1500px;
    margin:0 auto;
    padding:110px 80px;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:70px;
    align-items:start;
}

.about-intro-text h2{
    margin-bottom:28px;
    font-family:Georgia,serif;
    font-size:44px;
    line-height:1.15;
}

.about-intro-text p{
    max-width:520px;
    margin-bottom:22px;
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.75;
}

.about-link{
    display:inline-block;
    margin-top:20px;
    color:#d9b84f;
    font-weight:700;
}

.about-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.about-photo{
    min-height:300px;
    border-radius:14px;
    background-size:cover;
    background-position:center;
    box-shadow:0 20px 60px rgba(0,0,0,.28);
}

.photo-1{
    background-image:url("/assets/img/about-photo-1.jpg");
}

.photo-2{
    background-image:url("/assets/img/about-photo-2.jpg");
}

.photo-3{
    background-image:url("/assets/img/about-photo-3.jpg");
}

.about-stats{
    grid-column:2;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-stats div{
    border-left:1px solid rgba(217,184,79,.35);
    padding-left:30px;
}

.about-stats strong{
    display:block;
    margin-bottom:10px;
    color:#d9b84f;
    font-family:Georgia,serif;
    font-size:48px;
}

.about-stats span{
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.45;
}

.about-principles{
    padding:90px 80px;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.about-principles>.section-kicker,
.principles-grid{
    max-width:1500px;
    margin-left:auto;
    margin-right:auto;
}

.principles-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
}

.principle-card{
    padding:34px;
    border-left:1px solid rgba(255,255,255,.1);
}

.principle-card:first-child{
    border-left:0;
}

.principle-icon{
    width:56px;
    height:56px;
    display:block;
    object-fit:contain;
    margin:0 0 22px;
}

.principle-card h3{
    margin-bottom:14px;
    font-family:Georgia,serif;
    font-size:26px;
}

.principle-card p{
    color:rgba(255,255,255,.66);
    font-size:16px;
    line-height:1.65;
}

.about-cta{
    max-width:1500px;
    margin:90px auto;
    min-height:320px;
    display:flex;
    align-items:center;
    padding:60px 70px;
    border-radius:18px;
    background:
        linear-gradient(90deg,rgba(13,14,9,.92),rgba(13,14,9,.58)),
        url("/assets/img/about-candle-bg.jpg") center / cover no-repeat;
}

.about-cta h2{
    margin-bottom:20px;
    font-family:Georgia,serif;
    font-size:42px;
    line-height:1.15;
}

.about-cta p{
    max-width:480px;
    margin-bottom:30px;
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.6;
}

@media(max-width:1000px){
    .about-hero{
        padding:140px 22px 70px;
    }

    .about-hero h1{
        font-size:44px;
    }

    .about-actions{
        flex-direction:column;
    }

    .about-intro{
        grid-template-columns:1fr;
        padding:70px 22px;
    }

    .about-gallery{
        grid-template-columns:1fr;
    }

    .about-stats{
        grid-column:auto;
        grid-template-columns:1fr;
    }

    .principles-grid{
        grid-template-columns:1fr;
    }

    .principle-card{
        border-left:0;
        border-top:1px solid rgba(255,255,255,.1);
        padding:30px 0;
    }

    .about-principles{
        padding:70px 22px;
    }

    .about-cta{
        margin:60px 22px;
        padding:40px 26px;
    }

    .about-cta h2{
        font-size:34px;
    }
}

.contacts-page{
    background:#060708;
    color:#fff;
}

.contacts-hero{
    position:relative;
    overflow:hidden;
    padding:170px 0 110px;
    background:
        linear-gradient(rgba(4,5,6,.26),rgba(4,5,6,.4)),
        url("/assets/img/contact-bg.jpg") center / cover no-repeat;
}

.contacts-intro,
.contacts-content{
    position:relative;
    z-index:2;
    width:min(1450px,92%);
    margin:0 auto;
}

.contacts-intro{
    margin-bottom:70px;
}

.contacts-label{
    color:#d7b55a;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.contacts-intro h1{
    font-size:76px;
    line-height:1.05;
    margin-bottom:30px;
    font-family:Georgia,serif;
    font-weight:500;
}

.contacts-intro p{
    max-width:720px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:20px;
}

.contacts-content{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:start;
}

.contact-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    display:flex;
    gap:22px;
    align-items:center;
    padding:24px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:#101214;
}

.contact-icon{
    width:64px;
    height:64px;
    flex:0 0 64px;
    border-radius:50%;
    background:#1b1a10;
    color:#d7b55a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.contact-card strong{
    display:block;
    margin-bottom:8px;
    font-size:22px;
}

.contact-card span{
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.5;
}

.contacts-form-wrap{
    padding:42px;
    border-radius:22px;
    background:#0d0f10;
    border:1px solid rgba(255,255,255,.08);
}

.contacts-form-wrap h2{
    font-size:42px;
    margin-bottom:30px;
    font-family:Georgia,serif;
    font-weight:500;
}

.contacts-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contacts-form input,
.contacts-form textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.08);
    outline:none;
    border-radius:10px;
    padding:18px 20px;
    background:#101214;
    color:#fff;
    font-size:17px;
}

.contacts-form input:focus,
.contacts-form textarea:focus{
    border-color:rgba(215,181,90,.6);
}

.contacts-form textarea{
    resize:none;
    height:220px;
}

.contacts-form button{
    height:60px;
    border:none;
    cursor:pointer;
    border-radius:10px;
    background:#d7b55a;
    color:#111;
    font-size:17px;
    font-weight:700;
}

.contacts-map{
    width:min(1450px,92%);
    margin:90px auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
}

.contacts-map-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contacts-map-info span{
    color:#d7b55a;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:18px;
}

.contacts-map-info h2{
    font-size:56px;
    margin-bottom:22px;
    font-family:Georgia,serif;
    font-weight:500;
}

.contacts-map-info p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    margin-bottom:34px;
}

.contacts-map-info a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:240px;
    height:56px;
    border:1px solid #d7b55a;
    color:#d7b55a;
    border-radius:10px;
}

.contacts-map-preview{
    min-height:500px;
    border-radius:20px;
    overflow:hidden;
    background:#111;
}

.contacts-map-placeholder{
    width:100%;
    min-height:500px;
    background:
        linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.15)),
        url("/assets/img/map-placeholder.jpg") center center / cover no-repeat;
}

@media(max-width:1000px){
    .contacts-hero{
        padding:130px 0 70px;
    }

    .contacts-intro{
        margin-bottom:42px;
    }

    .contacts-intro h1{
        font-size:48px;
        line-height:1.08;
    }

    .contacts-intro p{
        font-size:17px;
        line-height:1.65;
    }

    .contacts-content,
    .contacts-map{
        grid-template-columns:1fr;
        gap:28px;
    }

    .contacts-form-wrap{
        padding:26px;
        border-radius:18px;
    }

    .contacts-form-wrap h2{
        font-size:34px;
    }

    .contact-card{
        padding:20px;
        border-radius:16px;
    }

    .contact-icon{
        width:54px;
        height:54px;
        flex-basis:54px;
        font-size:24px;
    }

    .contact-card strong{
        font-size:20px;
    }

    .contacts-map{
        margin:60px auto;
    }

    .contacts-map-info h2{
        font-size:40px;
    }

    .contacts-map-info a{
        width:100%;
    }

    .contacts-map-preview,
    .contacts-map-placeholder{
        min-height:360px;
    }
}

@media(max-width:520px){
    .contacts-hero{
        padding:115px 0 55px;
    }

    .contacts-intro,
    .contacts-content,
    .contacts-map{
        width:calc(100% - 36px);
    }

    .contacts-intro h1{
        font-size:40px;
    }

    .contact-card{
        align-items:flex-start;
    }

    .contacts-form-wrap{
        padding:22px;
    }

    .contacts-form textarea{
        height:170px;
    }
}



.heroes-page{
    background:#070908;
    color:#fff;
}

.heroes-top{
    position:relative;
    min-height:720px;
    padding:130px 70px 90px;
    background:#070908;
    overflow:hidden;
}

.heroes-top:after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom,rgba(7,9,8,.1) 0%,rgba(7,9,8,.55) 42%,#070908 100%),
        radial-gradient(circle at 85% 70%,rgba(215,181,90,.13),transparent 35%);
    z-index:2;
    pointer-events:none;
}

.heroes-top-images{
    position:absolute;
    top:105px;
    left:50%;
    transform:translateX(-50%);
    width:min(1500px,92%);
    height:330px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px;
    z-index:1;
}

.heroes-top-img{
    position:relative;
    overflow:hidden;
    border-radius:8px;
    background:#111;
}

.heroes-top-img:after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to bottom, rgba(7, 9, 8, .15), rgba(7, 9, 8, .36)), rgba(184, 142, 49, 0.22);
}

.heroes-top-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter: grayscale(.2) sepia(.25) brightness(.72) contrast(1.38);
}

.heroes-top-content{
    position:relative;
    z-index:3;
    width:min(1500px,92%);
    margin:310px auto 0;
}

.heroes-top-content h1{
    max-width:1050px;
    margin-bottom:28px;
    font-family:Georgia,serif;
    font-size:66px;
    line-height:1.08;
    font-weight:500;
    letter-spacing:-1px;
}

.heroes-top-content p{
    max-width:740px;
    margin-bottom:38px;
    color:rgba(255,255,255,.74);
    font-size:21px;
    line-height:1.6;
}

.heroes-top-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.heroes-main-btn,
.heroes-outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:0 34px;
    border-radius:8px;
    font-size:17px;
    font-weight:800;
}

.heroes-main-btn{
    background:#d7b55a;
    color:#111;
}

.heroes-outline-btn{
    border:1px solid rgba(215,181,90,.45);
    color:#d7b55a;
}

.heroes-list{
    padding:80px 70px 110px;
    background:#070908;
}

.heroes-list-head{
    width:min(1500px,92%);
    margin:0 auto 44px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
}

.heroes-list-head span{
    display:block;
    margin-bottom:16px;
    color:#d7b55a;
    font-size:14px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.heroes-list-head h2{
    font-family:Georgia,serif;
    font-size:52px;
    line-height:1.1;
    font-weight:500;
}

.heroes-list-head strong{
    color:#d7b55a;
    font-size:22px;
    white-space:nowrap;
}

.heroes-grid{
    width:min(1500px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.heroes-card{
    display:grid;
    grid-template-columns:42% 58%;
    min-height:285px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:14px;
    overflow:hidden;
    background:#0d0f10;
}

.heroes-card-img{
    display:block;
    overflow:hidden;
    background:#111;
}

.heroes-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(1) sepia(.28) brightness(.78) contrast(1.08);
    transition:.3s;
}

.heroes-card:hover .heroes-card-img img{
    transform:scale(1.04);
}

.heroes-card-body{
    padding:28px 24px;
    display:flex;
    flex-direction:column;
}

.heroes-card-body span{
    display:block;
    margin-bottom:16px;
    color:#d7b55a;
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}

.heroes-card-body h3{
    margin-bottom:16px;
    font-family:Georgia,serif;
    font-size:25px;
    line-height:1.18;
    font-weight:500;
}

.heroes-card-body h3 a{
    color:#fff;
}

.heroes-card-body p{
    margin-bottom:22px;
    color:rgba(255,255,255,.63);
    font-size:16px;
    line-height:1.55;
}

.heroes-card-link{
    margin-top:auto;
    color:#d7b55a;
    font-size:15px;
    font-weight:800;
}

.heroes-pagination{
    width:min(1500px,92%);
    margin:50px auto 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.heroes-pagination a,
.heroes-pagination span{
    min-width:48px;
    height:48px;
    padding:0 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    border:1px solid rgba(255,255,255,.1);
    background:#0d0f10;
    color:#fff;
    font-weight:800;
}

.heroes-pagination a.active{
    background:#d7b55a;
    color:#111;
    border-color:#d7b55a;
}

@media(max-width:1200px){
    .heroes-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:900px){
    .heroes-top{
        min-height:auto;
        padding:110px 0 65px;
    }

    .heroes-top-images{
        top:92px;
        width:100%;
        height:260px;
        grid-template-columns:repeat(2,1fr);
        gap:4px;
    }

    .heroes-top-content{
        width:calc(100% - 36px);
        margin-top:270px;
    }

    .heroes-top-content h1{
        font-size:40px;
        line-height:1.12;
    }

    .heroes-top-content p{
        font-size:17px;
    }

    .heroes-top-actions{
        flex-direction:column;
    }

    .heroes-main-btn,
    .heroes-outline-btn{
        width:100%;
    }

    .heroes-list{
        padding:60px 0 80px;
    }

    .heroes-list-head{
        width:calc(100% - 36px);
        flex-direction:column;
        align-items:flex-start;
    }

    .heroes-list-head h2{
        font-size:38px;
    }

    .heroes-grid{
        width:calc(100% - 36px);
        grid-template-columns:1fr;
    }

    .heroes-card{
        grid-template-columns:1fr;
    }

    .heroes-card-img{
        height:330px;
    }

    .heroes-card-body{
        padding:24px;
    }

    .heroes-pagination{
        width:calc(100% - 36px);
    }
}

.hero-profile-page{
    background:#070908;
    color:#fff;
    padding-top:120px;
}

.hero-profile-main{
    width:min(1450px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:480px 1fr;
    gap:80px;
    align-items:center;
    padding:70px 0 40px;
}

.hero-profile-photo{
    border-radius:18px;
    overflow:hidden;
    background:#111;
}

.hero-profile-photo img{
    width:100%;
    height:560px;
    object-fit:cover;
}

.hero-profile-label{
    display:block;
    margin-bottom:24px;
    color:#d7b55a;
    font-size:14px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.hero-profile-info h1{
    margin-bottom:26px;
    font-family:Georgia,serif;
    font-size:72px;
    line-height:1.05;
    font-weight:500;
}

.hero-profile-dates{
    margin-bottom:26px;
    color:#fff;
    font-size:20px;
    font-weight:700;
}

.hero-profile-short{
    max-width:720px;
    color:rgba(255,255,255,.72);
    font-size:20px;
    line-height:1.75;
}

.hero-stats{
    width:min(1450px,92%);
    margin:30px auto 70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#0d0f10;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
}

.hero-stat{
    display:flex;
    align-items:center;
    gap:22px;
    padding:34px 38px;
    border-right:1px solid rgba(255,255,255,.08);
}

.hero-stat:last-child{
    border-right:none;
}

.hero-stat img{
    width:56px;
    height:56px;
    object-fit:contain;
    flex-shrink:0;
}

.hero-stat span{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:500;
    color:rgba(255,255,255,.55);
}

.hero-stat strong{
    display:block;
    font-size:20px;
    font-weight:700;
    color:#fff;
    line-height:1.35;
}

.hero-profile-content{
    width:min(1450px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:70px;
    padding:30px 0 90px;
}

.hero-story h2{
    margin-bottom:28px;
    font-family:Georgia,serif;
    font-size:48px;
    font-weight:500;
}

.hero-story p{
    max-width:820px;
    margin-bottom:22px;
    color:rgba(255,255,255,.72);
    font-size:19px;
    line-height:1.85;
}

.hero-about-card{
    padding:36px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:#0d0f10;
}

.hero-about-card h3{
    margin-bottom:26px;
    font-family:Georgia,serif;
    font-size:32px;
    font-weight:500;
}

.hero-about-card div{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.hero-about-card div:last-child{
    border-bottom:0;
}

.hero-about-card span{
    color:rgba(255,255,255,.48);
}

.hero-about-card strong{
    max-width:210px;
    text-align:right;
    color:#fff;
    font-size:15px;
    line-height:1.5;
}

.hero-request-section{
    width:min(1450px,92%);
    margin:0 auto 100px;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:70px;
    padding:60px;
    border-radius:24px;
    background:#f4f1e8;
    color:#1b2228;
}

.hero-request-info span{
    display:block;
    margin-bottom:22px;
    color:#69764a;
    font-size:14px;
    font-weight:900;
    letter-spacing:4px;
    text-transform:uppercase;
}

.hero-request-info h2{
    margin-bottom:24px;
    font-family:Georgia,serif;
    font-size:48px;
    line-height:1.12;
    font-weight:600;
}

.hero-request-info p{
    max-width:520px;
    color:#5d646b;
    font-size:18px;
    line-height:1.75;
}

.hero-request-form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.hero-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.hero-request-form label{
    display:flex;
    flex-direction:column;
    gap:12px;
    color:#1b2228;
    font-size:18px;
    font-weight:800;
}

.hero-request-form input,
.hero-request-form select,
.hero-request-form textarea{
    width:100%;
    border:1px solid #d2d7dd;
    outline:none;
    border-radius:12px;
    background:#fff;
    color:#1b2228;
    font-size:18px;
    padding:18px 20px;
}

.hero-request-form input,
.hero-request-form select{
    height:64px;
}

.hero-request-form textarea{
    height:170px;
    resize:vertical;
}

.hero-request-form button{
    height:64px;
    border:0;
    border-radius:12px;
    background:#69764a;
    color:#fff;
    font-size:19px;
    font-weight:900;
    cursor:pointer;
}

@media(max-width:1100px){
    .hero-stats{
        grid-template-columns:1fr 1fr;
    }

    .hero-stat:nth-child(2){
        border-right:none;
    }

    .hero-stat:nth-child(1),
    .hero-stat:nth-child(2){
        border-bottom:1px solid rgba(255,255,255,.08);
    }
}

@media(max-width:1000px){
    .hero-profile-page{
        padding-top:90px;
    }

    .hero-profile-main,
    .hero-profile-content,
    .hero-request-section{
        grid-template-columns:1fr;
    }

    .hero-profile-main{
        gap:36px;
        padding:50px 0 30px;
    }

    .hero-profile-photo img{
        height:auto;
    }

    .hero-profile-info h1{
        font-size:44px;
    }

    .hero-profile-short{
        font-size:18px;
    }

    .hero-profile-content{
        gap:36px;
    }

    .hero-request-section{
        padding:30px 22px;
    }

    .hero-request-info h2{
        font-size:36px;
    }

    .hero-form-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:640px){
    .hero-stats{
        grid-template-columns:1fr;
        border-radius:18px;
    }

    .hero-stat{
        border-right:none!important;
        border-bottom:1px solid rgba(255,255,255,.08);
        padding:26px 22px;
    }

    .hero-stat:last-child{
        border-bottom:none;
    }

    .hero-stat img{
        width:48px;
        height:48px;
    }

    .hero-stat strong{
        font-size:18px;
    }

    .hero-about-card{
        padding:26px;
    }

    .hero-about-card div{
        flex-direction:column;
        gap:6px;
    }

    .hero-about-card strong{
        max-width:none;
        text-align:left;
    }
    .search-tabs button, .search-tabs a{
        width: 100%;
    }
}
.hero-simple{
    width:min(1450px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:480px 1fr;
    gap:80px;
    align-items:start;
    padding:70px 0 90px;
}

.hero-simple-photo{
    border-radius:18px;
    overflow:hidden;
    background:#111;
}

.hero-simple-photo img{
    width:100%;
    height:auto;
    display:block;
}

.hero-simple-content h1{
    margin-bottom:34px;
    font-family:Georgia,serif;
    font-size:68px;
    line-height:1.08;
    font-weight:500;
}

.hero-simple-text{
    max-width:820px;
    color:rgba(255,255,255,.72);
    font-size:19px;
    line-height:1.85;
}

.hero-simple-text p{
    margin-bottom:22px;
}

@media(max-width:1000px){
    .hero-simple{
        grid-template-columns:1fr;
        gap:36px;
        padding:50px 0 70px;
    }

    .hero-simple-content h1{
        font-size:42px;
    }

    .hero-simple-text{
        font-size:17px;
    }
}
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:28px 70px;

    background:transparent;

    transition:
        padding .25s ease,
        background .25s ease,
        backdrop-filter .25s ease,
        box-shadow .25s ease;
}

.site-header.scrolled{
    padding: 7px 70px;
    background:rgba(7,9,8,.92);
    box-shadow:0 6px 24px rgba(0,0,0,.22);
}

.site-header.scrolled .logo img{
    width:44px;
    transition:.25s;
}

.site-header.scrolled .logo span{
    font-size:22px;
}
.request-result{
    display:none;
    padding:16px 18px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    line-height:1.45;
    margin-bottom: 20px;
}

.request-result.success{
    background:#e8f5e9;
    color:#1b7f35;
}

.request-result.error{
    background:#fff0f0;
    color:#c9002b;
}

.request-submit:disabled{
    opacity:.65;
    cursor:not-allowed;
}

/* =========================
   FINAL MOBILE POLISH
========================= */

@media(max-width:900px){

    body{
        background:#070908;
    }

    .site-header{
        padding:14px 18px;
        background:linear-gradient(to bottom,rgba(7,9,8,.92),rgba(7,9,8,.62),transparent);
    }

    .site-header.scrolled{
        padding:8px 18px;
        background:rgba(7,9,8,.95);
        box-shadow:0 8px 24px rgba(0,0,0,.24);
    }

    .logo{
        gap:10px;
        font-size:20px;
    }

    .logo img{
        width:40px;
    }

    .site-header.scrolled .logo img{
        width:34px;
    }

    .site-header.scrolled .logo span{
        font-size:18px;
    }

    .site-nav{
        display:none;
    }

    .hero-main{
        min-height:100svh;
        padding:120px 20px 56px;
        align-items:flex-end;
        background-image:
            linear-gradient(
                to bottom,
                rgba(0,0,0,.38) 0%,
                rgba(0,0,0,.48) 35%,
                rgba(0,0,0,.88) 100%
            ),
            url("/assets/img/home-hero-bg.jpg");
        background-position:center top;
    }

    .hero-overlay{
        display:none;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content h1{
        font-size:39px;
        line-height:1.04;
        letter-spacing:-1px;
        margin-bottom:20px;
    }

    .hero-content p{
        font-size:17px;
        line-height:1.55;
        max-width:100%;
        margin-bottom:28px;
        color:rgba(255,255,255,.84);
    }

    .hero-actions,
    .about-actions,
    .heroes-top-actions,
    .memory-actions{
        flex-direction:column;
        align-items:stretch;
        gap:12px;
    }

    .hero-btn,
    .about-btn,
    .heroes-main-btn,
    .heroes-outline-btn,
    .memory-btn,
    .map-memory-btn{
        width:100%;
        min-width:0;
        min-height:54px;
        font-size:16px;
        border-radius:8px;
    }

    .memory-timeline-section,
    .request-section,
    .about-intro,
    .about-principles,
    .heroes-list{
        padding-left:20px;
        padding-right:20px;
    }

    .memory-timeline-left h2,
    .map-memory-left h2,
    .request-info h2,
    .about-hero h1,
    .about-intro-text h2,
    .contacts-intro h1,
    .heroes-top-content h1,
    .hero-profile-info h1,
    .hero-simple-content h1,
    .error-content h1{
        font-size:38px;
        line-height:1.12;
        letter-spacing:-.5px;
    }

    .memory-timeline-left p,
    .map-memory-left p,
    .request-info>p,
    .about-hero p,
    .about-intro-text p,
    .contacts-intro p,
    .heroes-top-content p,
    .hero-profile-short,
    .hero-simple-text,
    .error-content p{
        font-size:16px;
        line-height:1.65;
    }

    .map-memory-section{
        min-height:auto;
    }

    .map-memory-bg{
        background:
            linear-gradient(to bottom,rgba(5,8,7,.72),rgba(5,8,7,.96)),
            url("/assets/img/sumy-map-dark.jpg") center right / cover no-repeat;
    }

    .map-memory-content{
        min-height:auto;
        padding:80px 20px;
    }

    .map-memory-stats{
        margin-top:44px;
    }

    .request-section{
        padding-top:72px;
        padding-bottom:72px;
    }

    .request-container{
        gap:38px;
    }

    .request-label,
    .section-kicker,
    .contacts-label,
    .heroes-list-head span,
    .hero-profile-label,
    .hero-request-info span{
        font-size:12px;
        letter-spacing:2.5px;
    }

    .request-card,
    .contacts-form-wrap,
    .hero-request-section{
        padding:22px;
        border-radius:18px;
    }

    .form-group label,
    .hero-request-form label{
        font-size:15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .hero-request-form input,
    .hero-request-form select,
    .hero-request-form textarea{
        min-height:54px;
        height:auto;
        font-size:16px;
        border-radius:10px;
        padding:14px 16px;
    }

    .form-group textarea,
    .hero-request-form textarea{
        min-height:130px;
    }

    .request-submit,
    .hero-request-form button{
        min-height:56px;
        height:56px;
        font-size:17px;
    }

    .about-hero{
        min-height:100svh;
        padding:125px 20px 70px;
        background:
            linear-gradient(to bottom,rgba(5,8,7,.54),rgba(5,8,7,.96)),
            url("/assets/img/about-flag-bg.jpg") center / cover no-repeat;
    }

    .about-gallery{
        gap:14px;
    }

    .about-photo{
        min-height:260px;
    }

    .about-stats{
        gap:20px;
    }

    .about-stats strong{
        font-size:38px;
    }

    .about-cta{
        margin:50px 20px;
        padding:34px 22px;
        border-radius:16px;
    }

    .about-cta h2,
    .hero-request-info h2,
    .contacts-map-info h2{
        font-size:32px;
    }

    .contacts-hero{
        padding:120px 0 60px;
        background:
            linear-gradient(to bottom,rgba(4,5,6,.45),rgba(4,5,6,.92)),
            url("/assets/img/contact-bg.jpg") center / cover no-repeat;
    }

    .contacts-intro,
    .contacts-content,
    .contacts-map{
        width:calc(100% - 40px);
    }

    .contact-card{
        padding:18px;
        gap:16px;
    }

    .contact-icon{
        width:50px;
        height:50px;
        flex-basis:50px;
        font-size:22px;
    }

    .contact-card strong{
        font-size:18px;
    }

    .contact-card span{
        font-size:15px;
    }

    .contacts-map{
        margin:55px auto;
    }

    .contacts-map-preview,
    .contacts-map-placeholder{
        min-height:300px;
        border-radius:16px;
    }

    .heroes-top{
        padding:105px 0 58px;
    }

    .heroes-top-images{
        top:82px;
        height:240px;
    }

    .heroes-top-content{
        margin-top:250px;
        width:calc(100% - 40px);
    }

    .heroes-list-head,
    .heroes-grid,
    .heroes-pagination{
        width:100%;
    }

    .heroes-card-img{
        height:300px;
    }

    .heroes-card-body{
        padding:22px;
    }

    .heroes-card-body h3{
        font-size:24px;
    }

    .hero-profile-page{
        padding-top:82px;
    }

    .hero-profile-main,
    .hero-profile-content,
    .hero-simple,
    .hero-stats,
    .hero-request-section{
        width:calc(100% - 40px);
    }

    .hero-profile-main,
    .hero-simple{
        padding-top:42px;
    }

    .hero-profile-photo,
    .hero-simple-photo{
        border-radius:16px;
    }

    .hero-profile-photo img{
        height:auto;
        max-height:none;
    }

    .hero-stats{
        margin:26px auto 52px;
    }

    .hero-stat{
        gap:16px;
        padding:22px;
    }

    .hero-stat img{
        width:44px;
        height:44px;
    }

    .hero-stat span{
        font-size:13px;
    }

    .hero-stat strong{
        font-size:17px;
    }

    .hero-story h2{
        font-size:34px;
    }

    .hero-story p{
        font-size:16px;
        line-height:1.75;
    }

    .hero-about-card{
        padding:22px;
        border-radius:16px;
    }

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

    .site-footer{
        padding:48px 20px 24px;
    }

    .footer-brand{
        gap:14px;
    }

    .footer-brand img{
        width:44px;
    }

    .footer-brand h3{
        font-size:22px;
    }

    .footer-brand p,
    .footer-nav a,
    .footer-contact a{
        font-size:15px;
        line-height:1.6;
    }
}

@media(max-width:420px){

    .hero-content h1{
        font-size:34px;
    }

    .memory-timeline-left h2,
    .map-memory-left h2,
    .request-info h2,
    .about-hero h1,
    .contacts-intro h1,
    .heroes-top-content h1,
    .hero-profile-info h1,
    .hero-simple-content h1{
        font-size:34px;
    }

    .hero-btn,
    .about-btn,
    .heroes-main-btn,
    .heroes-outline-btn{
        min-height:52px;
        font-size:15px;
    }

    .request-card,
    .contacts-form-wrap,
    .hero-request-section{
        padding:18px;
    }

    .heroes-card-img{
        height:260px;
    }
}
.mobile-menu-btn{
    display:none;
    width:46px;
    height:46px;
    border:0;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    padding:0;
}

.mobile-menu-btn span{
    width:28px;
    height:2px;
    margin:0 auto;
    background:#fff;
    transition:.25s;
}

.mobile-menu{
    position:fixed;
    inset:0;
    z-index:9998;

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

    background:rgba(7,9,8,.98);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:.25s;
}

.mobile-menu.open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:26px;
}

.mobile-nav a{
    color:#fff;
    font-size:30px;
    font-weight:700;
    transition:.2s;
}

.mobile-nav a:hover{
    color:#d7b55a;
}

.mobile-menu.open + *{
    overflow:hidden;
}

@media(max-width:900px){

    .mobile-menu-btn{
        display:flex;
    }

    .site-nav{
        display:none !important;
    }

}

.search-btn{
    border:1px solid rgba(255,255,255,.28);
    background:rgba(255,255,255,.05);
    color:#fff;
    cursor:pointer;
}

.search-modal{
    position:fixed;
    inset:0;
    z-index:10000;
    display:none;
}

.search-modal.open{
    display:block;
}

.search-modal-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(7,9,8,.86),rgba(7,9,8,.94)),
        url("/assets/img/home-hero-bg.jpg") center / cover no-repeat;
}

.search-panel{
    position:relative;
    z-index:2;
    width:min(1720px,92%);
    height:calc(100vh - 110px);
    margin:55px auto;
    padding:52px 66px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(8,9,8,.88);
    overflow:hidden;
}

.search-close{
    position:absolute;
    top:30px;
    right:34px;
    width:42px;
    height:42px;
    border:0;
    background:transparent;
    color:rgba(255,255,255,.68);
    font-size:52px;
    line-height:1;
    cursor:pointer;
}

.search-title h2{
    margin-bottom:30px;
    color:#fff;
    font-size:58px;
    line-height:1;
    font-weight:900;
}

.search-title span{
    color:#c8b36b;
}

.search-input-wrap{
    height:76px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:0 18px 0 26px;
    border:1px solid rgba(215,181,90,.65);
    border-radius:12px;
    background:rgba(0,0,0,.46);
}

.search-input-wrap svg{
    width:28px;
    height:28px;
    fill:rgba(255,255,255,.55);
    flex:0 0 auto;
}

.search-input-wrap input{
    flex:1;
    height:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:22px;
}

.search-input-wrap input::placeholder{
    color:rgba(255,255,255,.45);
}

.search-clear{
    width:42px;
    height:42px;
    border:0;
    background:transparent;
    color:rgba(255,255,255,.6);
    font-size:34px;
    cursor:pointer;
}

.search-submit{
    height:56px;
    padding:0 32px;
    border:0;
    border-radius:9px;
    background:#d7b55a;
    color:#14150f;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
}

.search-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:26px 0 18px;
}

.search-tabs button,
.search-tabs a{
    min-height:52px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:0 26px;
    border-radius:9px;
    border:1px solid rgba(255,255,255,.1);
    background:#111312;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.search-tabs .active{
    background:rgba(215,181,90,.13);
    border-color:rgba(215,181,90,.4);
}

.search-tabs span{
    min-width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    font-size:13px;
}

.search-body{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:34px;
    height:calc(100% - 220px);
    min-height:0;
}

.search-filters{
    padding:28px;
    border-radius:14px;
    border:1px solid rgba(215,181,90,.18);
    background:rgba(0,0,0,.28);
    align-self:start;
}

.filter-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:26px;
}

.filter-head strong{
    color:#d7b55a;
    font-size:18px;
}

.filter-head button{
    border:0;
    background:transparent;
    color:rgba(255,255,255,.72);
    cursor:pointer;
}

.search-filters label{
    display:block;
    margin-bottom:24px;
    color:#fff;
    font-size:15px;
}

.search-filters select{
    width:100%;
    height:52px;
    margin-top:12px;
    padding:0 14px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.12);
    background:#0d0f10;
    color:#fff;
}

.check-line{
    display:flex!important;
    align-items:center;
    gap:12px;
}

.check-line input{
    width:20px;
    height:20px;
}

.search-results-wrap{
    min-width:0;
    min-height:0;
    display:flex;
    flex-direction:column;
}

.search-results-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.search-results-head p{
    color:rgba(255,255,255,.78);
    font-size:16px;
}

.search-results-head b{
    color:#d7b55a;
}

.search-results{
    min-height:0;
    overflow:auto;
    padding-right:8px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.search-result-card{
    display:grid;
    grid-template-columns:140px 1fr 240px;
    align-items:center;
    gap:28px;
    padding:10px;
    border-radius:14px;
    border:1px solid rgba(215,181,90,.18);
    background:linear-gradient(90deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
}

.search-result-img{
    height:150px;
    border-radius:10px;
    overflow:hidden;
    background:#111;
}

.search-result-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.search-result-info h3{
    margin-bottom:12px;
    color:#fff;
    font-size:22px;
    line-height:1.2;
}

.search-result-info p{
    max-width:720px;
    color:rgba(255,255,255,.66);
    font-size:15px;
    line-height:1.5;
}

.search-result-meta{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-top:12px;
    color:rgba(255,255,255,.7);
    font-size:14px;
}

.search-result-link{
    justify-self:end;
    min-height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 24px;
    border-radius:9px;
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    font-weight:800;
}

.search-empty{
    padding:36px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    color:rgba(255,255,255,.72);
}

@media(max-width:1000px){
    .search-panel{
        width:100%;
        height:100vh;
        margin:0;
        border-radius:0;
        padding:90px 20px 28px;
    }

    .search-close{
        top:24px;
        right:20px;
    }

    .search-title h2{
        font-size:38px;
    }

    .search-input-wrap{
        height:auto;
        min-height:64px;
        flex-wrap:wrap;
        padding:12px;
    }

    .search-input-wrap input{
        font-size:17px;
        min-width:0;
    }

    .search-submit{
        width:100%;
    }

    .search-body{
        grid-template-columns:1fr;
        height:calc(100% - 260px);
    }

    .search-filters{
        display:none;
    }

    .search-tabs{
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:4px;
    }

    .search-tabs button,
    .search-tabs a{
        white-space:nowrap;
    }

    .search-result-card{
        grid-template-columns:100px 1fr;
        align-items:start;
        gap:16px;
    }

    .search-result-img{
        height:110px;
    }

    .search-result-info h3{
        font-size:18px;
    }

    .search-result-link{
        grid-column:1 / -1;
        width:100%;
    }
}
.mobile-search-link{
    border:0;
    background:transparent;
    color:#fff;
    font-size:30px;
    font-weight:700;
    cursor:pointer;
}
@media(max-width:1000px){

    .search-panel{
        height:100dvh;
        max-height:100dvh;
        overflow-y:auto;
        padding-bottom:120px;
        -webkit-overflow-scrolling:touch;
    }

    .search-body{
        height:auto;
        min-height:auto;
        overflow:visible;
    }

    .search-results-wrap{
        min-height:auto;
        overflow:visible;
    }

    .search-results{
        overflow:visible;
        max-height:none;
        padding-right:0;
        padding-bottom:80px;
    }

    .search-result-card{
        overflow:visible;
    }

    .search-result-link{
        position:relative;
        z-index:2;
    }
}
.hero-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-bottom:24px;
}

.hero-title-row .hero-profile-label{
    margin-bottom:0;
}

.hero-callsign{
    padding:12px 18px;
    border-radius:14px;
    border:1px solid rgba(215,181,90,.35);
    background:rgba(215,181,90,.08);
    min-width:170px;
    text-align:left;
}

.hero-callsign span{
    display:block;
    margin-bottom:5px;
    color:rgba(255,255,255,.5);
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-callsign strong{
    display:block;
    color:#d7b55a;
    font-size:22px;
    line-height:1.1;
    font-weight:900;
}

.hero-awards-row{
    background:rgba(215,181,90,.06);
    margin-top:10px;
    padding: 10px!important;
    border-bottom:0!important;
}

.hero-awards-row span{
    color:#d7b55a!important;
}

.hero-awards-row strong{
    color:#d7b55a!important;
    font-size:14px;
    line-height:1.55;
}

@media(max-width:700px){
    .hero-title-row{
        align-items:flex-start;
        flex-direction:column;
        gap:14px;
    }

    .hero-callsign{
        width:100%;
    }
}
.hero-video-modal {
    position: fixed;
    inset: 0;

    display: none;
    z-index: 9999;
}

.hero-video-modal.active {
    display: block;
}

.hero-video-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.85);
}

.hero-video-window {
    position: relative;

    width: min(1100px, 92vw);

    margin: 5vh auto;

    background: #111;
    border-radius: 24px;

    overflow: hidden;
}

.hero-video-frame {
    aspect-ratio: 16 / 9;
}

.hero-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-video-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgb(255 255 255);
    color: #000000;
    cursor: pointer;
    font-size: 30px;
}

.hero-video-trigger {
    margin-top: 32px;
}

.hero-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    height: 56px;
    padding: 0 24px;

    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 14px;

    background: rgba(255,255,255,.02);

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    margin-top: 30px;
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}
@media screen and (max-width: 624px){
    .hero-video-btn{
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
        display: flex;
        height: 70px;
    }
    .hero-video-frame{
        aspect-ratio: unset;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .hero-video-window{
        margin: 0;
        padding-top: 5vh;
        width: 100%;
        height: 100%;
    }
    .hero-video-frame iframe{
        height: 80%;
    }
}

.hero-video-btn:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,.08);
    transform: translateY(-2px);
}

.hero-video-btn:active {
    transform: translateY(0);
}

.hero-video-btn::before {
    content: '\25B6';

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

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #d4af37;
    color: #000;

    font-size: 11px;
}