/* =========================================================
   Pro Fight Team — thème public "Fight Night"
   Couche visuelle uniquement : aucune logique métier modifiée.
   ========================================================= */

:root {
    --ink: #f4f4f3;
    --ink-2: #d3d3d0;
    --muted: #999b9c;
    --line: #292b2e;
    --line-strong: #3a3d40;
    --bg: #080909;
    --bg-alt: #111214;
    --surface: #0d0e10;
    --dark: #050606;
    --dark-2: #121416;

    --brand: #d30f1b;
    --brand-dark: #f0212c;
    --brand-soft: rgba(211, 15, 27, .12);
    --ok: #50c98d;
    --ok-soft: rgba(80, 201, 141, .12);

    --r-sm: 4px;
    --r: 6px;
    --r-lg: 8px;
    --shadow-sm: 0 1px 0 rgba(255,255,255,.02), 0 10px 28px rgba(0,0,0,.22);
    --shadow: 0 1px 0 rgba(255,255,255,.04), 0 18px 42px rgba(0,0,0,.32);
    --shadow-lg: 0 24px 70px rgba(0,0,0,.45);

    --font-body: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

html { background: #080909; }
body.public-site {
    color: var(--ink);
    background:
        radial-gradient(1000px 540px at 50% -220px, rgba(211,15,27,.07), transparent 72%),
        var(--bg);
    font-family: var(--font-body);
}

h1, h2, h3, h4,
.brand-copy strong,
.main-nav,
.button,
.kicker,
.proof-grid strong,
.level-badge,
.footer-title,
.fighter-follow-trigger {
    font-family: var(--font-display);
}

h1, h2, h3, h4 {
    letter-spacing: .015em;
    text-transform: uppercase;
}

p, li, address, small, span { text-wrap: pretty; }

/* Navigation ------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(5, 6, 6, .94);
    border-bottom: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(0,0,0,.32); }
.nav-shell { height: 72px; }
.brand img { width: 40px; height: 40px; }
.brand-copy strong { color: #fff; font-size: 18px; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; }
.brand-copy span { color: #85888b; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.main-nav { gap: 2px; font-size: 14px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.main-nav > a:not(.nav-cta) {
    position: relative;
    padding: 10px 13px;
    border-radius: 0;
    color: #d2d2cf;
    background: transparent;
}
.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}
.main-nav > a:not(.nav-cta):hover,
.main-nav > a.is-active { color: #fff; background: transparent; }
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.is-active::after { transform: scaleX(1); }
.nav-cta {
    margin-left: 10px;
    padding: 11px 18px;
    border-radius: 3px;
    background: var(--brand);
    box-shadow: none;
    color: white;
}
.nav-cta:hover { background: #ef1e2b; transform: none; }
.nav-toggle { border-color: #35373a; border-radius: 4px; background: #101113; }
.nav-toggle span:not(.sr-only) { background: #fff; }

/* Typographie et éléments communs --------------------------- */
.kicker {
    gap: 9px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #f0212c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .095em;
}
.kicker > span { width: 24px; height: 2px; border-radius: 0; background: var(--brand); }
.kicker.dark { background: transparent; color: #ef2a34; }
.kicker.dark > span { background: var(--brand); }
.kicker.on-dark { background: transparent; color: #ef2a34; }

.button {
    min-height: 48px;
    padding-inline: 22px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--brand); box-shadow: none; }
.button-primary:hover { background: #ee1d29; }
.button-dark { background: #181a1c; border: 1px solid #383b3e; }
.button-outline { background: transparent; color: #f4f4f3; box-shadow: inset 0 0 0 1px #45484b; }
.button-outline:hover { background: #fff; color: #090a0a; box-shadow: none; }
.button-link { color: #fff; text-decoration-color: #55585b; }

.section { padding: 90px 0; }
.section-tight { padding: 72px 0; }
.section-heading h2,
.split-heading h2,
.contact-copy h2,
.method-copy h2 {
    color: #fff;
    font-size: clamp(38px, 4.6vw, 58px);
    line-height: .98;
    letter-spacing: .01em;
}
.section-heading p,
.split-heading > p,
.contact-copy > p,
.section-intro { color: #a5a7a8; }

/* Hero accueil ---------------------------------------------- */
.hero.hero-cinematic {
    position: relative;
    min-height: 660px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #050606;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center 42%;
    border-bottom: 1px solid #27292c;
}
.hero.hero-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.82) 36%, rgba(0,0,0,.42) 65%, rgba(0,0,0,.25) 100%),
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.06) 48%, rgba(0,0,0,.75) 100%);
}
.hero.hero-cinematic::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255,255,255,.11);
}
.hero-cinematic .hero-layout {
    position: relative;
    z-index: 2;
    display: block;
    width: var(--container);
    padding: 112px 0 88px;
}
.hero-cinematic .hero-copy { max-width: 680px; }
.hero-cinematic .hero-copy h1 {
    max-width: 680px;
    margin: 18px 0 20px;
    color: #fff;
    font-size: clamp(58px, 8vw, 98px);
    line-height: .88;
    letter-spacing: .005em;
}
.hero-cinematic .hero-copy h1 em { color: #fff; font-style: normal; }
.hero-cinematic .hero-copy > p { max-width: 570px; color: #d0d0ce; font-size: 18px; line-height: 1.55; }
.hero-cinematic .hero-actions { margin: 30px 0 34px; }
.hero-cinematic .hero-facts { max-width: 760px; border-color: rgba(255,255,255,.18); }
.hero-cinematic .hero-facts > span { color: #c3c4c3; }
.hero-cinematic .hero-facts svg { color: #ef1f2b; }
.hero-cinematic .hero-visual { display: none; }

.proof-strip { padding: 0; background: #070808; }
.proof-grid {
    border-width: 0 1px 1px;
    border-color: #292b2e;
    border-radius: 0;
    background: #292b2e;
    box-shadow: none;
}
.proof-grid > div { padding: 23px 28px; background: #0c0d0f; }
.proof-grid strong { color: #ef202c; font-size: 34px; letter-spacing: .01em; }
.proof-grid span { color: #9fa1a2; }

/* Disciplines ------------------------------------------------ */
.disciplines-section { background: #090a0b; }
.discipline-grid { gap: 18px; }
.discipline-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid #33363a;
    border-radius: 5px;
    background: #0c0d0f;
    box-shadow: none;
}
.discipline-card:hover { transform: translateY(-3px); border-color: #55595d; box-shadow: 0 18px 42px rgba(0,0,0,.35); }
.discipline-media { position: relative; height: 225px; overflow: hidden; background: #121315; }
.discipline-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; filter: saturate(.9) contrast(1.04); }
.discipline-card:hover .discipline-media img { transform: scale(1.035); filter: saturate(1) contrast(1.07); }
.discipline-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(4,5,5,.85) 100%); }
.discipline-icon {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    margin: 0;
    border: 1px solid rgba(239,31,43,.9);
    border-radius: 4px;
    background: rgba(5,6,6,.83);
    color: #f0202c;
    backdrop-filter: blur(6px);
}
.discipline-icon svg { width: 24px; height: 24px; }
.discipline-index {
    position: absolute;
    z-index: 2;
    right: 17px;
    top: 14px;
    color: rgba(255,255,255,.82);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .08em;
}
.discipline-body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 26px; }
.discipline-body > span { color: #ef2631; font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.discipline-body h3 { margin: 5px 0 10px; color: #fff; font-size: 30px; line-height: 1; }
.discipline-body p { margin: 0 0 22px; color: #a9abad; font-size: 15px; }
.discipline-body > a { margin-top: auto; color: #f02531; font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.discipline-body > a:hover { color: #fff; text-decoration: none; }

/* Sections accueil ------------------------------------------ */
.audience-section,
.contact-section { background: #0d0e10; }
.audience-card,
.practical-card,
.schedule-help,
.public-empty-state,
.empty-public,
.skill-card,
.coach-profile {
    border-color: #2c2f32;
    background: #101113;
    box-shadow: none;
}
.audience-card { border-radius: 5px; }
.audience-card strong { color: #fff; }
.audience-card span { color: #9da0a2; }
.audience-card em { border-radius: 3px; background: #17191b; box-shadow: inset 0 0 0 1px #34373a; color: #dbdcda; }
.method-section { background: #060707; }
.method-image img { border-radius: 5px; filter: saturate(.8) contrast(1.05); }
.image-stamp { border-radius: 3px; box-shadow: none; }
.image-stamp strong { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.pillar > span { border-radius: 3px; background: rgba(211,15,27,.15); color: #f12a35; font-family: var(--font-display); }
.pillar h3 { color: #fff; font-size: 20px; }
.practical-section { background: #090a0b; }
.info-list strong, .practical-card h3 { color: #fff; }
.info-list span, .info-list address, .checklist li { color: #a0a2a4; }
.contact-card { border: 1px solid #33363a; border-radius: 5px; background: #080909; box-shadow: none; }

/* Bannières pages intérieures ------------------------------- */
.page-hero.page-hero-image {
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    background-color: #060707;
    background-image: var(--page-hero-image);
    background-size: cover;
    background-position: var(--page-hero-position, center 45%);
    border-bottom: 1px solid #303236;
}
.page-hero.page-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 42%, rgba(0,0,0,.36) 70%, rgba(0,0,0,.45) 100%),
        linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.72));
}
.page-hero-image .page-hero-content { max-width: 760px; padding: 72px 0 48px; }
.page-hero-image h1 { margin: 12px 0 10px; color: #fff; font-size: clamp(48px, 6.5vw, 72px); line-height: .95; }
.page-hero-image h1 em { color: #fff; font-style: normal; }
.page-hero-image p { color: #d0d1cf; font-size: 17px; }

/* Planning --------------------------------------------------- */
.schedule-section,
.fighters-section,
.coach-section,
.fighter-skill-section,
.fighter-back { background: #090a0b; }
.schedule-toolbar { color: #d7d7d5; }
.schedule-toolbar a { color: #ef2530; }
.day-column { border-color: #303337; border-radius: 4px; background: #0d0e10; box-shadow: none; }
.day-column > header { border-color: #292c2f; background: #151719; }
.day-column > header h2 { color: #fff; font-size: 19px; text-transform: uppercase; }
.day-courses { background: #0c0d0f; }
.course-card { border-radius: 3px; background: #151719; }
.course-card:hover { background: #191b1e !important; }
.course-card h3, .course-time strong { color: #fff; }
.course-time span, .no-course { color: #8f9295; }
.level-badge { border-radius: 2px; background: #202225; color: #c6c7c7; }
.level-badge.is-open { background: rgba(80,201,141,.12); color: #64d49b; }
.schedule-help h2 { color: #fff; font-size: 38px; }
.help-grid p { border-color: #2c2f32; }
.help-grid strong { color: #fff; }
.help-grid span { color: #9da0a2; }

/* Combattants ------------------------------------------------ */
.roster-heading h2 { color: #fff; font-size: 38px; }
.roster-heading > p { color: #949799; }
.fighter-card { border-color: #303337; border-radius: 4px; background: #0d0e10; box-shadow: none; }
.fighter-card:hover { box-shadow: 0 20px 45px rgba(0,0,0,.38); }
.fighter-gradient { background: linear-gradient(to top, rgba(5,6,6,.9), transparent 58%); }
.win-rate strong { font-family: var(--font-display); font-size: 30px; }
.fighter-meta { color: #e52630; font-family: var(--font-display); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.fighter-body h2 { color: #fff; font-size: 29px; line-height: 1; }
.record { border-radius: 3px; background: #151719; }
.record strong, .fighter-stats strong { color: #fff; }
.record span, .fighter-stats span, .skill-line span, .no-skills { color: #919497; }
.fighter-stats { border-radius: 3px; background: #292c2f; }
.fighter-stats > div { background: #101113; }
.skill-preview { border-color: #2b2e31; }
.skill-track { background: #272a2d; }
.skill-track i { background: linear-gradient(90deg, #b80c16, #f02531); }
.fighter-link { border-radius: 3px; background: #17191b; color: #fff; font-family: var(--font-display); letter-spacing: .035em; text-transform: uppercase; }
.fighter-link:hover { background: #fff; color: #090a0a; }

/* Fiche combattant ------------------------------------------ */
.fighter-profile-hero.fighter-profile-cinematic {
    position: relative;
    overflow: hidden;
    padding: 68px 0 72px;
    background-color: #060707;
    background-image: var(--fighter-hero-image);
    background-size: cover;
    background-position: center 24%;
    border-bottom: 1px solid #2d3033;
}
.fighter-profile-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.91) 46%, rgba(0,0,0,.82) 100%),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.65));
    backdrop-filter: blur(1px);
}
.fighter-profile-cinematic .fighter-profile-layout { position: relative; z-index: 1; }
.fighter-profile-photo img { border: 1px solid #3a3d40; border-radius: 4px; box-shadow: 0 25px 65px rgba(0,0,0,.45); }
.fighter-profile-photo > span { border-radius: 2px; background: #d30f1b; color: #fff; font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; }
.fighter-profile-copy h1 { color: #fff; font-size: clamp(50px, 7vw, 78px); line-height: .92; }
.fighter-profile-copy > p { color: #b8b9b9; }
.profile-record { border-color: #373a3d; border-radius: 3px; background: #373a3d; }
.profile-record div { background: rgba(10,11,12,.84); }
.profile-record strong { color: #fff; font-family: var(--font-display); font-size: 30px; }
.profile-record span { color: #96999b; }
.fighter-detail-grid h2 { color: #fff; font-size: 40px; }
.skill-card { border-radius: 4px; }
.skill-card header strong { color: #fff; }
.skill-card header span { border-radius: 2px; background: rgba(211,15,27,.12); color: #f22a35; }
.skill-card small { color: #919496; }

/* Coachs ----------------------------------------------------- */
.coach-profile { border-radius: 5px; }
.coach-photo img { border: 1px solid #34373a; border-radius: 4px; filter: saturate(.82) contrast(1.04); }
.coach-photo > span { border-radius: 2px; background: #d30f1b; color: #fff; font-family: var(--font-display); letter-spacing: .035em; text-transform: uppercase; }
.coach-content h2 { color: #fff; font-size: clamp(38px, 4.4vw, 54px); }
.coach-bio { color: #a8aaab; }
.coach-details > div { border: 1px solid #292c2f; border-radius: 3px; background: #151719; }
.coach-details strong { color: #fff; font-family: var(--font-display); }
.coach-details span { color: #909396; }
.tag-list span { border: 1px solid #303337; border-radius: 2px; background: #151719; color: #b9bbbc; }

/* Footer / pointage ----------------------------------------- */
.site-footer { border-top: 1px solid #292c2f; background: #050606; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-intro { color: #878a8c; }
.footer-grid a, .footer-grid address { color: #b2b4b5; }
.footer-grid a:hover { color: #fff; }
.checkin-page { background: #090a0b; }
.checkin-card { border-color: #303337; border-radius: 5px; background: #101113; box-shadow: var(--shadow); }
.checkin-card h1 { color: #fff; }
.checkin-card > p { color: #a1a3a5; }
.checkin-form select { border-color: #3a3d40; background: #151719; color: #fff; }

/* Suivre ----------------------------------------------------- */
.fighter-follow-trigger { border-radius: 3px; border-color: #3c3f42; background: #101214; }
.fighter-follow-menu { border-radius: 4px; border-color: #373a3d; background: #090a0b; }
.fighter-follow-menu::after { background: #090a0b; }

/* Responsive ------------------------------------------------- */
@media (max-width: 860px) {
    .main-nav { background: #090a0b; border-top: 1px solid #292c2f; }
    .main-nav > a:not(.nav-cta) { color: #e7e7e5; }
    .hero.hero-cinematic { min-height: 610px; background-position: 58% center; }
    .hero-cinematic .hero-layout { padding: 90px 0 68px; }
    .page-hero.page-hero-image { min-height: 300px; }
    .page-hero-image .page-hero-content { padding: 62px 0 42px; }
    .discipline-media { height: 210px; }
}

@media (max-width: 620px) {
    .brand-copy strong { font-size: 16px; }
    .hero.hero-cinematic { min-height: 650px; background-position: 62% center; }
    .hero.hero-cinematic::before {
        background:
            linear-gradient(180deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.48) 34%, rgba(0,0,0,.94) 72%, rgba(0,0,0,.98) 100%);
    }
    .hero-cinematic .hero-layout { padding: 240px 0 48px; }
    .hero-cinematic .hero-copy h1 { font-size: clamp(52px, 17vw, 72px); }
    .hero-cinematic .hero-copy > p { font-size: 16px; }
    .hero-cinematic .hero-facts { gap: 10px; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid > div { padding: 20px; }
    .proof-grid strong { font-size: 30px; }
    .section { padding: 68px 0; }
    .section-heading h2, .split-heading h2, .contact-copy h2, .method-copy h2 { font-size: 38px; }
    .discipline-media { height: 205px; }
    .page-hero.page-hero-image { min-height: 280px; background-position: var(--page-hero-position-mobile, center); }
    .page-hero-image .page-hero-content { padding: 74px 0 36px; }
    .page-hero-image h1 { font-size: clamp(46px, 15vw, 62px); }
    .fighter-profile-hero.fighter-profile-cinematic { background-position: 52% 16%; }
    .fighter-profile-cinematic::before { background: rgba(0,0,0,.86); }
    .fighter-profile-copy h1 { font-size: 54px; }
}


/* =========================================================
   Finition équilibrée — plus de lumière, même identité combat
   ========================================================= */
body.public-site {
    background: #f5f5f3;
    color: #1a1a1a;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; text-transform: none; }
.main-nav, .button, .kicker, .fighter-meta, .level-badge, .fighter-follow-trigger { font-family: var(--font-display); }

/* Alternance clair / sombre façon site sportif : les images fortes restent dans les bandeaux. */
.disciplines-section,
.practical-section,
.schedule-section,
.fighters-section,
.coach-section,
.fighter-skill-section,
.fighter-back { background: #ffffff; }

.audience-section { background: #f4f4f2; }

.disciplines-section .section-heading h2,
.disciplines-section .section-heading p,
.audience-section .section-heading h2,
.audience-section .section-heading p,
.practical-section .section-heading h2,
.practical-section .section-heading p,
.roster-heading h2,
.schedule-section h2,
.schedule-help h2,
.coach-section h2,
.fighter-skill-section h2 { color: #161616; }

.disciplines-section .section-heading p,
.audience-section .section-heading p,
.practical-section .section-heading p,
.roster-heading > p,
.section-intro { color: #666b70; }

.discipline-card,
.audience-card,
.practical-card,
.schedule-help,
.public-empty-state,
.empty-public,
.skill-card,
.coach-profile {
    border-color: #e1e2e3;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 18, 20, .06);
}

.discipline-card:hover {
    border-color: #c7c8ca;
    box-shadow: 0 18px 40px rgba(16,18,20,.11);
}
.discipline-media { height: 235px; background: #e9e9e7; }
.discipline-media img {
    filter: saturate(.96) contrast(1.03);
    image-rendering: auto;
}
.discipline-media::after { background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.34) 100%); }
.discipline-body h3 { color: #171717; }
.discipline-body p { color: #5f6468; }
.discipline-body > a:hover { color: #111; }

.audience-card strong { color: #181818; }
.audience-card span { color: #686c70; }
.audience-card em { background: #f3f3f1; box-shadow: inset 0 0 0 1px #dedfdf; color: #404347; }

.practical-card h3,
.info-list strong { color: #181818; }
.info-list span,
.info-list address,
.checklist li { color: #60656a; }

/* Planning clair */
.schedule-toolbar { color: #5b6065; }
.day-column { border-color: #dedfe1; background: #fff; box-shadow: 0 8px 24px rgba(20,22,24,.05); }
.day-column > header { border-color: #e3e4e5; background: #f5f5f3; }
.day-column > header h2 { color: #171717; }
.day-courses { background: #fff; }
.course-card { background: #f5f5f4; }
.course-card:hover { background: #eeeeec !important; }
.course-card h3, .course-time strong { color: #191919; }
.course-time span, .no-course { color: #73777b; }
.level-badge { background: #ececea; color: #4f5357; }
.schedule-help { background: #f7f7f5; }
.help-grid p { border-color: #e0e1e2; }
.help-grid strong { color: #171717; }
.help-grid span { color: #666b70; }

/* Combattants : cartes blanches, photos toujours sombres et fortes */
.fighter-card { border-color: #dedfe1; background: #fff; box-shadow: 0 8px 26px rgba(20,22,24,.06); }
.fighter-card:hover { box-shadow: 0 18px 42px rgba(20,22,24,.12); }
.fighter-body h2 { color: #171717; }
.record { background: #f3f3f1; }
.record strong, .fighter-stats strong { color: #171717; }
.record span, .fighter-stats span, .skill-line span, .no-skills { color: #717579; }
.fighter-stats { background: #e8e8e6; }
.fighter-stats > div { background: #f7f7f5; }
.skill-preview { border-color: #e2e3e4; }
.skill-track { background: #e6e7e8; }
.fighter-link { background: #151515; color: #fff; }
.fighter-link:hover { background: var(--brand); color: #fff; }

/* Fiche et coachs */
.skill-card header strong,
.coach-content h2,
.coach-details strong { color: #181818; }
.skill-card small,
.coach-bio,
.coach-details span { color: #686c70; }
.coach-details > div { border-color: #e0e1e2; background: #f7f7f5; }
.tag-list span { border-color: #dedfe0; background: #f4f4f2; color: #555a5e; }
.fighter-back .button-outline { color: #171717; box-shadow: inset 0 0 0 1px #bfc1c4; }
.fighter-back .button-outline:hover { background: #171717; color: #fff; }

@media (max-width: 860px) {
    .discipline-media { height: 220px; }
}

@media (max-width: 620px) {
    .discipline-media { height: 215px; }
}

/* =========================================================
   Accueil plus lumineux — conserver le caractère sans le noir massif
   ========================================================= */

/* Le bandeau de chiffres reste lié au hero, mais passe d'un noir pur
   à un anthracite légèrement dégradé. */
.proof-strip {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #111315 0%, #232629 100%);
}
.proof-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(600px 180px at 18% 0%, rgba(255,255,255,.075), transparent 68%),
        radial-gradient(500px 170px at 84% 100%, rgba(211,15,27,.07), transparent 72%);
}
.proof-strip .container { position: relative; z-index: 1; }
.proof-grid {
    border-color: rgba(255,255,255,.11);
    background: rgba(255,255,255,.08);
}
.proof-grid > div {
    background: rgba(20,22,24,.76);
    border-color: rgba(255,255,255,.08);
}
.proof-grid span { color: #c2c4c5; }

/* Bloc central : plus de noir plat. Le fond reste sportif et sombre,
   mais il est désormais anthracite, avec une lumière diffuse et un
   fondu doux vers les sections claires qui l'entourent. */
.method-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 112px;
    padding-bottom: 112px;
    background:
        radial-gradient(900px 520px at 14% 48%, rgba(255,255,255,.105), transparent 62%),
        radial-gradient(650px 430px at 88% 35%, rgba(211,15,27,.085), transparent 66%),
        linear-gradient(125deg, #33373a 0%, #24272a 38%, #17191b 68%, #2b2e31 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        inset 0 -1px 0 rgba(255,255,255,.07);
}
.method-section::before,
.method-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    height: 70px;
    pointer-events: none;
}
.method-section::before {
    top: 0;
    background: linear-gradient(180deg, rgba(244,244,242,.28) 0%, rgba(244,244,242,.07) 28%, transparent 100%);
}
.method-section::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.06) 30%, transparent 100%);
}
.method-section .method-layout { position: relative; z-index: 1; }
.method-image img {
    filter: saturate(.94) contrast(1.015) brightness(1.04);
    box-shadow: 0 24px 58px rgba(0,0,0,.28);
}
.method-copy .lead { color: rgba(255,255,255,.82); }
.pillar {
    margin-top: 8px;
    padding: 18px 18px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 5px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(3px);
}
.pillar + .pillar { margin-top: 8px; }
.pillar:last-child { border-bottom-color: rgba(255,255,255,.09); }
.pillar p { color: rgba(255,255,255,.7); }
.pillar > span {
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

/* La dernière zone de l'accueil repasse claire : un seul petit bloc
   sombre à droite suffit pour garder le contraste avant le footer. */
.contact-section {
    background:
        radial-gradient(780px 300px at 92% 40%, rgba(211,15,27,.045), transparent 70%),
        linear-gradient(180deg, #f8f8f6 0%, #eeeeeb 100%);
}
.contact-copy h2 { color: #171717; }
.contact-copy > p { color: #5f6468; }
.contact-section .kicker:not(.on-dark) { color: #b70d17; }
.contact-section .button-outline {
    color: #171717;
    box-shadow: inset 0 0 0 1px #babdc0;
}
.contact-section .button-outline:hover {
    background: #171717;
    color: #fff;
}
.contact-card {
    border-color: #34373a;
    background: linear-gradient(145deg, #1c1e20 0%, #111315 100%);
    box-shadow: 0 22px 48px rgba(20,22,24,.16);
}

@media (max-width: 860px) {
    .method-section {
        padding-top: 82px;
        padding-bottom: 82px;
        background:
            radial-gradient(650px 420px at 25% 20%, rgba(255,255,255,.09), transparent 65%),
            radial-gradient(520px 360px at 90% 85%, rgba(211,15,27,.07), transparent 68%),
            linear-gradient(145deg, #303336 0%, #202326 58%, #292c2f 100%);
    }
}

@media (max-width: 620px) {
    .proof-strip { background: linear-gradient(180deg, #151719 0%, #24272a 100%); }
    .method-section { padding-top: 72px; padding-bottom: 72px; }
    .pillar { padding: 16px; }
}

/* =========================================================
   Correctif accueil — section "Notre état d'esprit" claire
   ========================================================= */
.method-section {
    position: relative;
    isolation: auto;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 96px;
    background: #ffffff;
    box-shadow: none;
    border-top: 1px solid #ececea;
    border-bottom: 1px solid #ececea;
}

.method-section::before,
.method-section::after {
    display: none;
}

.method-section .method-layout {
    position: relative;
    z-index: 1;
}

.method-copy h2 {
    color: #171717;
}

.method-copy .kicker,
.method-section .kicker {
    color: #b70d17;
}

.method-copy .lead {
    color: #5f6468;
}

.method-image {
    position: relative;
}

.method-image img {
    filter: saturate(.96) contrast(1.025) brightness(1.025);
    border: 1px solid #e1e2e3;
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(16, 18, 20, .10);
}

.pillar {
    margin-top: 8px;
    padding: 18px;
    border: 1px solid #e1e2e3;
    border-radius: 6px;
    background: #f7f7f5;
    box-shadow: none;
    backdrop-filter: none;
}

.pillar + .pillar {
    margin-top: 10px;
}

.pillar:last-child {
    border-bottom-color: #e1e2e3;
}

.pillar strong {
    color: #181818;
}

.pillar p {
    color: #666b70;
}

.pillar > span {
    color: #c90e19;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #dedfe0;
}

@media (max-width: 860px) {
    .method-section {
        padding-top: 78px;
        padding-bottom: 78px;
        background: #ffffff;
    }
}

@media (max-width: 620px) {
    .method-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .pillar {
        padding: 16px;
    }
}
