        /* Page Hero */
        .page-hero {
            min-height: 60vh;
            background: var(--color-black);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/media/gym/image00006.jpeg') center center / cover no-repeat;
        }

        .page-hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(16, 7, 23, 0.92) 100%);
        }

        .page-hero-content {
            text-align: center;
            z-index: 1;
            padding: 2rem;
            max-width: 800px;
        }

        .page-hero-label {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--color-gold);
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--ease-smooth) 0.2s forwards;
        }

        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 300;
            color: var(--color-white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--ease-smooth) 0.4s forwards;
        }

        .page-hero-title em {
            font-style: italic;
            color: var(--color-gold);
        }

        .page-hero-desc {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 300;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeUp 1s var(--ease-smooth) 0.6s forwards;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Wellness Categories */
        .wellness-nav {
            background: var(--color-white);
            padding: 0;
            display: flex;
            justify-content: center;
            border-bottom: 1px solid var(--color-light-gray);
            position: sticky;
            top: 60px;
            z-index: 100;
        }

        .wellness-nav a {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-gray);
            text-decoration: none;
            padding: 1.5rem 2.5rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-bottom: 2px solid transparent;
            transition: all 0.3s var(--ease-smooth);
        }

        .wellness-nav a:hover,
        .wellness-nav a.active {
            color: var(--color-black);
            border-bottom-color: var(--color-gold);
        }

        /* Section Styles */
        section {
            padding: 6rem 3rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--color-gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            color: var(--color-black);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-desc {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 300;
            color: var(--color-gray);
            line-height: 1.8;
        }

        /* Gym Section */
        .gym-section {
            background: var(--color-cream);
        }

        .gym-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            max-width: 1400px;
            margin: 0 auto 5rem;
            background: var(--color-white);
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--ease-smooth);
        }

        .gym-hero.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gym-hero-image {
            position: relative;
            min-height: 500px;
            overflow: hidden;
        }

        .gym-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gym-hero-content {
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .partner-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--color-cream);
            padding: 0.8rem 1.2rem;
            margin-bottom: 2rem;
            width: fit-content;
        }

        .partner-badge span {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--color-gray);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .partner-badge img {
            height: 24px;
            width: auto;
        }

        .gym-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--color-black);
            margin-bottom: 1rem;
        }

        .gym-subtitle {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-style: italic;
            color: var(--color-gold);
            margin-bottom: 1.5rem;
        }

        .gym-description {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 300;
            color: var(--color-gray);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .gym-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .highlight-icon {
            width: 40px;
            height: 40px;
            background: var(--color-black);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .highlight-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-gold);
        }

        .highlight-text {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--color-black);
        }

        .btn-primary {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--color-white);
            background: var(--color-black);
            text-decoration: none;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 1rem 2rem;
            transition: all 0.4s var(--ease-smooth);
            border: none;
            cursor: pointer;
            display: inline-block;
            width: fit-content;
        }

        .btn-primary:hover {
            background: var(--color-gold);
        }

        /* Gym Services Grid */
        .gym-services {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--color-white);
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s var(--ease-smooth);
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--color-light-gray);
            border-radius: 50%;
            transition: all 0.4s var(--ease-smooth);
        }

        .service-card:hover .service-icon {
            background: var(--color-black);
            border-color: var(--color-black);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--color-gold);
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--color-black);
            margin-bottom: 0.8rem;
        }

        .service-card p {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 300;
            color: var(--color-gray);
            line-height: 1.7;
        }

        /* Recovery Section */
        .recovery-section {
            background: var(--color-black);
            position: relative;
            overflow: hidden;
        }

        .recovery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 0% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 100%, rgba(16, 7, 23, 0.3) 0%, transparent 50%);
        }

        .recovery-section .section-header {
            position: relative;
            z-index: 1;
        }

        .recovery-section .section-title {
            color: var(--color-white);
        }

        .recovery-section .section-desc {
            color: rgba(255,255,255,0.6);
        }

        .recovery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .recovery-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s var(--ease-smooth);
            position: relative;
            overflow: hidden;
        }

        .recovery-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--color-gold);
            transform: scaleX(0);
            transition: transform 0.4s var(--ease-smooth);
        }

        .recovery-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(201, 169, 98, 0.3);
        }

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

        .recovery-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .recovery-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50%;
        }

        .recovery-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--color-gold);
        }

        .recovery-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 1rem;
        }

        .recovery-card p {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
        }

        /* Spa Section */
        .spa-section {
            background: var(--color-cream);
        }

        .spa-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .spa-content {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s var(--ease-smooth);
        }

        .spa-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .spa-content .section-label {
            text-align: left;
        }

        .spa-content .section-title {
            text-align: left;
        }

        .spa-description {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 300;
            color: var(--color-gray);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .spa-treatments {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .treatment-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--color-light-gray);
        }

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

        .treatment-name svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-gold);
        }

        .treatment-name span {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--color-black);
        }

        .treatment-duration {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 300;
            color: var(--color-gray);
        }

        .spa-images {
            position: relative;
            height: 600px;
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s var(--ease-smooth);
        }

        .spa-images.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .spa-img {
            position: absolute;
            overflow: hidden;
        }

        .spa-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-smooth);
        }

        .spa-img:hover img {
            transform: scale(1.05);
        }

        .spa-img-1 {
            width: 65%;
            height: 65%;
            top: 0;
            right: 0;
        }

        .spa-img-2 {
            width: 55%;
            height: 50%;
            bottom: 0;
            left: 0;
            border: 8px solid var(--color-cream);
        }

        /* Sauna Section */
        .sauna-section {
            background: var(--color-white);
            position: relative;
        }

        .sauna-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            gap: 0;
        }

        .sauna-image {
            min-height: 500px;
            overflow: hidden;
        }

        .sauna-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sauna-content {
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--color-black);
        }

        .sauna-content .section-label {
            text-align: left;
        }

        .sauna-content .section-title {
            text-align: left;
            color: var(--color-white);
        }

        .sauna-description {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255,255,255,0.7);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

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

        .sauna-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .sauna-feature svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-gold);
            flex-shrink: 0;
        }

        .sauna-feature span {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--color-white);
        }

        /* Membership CTA */
        .membership-section {
            background: var(--color-black);
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .membership-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 0% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
        }

        .membership-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .membership-content {
            text-align: left;
        }

        .membership-label {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--color-gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .membership-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 300;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .membership-desc {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .membership-price-tag {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: rgba(201, 169, 98, 0.15);
            border: 1px solid rgba(201, 169, 98, 0.3);
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
        }

        .membership-price-tag svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-gold);
        }

        .membership-price-tag span {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-gold);
            letter-spacing: 0.05em;
        }

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

        .membership-feature {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s var(--ease-smooth);
        }

        .membership-feature:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(201, 169, 98, 0.3);
        }

        .membership-feature-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50%;
        }

        .membership-feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-gold);
        }

        .membership-feature h4 {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-white);
            margin-bottom: 0.3rem;
        }

        .membership-feature p {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
        }

        .btn-white {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--color-gold);
            background: var(--color-white);
            text-decoration: none;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 1rem 2.5rem;
            transition: all 0.4s var(--ease-smooth);
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-white:hover {
            background: var(--color-gold);
            color: var(--color-black);
        }

        @media (max-width: 900px) {
            .membership-wrapper {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .membership-content {
                text-align: center;
            }

            .membership-price-tag {
                justify-content: center;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .gym-hero {
                grid-template-columns: 1fr;
            }

            .gym-hero-image {
                min-height: 350px;
            }

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

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

            .spa-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .spa-images {
                height: 400px;
                order: -1;
            }

            .sauna-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .wellness-nav {
                flex-wrap: wrap;
                top: 56px;
            }

            .wellness-nav a {
                padding: 1rem 1.5rem;
                font-size: 0.65rem;
            }

            .gym-hero-content {
                padding: 2.5rem;
            }

            .gym-highlights {
                grid-template-columns: 1fr;
            }

            .gym-services {
                grid-template-columns: 1fr;
            }

            .sauna-content {
                padding: 2.5rem;
            }

            .sauna-features {
                grid-template-columns: 1fr;
            }
        }
