@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;

    background:
    linear-gradient(
        180deg,
        #0b1730 0%,
        #071224 50%,
        #050d1a 100%
    );

    color:white;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(7,18,36,.78);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    height:85px;

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

.logo{
    text-decoration:none;
    color:white;

    font-size:1.5rem;
    font-weight:900;

    letter-spacing:2px;
}

.logo span{
    color:#c8a75d;

    text-shadow:
        0 0 10px rgba(200,167,93,.55),
        0 0 25px rgba(200,167,93,.35);
}

.nav{
    display:flex;
    gap:40px;
}

.nav a{
    color:#cfd7e5;
    text-decoration:none;

    transition:.3s;
}

.nav a:hover{
    color:white;
}

.header-btn{
    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #8f6b24 0%,
        #c8a75d 40%,
        #f4df9b 50%,
        #c8a75d 60%,
        #8f6b24 100%
    );

    color:#08101f;

    padding:14px 24px;

    border-radius:14px;

    font-weight:800;

    box-shadow:
        0 0 20px rgba(200,167,93,.25),
        0 8px 30px rgba(200,167,93,.15);

    transition:.3s;
}

.header-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 0 30px rgba(200,167,93,.4),
        0 10px 35px rgba(200,167,93,.2);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.merch-btn{
    background:transparent;
    color:#c8a75d;
    border:1px solid rgba(200,167,93,.35);
    box-shadow:none;
}

.merch-btn:hover{
    background:rgba(200,167,93,.08);
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(
        circle at top right,
        rgba(200,167,93,.20),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom left,
        rgba(40,90,180,.25),
        transparent 35%
    ),

    linear-gradient(
        180deg,
        #0b1730 0%,
        #071224 50%,
        #050d1a 100%
    );
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.05),
        rgba(0,0,0,.55)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:minmax(0,1fr) 280px;

    gap:60px;
    align-items:center;
}

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

.hero-tag{
    display:inline-block;

    margin-bottom:25px;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.12);

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

    color:#cfd7e5;
}

.hero h1{
    font-size:clamp(4rem,8vw,8rem);

    line-height:.95;

    font-weight:900;

    margin-bottom:30px;
}

.hero h1 span{
    color:#c8a75d;

    text-shadow:
        0 0 12px rgba(200,167,93,.5),
        0 0 30px rgba(200,167,93,.3);
}

.hero p{
    color:#c7d0df;

    max-width:650px;

    font-size:1.15rem;

    line-height:1.8;

    margin-bottom:40px;
}

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

.btn-primary{
    text-decoration:none;
    background:linear-gradient(135deg,#8f6b24 0%,#c8a75d 40%,#f4df9b 50%,#c8a75d 60%,#8f6b24 100%);
    color:#08101f;
    padding:18px 30px;
    border-radius:16px;
    font-weight:800;
    box-shadow:0 0 20px rgba(200,167,93,.25),0 8px 30px rgba(200,167,93,.15);
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    text-decoration:none;
    color:white;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.02);
    padding:18px 30px;
    border-radius:16px;
}

.hero-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:280px;
}

.hero-card{
    padding:40px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.15),
        rgba(33,73,148,.18)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);
}

.card-number{
    font-size:5rem;
    font-weight:900;
    color:#c8a75d;
}

.card-text{
    color:#d4dbea;
    line-height:1.6;
}

/* CONTENT */

.section{
    padding:120px 0;
}

.section-title{
    font-size:3rem;
    font-weight:900;
    margin-bottom:20px;
}

.section-text{
    color:#aeb8ca;
    font-size:1.1rem;
}

/* COACHES */

.coaches-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:30px;

    width:100%;
    max-width:1100px;

    margin:40px auto 0;
}

.coach-card{
    display:grid;
    grid-template-columns:220px 1fr;

    overflow:hidden;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.12),
        rgba(33,73,148,.12)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

    transition:.3s;
}

.coach-card:hover{
    transform:translateY(-5px);
}

.coach-image{
    min-height:320px;
}

.coach-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

.coach-info{
    padding:30px;
}

.coach-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(200,167,93,.15);
    border:1px solid rgba(200,167,93,.25);
    color:#c8a75d;
    font-weight:700;
    margin-bottom:20px;
}

.coach-info h3{
    font-size:2rem;
    margin-bottom:15px;
    font-weight:900;
}

.coach-exp{
    color:#c8a75d;
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:30px;
}

.coach-achievements{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.achievement{
    padding:12px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.coach-contacts{
    margin-top:10px;
}

.social-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:58px;

    text-decoration:none;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #8f6b24 0%,
        #c8a75d 40%,
        #f4df9b 50%,
        #c8a75d 60%,
        #8f6b24 100%
    );

    color:#08101f;

    font-weight:800;
    font-size:1rem;

    box-shadow:
        0 0 20px rgba(200,167,93,.25),
        0 8px 30px rgba(200,167,93,.15);

    transition:.3s;
}

.social-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 0 30px rgba(200,167,93,.4),
        0 10px 35px rgba(200,167,93,.2);
}

.coach-contacts a:hover{
    background:rgba(200,167,93,.12);
    border-color:rgba(200,167,93,.3);
    transform:translateY(-2px);
}

.footer{
    padding:50px 0;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#8f9ab0;
}

/* SPONSORS */

.sponsors-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.sponsor-card{
    height:140px;

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

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.12),
        rgba(33,73,148,.12)
    );

    border:1px solid rgba(255,255,255,.08);

    font-weight:700;
    color:#c8a75d;
}

/* MERCH */

.merch-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.merch-card{
    padding:25px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.12),
        rgba(33,73,148,.12)
    );

    border:1px solid rgba(255,255,255,.08);
}

.merch-image{
    height:260px;

    border-radius:20px;

    margin-bottom:20px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.01)
    );
}

.merch-card h3{
    margin-bottom:20px;
    font-size:1.3rem;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:30px;
    margin-top:50px;
    margin-bottom:40px;
}

.about-card,
.about-block{
    padding:40px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.10),
        rgba(33,73,148,.10)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}

.about-card h3{
    font-size:2rem;
    margin:20px 0;
}

.about-card p,
.about-block p{
    color:#cfd7e5;
    line-height:1.9;
    margin-bottom:20px;
}

.about-label{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(200,167,93,.15);

    border:1px solid rgba(200,167,93,.3);

    color:#c8a75d;

    font-size:.9rem;
    font-weight:800;

    letter-spacing:1px;

    margin-bottom:20px;
}

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

.stat-card{
    padding:35px 20px;

    text-align:center;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.12),
        rgba(33,73,148,.12)
    );

    border:1px solid rgba(255,255,255,.08);
}

.stat-number{
    font-size:3rem;

    font-weight:900;

    color:#c8a75d;

    text-shadow:
        0 0 12px rgba(200,167,93,.4);
}

.stat-text{
    color:#d4dbea;
    margin-top:10px;
}

.about-block{
    margin-top:30px;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.advantage-item{
    padding:18px 20px;

    border-radius:16px;

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

    border:1px solid rgba(255,255,255,.08);

    color:#d4dbea;
}

@media(max-width:900px){

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

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

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

}

.nav-highlight{
    color:#c8a75d !important;

    text-shadow:
        0 0 10px rgba(200,167,93,.45);

    font-weight:700;
}

.nav-highlight:hover{
    color:#f4df9b !important;

    text-shadow:
        0 0 15px rgba(200,167,93,.7);
}

/* TEAM SECTION */

.team-navigation{
    display:flex;
    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.team-nav-item{
    text-decoration:none;

    padding:16px 28px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.15),
        rgba(33,73,148,.15)
    );

    border:1px solid rgba(200,167,93,.25);

    color:#c8a75d;

    font-weight:700;

    transition:.3s;
}

.team-nav-item:hover{
    transform:translateY(-3px);

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.25),
        rgba(33,73,148,.20)
    );

    box-shadow:
        0 0 20px rgba(200,167,93,.25);
}

.team-subsection{
    padding-top:40px;
}

.team-subsection .section-title{
    font-size:2.3rem;
}

/* LOCATIONS */

.locations-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.location-card{
    overflow:hidden;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(200,167,93,.10),
        rgba(33,73,148,.10)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

    transition:.3s;
}

.location-card:hover{
    transform:translateY(-5px);
}

.location-gallery{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;

    padding:12px;
}

.location-gallery img{
    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:22px;

    display:block;
}

.location-info{
    padding:30px;
}

.location-info h3{
    font-size:2rem;
    font-weight:900;
    margin-bottom:18px;
}

.location-info p{
    color:#cfd7e5;
    line-height:1.8;
    margin-bottom:12px;
}

.location-age{
    margin:24px 0;

    padding:16px 18px;

    border-radius:16px;

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

    border:1px solid rgba(200,167,93,.22);

    color:#c8a75d;

    font-weight:800;
}

.location-gallery img:nth-child(n+2){
    height:135px;
}

.location-gallery:has(img:nth-child(2)){
    grid-template-columns:2fr 1fr;
}

.location-gallery:has(img:nth-child(2)) img:first-child{
    grid-row:span 2;
    height:100%;
    min-height:280px;
}

@media(max-width:900px){

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

    .location-gallery:has(img:nth-child(2)){
        grid-template-columns:1fr;
    }

    .location-gallery:has(img:nth-child(2)) img:first-child{
        height:280px;
        min-height:auto;
    }

    .location-gallery img:nth-child(n+2){
        height:180px;
    }

}

/* MOBILE */

@media(max-width:900px){

    .nav{
        display:none;
    }

    .hero-content{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-cards{
        width:100%;
    }

    .hero-card{
        width:100%;
    }

    .hero h1{
        font-size:4rem;
    }

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

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

    .coach-image{
        height:350px;
        min-height:auto;
    }

    .coach-contacts{
    grid-template-columns:1fr;
}

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

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

}


/* =========================================================
   TITAN FINAL RESPONSIVE REBUILD
   This block intentionally overrides earlier mobile attempts.
   ========================================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

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

body{
    min-width:0;
}

img,
video,
iframe{
    max-width:100%;
}

.container{
    width:100%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    padding-left:20px;
    padding-right:20px;
}

.hero-content,
.about-grid,
.stats-grid,
.locations-grid,
.coaches-grid,
.sponsors-grid,
.merch-grid,
.contacts-grid,
.news-card,
.social-links-grid,
.advantages-grid{
    min-width:0;
}

.hero-content > *,
.about-grid > *,
.locations-grid > *,
.coaches-grid > *,
.sponsors-grid > *,
.merch-grid > *,
.contacts-grid > *,
.news-card > *{
    min-width:0;
}

/* LOCATION GALLERY VARIANTS */

.location-gallery{
    display:grid;
    gap:10px;
    padding:12px;
}

.location-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:22px;
}

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

.gallery-1 img{
    height:320px;
}

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

.gallery-2 img{
    height:280px;
}

.gallery-3{
    grid-template-columns:2fr 1fr;
    grid-template-rows:1fr 1fr;
}

.gallery-3 img:first-child{
    grid-row:span 2;
    height:360px;
}

.gallery-3 img:not(:first-child){
    height:175px;
}

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

.gallery-4 img{
    height:180px;
}

/* TEAM / MERCH NAVIGATION */

.merch-navigation{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.merch-nav-item{
    text-decoration:none;
    padding:16px 28px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(200,167,93,.15),rgba(33,73,148,.15));
    border:1px solid rgba(200,167,93,.25);
    color:#c8a75d;
    font-weight:700;
    transition:.3s;
}

.merch-nav-item:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(200,167,93,.25);
}

.merch-subsection{
    padding-top:40px;
}

.merch-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.merch-category{
    display:inline-block;
    margin-bottom:14px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(200,167,93,.14);
    border:1px solid rgba(200,167,93,.28);
    color:#c8a75d;
    font-size:.85rem;
    font-weight:800;
}

.merch-card p{
    color:#cfd7e5;
    line-height:1.7;
    margin-bottom:22px;
}

.merch-image{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8a75d;
    font-weight:800;
    border:1px solid rgba(255,255,255,.08);
}

.merch-card{
    transition:.3s;
}

.merch-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

/* NEWS */

.news-card{
    margin-top:50px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 540px;
    gap:40px;
    align-items:stretch;
    padding:40px;
    border-radius:30px;
    background:
        radial-gradient(circle at top left,rgba(200,167,93,.16),transparent 32%),
        linear-gradient(135deg,rgba(200,167,93,.10),rgba(33,73,148,.10));
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

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

.news-info h3{
    font-size:2.7rem;
    font-weight:900;
    margin-bottom:20px;
}

.news-info p{
    color:#cfd7e5;
    line-height:1.8;
    font-size:1.1rem;
    margin-bottom:30px;
    max-width:520px;
}

.news-points{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:30px;
}

.news-points div{
    padding:16px;
    text-align:center;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(200,167,93,.20);
    color:#c8a75d;
    font-weight:800;
}

.facebook-frame{
    width:540px;
    max-width:100%;
    display:flex;
    justify-content:center;
    padding:18px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.facebook-frame iframe{
    width:500px !important;
    max-width:100% !important;
    border-radius:16px;
}

/* MODAL */

.modal{
    position:fixed;
    inset:0;
    z-index:5000;
    opacity:0;
    pointer-events:none;
    transition:.3s;
}

.modal:target{
    opacity:1;
    pointer-events:auto;
}

.modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(3,8,18,.75);
    backdrop-filter:blur(10px);
}

.modal-window{
    position:absolute;
    top:50%;
    left:50%;
    width:min(560px,90%);
    transform:translate(-50%,-45%) scale(.95);
    padding:45px;
    border-radius:30px;
    background:
        radial-gradient(circle at top right,rgba(200,167,93,.20),transparent 35%),
        linear-gradient(135deg,rgba(11,23,48,.98),rgba(5,13,26,.98));
    border:1px solid rgba(200,167,93,.25);
    box-shadow:0 0 40px rgba(200,167,93,.18),0 25px 80px rgba(0,0,0,.55);
    transition:.3s;
}

.modal:target .modal-window{
    transform:translate(-50%,-50%) scale(1);
}

.modal-close{
    position:absolute;
    top:18px;
    right:22px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:50%;
    color:#c8a75d;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:1.6rem;
    line-height:1;
    transition:.3s;
}

.modal-close:hover{
    background:rgba(200,167,93,.14);
    transform:rotate(90deg);
}

.modal-window h2{
    font-size:2.4rem;
    font-weight:900;
    margin-bottom:20px;
}

.modal-window p{
    color:#cfd7e5;
    line-height:1.8;
    margin-bottom:18px;
}

.modal-actions{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:25px;
}

.modal-phone,
.modal-telegram{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:60px;
    text-decoration:none;
    border-radius:16px;
    font-weight:900;
    font-size:1.05rem;
    transition:.3s;
    cursor:pointer;
    font-family:inherit;
}

.modal-phone{
    border:0;
    background:linear-gradient(135deg,#8f6b24 0%,#c8a75d 40%,#f4df9b 50%,#c8a75d 60%,#8f6b24 100%);
    color:#08101f;
    box-shadow:0 0 25px rgba(200,167,93,.28),0 10px 35px rgba(200,167,93,.16);
}

.modal-phone:hover,
.modal-telegram:hover{
    transform:translateY(-3px);
}

.modal-telegram{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:white;
}

.modal-telegram:hover{
    background:rgba(34,158,217,.12);
    border-color:rgba(34,158,217,.35);
    box-shadow:0 0 25px rgba(34,158,217,.18);
}

/* CONTACTS */

.contacts-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:50px;
}

.contacts-card{
    padding:40px;
    border-radius:30px;
    background:linear-gradient(135deg,rgba(200,167,93,.10),rgba(33,73,148,.10));
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.contacts-card h3{
    font-size:2rem;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px 24px;
    margin-bottom:16px;
    text-decoration:none;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:white;
    transition:.3s;
}

.contact-item:hover{
    transform:translateY(-3px);
    border-color:rgba(200,167,93,.25);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.contact-icon{
    width:55px;
    height:55px;
    flex:0 0 55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(200,167,93,.12);
    font-size:1.5rem;
}

.contact-item span{
    display:block;
    color:#aeb8ca;
    margin-bottom:5px;
}

.contact-item strong{
    font-size:1.1rem;
}

.social-links-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.social-contact{
    margin:0;
}

.social-contact span{
    color:white;
    margin:0;
}

.social-logo{
    background:linear-gradient(135deg,#8f6b24 0%,#c8a75d 40%,#f4df9b 50%,#c8a75d 60%,#8f6b24 100%);
    color:#08101f;
    font-weight:900;
    letter-spacing:1px;
    font-size:1rem;
    box-shadow:0 0 15px rgba(200,167,93,.2);
}

.toast{
    position:fixed;
    bottom:30px;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    padding:16px 28px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(11,23,48,.95),rgba(5,13,26,.95));
    border:1px solid rgba(200,167,93,.25);
    color:white;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:9999;
}

.toast.show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

/* MOBILE MENU */

.burger-btn{
    display:none;
    width:46px;
    height:46px;
    flex:0 0 46px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(200,167,93,.25);
    text-decoration:none;
}

.burger-btn span{
    width:22px;
    height:2px;
    border-radius:10px;
    background:#c8a75d;
    box-shadow:0 0 10px rgba(200,167,93,.45);
}

.mobile-menu{
    position:fixed;
    inset:0;
    z-index:6000;
    opacity:0;
    pointer-events:none;
    overflow:hidden;
    transition:.3s;
}

.mobile-menu:target{
    opacity:1;
    pointer-events:auto;
}

.mobile-menu-overlay{
    position:absolute;
    inset:0;
    background:rgba(3,8,18,.78);
    backdrop-filter:blur(10px);
}

.mobile-menu-window{
    position:absolute;
    top:0;
    right:0;
    width:min(360px,88%);
    height:100%;
    padding:35px 25px;
    background:
        radial-gradient(circle at top right,rgba(200,167,93,.20),transparent 35%),
        linear-gradient(180deg,rgba(11,23,48,.98),rgba(5,13,26,.98));
    border-left:1px solid rgba(200,167,93,.25);
    box-shadow:-20px 0 60px rgba(0,0,0,.45);
    transform:translateX(100%);
    transition:.3s;
}

.mobile-menu:target .mobile-menu-window{
    transform:translateX(0);
}

.mobile-menu-close{
    position:absolute;
    top:18px;
    right:20px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    color:#c8a75d;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:1.6rem;
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:25px;
    margin-bottom:30px;
}

.mobile-nav a{
    padding:18px 20px;
    text-decoration:none;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:white;
    font-weight:800;
}

.mobile-nav a:hover{
    color:#c8a75d;
    border-color:rgba(200,167,93,.25);
}

.mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:58px;
    text-decoration:none;
    border-radius:16px;
    background:linear-gradient(135deg,#8f6b24 0%,#c8a75d 40%,#f4df9b 50%,#c8a75d 60%,#8f6b24 100%);
    color:#08101f;
    font-weight:900;
}

/* CLEAN MOBILE LAYOUT FROM SCRATCH */

@media(max-width:900px){

    .container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .header{
        overflow:visible;
    }

    .header .container{
        width:100%;
        max-width:100%;
        height:72px;
        padding-left:14px;
        padding-right:14px;
        gap:10px;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .nav,
    .header-actions{
        display:none !important;
    }

    .burger-btn{
        display:flex !important;
    }

    .logo{
        min-width:0;
        flex:1 1 auto;
        gap:9px !important;
        overflow:hidden;
    }

    .logo-img{
        width:44px !important;
        height:44px !important;
        flex:0 0 44px;
    }

    .logo-text-wrap{
        min-width:0;
        overflow:hidden;
    }

    .logo-text-wrap .logo-sc{
        font-size:.54rem !important;
        letter-spacing:1.4px !important;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .logo-text-wrap .logo-titan{
        font-size:1.12rem !important;
        white-space:nowrap;
    }

    .section{
        padding:76px 0;
        overflow:hidden;
    }

    .section-title{
        font-size:clamp(2rem,9vw,2.35rem);
        line-height:1.05;
        overflow-wrap:break-word;
    }

    .section-text{
        font-size:1rem;
        line-height:1.7;
    }

    .hero{
        min-height:auto;
        padding-top:108px;
        padding-bottom:70px;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:30px;
    }

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

    .hero-tag{
        max-width:100%;
        white-space:normal;
        font-size:.78rem;
        line-height:1.45;
        padding:9px 14px;
    }

    .hero h1{
        width:100%;
        max-width:100%;
        font-size:clamp(2.25rem,11vw,3rem) !important;
        line-height:1.04 !important;
        letter-spacing:-.04em;
        margin-bottom:24px;
        overflow-wrap:break-word;
        word-break:normal;
    }

    .hero h1 span{
        display:block;
    }

    .hero p{
        max-width:100%;
        font-size:1rem;
        line-height:1.7;
        margin-bottom:30px;
    }

    .hero-actions{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:100%;
        text-align:center;
        padding:16px 18px;
    }

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

    .hero-card{
        width:100%;
        max-width:100%;
        padding:26px;
    }

    .card-number{
        font-size:3.3rem;
    }

    .about-grid,
    .locations-grid,
    .coaches-grid,
    .contacts-grid,
    .news-card,
    .merch-grid{
        grid-template-columns:1fr !important;
        gap:24px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .sponsors-grid,
    .social-links-grid,
    .advantages-grid{
        grid-template-columns:1fr !important;
    }

    .about-card,
    .about-block,
    .contacts-card,
    .news-card,
    .merch-card{
        width:100%;
        max-width:100%;
        padding:24px;
    }

    .location-card,
    .coach-card{
        width:100%;
        max-width:100%;
    }

    .location-info,
    .coach-info{
        padding:24px;
    }

    .coach-card{
        grid-template-columns:1fr !important;
    }

    .coach-image{
        height:330px;
        min-height:auto;
    }

    .team-navigation,
    .merch-navigation{
        gap:12px;
    }

    .team-nav-item,
    .merch-nav-item{
        width:100%;
        text-align:center;
        padding:15px 18px;
    }

    .gallery-1,
    .gallery-2,
    .gallery-3,
    .gallery-4,
    .location-gallery:has(img:nth-child(2)){
        grid-template-columns:1fr !important;
        grid-template-rows:auto !important;
    }

    .gallery-1 img,
    .gallery-2 img,
    .gallery-3 img:first-child,
    .gallery-3 img:not(:first-child),
    .gallery-4 img,
    .location-gallery img,
    .location-gallery img:nth-child(n+2),
    .location-gallery:has(img:nth-child(2)) img:first-child{
        height:220px !important;
        min-height:0 !important;
        grid-row:auto !important;
    }

    .news-card{
        display:grid;
        margin-top:40px;
        overflow:hidden;
    }

    .news-info h3{
        font-size:2rem;
        line-height:1.15;
    }

    .news-points{
        grid-template-columns:1fr;
    }

    .facebook-frame{
        width:100%;
        max-width:100%;
        padding:10px;
    }

    .facebook-frame iframe{
        width:100% !important;
        max-width:100% !important;
    }

    .contact-item{
        padding:16px;
        gap:14px;
    }

    .contact-icon{
        width:48px;
        height:48px;
        flex-basis:48px;
        font-size:1rem;
    }

    .contact-item strong{
        font-size:1rem;
    }

    .modal-window{
        width:calc(100% - 32px);
        max-width:560px;
        padding:30px 22px;
    }

    .modal-window h2{
        font-size:2rem;
    }

    .toast{
        width:calc(100% - 32px);
        max-width:420px;
        text-align:center;
    }
}

@media(max-width:380px){

    .container{
        padding-left:14px;
        padding-right:14px;
    }

    .logo-text-wrap .logo-sc{
        display:none;
    }

    .logo-text-wrap .logo-titan{
        font-size:1.05rem !important;
    }

    .hero h1{
        font-size:clamp(2rem,10.5vw,2.55rem) !important;
    }

    .about-card,
    .about-block,
    .contacts-card,
    .news-card,
    .merch-card{
        padding:22px;
    }

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


/* DYNAMIC MERCH IMAGES */

.merch-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:20px;
}

.merch-empty-card .social-btn{
    display:none;
}


/* ADMIN DYNAMIC CONTENT FIXES */
.merch-image img,
.sponsor-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    display:block;
}
.sponsor-card{
    text-decoration:none;
    flex-direction:column;
    gap:10px;
    text-align:center;
}
.sponsor-card img{
    width:100%;
    max-width:150px;
    height:70px;
    object-fit:contain;
    border-radius:12px;
}
.sponsor-card-link:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(200,167,93,.18);
}
.location-placeholder{
    height:280px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8a75d;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    font-weight:800;
}
.location-gallery.gallery-1{grid-template-columns:1fr;}
.location-gallery.gallery-1 img{height:320px;}
.location-gallery.gallery-2{grid-template-columns:repeat(2,1fr);}
.location-gallery.gallery-2 img{height:280px;}
.location-gallery.gallery-3{grid-template-columns:2fr 1fr;grid-template-rows:1fr 1fr;}
.location-gallery.gallery-3 img:first-child{grid-row:span 2;height:360px;}
.location-gallery.gallery-3 img:not(:first-child){height:175px;}
.location-gallery.gallery-4{grid-template-columns:repeat(2,1fr);}
.location-gallery.gallery-4 img{height:180px;}
@media(max-width:900px){
    .location-gallery.gallery-2,
    .location-gallery.gallery-3,
    .location-gallery.gallery-4{grid-template-columns:1fr;grid-template-rows:auto;}
    .location-gallery.gallery-1 img,
    .location-gallery.gallery-2 img,
    .location-gallery.gallery-3 img:first-child,
    .location-gallery.gallery-3 img:not(:first-child),
    .location-gallery.gallery-4 img,
    .location-placeholder{height:220px;}
}


/* STAGE 5: MULTI PHOTO GALLERIES */

.dynamic-photo-placeholder{
    width:100%;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:#c8a75d;
    font-weight:800;
}

.merch-gallery,
.coach-gallery,
.location-gallery{
    display:grid;
    gap:10px;
    width:100%;
}

.merch-gallery{
    margin-bottom:20px;
}

.merch-gallery img,
.coach-gallery img,
.location-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:20px;
}

.merch-gallery.gallery-1,
.coach-gallery.gallery-1,
.location-gallery.gallery-1{
    grid-template-columns:1fr;
}

.merch-gallery.gallery-1 img,
.coach-gallery.gallery-1 img,
.location-gallery.gallery-1 img{
    height:300px;
}

.merch-gallery.gallery-2,
.coach-gallery.gallery-2,
.location-gallery.gallery-2{
    grid-template-columns:repeat(2,1fr);
}

.merch-gallery.gallery-2 img,
.coach-gallery.gallery-2 img,
.location-gallery.gallery-2 img{
    height:230px;
}

.merch-gallery.gallery-3,
.coach-gallery.gallery-3,
.location-gallery.gallery-3{
    grid-template-columns:2fr 1fr;
    grid-template-rows:1fr 1fr;
}

.merch-gallery.gallery-3 img:first-child,
.coach-gallery.gallery-3 img:first-child,
.location-gallery.gallery-3 img:first-child{
    grid-row:span 2;
    height:330px;
}

.merch-gallery.gallery-3 img:not(:first-child),
.coach-gallery.gallery-3 img:not(:first-child),
.location-gallery.gallery-3 img:not(:first-child){
    height:160px;
}

.merch-gallery.gallery-4,
.coach-gallery.gallery-4,
.location-gallery.gallery-4{
    grid-template-columns:repeat(2,1fr);
}

.merch-gallery.gallery-4 img,
.coach-gallery.gallery-4 img,
.location-gallery.gallery-4 img{
    height:165px;
}

.coach-card .coach-gallery{
    min-height:320px;
    height:100%;
}

.coach-card .coach-gallery.gallery-1 img,
.coach-card .coach-gallery.gallery-2 img,
.coach-card .coach-gallery.gallery-3 img:first-child,
.coach-card .coach-gallery.gallery-3 img:not(:first-child),
.coach-card .coach-gallery.gallery-4 img{
    height:100%;
    min-height:320px;
}

@media(max-width:900px){

    .merch-gallery.gallery-2,
    .merch-gallery.gallery-3,
    .merch-gallery.gallery-4,
    .coach-gallery.gallery-2,
    .coach-gallery.gallery-3,
    .coach-gallery.gallery-4,
    .location-gallery.gallery-2,
    .location-gallery.gallery-3,
    .location-gallery.gallery-4{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .merch-gallery.gallery-1 img,
    .merch-gallery.gallery-2 img,
    .merch-gallery.gallery-3 img:first-child,
    .merch-gallery.gallery-3 img:not(:first-child),
    .merch-gallery.gallery-4 img,
    .coach-gallery.gallery-1 img,
    .coach-gallery.gallery-2 img,
    .coach-gallery.gallery-3 img:first-child,
    .coach-gallery.gallery-3 img:not(:first-child),
    .coach-gallery.gallery-4 img,
    .location-gallery.gallery-1 img,
    .location-gallery.gallery-2 img,
    .location-gallery.gallery-3 img:first-child,
    .location-gallery.gallery-3 img:not(:first-child),
    .location-gallery.gallery-4 img,
    .dynamic-photo-placeholder{
        height:230px;
        min-height:230px;
    }

    .coach-card .coach-gallery{
        min-height:auto;
        height:auto;
    }

}


/* FINAL RELEASE: FAVICON + FEDERATION FOOTER LOGO */

.footer .container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.federation-logo{
    width:100%;
    margin-top:18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:10px;
}

.fed-logo{
    width:auto !important;
    height:42px !important;
    max-width:160px !important;
    object-fit:contain !important;
    display:block;
    border-radius:0 !important;
    filter:none !important;
    opacity:1 !important;
    mix-blend-mode:normal !important;
    box-shadow:none !important;
    background:transparent !important;
}

.federation-logo p{
    max-width:520px;
    margin:0 auto;
    color:#8f9ab0;
    font-size:.82rem;
    line-height:1.5;
}

.fed-logo:hover{
    transform:scale(1.04);
}

@media(max-width:900px){
    .fed-logo{
        height:36px !important;
        max-width:140px !important;
    }

    .federation-logo p{
        font-size:.78rem;
        padding:0 16px;
    }
}


/* STAGE 8: ORDER MODAL, CONTACT MODAL AND IMAGE LIGHTBOX */

.openable-image{
    cursor:zoom-in;
    transition:transform .3s ease, filter .3s ease;
}

.openable-image:hover{
    transform:scale(1.02);
    filter:brightness(1.08);
}

.hidden-action{
    display:none !important;
}

.no-scroll{
    overflow:hidden;
}

.image-lightbox{
    position:fixed;
    inset:0;
    z-index:8000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
}

.image-lightbox.is-open{
    opacity:1;
    pointer-events:auto;
}

.image-lightbox-overlay{
    position:absolute;
    inset:0;
    border:0;
    background:rgba(3,8,18,.86);
    backdrop-filter:blur(12px);
    cursor:pointer;
}

.image-lightbox-window{
    position:relative;
    z-index:1;
    width:min(1100px,96vw);
    max-height:92vh;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:26px;
    border:1px solid rgba(200,167,93,.25);
    background:rgba(255,255,255,.04);
    box-shadow:0 25px 80px rgba(0,0,0,.55),0 0 40px rgba(200,167,93,.15);
    overflow:hidden;
}

.image-lightbox-window img{
    width:100%;
    height:100%;
    max-height:92vh;
    object-fit:contain;
    display:block;
}

.image-lightbox-close{
    position:absolute;
    top:14px;
    right:14px;
    z-index:2;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(5,13,26,.78);
    color:#c8a75d;
    font-size:1.8rem;
    line-height:1;
    cursor:pointer;
    transition:.3s;
}

.image-lightbox-close:hover{
    transform:rotate(90deg);
    background:rgba(200,167,93,.14);
}

@media(max-width:900px){
    .image-lightbox{
        padding:14px;
    }

    .image-lightbox-window{
        width:100%;
        border-radius:20px;
    }
}

.hero h1{
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero h1 span{
    white-space: nowrap;
}

@media(max-width:900px){
    .hero h1{
        font-size: clamp(2.1rem, 10vw, 3rem) !important;
        letter-spacing: -0.04em;
    }
}

.fed-logo,
.federation-logo img{
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
}

/* DEVELOPER CREDIT */

.site-credit{
    margin-top:14px;
    font-size:.85rem;
    color:#7f8aa0;
}

.site-credit a{
    color:#c8a75d;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.site-credit a:hover{
    color:#f4df9b;
    text-shadow:0 0 10px rgba(200,167,93,.5);
}