:root {
    --black: #080808;
    --dark: #111111;
    --panel: #161616;
    --iron: #1e1e1e;
    --gold: #c8a84b;
    --gold-bright: #e8c96a;
    --rust: #b84b1e;
    --white: #f0ece4;
    --muted: #888880;
    --border: rgba(200, 168, 75, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: crosshair;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--gold);
    text-decoration: none;
}

.nav-logo span {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 10px 24px;
    text-decoration: none;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--gold-bright);
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 48px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 40%, rgba(184, 75, 30, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 60%, rgba(200, 168, 75, 0.06) 0%, transparent 60%),
        linear-gradient(160deg, #0e0e0e 0%, #080808 100%);
}

/* Diagonal lines texture */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(200, 168, 75, 0.02) 40px,
            rgba(200, 168, 75, 0.02) 41px);
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.hero-badge {
    position: relative;
    width: 160px;
    height: 160px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    z-index: 2;
    flex-shrink: 0;
}

.hero-badge-inner {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-align: center;
    color: var(--gold);
    text-transform: uppercase;
    animation: rotate 20s linear infinite reverse;
}

.hero-badge-inner strong {
    display: block;
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-right-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 420px;
}

.hero-number-bg {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(200px, 24vw, 320px);
    color: rgba(200, 168, 75, 0.05);
    line-height: 1;
    user-select: none;
    letter-spacing: -10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 12vw, 180px);
    line-height: 0.88;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.hero-title .line-gold {
    color: var(--gold);
}

.hero-title .line-outline {
    -webkit-text-stroke: 1px rgba(240, 236, 228, 0.3);
    color: transparent;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 16px 40px;
    text-decoration: none;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}

.btn-ghost::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.2s;
}

.btn-ghost:hover {
    color: var(--gold);
}

.btn-ghost:hover::after {
    transform: translateX(6px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    border-right: 1px solid var(--border);
    padding-right: 24px;
}

.stat:last-child {
    border: none;
    padding: 0;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

/* MARQUEE */
.marquee-wrap {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--black);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ABOUT */
.section {
    padding: 120px 48px;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 96px);
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.about-title em {
    font-style: normal;
    color: var(--gold);
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-card {
    position: absolute;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 40px;
}

.about-card-main {
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    overflow: hidden;
}

.about-card-main::before {
    content: '⚡';
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 80px;
    opacity: 0.06;
}

.about-card-float {
    bottom: -30px;
    right: -30px;
    width: 200px;
    background: var(--gold);
    color: var(--black);
    padding: 28px 32px;
    border: none;
}

.about-card-float .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    display: block;
}

.about-card-float .lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-card-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-card-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 1px;
}

/* PROGRAMS */
.programs-bg {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.programs-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.programs-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 64px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.program-card {
    background: var(--dark);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
}

.program-card:hover {
    background: var(--iron);
}

.program-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    font-size: 36px;
    margin-bottom: 24px;
    display: block;
    filter: grayscale(0.4);
}

.program-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(200, 168, 75, 0.08);
    position: absolute;
    top: 20px;
    right: 28px;
    line-height: 1;
}

.program-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1;
}

.program-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 28px;
}

.program-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 168, 75, 0.3);
    padding: 4px 12px;
}

/* TRAINERS */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.trainer-card {
    position: relative;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--border);
}

.trainer-photo {
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trainer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--iron), var(--dark));
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.trainer-photo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.06) 0%, rgba(8, 8, 8, 0.9) 100%);
}

.trainer-info {
    padding: 28px 32px;
}

.trainer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.trainer-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.trainer-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* PRICING */
.pricing-bg {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.price-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 168, 75, 0.4);
}

.price-card.featured {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.price-card.featured * {
    color: var(--black) !important;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -24px;
    background: var(--rust);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 36px;
    transform: rotate(45deg);
}

.price-tier {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}

.price-period {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 40px;
    display: block;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
}

.price-features li {
    font-size: 14px;
    padding: 10px 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li::before {
    content: '—';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.price-card.featured .price-features li::before {
    color: var(--black);
}

.btn-price {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: 0.2s;
}

.btn-price-outline {
    color: var(--gold);
    border: 1px solid rgba(200, 168, 75, 0.4);
    background: transparent;
}

.btn-price-outline:hover {
    background: rgba(200, 168, 75, 0.08);
}

.btn-price-dark {
    background: var(--black);
    color: var(--gold);
}

.btn-price-dark:hover {
    background: #0e0e0e;
}

/* SCHEDULE */
.schedule-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 64px;
    border: 1px solid var(--border);
}

.schedule-scroll::-webkit-scrollbar {
    height: 4px;
}

.schedule-scroll::-webkit-scrollbar-track {
    background: var(--dark);
}

.schedule-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.schedule-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.schedule-table th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    white-space: nowrap;
    background: var(--panel);
}

.schedule-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--muted);
    transition: background 0.2s;
    white-space: nowrap;
}

.schedule-table tr:hover td {
    background: var(--panel);
    color: var(--white);
}

/* Mobile card schedule */
.schedule-cards {
    display: none;
    margin-top: 40px;
}

.schedule-day-card {
    border: 1px solid var(--border);
    margin-bottom: 12px;
    background: var(--panel);
    overflow: hidden;
}

.schedule-day-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--iron);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.schedule-day-header::after {
    content: '+';
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.3s;
}

.schedule-day-header.open::after {
    transform: rotate(45deg);
}

.schedule-day-body {
    display: none;
    padding: 0;
}

.schedule-day-body.open {
    display: block;
}

.schedule-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-time {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    min-width: 70px;
    flex-shrink: 0;
}

.class-chip {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--border);
    color: var(--white);
    white-space: nowrap;
}

.chip-power {
    border-color: rgba(184, 75, 30, 0.5);
    color: #e8783a;
}

.chip-yoga {
    border-color: rgba(100, 150, 200, 0.4);
    color: #80b0e0;
}

.chip-hiit {
    border-color: rgba(200, 168, 75, 0.4);
    color: var(--gold);
}

.chip-spin {
    border-color: rgba(100, 200, 130, 0.4);
    color: #70c890;
}

.chip-box {
    border-color: rgba(200, 80, 80, 0.4);
    color: #e87070;
}

@media (max-width: 700px) {
    .schedule-scroll {
        display: none;
    }

    .schedule-cards {
        display: block;
    }
}

/* TESTIMONIALS */
.testimonials-bg {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
}

.testimonial-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
}

.testimonial-card.large {
    grid-row: span 1;
}

.testimonial-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    color: rgba(200, 168, 75, 0.1);
    line-height: 0.7;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--iron);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.author-detail {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
}

/* CTA */
.cta-section {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200, 168, 75, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(200, 168, 75, 0.015) 60px, rgba(200, 168, 75, 0.015) 61px);
}

.cta-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
}

.cta-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 80px 48px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.social-btn img{
    height: 25px;
}

.social-btn:hover {
    border-color: var(--gold);
    background: rgba(200, 168, 75, 0.08);
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-right-col {
        display: none;
    }

    .section {
        padding: 80px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}