:root {
    --bg: #07111f;
    --bg-soft: #0f1f33;
    --ice: #e9f7ff;
    --white: #ffffff;
    --muted: #6d7a8a;
    --text: #172033;
    --blue: #42b7ff;
    --blue-dark: #0b79c8;
    --pink: #e43f7f;
    --silver: #dcefff;
    --gold: #d9c38f;
    --navy: #030b18;
    --shadow: 0 24px 60px rgba(5, 20, 40, 0.18);
    --luxury-shadow: 0 28px 80px rgba(3, 12, 28, 0.32);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: #f7fbff;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(6, 18, 34, 0.80);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    overflow: visible;
}


.header-snow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.header-snow .snowflake {
    position: absolute;
    color: rgba(225, 248, 255, 0.92);
    line-height: 1;
    opacity: 0;
    filter:
        drop-shadow(0 0 6px rgba(188, 239, 255, 0.95))
        drop-shadow(0 0 14px rgba(116, 211, 255, 0.62));
    animation: headerSnowFade linear infinite;
}

@keyframes headerSnowFade {
    0% {
        transform: translate3d(0, 10px, 0) rotate(0deg) scale(0.74);
        opacity: 0;
    }
    18% {
        opacity: 0.9;
    }
    52% {
        transform: translate3d(8px, -4px, 0) rotate(42deg) scale(1);
        opacity: 0.78;
    }
    82% {
        opacity: 0.28;
    }
    100% {
        transform: translate3d(-5px, -20px, 0) rotate(90deg) scale(0.82);
        opacity: 0;
    }
}

.navbar {
    position: relative;
    z-index: 2;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--white);
    flex: 0 0 auto;
    min-width: 0;
}

.brand-logo-img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(223, 248, 255, 0.28);
    box-shadow: 0 0 20px rgba(150, 232, 255, 0.34), 0 12px 26px rgba(0,0,0,0.22);
}

.brand-copy {
    display: block;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.08;
}

.brand strong {
    font-size: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(170, 236, 255, 0.24);
}

.brand small {
    opacity: 0.88;
    font-size: 11px;
    margin-top: 5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(238, 248, 255, 0.92);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    flex: 0 0 auto;
}

.nav-links a {
    padding: 10px 11px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.2s ease;
}

.nav-links a:hover,
.nav-cta {
    background: rgba(255,255,255,0.13);
}

.nav-cta {
    border: 1px solid rgba(255,255,255,0.18);
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 999px;
}

.menu-btn.active {
    background: rgba(66, 183, 255, 0.25);
    box-shadow: 0 0 18px rgba(150, 232, 255, 0.24);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(66,183,255,0.42), transparent 32%),
        linear-gradient(90deg, rgba(5,14,28,0.88), rgba(5,14,28,0.55), rgba(5,14,28,0.28));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 80px;
    max-width: 1180px;
}

.eyebrow,
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 12px;
    color: var(--blue);
}

.hero h1,
.hero-title {
    font-size: clamp(52px, 8vw, 112px);
    line-height: 0.92;
    margin: 14px 0 24px;
    letter-spacing: -0.075em;
}

.hero-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-brand-top {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 235, 255, 0.28), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: 0 0 22px rgba(133, 225, 255, 0.25), inset 0 0 14px rgba(255,255,255,0.12);
}

.hero-brand-divider {
    opacity: 0.82;
    text-shadow: 0 0 18px rgba(156, 236, 255, 0.4);
}

.hero-brand-bottom {
    display: inline-block;
    text-shadow: 0 0 20px rgba(157, 237, 255, 0.22);
}

.hero-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    max-width: 680px;
    color: rgba(255,255,255,0.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 16px 32px rgba(25, 145, 230, 0.35);
}

.btn-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.full-btn {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-top: 54px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.11);
    backdrop-filter: blur(12px);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 22px;
}

.hero-stats span {
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
    font-size: 13px;
}

.section {
    padding: 98px 0;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.section h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.055em;
    margin: 12px 0 18px;
}

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

.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.about {
    background:
        linear-gradient(180deg, #f7fbff 0%, #e9f7ff 100%);
}

.glass-card,
.program-card,
.video-card,
.contact-form {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 34px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.9);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(12,31,51,0.08);
}

.check-list li::before {
    content: '✓';
    color: var(--blue-dark);
    font-weight: 900;
}

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

.program-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #e8f0f7;
    transition: transform 0.25s ease;
}

.program-card:hover {
    transform: translateY(-6px);
}

.program-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #e9f7ff;
    font-size: 27px;
}

.program-card h3 {
    font-size: 22px;
    margin: 22px 0 10px;
}

.program-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--blue-dark);
    font-weight: 800;
}

.learn {
    color: #fff;
    background:
        radial-gradient(circle at 85% 25%, rgba(228,63,127,0.34), transparent 28%),
        linear-gradient(135deg, #07111f, #0f2745 62%, #07111f);
}

.dark-heading p:not(.section-kicker) {
    color: rgba(255,255,255,0.72);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.video-card {
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(122, 219, 255, 0.16), transparent 45%),
        linear-gradient(145deg, #020813, #071a2f 55%, #020813);
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(22px) brightness(0.56) saturate(1.22);
    transform: scale(1.18);
    opacity: 0.92;
    pointer-events: none;
}

.video-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: transparent;
}

.video-info {
    padding: 24px;
}

.video-info h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.video-info p {
    color: rgba(255,255,255,0.72);
    margin: 0;
}

.gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 0;
    padding: 0;
    border-radius: 28px;
    background: #dbeaf5;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 14px 32px rgba(18,38,60,0.12);
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
}


.gallery-item::before {
    content: '+';
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    background: rgba(4, 18, 35, 0.42);
    border: 1px solid rgba(255,255,255,0.26);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 14, 28, 0.84));
}

.gallery-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}

.gallery-item strong,
.gallery-item small {
    display: block;
}

.gallery-item small {
    opacity: 0.78;
    margin-top: 5px;
}

.contact {
    background:
        linear-gradient(180deg, #f7fbff 0%, #eaf5ff 100%);
}

.contact-info {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e3eef8;
}

.contact-info p {
    margin: 8px 0;
}

.contact-form {
    padding: 28px;
    background: #fff;
    border: 1px solid #e3eef8;
}

.contact-form label {
    display: block;
    font-weight: 800;
    color: #26364b;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid #d7e6f2;
    background: #f7fbff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(66,183,255,0.15);
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.alert.success {
    color: #0b6b43;
    background: #dff8ec;
}

.alert.error {
    color: #9b1c1c;
    background: #ffe5e5;
}


/* News & Events */
.news-events {
    overflow: hidden;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    padding: 0;
    color: #fff;
}

.news-image {
    display: block;
    height: 220px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: #07182d;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-content {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.news-meta span,
.news-meta small {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-meta span {
    color: #07111f;
    background: var(--gold);
}

.news-meta small {
    color: rgba(236,248,255,0.88);
    background: rgba(255,255,255,0.12);
}

.news-card h3,
.news-card h2 {
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -0.04em;
}

.news-card h3 {
    font-size: 23px;
}

.news-card h2 {
    font-size: 28px;
}

.news-card p {
    color: rgba(236,248,255,0.76);
    margin: 0 0 14px;
}

.news-location {
    color: rgba(236,248,255,0.86) !important;
    font-weight: 800;
}

.read-more {
    display: inline-flex;
    margin-top: 8px;
    color: var(--gold);
    font-weight: 900;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.empty-news {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px;
    text-align: center;
    color: #fff;
}

.empty-news h3,
.empty-news h2 {
    color: #fff;
    margin-top: 0;
}

.inner-page {
    padding-top: 88px;
}

.inner-header .navbar {
    min-height: 88px;
}

.page-hero-small {
    padding: 86px 0 72px;
}

.page-hero-small h1 {
    margin: 12px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    letter-spacing: -0.06em;
}

.news-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.light-news-card {
    color: var(--text);
    background: #fff;
    border: 1px solid #e3eef8;
}

.light-news-card h2,
.light-news-card h3,
.light-news-card p {
    color: var(--text);
}

.light-news-card p {
    color: var(--muted);
}

.light-news-card .news-meta small {
    color: #406070;
    background: #e9f7ff;
}

.post-hero-image {
    min-height: 520px;
    margin-top: 88px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,11,24,0.10), rgba(3,11,24,0.56));
}

.post-container {
    max-width: 860px;
}

.post-container h1 {
    margin: 14px 0 16px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.post-meta small {
    color: #406070;
    background: #e9f7ff;
}

.post-body {
    margin: 26px 0 32px;
    color: #3d4d5f;
    font-size: 18px;
    line-height: 1.85;
}

.always-visible {
    display: flex !important;
}

.footer {
    color: rgba(255,255,255,0.74);
    background: #07111f;
    padding: 24px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #fff;
    font-weight: 800;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 84px 96px 42px;
    background:
        radial-gradient(circle at 50% 22%, rgba(126, 219, 255, 0.22), transparent 34%),
        rgba(3, 8, 16, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox.open {
    display: flex;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-frame {
    position: relative;
    z-index: 2;
    width: min(1080px, 100%);
    max-height: calc(100vh - 140px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    place-items: center;
    pointer-events: auto;
}

.lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    object-fit: contain;
    border-radius: 24px;
    border: 1px solid rgba(224, 248, 255, 0.24);
    box-shadow: 0 0 34px rgba(145, 230, 255, 0.28), 0 30px 90px rgba(0,0,0,0.58);
    background: rgba(255,255,255,0.04);
}

.lightbox-caption {
    width: min(780px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 20px;
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
}

.lightbox-caption p {
    color: #fff;
    font-weight: 900;
    margin: 0 0 4px;
}

.lightbox-caption small {
    display: block;
    color: rgba(236, 248, 255, 0.74);
    line-height: 1.45;
}

#lightboxCounter {
    flex: 0 0 auto;
    color: rgba(236, 248, 255, 0.8);
    font-weight: 800;
    font-size: 13px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 5;
    pointer-events: auto;
    user-select: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 0 22px rgba(134, 227, 255, 0.28), 0 12px 30px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.20);
}

.lightbox-close {
    top: 20px;
    right: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 48px;
    line-height: 1;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}


.hero-logo {
    width: min(360px, 72vw);
    height: auto;
    margin: 0 0 26px;
    border-radius: 34px;
    border: 1px solid rgba(231, 249, 255, 0.20);
    box-shadow: 0 0 34px rgba(146, 229, 255, 0.42), 0 28px 90px rgba(0,0,0,0.28);
}

.hero-overlay {
    background:
        radial-gradient(circle at 20% 34%, rgba(124,219,255,0.50), transparent 32%),
        radial-gradient(circle at 72% 26%, rgba(217,195,143,0.18), transparent 28%),
        linear-gradient(90deg, rgba(3, 9, 21,0.92), rgba(3, 11, 24,0.68), rgba(3, 11, 24,0.36));
}

.section {
    position: relative;
}

.programs,
.gallery {
    background:
        radial-gradient(circle at 12% 10%, rgba(126, 219, 255, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.luxury-section {
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(119, 219, 255, 0.22), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(217, 195, 143, 0.14), transparent 28%),
        linear-gradient(135deg, #030b18, #081b32 55%, #030b18);
}

.luxury-section .section-heading p:not(.section-kicker),
.luxury-section .premium-card p {
    color: rgba(236, 248, 255, 0.74);
}

.luxury-section h2,
.luxury-section h3 {
    color: #fff;
}

.premium-grid {
    align-items: stretch;
}

.premium-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(213, 242, 255, 0.22);
    background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
    box-shadow: var(--luxury-shadow);
    backdrop-filter: blur(12px);
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 36%, rgba(157, 232, 255, 0.10));
    pointer-events: none;
}

.coach-card,
.membership-card {
    min-height: 280px;
}

.coach-avatar {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.36), rgba(70, 184, 255, 0.72));
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 0 24px rgba(145, 231, 255, 0.38);
}

.coach-role,
.membership-label {
    position: relative;
    z-index: 1;
    color: var(--gold) !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px !important;
    margin: 0 0 12px !important;
}

.premium-card h3,
.premium-card p,
.premium-card .price,
.premium-card .btn {
    position: relative;
    z-index: 1;
}

.schedule {
    background:
        linear-gradient(180deg, #f6fbff 0%, #e7f4ff 100%);
}

.schedule-card {
    background: #07182d;
    color: #fff;
}

.schedule-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.schedule-row:last-child {
    border-bottom: 0;
}

.schedule-row span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.schedule-row strong {
    font-size: 17px;
}

.schedule-row small {
    color: rgba(236,248,255,0.72);
    font-weight: 700;
}

.price {
    margin: 16px 0;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    text-shadow: 0 0 18px rgba(158, 235, 255, 0.34);
}

.membership-card .btn {
    margin-top: 18px;
}

@media (max-width: 920px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 88px;
        left: 18px;
        right: 18px;
        z-index: 999;
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        padding: 14px;
        border-radius: 22px;
        background: rgba(6, 18, 34, 0.98);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 24px 70px rgba(0,0,0,0.35);
        backdrop-filter: blur(18px);
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links a {
        text-align: center;
        padding: 14px;
    }

    .split-grid,
    .contact-grid,
    .video-grid,
    .cards-grid,
    .news-grid,
    .news-grid-page {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(2) {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .lightbox {
        padding: 76px 16px 28px;
    }

    .lightbox-frame {
        max-height: calc(100vh - 110px);
    }

    .lightbox img {
        max-height: calc(100vh - 230px);
        border-radius: 18px;
    }

    .lightbox-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 22px;
        width: 46px;
        height: 46px;
        font-size: 38px;
    }

    .lightbox-prev {
        left: 18px;
    }

    .lightbox-next {
        right: 18px;
    }

    .brand-logo-img {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-title {
        gap: 10px;
    }

    .hero-brand-top {
        padding: 8px 14px;
        font-size: 22px;
    }

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

    .btn {
        width: 100%;
    }

    .section {
        padding: 72px 0;
    }

    .gallery-item {
        min-height: 300px;
    }

    .news-image {
        height: 250px;
    }

    .post-hero-image {
        min-height: 340px;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.hidden { display: none !important; }

.coach-photo {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 0 24px rgba(145, 231, 255, 0.38), 0 18px 34px rgba(0,0,0,0.22);
}
@media (max-width: 520px) {
    .navbar {
        min-height: 76px;
        gap: 10px;
    }

    .brand-logo-img {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .brand strong {
        font-size: 15px;
        letter-spacing: 0.18em;
    }

    .brand small {
        font-size: 10px;
        letter-spacing: 0.10em;
    }

    .nav-links {
        top: 76px;
        left: 12px;
        right: 12px;
    }
}
