/* ============================================
   SPORT UNITE — Full Landing Page
   Style: Aggressive Dark Premium
   ============================================ */

/* NOTE: Gallery, Videos, and Lightbox styles are at the end of this file */

/* === Custom Cursor (Boxing Glove) === */
.cursor-glove {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.35));
}

.cursor-glove.is-visible {
    opacity: 1;
}

.cursor-glove svg {
    transform: rotate(-30deg);
    transition: transform 0.15s ease;
    animation: glove-float 2.5s ease-in-out infinite;
}

.cursor-glove.is-clicking svg {
    transform: rotate(-15deg) scale(1.2);
    animation: none;
}

@keyframes glove-float {

    0%,
    100% {
        transform: rotate(-30deg) translateY(0);
    }

    50% {
        transform: rotate(-30deg) translateY(-4px);
    }
}

@media (hover: hover) {
    body {
        cursor: none !important;
    }

    a,
    button,
    input,
    select,
    textarea,
    [role="button"],
    .gallery__item,
    .video-card {
        cursor: none !important;
    }
}

@media (hover: none),
(max-width: 768px) {
    .cursor-glove {
        display: none !important;
    }
}

/* === CSS Variables === */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-dark: #050505;

    --accent: #e62020;
    --accent-light: #ff3333;
    --accent-dark: #b31818;
    --accent-glow: rgba(230, 32, 32, 0.4);
    --accent-subtle: rgba(230, 32, 32, 0.08);

    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.3);
    --green-subtle: rgba(34, 197, 94, 0.08);

    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #cccccc;
    --gray-400: #aaaaaa;
    --gray-500: #888888;
    --gray-600: #666666;
    --gray-700: #444444;
    --gray-800: #2a2a2a;
    --gray-900: #1a1a1a;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --container-max: 1200px;
    --section-padding: clamp(1.5rem, 5vw, 4rem);
    --section-gap: clamp(4rem, 10vw, 8rem);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-glow: 0 0 30px var(--accent-glow);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding);
}

/* === Section Common === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(230, 32, 32, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.section-tag--green {
    background: var(--green-subtle);
    border-color: rgba(34, 197, 94, 0.2);
    color: var(--green);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accent {
    color: var(--accent);
}

.accent-green {
    color: var(--green);
}

/* === Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition-base), transform 0.7s var(--transition-base);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s, padding 0.3s;
}

.header--scrolled {
    background: rgba(5, 5, 5, 0.98);
    padding: 0.5rem 0;
    border-bottom-color: rgba(230, 32, 32, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.03);
}

.logo__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.logo__accent {
    color: var(--accent);
}

/* Navigation */
.nav {
    display: flex;
    gap: 1.75rem;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
    border-radius: 2px;
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn__icon {
    flex-shrink: 0;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--accent-glow);
}

.btn--green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 0 30px var(--green-glow);
}

.btn--green:hover {
    background: #2dd36f;
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--green-glow);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(230, 32, 32, 0.05);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn--xl {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
}

.btn__pulse {
    position: absolute;
    inset: 0;
    background: var(--accent-light);
    border-radius: inherit;
    animation: pulse 2.5s infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.2;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 5rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(230, 32, 32, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(230, 32, 32, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 100, 50, 0.04) 0%, transparent 50%),
        var(--bg-dark);
}

/* Ring Ropes */
.hero__ropes {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.hero__ropes--left {
    left: 20px;
}

.hero__ropes--right {
    right: 20px;
}

.rope {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    position: absolute;
    left: 0;
}

.rope--1 {
    background: linear-gradient(90deg, #e62020 0%, #ff4444 50%, #e62020 100%);
    top: 22%;
    box-shadow: 0 0 12px rgba(230, 32, 32, 0.5), 0 0 30px rgba(230, 32, 32, 0.2);
}

.rope--2 {
    background: linear-gradient(90deg, #cc1a1a 0%, #e62020 50%, #cc1a1a 100%);
    top: 42%;
    box-shadow: 0 0 8px rgba(230, 32, 32, 0.35);
}

.rope--3 {
    background: linear-gradient(90deg, #b01515 0%, #cc1a1a 50%, #b01515 100%);
    top: 62%;
    box-shadow: 0 0 6px rgba(230, 32, 32, 0.2);
}

/* Corner Posts */
.hero__post {
    position: absolute;
    width: 10px;
    height: 70%;
    top: 15%;
    background: linear-gradient(180deg, #444 0%, #222 50%, #444 100%);
    border-radius: 5px;
    z-index: 4;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
}

.hero__post--left {
    left: 17px;
}

.hero__post--right {
    right: 17px;
}

.hero__post::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #e62020 30%, #991111 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(230, 32, 32, 0.6);
}

/* Spotlights */
.hero__spotlight {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero__spotlight--1 {
    top: -60px;
    left: 15%;
    width: 300px;
    height: 500px;
    background: conic-gradient(from 180deg at 50% 0%, transparent 30%, rgba(255, 220, 180, 0.04) 45%, rgba(255, 220, 180, 0.08) 50%, rgba(255, 220, 180, 0.04) 55%, transparent 70%);
    animation: spotlight-sway1 8s ease-in-out infinite;
}

.hero__spotlight--2 {
    top: -60px;
    right: 20%;
    width: 250px;
    height: 450px;
    background: conic-gradient(from 180deg at 50% 0%, transparent 32%, rgba(230, 32, 32, 0.03) 46%, rgba(230, 32, 32, 0.06) 50%, rgba(230, 32, 32, 0.03) 54%, transparent 68%);
    animation: spotlight-sway2 10s ease-in-out infinite;
}

.hero__spotlight--3 {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 600px;
    background: conic-gradient(from 180deg at 50% 0%, transparent 35%, rgba(255, 255, 255, 0.02) 47%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 53%, transparent 65%);
    animation: spotlight-pulse 6s ease-in-out infinite;
}

@keyframes spotlight-sway1 {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes spotlight-sway2 {

    0%,
    100% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(-4deg);
    }
}

@keyframes spotlight-pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Canvas for animated particles */
.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Dust / Bokeh particles (CSS-generated) */
.hero__dust {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.dust-particle {
    position: absolute;
    width: var(--size, 3px);
    height: var(--size, 3px);
    background: radial-gradient(circle, rgba(255, 200, 150, var(--alpha, 0.4)) 0%, transparent 70%);
    border-radius: 50%;
    animation: dust-drift var(--dur, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes dust-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    15% {
        opacity: var(--alpha, 0.4);
    }

    50% {
        transform: translate(var(--dx, 30px), var(--dy, -50px)) scale(1.3);
    }

    85% {
        opacity: var(--alpha, 0.4);
    }

    100% {
        transform: translate(calc(var(--dx, 30px) * 2), calc(var(--dy, -50px) * 2)) scale(0.8);
        opacity: 0;
    }
}

/* Floor reflection */
.hero__floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg,
            rgba(230, 32, 32, 0.06) 0%,
            rgba(230, 32, 32, 0.02) 30%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__floor::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 32, 32, 0.15), rgba(255, 255, 255, 0.05), rgba(230, 32, 32, 0.15), transparent);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px);
    pointer-events: none;
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero__content {
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(230, 32, 32, 0.1);
    border: 1px solid rgba(230, 32, 32, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px transparent;
    }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero__title--accent {
    color: var(--accent);
    text-shadow: 0 0 60px var(--accent-glow);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero__subtitle strong {
    color: var(--white);
}

.hero__cta-group {
    margin-bottom: 3rem;
}

.hero__cta-note {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.hero__stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat__label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-600);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ============================================
   DIRECTIONS
   ============================================ */
.directions {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
    position: relative;
}

.directions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 32, 32, 0.2), transparent);
}

.directions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.direction-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.direction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.direction-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(230, 32, 32, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.direction-card:hover::before {
    transform: scaleX(1);
}

.direction-card--featured {
    border-color: rgba(230, 32, 32, 0.2);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(230, 32, 32, 0.05) 100%);
}

.direction-card--rehab {
    border-color: rgba(34, 197, 94, 0.15);
}

.direction-card--rehab::before {
    background: var(--green);
}

.direction-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--accent);
}

.direction-card--rehab .direction-card__icon {
    color: var(--green);
}

.direction-card__icon svg {
    width: 100%;
    height: 100%;
}

.direction-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.direction-card__desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.direction-card__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.6rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}

.direction-card__tag--green {
    background: var(--green);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-gap) 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    margin: 1.5rem 0 2rem;
}

.about__text p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about__text strong {
    color: var(--white);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.about__feature:hover {
    border-color: rgba(230, 32, 32, 0.15);
    background: var(--bg-card-hover);
}

.about__feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.about__feature strong {
    display: block;
    font-size: 0.9rem;
}

.about__feature span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Visual side */
.about__visual {
    position: relative;
}

.about__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about__champion-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.about__quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gray-200);
    font-style: italic;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about__accent-line {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    border-radius: 0 var(--radius-md) 0 0;
    opacity: 0.3;
}

/* ============================================
   METHOD
   ============================================ */
.method {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
    position: relative;
}

.method__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.method__card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition-base);
    position: relative;
}

.method__card:hover {
    border-color: rgba(230, 32, 32, 0.15);
    transform: translateY(-4px);
}

.method__step {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 1rem;
}

.method__card:hover .method__step {
    opacity: 0.6;
}

.method__card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.method__card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Formats */
.method__formats {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.method__formats-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.method__formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.method__format {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.method__format-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.method__format strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.method__format span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============================================
   RESULTS
   ============================================ */
.results {
    padding: var(--section-gap) 0;
}

.results__timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.results__line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark), transparent);
}

.results__item {
    position: relative;
    padding: 0 0 3rem 2.5rem;
}

.results__item:last-child {
    padding-bottom: 0;
}

.results__marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 20px var(--accent-glow);
    z-index: 1;
}

.results__marker--mid {
    background: var(--accent-dark);
}

.results__marker--final {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    left: -2.25rem;
}

.results__period {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--accent-light);
}

.results__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.results__list li {
    font-size: 0.92rem;
    color: var(--gray-300);
    padding-left: 1.5rem;
    position: relative;
}

.results__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   REHAB
   ============================================ */
.rehab {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.rehab__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.rehab__lead {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.rehab__lead strong {
    color: var(--white);
}

.rehab__what {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.rehab__yes,
.rehab__no {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rehab__yes h4,
.rehab__no h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.rehab__yes ul li,
.rehab__no ul li {
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 0.35rem 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rehab__yes ul li:last-child,
.rehab__no ul li:last-child {
    border-bottom: none;
}

/* Areas */
.rehab__areas-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.rehab__areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.rehab__area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.rehab__area:hover {
    border-color: rgba(34, 197, 94, 0.3);
    background: var(--bg-card-hover);
}

.rehab__area-icon {
    font-size: 1.5rem;
}

/* ============================================
   PRICES
   ============================================ */
.prices {
    padding: var(--section-gap) 0;
}

.prices__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.price-card--featured {
    border-color: rgba(230, 32, 32, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(230, 32, 32, 0.06) 100%);
}

.price-card--unlimited {
    border-color: rgba(230, 32, 32, 0.2);
}

.price-card__badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 0 0 6px 6px;
}

.price-card__header {
    padding: 2rem 2rem 1rem;
}

.price-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-card__subtitle {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 0.35rem;
}

.price-card__body {
    padding: 0 2rem 2rem;
}

.price-card__option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card__option:last-child {
    border-bottom: none;
}

.price-card__option--single {
    opacity: 0.7;
}

.price-card__option--big {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 0.25rem;
}

.price-card__freq {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.price-card__amount {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
}

.price-card__option--big .price-card__amount {
    font-size: 2rem;
    color: var(--accent);
}

.price-card__option--big .price-card__freq {
    font-size: 0.8rem;
}

.price-card__perks {
    margin-top: 1rem;
}

.price-card__perks li {
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.price-card__perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
}

.review-card:hover {
    border-color: rgba(230, 32, 32, 0.15);
    transform: translateY(-4px);
}

.review-card__stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-card__text {
    font-size: 0.92rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.review-card__author strong {
    display: block;
    font-size: 0.88rem;
}

.review-card__author span {
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* Trust */
.reviews__trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.reviews__trust-item {
    text-align: center;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.reviews__trust-item strong {
    display: block;
    font-size: 0.85rem;
}

.reviews__trust-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: var(--section-gap) 0;
}

.final-cta__inner {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(230, 32, 32, 0.08) 0%, var(--bg-card) 50%, rgba(230, 32, 32, 0.05) 100%);
    border: 1px solid rgba(230, 32, 32, 0.15);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.final-cta__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.final-cta__text {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.final-cta__note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand .logo {
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.footer__nav a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
    transition: var(--transition-fast);
}

.footer__nav a:hover {
    color: var(--accent);
}

.footer__contact p,
.footer__contact a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
}

.footer__tg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--accent) !important;
    transition: var(--transition-fast);
}

.footer__tg:hover {
    opacity: 0.8;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--gray-700);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-overlay.is-active {
    display: flex;
}

.nav-overlay .nav__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--gray-300);
    padding: 0.5rem;
}

.nav-overlay .nav__link:hover {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .directions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Hide ring decorations on mobile */
    .hero__ropes,
    .hero__post {
        display: none;
    }

    .hero__spotlight {
        opacity: 0.4;
    }

    /* Header */
    .header {
        padding: 0.5rem 0;
    }

    .logo__img {
        width: 32px;
        height: 32px;
    }

    .logo__text {
        font-size: 1.1rem;
    }

    .header__actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 3rem;
    }

    .hero__inner {
        padding: 2rem 0;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 1.25rem;
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero__cta-group {
        margin-bottom: 2rem;
    }

    .hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
        text-align: center;
    }

    .stat__number {
        font-size: 1.6rem;
    }

    .stat__label {
        font-size: 0.65rem;
        letter-spacing: 0.03em;
    }

    .hero__scroll-hint {
        display: none;
    }

    /* Sections common */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
    }

    /* Directions */
    .directions__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .direction-card {
        padding: 1.25rem 1rem;
    }

    .direction-card__icon {
        font-size: 1.8rem;
    }

    .direction-card__name {
        font-size: 1.1rem;
    }

    /* About */
    .about__visual {
        order: -1;
    }

    .about__image-placeholder {
        aspect-ratio: 4/3;
    }

    /* Method */
    .method__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .method__formats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Results */
    .results__content h3 {
        font-size: 1.1rem;
    }

    .results__list li {
        font-size: 0.9rem;
    }

    /* Rehab */
    .rehab__what {
        grid-template-columns: 1fr;
    }

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

    /* Prices */
    .prices__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-card__header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .price-card__body {
        padding: 0 1.25rem 1.25rem;
    }

    /* Reviews */
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .reviews__trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* CTA */
    .btn--large,
    .btn--xl {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .final-cta__inner {
        padding: 2.5rem 1.25rem;
    }

    .final-cta__title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }
}

@media (max-width: 480px) {

    /* Hero fine-tuning */
    .hero__title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero__stats {
        gap: 0.75rem;
    }

    .stat {
        min-width: unset;
    }

    .stat__number {
        font-size: 1.4rem;
    }

    .stat__label {
        font-size: 0.6rem;
    }

    .hero__cta-group .btn {
        font-size: 0.9rem;
        padding: 0.85rem 1.25rem;
    }

    /* Cards */
    .direction-card {
        padding: 1rem;
    }

    .review-card {
        padding: 1rem;
    }

    /* Section spacing */
    :root {
        --section-gap: 3rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    /* Nav overlay */
    .nav-overlay .nav__link {
        font-size: 1.3rem;
    }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 32, 32, 0.2), transparent);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 0.5rem;
    max-height: 335px;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.gallery__grid.is-expanded {
    max-height: 3000px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.gallery__item:hover {
    border-color: rgba(230, 32, 32, 0.3);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__zoom {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.gallery__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(230, 32, 32, 0.3);
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery__toggle:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
}

/* ============================================
   VIDEOS
   ============================================ */
.videos {
    padding: var(--section-gap) 0;
    position: relative;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 32, 32, 0.2), transparent);
}

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

.video-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.video-card:hover {
    border-color: rgba(230, 32, 32, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.video-card__player {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    background: #000;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.video-card__info {
    padding: 1rem 1.25rem;
}

.video-card__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(230, 32, 32, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(20px);
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.lightbox__close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.lightbox__prev {
    left: 1.5rem;
}

.lightbox__next {
    right: 1.5rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ============================================
   GALLERY & VIDEOS RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
        max-height: 375px;
    }

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

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        max-height: 295px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__toggle {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }

    .videos__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .video-card {
        flex: 0 0 55vw;
        scroll-snap-align: start;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .lightbox__prev {
        left: 0.5rem;
    }

    .lightbox__next {
        right: 0.5rem;
    }

    .lightbox__counter {
        bottom: 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
        gap: 0.35rem;
        max-height: 250px;
    }

    .video-card {
        flex: 0 0 65vw;
    }

    .video-card__info {
        padding: 0.6rem 0.8rem;
    }

    .video-card__tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}