:root {
    --gym-black: #050708;
    --gym-black-soft: #0b0e10;
    --gym-yellow: #ff6600;
    --gym-yellow-bright: #ff6600;
    --gym-white: #ffffff;
    --gym-muted: #aeb2b5;
    --gym-border: rgba(255, 255, 255, 0.11);
}

body {
    background: #fff;
    color: #111;
}

.gym-shell {
    width: min(100% - 48px, 1410px);
    margin-inline: auto;
}

.gym-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 96px;
    background: var(--gym-black);
    color: var(--gym-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.gym-scroll-top {
    position: fixed;
    z-index: 1100;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid #ff6600;
    border-radius: 5px;
    background: var(--gym-yellow);
    color: #090b0c;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}
.gym-scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gym-scroll-top:hover { background: #fff; }
.gym-scroll-top svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }

.gym-header__inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.gym-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--gym-white);
    text-decoration: none;
    flex: 0 0 auto;
}

.gym-brand:hover { color: var(--gym-white); text-decoration: none; }
.gym-brand__mark { width: 36px; height: 43px; color: var(--gym-yellow); }
.gym-brand__image { width: auto; max-width: 190px; height: 58px; object-fit: contain; }
.gym-brand__copy { display: flex; flex-direction: column; line-height: 1; }
.gym-brand__copy strong { font-size: 32px; font-weight: 900; letter-spacing: -.04em; }
.gym-brand__copy small { margin-top: 5px; font-size: 7px; font-weight: 800; letter-spacing: .08em; }

.gym-navigation {
    margin-left: auto;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 34px;
}

.gym-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #f3f3f3;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.gym-navigation a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 3px;
    background: var(--gym-yellow);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.gym-navigation a:hover,
.gym-navigation a.is-active { color: var(--gym-yellow); text-decoration: none; }
.gym-navigation a:hover::after,
.gym-navigation a.is-active::after { transform: scaleX(1); }

.gym-button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--gym-yellow-bright), #ff6600);
    color: #050505;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(253, 187, 18, .14);
}

.gym-button:hover { color: #050505; text-decoration: none; filter: brightness(1.06); }
.gym-header__cta { min-width: 166px; }
.gym-menu-toggle, .gym-menu-button { display: none; }

.gym-footer-cta {
    position: relative;
    overflow: hidden;
    color: var(--gym-white);
    background:
        linear-gradient(90deg, rgba(3, 6, 7, .98) 0%, rgba(3, 6, 7, .92) 58%, rgba(3, 6, 7, .76) 100%),
        radial-gradient(circle at 85% 30%, #303438, #080a0b 50%);
    border-top: 3px solid var(--gym-yellow);
    border-bottom: 1px solid rgba(253, 187, 18, .28);
}

.gym-footer-cta::after {
    content: '';
    position: absolute;
    top: -70%;
    right: 8%;
    width: 340px;
    height: 260%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(253, 187, 18, .2), transparent);
}

.gym-footer-cta__inner {
    position: relative;
    z-index: 1;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gym-footer-cta h2 {
    margin: 0 0 14px;
    color: var(--gym-white);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.gym-footer-cta p { margin: 0; color: #e1e2e3; font-size: 17px; }

.gym-footer {
    padding: 54px 0 0;
    background: linear-gradient(135deg, #090c0e, #030506);
    color: var(--gym-muted);
}

.gym-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr .85fr 1.35fr;
    gap: 70px;
    padding-bottom: 50px;
}

.gym-footer h3 {
    margin: 8px 0 26px;
    color: var(--gym-white);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.gym-footer p { margin: 0 0 10px; color: var(--gym-muted); font-size: 14px; line-height: 1.75; }
.gym-footer ul { margin: 0; padding: 0; list-style: none; }
.gym-footer li { margin-bottom: 13px; }
.gym-footer a { color: var(--gym-muted); text-decoration: none; }
.gym-footer a:hover { color: var(--gym-yellow); text-decoration: none; }
.gym-footer__about > p:first-of-type { margin-top: 23px; }

.gym-socials { display: flex; gap: 12px; margin-top: 22px; }
.gym-socials a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gym-white);
    font-size: 16px;
    font-weight: 800;
}
.gym-socials svg { width: 18px; height: 18px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gym-socials svg .is-filled { fill: currentColor; stroke: none; }
.gym-socials a[aria-label="Facebook"] svg { fill: currentColor; stroke: none; }

.gym-footer__contact p { display: flex; align-items: flex-start; gap: 13px; }
.gym-footer__contact p > span:first-child { min-width: 18px; color: var(--gym-white); font-size: 18px; }

.gym-footer__bottom {
    min-height: 82px;
    border-top: 1px solid var(--gym-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gym-footer__bottom p { margin: 0; }
.gym-footer__bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.gym-footer__bottom nav a { padding: 0 18px; border-right: 1px solid var(--gym-border); }
.gym-footer__bottom nav a:last-child { padding-right: 0; border-right: 0; }

@media (max-width: 1150px) {
    .gym-header__inner { gap: 24px; }
    .gym-navigation { gap: 20px; }
    .gym-navigation a { font-size: 12px; }
    .gym-header__cta { min-width: auto; padding-inline: 20px; }
    .gym-footer__grid { gap: 35px; }
}

@media (max-width: 900px) {
    .gym-shell { width: min(100% - 32px, 1410px); }
    .gym-header, .gym-header__inner { min-height: 78px; }
    .gym-header__inner { justify-content: space-between; }
    .gym-brand__mark { width: 30px; height: 36px; }
    .gym-brand__image { max-width: 155px; height: 48px; }
    .gym-brand__copy strong { font-size: 26px; }
    .gym-header__cta { display: none; }
    label.gym-menu-button {
        width: 42px;
        height: 42px;
        margin-left: auto;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }
    .gym-menu-button span { width: 25px; height: 2px; background: var(--gym-white); transition: .2s ease; }
    .gym-navigation {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #080a0b;
        transition: max-height .25s ease, padding .25s ease;
        box-shadow: 0 18px 30px rgba(0,0,0,.35);
    }
    .gym-navigation a { min-height: 54px; border-bottom: 1px solid var(--gym-border); }
    .gym-navigation a::after { right: auto; bottom: 0; width: 38px; }
    .gym-menu-toggle:checked ~ .gym-navigation { max-height: 390px; padding-top: 8px; padding-bottom: 16px; }
    .gym-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .gym-footer-cta__inner { min-height: 240px; padding-block: 42px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 28px; }
    .gym-footer-cta p { font-size: 15px; }
    .gym-footer__grid { grid-template-columns: 1fr; gap: 34px; }
    .gym-footer__bottom { padding: 25px 0; align-items: flex-start; flex-direction: column; }
    .gym-footer__bottom nav { justify-content: flex-start; gap: 10px 0; }
    .gym-footer__bottom nav a { padding-left: 0; padding-right: 13px; margin-right: 13px; }
    .gym-scroll-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

.gym-cookie {
    position: fixed;
    z-index: 6000;
    right: 24px;
    bottom: 24px;
    left: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    background: rgba(8,11,13,.97);
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.38);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .25s ease, transform .25s ease;
}
.gym-cookie[hidden] { display: none; }
.gym-cookie.is-visible { opacity: 1; transform: translateY(0); }
.gym-cookie__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid var(--gym-yellow); border-radius: 50%; color: var(--gym-yellow); font-size: 28px; }
.gym-cookie h2 { margin: 0 0 7px; color: #fff; font-size: 17px; font-weight: 900; text-transform: uppercase; }
.gym-cookie p { margin: 0; color: #c9ccce; font-size: 13px; line-height: 1.55; }
.gym-cookie p a { color: var(--gym-yellow); text-decoration: underline; }
.gym-cookie__actions { display: flex; gap: 10px; }
.gym-cookie button { min-height: 42px; padding: 0 18px; border-radius: 4px; font-size: 11px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.gym-cookie__reject { border: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff; }
.gym-cookie__accept { border: 1px solid var(--gym-yellow); background: var(--gym-yellow); color: #080a0b; }
.gym-cookie button:hover { filter: brightness(1.08); }

@media (max-width: 780px) {
    .gym-cookie { grid-template-columns: 40px 1fr; }
    .gym-cookie__icon { width: 40px; height: 40px; font-size: 23px; }
    .gym-cookie__actions { grid-column: 1 / -1; justify-content: flex-end; }
}

@media (max-width: 520px) {
    .gym-cookie { right: 12px; bottom: 12px; left: 12px; padding: 18px; display: block; }
    .gym-cookie__icon { margin-bottom: 13px; }
    .gym-cookie__actions { margin-top: 16px; display: grid; grid-template-columns: 1fr; }
    .gym-cookie button { width: 100%; }
}
