/* =============================================================
   ENKM — Krav-Maga & Lethwei · CSS Principal v2
   Krav-Maga : turquoise #00b9b3
   Lethwei    : or        #e8a020
   ============================================================= */

:root {
    --krav:        #00b9b3;
    --krav-dk:     #008f8a;
    --krav-bg:     rgba(0,185,179,.1);
    --leth:        #e8a020;
    --leth-dk:     #c07a0a;
    --leth-bg:     rgba(232,160,32,.1);
    --dark:        #111111;
    --dark2:       #1a1a1a;
    --dark3:       #222222;
    --dark4:       #2a2a2a;
    --gray:        #444444;
    --gray-lt:     #888888;
    --light:       #f4f4f4;
    --white:       #ffffff;

    /* Couleur active — change avec le switcher */
    --active:      var(--krav);
    --active-dk:   var(--krav-dk);
    --active-bg:   var(--krav-bg);

    --font-title:  'Barlow Condensed', sans-serif;
    --font-body:   'Barlow', sans-serif;
    --nav-h:       68px;
    --news-h:      44px;
    --radius:      4px;
    --T:           .3s ease;
    --section-pad: 80px;
}

/* Mode Lethwei actif */
body.lethwei {
    --active:    var(--leth);
    --active-dk: var(--leth-dk);
    --active-bg: var(--leth-bg);
}

*, *::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.65;
    color: var(--dark); background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================================
   BARRE NEWS (ticker en haut)
   ============================================================= */
.news-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--news-h);
    background: var(--active);
    z-index: 1010;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: background var(--T);
}
.news-bar-label {
    flex-shrink: 0;
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--white);
    background: rgba(0,0,0,.25);
    height: 100%;
    display: flex; align-items: center;
    border-right: 1px solid rgba(255,255,255,.2);
}
body.lethwei .news-bar-label { color: var(--dark); }
.news-ticker-wrap {
    flex: 1; overflow: hidden;
    height: 100%; display: flex; align-items: center;
}
.news-ticker {
    display: flex; gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}
.news-ticker:hover { animation-play-state: paused; }
.news-item {
    display: inline-flex; align-items: center; gap: 24px;
    padding: 0 40px;
    font-size: 13px; font-weight: 600;
    color: var(--white);
}
body.lethwei .news-item { color: var(--dark); }
.news-item::after {
    content: '◆';
    font-size: 8px;
    opacity: .5;
}
.news-item a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================================
   NAVIGATION
   ============================================================= */
.site-header {
    position: fixed;
    top: var(--news-h);
    left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(17,17,17,.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--active);
    z-index: 1000;
    transition: border-color var(--T);
}
.nav-inner {
    max-width: 1260px; margin: 0 auto;
    padding: 0 28px; height: 100%;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 46px; width: auto; }
.logo-text {
    font-family: var(--font-title);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,.6);
    line-height: 1.3;
}
.logo-text strong { color: var(--white); display: block; font-size: 15px; }

/* Switcher disciplines */
.discipline-switcher {
    display: flex;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.sw-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    border: none; cursor: pointer;
    background: transparent;
    color: rgba(255,255,255,.4);
    transition: background var(--T), color var(--T);
    display: flex; align-items: center; gap: 7px;
}
.sw-btn img { height: 22px; width: auto; border-radius: 2px; }
.sw-btn.krav-active { background: var(--krav); color: var(--white); }
.sw-btn.leth-active { background: var(--leth); color: var(--dark); }

/* Menu principal */
.primary-menu {
    display: flex; align-items: center; gap: 2px;
}
.primary-menu a {
    padding: 8px 13px;
    font-size: 12px; font-weight: 600;
    letter-spacing: .8px; text-transform: uppercase;
    color: rgba(255,255,255,.6);
    border-radius: var(--radius);
    transition: color var(--T), background var(--T);
}
.primary-menu a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    transition: transform var(--T), opacity var(--T);
}

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: calc(var(--news-h) + var(--nav-h));
    overflow: hidden;
    background: var(--dark);
}
.hero-bg-krav,
.hero-bg-leth {
    position: absolute; inset: 0;
    transition: opacity .6s ease;
    background-size: cover;
    background-position: center center;
}
.hero-bg-krav {
    background-image: url('../images/hero-krav.jpg');
    background-color: var(--dark);
}
.hero-bg-leth {
    background-image: url('../images/hero-leth.jpg');
    background-color: #1a0f00;
    opacity: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.85) 45%, rgba(0,0,0,.2));
}
.hero-geo {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 42%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    background: var(--active-bg);
    transition: background var(--T);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1260px; width: 100%;
    margin: 0 auto; padding: 60px 28px;
}
.hero-disc-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 16px; border-radius: 2px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 24px;
    background: var(--active);
    color: var(--white);
    transition: background var(--T);
}
body.lethwei .hero-disc-tag { color: var(--dark); }
.hero-disc-tag img { height: 20px; }
.hero-h1 {
    font-family: var(--font-title);
    font-size: clamp(68px, 10vw, 130px);
    font-weight: 900; line-height: .88;
    text-transform: uppercase; letter-spacing: -2px;
    color: var(--white);
}
.hero-h1 .accent {
    display: block; color: var(--active);
    transition: color var(--T);
}
.hero-sub {
    margin-top: 20px;
    font-size: 19px; font-style: italic;
    color: rgba(255,255,255,.65);
    max-width: 460px; line-height: 1.5;
}
.hero-actions {
    margin-top: 40px;
    display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-hero {
    display: inline-block; padding: 15px 38px;
    font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: var(--radius); cursor: pointer; border: none;
    transition: background var(--T), color var(--T), transform .2s;
}
.btn-hero.primary {
    background: var(--active); color: var(--white);
}
body.lethwei .btn-hero.primary { color: var(--dark); }
.btn-hero.primary:hover { background: var(--active-dk); transform: translateY(-2px); }
.btn-hero.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.7);
}
.btn-hero.secondary:hover { border-color: var(--white); color: var(--white); }

/* Stats rapides */
.hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
}
.hero-stat-val {
    font-family: var(--font-title);
    font-size: 44px; font-weight: 900;
    color: var(--active); line-height: 1;
    transition: color var(--T);
}
.hero-stat-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
}

/* =============================================================
   SECTION BASE
   ============================================================= */
.section { padding: var(--section-pad) 0; }
.section-dark  { background: var(--dark);  color: var(--white); }
.section-dark2 { background: var(--dark2); color: var(--white); }
.section-light { background: var(--light); }
.container {
    max-width: 1260px; margin: 0 auto; padding: 0 28px;
}
.section-head { margin-bottom: 48px; }
.section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--active);
    margin-bottom: 10px; display: block;
    transition: color var(--T);
}
.section-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900; text-transform: uppercase;
    letter-spacing: 1px; line-height: 1;
}
.section-dark  .section-title,
.section-dark2 .section-title { color: var(--white); }
.title-bar {
    display: inline-block; height: 3px; width: 48px;
    background: var(--active); margin-top: 14px;
    transition: background var(--T);
}
.section-intro {
    font-size: 16px; color: var(--gray);
    max-width: 640px; margin-top: 16px; line-height: 1.75;
}
.section-dark  .section-intro,
.section-dark2 .section-intro { color: rgba(255,255,255,.55); }

/* Disc toggle — affiche/masque selon discipline active */
.disc-krav { display: block; }
.disc-leth { display: none;  }
body.lethwei .disc-krav { display: none;  }
body.lethwei .disc-leth { display: block; }

/* =============================================================
   À PROPOS
   ============================================================= */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px; align-items: start;
}
.about-body p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-body p:first-child { font-size: 17px; color: var(--dark); }
.about-list {
    margin: 20px 0 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.about-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: var(--gray);
}
.about-list li::before {
    content: '›';
    color: var(--active); font-weight: 700; font-size: 18px;
    flex-shrink: 0; line-height: 1.4;
    transition: color var(--T);
}
.coach-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 3px solid var(--active);
    transition: border-color var(--T);
}
.coach-photo {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    margin-bottom: 20px;
    filter: grayscale(15%);
    transition: filter var(--T);
}
.coach-photo:hover { filter: grayscale(0); }

/* Logo badge hero haut droite */
.hero-logo-badge {
    position: absolute;
    top: calc(var(--news-h) + var(--nav-h) + 32px);
    right: 48px;
    z-index: 3;
    transition: opacity var(--T);
}
.hero-logo-badge img {
    height: 180px; width: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.6));
    transition: transform .3s ease, opacity .4s ease;
}
.hero-logo-badge img:hover { transform: scale(1.05); }

.coach-photo-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: var(--dark3);
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 60px;
}
.coach-name {
    font-family: var(--font-title);
    font-size: 22px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 4px;
}
.coach-grade {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--active); margin-bottom: 12px;
    transition: color var(--T);
}
.coach-bio { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* Affiliation badge */
.affil-strip {
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid #e0e0e0;
}
.affil-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gray-lt); margin-bottom: 16px;
}
.affil-list { display: flex; flex-wrap: wrap; gap: 12px; }
.affil-badge {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gray);
}

/* =============================================================
   HORAIRES
   ============================================================= */
.horaires-wrap { overflow-x: auto; }
.horaires-table {
    width: 100%; border-collapse: collapse;
    font-size: 14px; min-width: 560px;
}
.horaires-table th {
    background: var(--active);
    color: var(--white);
    padding: 14px 18px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    text-align: left;
    transition: background var(--T);
}
body.lethwei .horaires-table th { color: var(--dark); }
.horaires-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    vertical-align: middle;
}
.horaires-table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.horaires-table tr:hover td { background: var(--active-bg); }
.time-cell {
    font-family: var(--font-title);
    font-size: 18px; font-weight: 700;
    color: var(--active); white-space: nowrap;
    transition: color var(--T);
}
.cours-badge {
    display: inline-block; padding: 3px 10px;
    border-radius: 2px; margin-bottom: 3px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
}
.cours-badge.krav       { background: var(--krav); color: var(--white); }
.cours-badge.krav-kids  { background: #005f5c; color: #7ee8e4; }
.cours-badge.leth       { background: var(--leth); color: var(--dark); }
.cours-detail {
    font-size: 13px; color: rgba(255,255,255,.6);
    display: block; margin-top: 2px;
}
.salle-note {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,.35);
    margin-top: 16px;
}
.salle-note::before {
    content: '📍'; font-size: 14px;
}

/* =============================================================
   TARIFS
   ============================================================= */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 24px;
}
.tarif-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: border-color var(--T), transform .2s;
}
.tarif-card:hover { transform: translateY(-4px); }
.tarif-card.featured {
    border: 2px solid var(--active);
    transition: border-color var(--T), transform .2s;
}
.tarif-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray-lt); margin-bottom: 10px;
}
.tarif-age {
    font-size: 14px; color: rgba(255,255,255,.5);
    margin-bottom: 20px;
}
.tarif-price {
    font-family: var(--font-title);
    font-size: 68px; font-weight: 900;
    color: var(--active); line-height: 1;
    transition: color var(--T);
}
.tarif-price sup { font-size: 28px; vertical-align: super; }
.tarif-sub {
    font-size: 13px; color: var(--gray-lt); margin-bottom: 8px;
}
.tarif-detail {
    font-size: 12px; color: rgba(255,255,255,.4);
    margin-bottom: 28px;
    padding: 8px 12px;
    background: rgba(255,255,255,.04);
    border-radius: 2px;
    line-height: 1.6;
}
.btn-outline {
    display: inline-block; padding: 10px 24px;
    border: 1px solid var(--active); color: var(--active);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--T), color var(--T), border-color var(--T);
}
.btn-outline:hover {
    background: var(--active);
    color: var(--white);
}
body.lethwei .btn-outline:hover { color: var(--dark); }

/* Pack combo */
.pack-combo {
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pack-combo-title {
    font-family: var(--font-title);
    font-size: 22px; font-weight: 900;
    text-transform: uppercase;
}
.pack-combo-title .krav-c { color: var(--krav); }
.pack-combo-title .leth-c { color: var(--leth); }
.pack-combo-price {
    font-family: var(--font-title);
    font-size: 48px; font-weight: 900;
    color: var(--white); line-height: 1;
}
.pack-combo-price span { font-size: 18px; color: var(--gray-lt); }
.pack-combo p { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Forfait famille */
.famille-band {
    background: var(--active-bg);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex; align-items: center; gap: 16px;
    transition: background var(--T);
}
.famille-pct {
    font-family: var(--font-title);
    font-size: 44px; font-weight: 900;
    color: var(--active); line-height: 1;
    flex-shrink: 0; transition: color var(--T);
}
.famille-band h3 {
    font-family: var(--font-title);
    font-size: 20px; text-transform: uppercase;
    color: var(--active); margin-bottom: 4px;
    transition: color var(--T);
}
.famille-band p { font-size: 14px; color: rgba(255,255,255,.6); }

/* =============================================================
   GALERIE
   ============================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.gallery-item {
    position: relative; aspect-ratio: 1/1;
    overflow: hidden; border-radius: var(--radius);
    cursor: pointer; background: var(--dark3);
}
.gallery-item img,
.gallery-item img[width],
.gallery-item img[height] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease, filter .3s;
    filter: grayscale(20%);
}
.gallery-item:hover img { transform: scale(1.08); filter: none; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: var(--active-bg);
    opacity: 0; transition: opacity var(--T);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
    aspect-ratio: 4/3; background: var(--dark3);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.15); font-size: 12px; text-align: center;
    border: 1px dashed rgba(255,255,255,.08);
    padding: 12px;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px; align-items: start;
}
.contact-salles { margin-bottom: 36px; }
.salle-card {
    background: var(--dark3);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
    border-left: 3px solid var(--active);
    transition: border-color var(--T);
}
.salle-card h4 {
    font-family: var(--font-title);
    font-size: 17px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--white); margin-bottom: 6px;
}
.salle-card p { font-size: 14px; color: rgba(255,255,255,.55); }
.salle-card .salle-jours {
    font-size: 12px; font-weight: 700;
    color: var(--active); letter-spacing: 1px;
    text-transform: uppercase; margin-top: 8px;
    transition: color var(--T);
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-line {
    display: flex; gap: 14px; align-items: flex-start;
}
.contact-line-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--active); margin-bottom: 2px;
    transition: color var(--T);
    display: block;
}
.contact-line-val {
    font-size: 15px; color: rgba(255,255,255,.8);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body); font-size: 14px;
    transition: border-color var(--T);
    width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none; border-color: var(--active);
}
.contact-form select option { background: var(--dark2); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.btn-primary {
    padding: 14px 32px;
    background: var(--active); color: var(--white);
    font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: var(--radius); border: none; cursor: pointer;
    transition: background var(--T), transform .2s;
    align-self: flex-start;
}
body.lethwei .btn-primary { color: var(--dark); }
.btn-primary:hover { background: var(--active-dk); transform: translateY(-2px); }
.contact-success {
    padding: 16px 20px;
    background: var(--active-bg);
    border: 1px solid var(--active);
    border-radius: var(--radius);
    color: var(--active); font-weight: 600;
}
.licence-note {
    margin-top: 24px; padding: 16px 20px;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    font-size: 13px; color: rgba(255,255,255,.45);
    line-height: 1.6;
}
.licence-note a { color: var(--active); text-decoration: underline; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    background: #090909;
    border-top: 2px solid var(--active);
    padding: 48px 0 24px;
    transition: border-color var(--T);
}
.footer-inner {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 48px; align-items: start;
    margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logos { display: flex; gap: 12px; align-items: center; }
.footer-logos img { height: 52px; }
.footer-tagline {
    font-size: 12px; color: rgba(255,255,255,.3);
    line-height: 1.6;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; align-content: flex-start; }
.footer-nav a {
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color var(--T);
}
.footer-nav a:hover { color: var(--active); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(255,255,255,.5);
    transition: border-color var(--T), color var(--T), background var(--T);
    font-weight: 700;
}
.social-btn:hover {
    border-color: var(--active); color: var(--active);
    background: var(--active-bg);
}
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px; color: rgba(255,255,255,.25);
    flex-wrap: wrap; gap: 8px;
}

/* Back to top */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 42px; height: 42px;
    background: var(--active); color: var(--white);
    border-radius: 50%; border: none; cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity var(--T), background var(--T), transform .2s;
    z-index: 999;
}
body.lethwei .back-to-top { color: var(--dark); }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
/* =============================================================
   NEWS — Stages & Actualités
   ============================================================= */
.s-news { background: var(--dark); padding: var(--section-pad) 0; }

.news-head {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.btn-all-news {
    padding: 9px 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,.5);
    transition: border-color var(--T), color var(--T);
}
.btn-all-news:hover { border-color: var(--active); color: var(--active); }

/* Ligne épinglée */
.news-pinned {
    display: flex; align-items: center; gap: 14px;
    background: rgba(0,185,179,.08);
    border: 1px solid rgba(0,185,179,.25);
    border-radius: var(--radius);
    padding: 13px 18px; margin-bottom: 20px;
    cursor: pointer;
    transition: background var(--T);
    flex-wrap: wrap;
}
.news-pinned:hover { background: rgba(0,185,179,.14); }
body.lethwei .news-pinned { background: rgba(232,160,32,.08); border-color: rgba(232,160,32,.25); }
body.lethwei .news-pinned:hover { background: rgba(232,160,32,.14); }
.pin-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--active); flex-shrink: 0;
    transition: background var(--T);
}
.pin-text { font-size: 14px; font-weight: 600; color: var(--white); flex: 1; }
.pin-date { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); white-space: nowrap; }
.pin-arrow { color: var(--active); font-size: 14px; transition: color var(--T); }

/* Grille 3 cartes */
.news-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 16px;
}

/* Carte news */
.nc {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color var(--T), transform .2s;
}
.nc:hover { border-color: rgba(255,255,255,.2); transform: translateY(-3px); }

/* Image */
.nc-img-link { display: block; }
.nc-img {
    position: relative; overflow: hidden;
    background: var(--dark3);
    display: flex; align-items: center; justify-content: center;
}
.nc.featured .nc-img { aspect-ratio: 16/9; }
.nc.mini    .nc-img { aspect-ratio: 3/2; }
.nc-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.nc:hover .nc-thumb { transform: scale(1.05); }
.nc-img-ph { font-size: 48px; }
.nc-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
}

/* Badges */
.nc-badge {
    display: inline-block; padding: 4px 10px; border-radius: 2px;
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.nc-badge.krav  { background: var(--krav); color: var(--white); }
.nc-badge.leth  { background: var(--leth); color: var(--dark); }
.nc-badge.both  { background: var(--dark4); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.nc-badge.annonce { background: rgba(255,255,255,.12); color: var(--white); }
/* Badge positionné sur image */
.nc-img .nc-badge { position: absolute; top: 14px; left: 14px; }
.nc-date-ov { position: absolute; bottom: 12px; left: 14px; font-size: 11px; color: rgba(255,255,255,.6); font-weight: 600; }

/* Corps */
.nc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.nc.featured .nc-body { padding: 22px; }
.nc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.nc-date-txt { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); }

.nc-title {
    font-family: var(--font-title);
    font-weight: 900; text-transform: uppercase;
    line-height: 1.15; margin-bottom: 10px;
}
.nc.featured .nc-title { font-size: 26px; }
.nc.mini    .nc-title { font-size: 19px; }
.nc-title a { color: var(--white); transition: color var(--T); }
.nc-title a:hover { color: var(--active); }

.nc-excerpt {
    font-size: 13px; color: rgba(255,255,255,.5);
    line-height: 1.65; flex: 1; margin-bottom: 16px;
}
.nc.mini .nc-excerpt {
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}

.nc-footer { margin-top: auto; }
.nc-lire {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--krav); transition: color var(--T);
    display: inline-flex; align-items: center; gap: 5px;
}
.nc-lire.leth { color: var(--leth); }
.nc-lire:hover { opacity: .75; }

/* Message vide */
.news-empty {
    text-align: center; padding: 48px;
    color: rgba(255,255,255,.4);
    border: 1px dashed rgba(255,255,255,.1);
    border-radius: var(--radius);
}

/* =============================================================
   RESPONSIVE (suite)
   ============================================================= */
@media (max-width: 1024px) {
    .about-layout  { grid-template-columns: 1fr; }
    .tarifs-grid   { grid-template-columns: 1fr 1fr; }
    .contact-grid  { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr 1fr; }
    .hero-logo-badge img { height: 130px; }
}
@media (max-width: 900px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
    .nc.featured { grid-column: 1 / -1; }
    .hero-logo-badge { right: 24px; }
    .hero-logo-badge img { height: 100px; }
}
@media (max-width: 768px) {
    :root { --section-pad: 56px; }

    /* NAV — logo texte masqué pour gagner de la place */
    .nav-toggle { display: flex; }
    .nav-inner  { gap: 12px; }
    .logo-text  { display: none; }

    /* Switcher discipline — reste dans la navbar, centré */
    .discipline-switcher {
        position: static;
        flex: 1;
        justify-content: center;
        border-radius: var(--radius);
        margin: 0 8px;
    }
    .sw-btn { flex: 1; justify-content: center; padding: 8px 10px; font-size: 11px; }

    /* Hero — padding normal */
    .hero-section { padding-top: calc(var(--news-h) + var(--nav-h)); }

    /* Hero — masquer le panneau diagonal, overlay uniforme */
    .hero-geo { display: none; }
    .hero-overlay { background: rgba(0,0,0,.65); }

    /* Hero content — pleine largeur sur mobile */
    .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 24px;
        padding-right: 24px;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Hero — logo restauré à 150px */
    .hero-logo-badge {
        display: block !important;
        position: absolute !important;
        top: -120px !important;
        right: 12px !important;
    }
    .hero-logo-badge img { height: 150px; }
    .hero-content { padding-right: 170px; }

    /* Stats sur une seule ligne */
    .hero-stats {
        gap: 16px;
        flex-wrap: nowrap;
        margin-top: 28px;
    }
    .hero-stat-val   { font-size: 28px; }
    .hero-stat-label { font-size: 9px; letter-spacing: 0; }

    /* Menu mobile */
    .primary-menu {
        display: none; position: absolute;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--dark2); flex-direction: column;
        padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1);
        z-index: 1001;
    }
    .primary-menu.open { display: flex; }
    .primary-menu a { padding: 12px 24px; font-size: 13px; }

    /* Hero image mobile — versions portrait */
    .hero-bg-leth {
        background-image: url('../images/hero-leth-mobile.jpg') !important;
        background-position: center center !important;
        background-size: cover !important;
    }
    .hero-bg-krav {
        background-position: center center !important;
        background-size: cover !important;
    }

    /* Stats sur une seule ligne */
    .hero-stats {
        gap: 16px;
        flex-wrap: nowrap;
        margin-top: 28px;
    }
    .hero-stat-val   { font-size: 30px; }
    .hero-stat-label { font-size: 10px; }

    /* Grilles */
    .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
    .tarifs-grid   { grid-template-columns: 1fr; }
    .pack-combo    { flex-direction: column; }
    .contact-grid  { gap: 40px; }
}
@media (max-width: 480px) {
    /* Hero */
    .hero-h1    { font-size: 52px; letter-spacing: -1px; }
    .hero-sub   { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .btn-hero   { text-align: center; }

    .hero-logo-badge img { height: 150px; }
    .hero-content { padding-right: 170px; }

    /* Grilles */
    .gallery-grid   { grid-template-columns: 1fr; }
    .footer-inner   { grid-template-columns: 1fr; }
    .news-grid      { grid-template-columns: 1fr; }

    /* News bar */
    .news-bar-label { display: none; }

    /* Tarifs */
    .tarif-price    { font-size: 52px; }
    .pack-combo-price { font-size: 36px; }

    /* Footer */
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Horaires scroll horizontal */
    .horaires-wrap { -webkit-overflow-scrolling: touch; }
}