/* ==========================================================================
   FRONT.CSS — Charte graphique fidèle à gymenpaysrochois.org
   Elementor-inspired design reproduction
   ========================================================================== */

/* ── Variables ── */
:root {
    --color-primary: #222222;
    --color-secondary: #0c949b;
    --color-accent: #de0052;
    --color-text: #3c3c3c;
    --color-soft: #888;
    --color-border: #f0f0f0;
    --color-bg: #ffffff;
    --color-footer: #1a1a1a;
    --color-footer-bar: #111111;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1140px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ==========================================================================
   HEADER — Logo centré, nav des deux côtés
   ========================================================================== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #3a3a3a;
    padding: 10px 18px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-secondary);
    text-decoration: underline;
    text-decoration-color: rgba(12, 148, 155, 0.55);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.header-logo-wrap {
    flex-shrink: 0;
    padding: 0 24px;
}

.header-logo-wrap img {
    height: 70px;
    width: auto;
}

/* Burger mobile */
.mf-burger {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mf-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.mf-burger--open .mf-burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mf-burger--open .mf-burger-line:nth-child(2) { opacity: 0; }
.mf-burger--open .mf-burger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mf-mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mf-mobile-nav--open { display: flex; }

.mf-mobile-nav a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    padding: 12px 20px;
    transition: color 0.2s;
}

.mf-mobile-nav a:hover { color: var(--color-secondary); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.mf-section {
    padding: 80px 0;
}

.mf-section--alt {
    background: #fafafa;
}

.mf-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.mf-hero {
    padding: 100px 0 80px;
    background: #222222;
}

.mf-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mf-kicker {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    display: block;
}

.mf-hero__title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mf-body-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    max-width: 640px;
}

.mf-soft-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
    max-width: 580px;
}

.mf-hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Boutons hero sur fond sombre */
.mf-hero .mf-btn--primary {
    background: #fff;
    color: #222;
    border: 1px solid #fff;
}

.mf-hero .mf-btn--primary:hover {
    background: linear-gradient(90deg, rgba(12,148,155,0.9), rgba(222,0,82,0.92));
    color: #fff;
    border-color: transparent;
}

.mf-hero .mf-btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
}

.mf-hero .mf-btn--outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    box-shadow: none;
}

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.mf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.mf-btn--primary {
    background: linear-gradient(180deg, rgba(34,34,34,0.98), rgba(48,48,48,0.98));
    color: #fff;
    border: 1px solid rgba(34,34,34,0.12);
}

.mf-btn--primary:hover {
    background: linear-gradient(90deg, rgba(12,148,155,0.9), rgba(222,0,82,0.92));
    color: #fff;
}

.mf-btn--outline {
    background: #fff;
    color: #3a3a3a;
    border: 1px solid rgba(58,58,58,0.18);
}

.mf-btn--outline:hover {
    background: #fff3f8;
    color: var(--color-accent);
    border-color: rgba(222,0,82,0.3);
    box-shadow: 0 10px 22px rgba(222,0,82,0.08);
}

.mf-btn--accent {
    background: var(--color-accent);
    color: #fff;
    border: 1px solid var(--color-accent);
}

.mf-btn--accent:hover {
    background: #c20048;
}

/* ==========================================================================
   STATS ROW
   ========================================================================== */
.mf-stats {
    padding: 60px 0;
}

.mf-stats__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mf-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mf-stat {
    text-align: left;
}

.mf-stat__number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.mf-stat__label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.mf-stat__desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */
.mf-features {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.mf-features__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mf-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mf-feature {
    text-align: center;
    padding: 30px 20px;
}

.mf-feature::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.mf-feature__label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.mf-feature__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
}

.mf-feature__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.mf-cta {
    padding: 80px 0;
    text-align: center;
    background: #222222;
}

.mf-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mf-cta__badge {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: block;
}

.mf-cta__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mf-cta__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto 28px;
}

.mf-cta .mf-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.mf-cta .mf-btn--outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    box-shadow: none;
}

/* ==========================================================================
   PAGE HERO — Sous-pages
   ========================================================================== */
.mf-page-hero {
    padding: 80px 0 40px;
}

.mf-page-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mf-page-hero__label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
}

.mf-page-hero__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 14px;
}

.mf-page-hero__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
    max-width: 640px;
}

.mf-breadcrumb {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #bbb;
}

.mf-breadcrumb a {
    color: var(--color-secondary);
}

.mf-breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   PAGE CONTENT — Zone CMS
   ========================================================================== */
.mf-page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.cms-content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.cms-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 2em 0 0.8em;
    line-height: 1.2;
}

.cms-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 1.8em 0 0.6em;
    line-height: 1.3;
}

.cms-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 1.5em 0 0.5em;
}

.cms-content p { margin-bottom: 1.2em; }

.cms-content ul, .cms-content ol {
    margin: 1em 0;
    padding-left: 1.8em;
    list-style: disc;
}

.cms-content ol { list-style: decimal; }
.cms-content li { margin-bottom: 0.4em; }

.cms-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.cms-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

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

.cms-content blockquote {
    border-left: 3px solid var(--color-secondary);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.cms-content table th,
.cms-content table td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.cms-content table th {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.04em;
}

/* Classes utilitaires CMS */
.txt-rose { color: var(--color-accent); }
.txt-vert { color: var(--color-secondary); }
.txt-gras { font-weight: 700; }
.txt-italic { font-style: italic; }

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */
.gym-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 20px 0 40px;
}

.gym-pricing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
}

.gym-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.gym-pricing-header {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    padding: 28px 28px 24px;
    text-align: center;
}

.gym-pricing-accent .gym-pricing-header {
    background: linear-gradient(135deg, #0c949b 0%, #0aabb3 100%);
}

.gym-pricing-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.gym-pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.gym-pricing-body { padding: 8px 0; }

.gym-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.gym-pricing-row:last-child { border-bottom: none; }
.gym-pricing-row:hover { background: #fafafa; }

.gym-pricing-freq {
    font-family: var(--font-body);
    font-size: 15px;
    color: #555;
}

.gym-pricing-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.gym-pricing-accent .gym-pricing-amount {
    color: var(--color-secondary);
}

.gym-pricing-footer {
    padding: 16px 28px 20px;
    background: #fafafa;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.gym-pricing-footer p {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   ACTUALITÉS — Grille de cartes
   ========================================================================== */
.mf-actus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 0 40px;
}

.mf-actu-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.mf-actu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.mf-actu-card__img-wrap {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.mf-actu-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.mf-actu-card:hover .mf-actu-card__img { transform: scale(1.04); }

.mf-actu-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c949b 0%, #de0052 100%);
    font-size: 48px;
    opacity: 0.6;
    color: #fff;
}

.mf-actu-card__body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mf-actu-card__date {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.mf-actu-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #222;
}

.mf-actu-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px;
    flex: 1;
}

.mf-actu-card__link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    transition: color 0.2s;
}

.mf-actu-card__link:hover { color: var(--color-secondary); }

/* ==========================================================================
   SINGLE ARTICLE
   ========================================================================== */
.mf-single-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.mf-single-article__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-secondary);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}

.mf-single-article__back:hover { color: var(--color-accent); }

.mf-single-article__date {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
    margin-bottom: 12px;
    display: block;
}

.mf-single-article__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.mf-single-article__featured-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 32px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mf-single-article__chapeau {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mf-single-article__nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.mf-single-article__nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.mf-single-article__nav a:hover { color: var(--color-accent); }

/* ==========================================================================
   EVENTS
   ========================================================================== */
.mf-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mf-event-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mf-event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.mf-event-date {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mf-event-date__day {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.mf-event-date__month {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.mf-event-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.mf-event-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 4px;
}

.mf-event-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.mf-event-meta span {
    font-size: 13px;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.mf-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.mf-pagination a,
.mf-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.2s;
}

.mf-pagination a:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.mf-pagination .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.mf-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-soft);
}

.mf-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.4; }
.mf-empty p { font-size: 16px; margin-top: 12px; }

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.mf-section-header {
    margin-bottom: 40px;
}

.mf-section-header--center { text-align: center; }

.mf-section-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
}

.mf-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1.2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer__main {
    background: var(--color-footer);
    padding: 60px 0 40px;
}

.site-footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
}

.gym-footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gym-footer-brand p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px;
}

.gym-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.gym-footer-social:hover {
    background: #1877F2;
    color: #fff;
    transform: translateY(-2px);
}

.gym-footer-social svg { width: 28px; height: 28px; }

.gym-footer-nav h4,
.gym-footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.gym-footer-nav ul { list-style: none; padding: 0; margin: 0; }
.gym-footer-nav li { margin-bottom: 10px; }

.gym-footer-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.gym-footer-nav a:hover {
    color: var(--color-secondary);
    padding-left: 6px;
}

.gym-footer-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gym-footer-ci {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.5);
}

.gym-footer-ci svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.gym-footer-ci div {
    display: flex;
    flex-direction: column;
}

.gym-footer-ci span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.gym-footer-ci a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.gym-footer-ci a:hover { color: var(--color-secondary); }

.site-footer__bar {
    background: var(--color-footer-bar);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.gym-footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gym-footer-bottom > span:first-child {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.gym-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.gym-footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.gym-footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .header-nav a { padding: 10px 12px; font-size: 13px; }
    .header-logo-wrap img { height: 55px; }
}

@media (max-width: 768px) {
    .header-inner { display: none; }
    .mf-burger { display: flex; }
    .site-header {
        display: flex;
        align-items: center;
        padding: 10px 16px;
    }
    .header-mobile-logo { display: block; height: 45px; width: auto; }

    .mf-hero { padding: 60px 0 40px; }
    .mf-hero__title { font-size: 34px; }
    .mf-stats__grid { grid-template-columns: 1fr; gap: 28px; }
    .mf-features__grid { grid-template-columns: 1fr; gap: 32px; }
    .mf-page-hero { padding: 50px 0 24px; }
    .mf-page-hero__title { font-size: 30px; }
    .mf-actus-grid { grid-template-columns: 1fr; gap: 24px; }
    .mf-single-article__title { font-size: 28px; }
    .mf-event-item { flex-direction: column; gap: 16px; }
    .gym-pricing-grid { grid-template-columns: 1fr; }
    .gym-pricing-header h3 { font-size: 18px; }
    .gym-pricing-amount { font-size: 24px; }
    .gym-pricing-row { padding: 14px 20px; }
    .mf-cta__title { font-size: 26px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .gym-footer-bottom { flex-direction: column; text-align: center; }
    .gym-footer-bottom-links { justify-content: center; }
}

@media (min-width: 769px) {
    .header-mobile-logo { display: none; }
    .mf-burger { display: none; }
    .mf-mobile-nav { display: none !important; }
}
