/* =========================================================
   AmandinePcoaching - Extensions CSS
   Palette v2 : bleu marine + orange saumon + rose poudre
   ========================================================= */

/* ========== BACKGROUND ANIME (blobs flottants) ========== */
/*
 * Fond anime : blobs colores flottants en parallaxe lente.
 * Donne une vibe "vivante" sans etre distractant.
 * Desactive automatiquement si prefers-reduced-motion.
 */
body {
    background: var(--bg-light);
    position: relative;
    overflow-x: hidden;
}

/* Container de blobs fixe derriere tout le contenu */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    will-change: transform;
}

.bg-blob--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: blob-float-1 22s ease-in-out infinite;
}

.bg-blob--2 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: 30%;
    right: -200px;
    animation: blob-float-2 28s ease-in-out infinite;
    opacity: 0.28;
}

.bg-blob--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation: blob-float-3 25s ease-in-out infinite;
    opacity: 0.4;
}

.bg-blob--4 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    bottom: -80px;
    right: 20%;
    animation: blob-float-4 20s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes blob-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(120px, 80px) scale(1.15); }
    66%      { transform: translate(80px, 180px) scale(0.9); }
}
@keyframes blob-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-140px, 100px) scale(1.2); }
}
@keyframes blob-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-80px, -120px) scale(1.1); }
    66%      { transform: translate(100px, -60px) scale(0.95); }
}
@keyframes blob-float-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-100px, -140px) scale(1.25); }
}

@media (prefers-reduced-motion: reduce) {
    .bg-blob { animation: none !important; }
}

/* Sur mobile : blobs plus petits, moins nombreux */
@media (max-width: 860px) {
    .bg-blob { filter: blur(60px); opacity: 0.25; }
    .bg-blob--1 { width: 280px; height: 280px; }
    .bg-blob--2 { width: 340px; height: 340px; }
    .bg-blob--3 { width: 240px; height: 240px; }
    .bg-blob--4 { display: none; }
}

/* S'assurer que les sections ont un fond blanc/creme opaque quand besoin */
.piliers-section,
.proof-section,
.planning-preview,
.planning-section,
.tarifs-section,
.parcours-section,
.local-intro,
.zones-couvertes,
.trails-profils,
.trails-methode,
.trails-inclus,
.about-story,
.faq-section,
.video-section,
.certifications-section,
.zone-section,
.guides-lies,
.local-unique,
.article-body,
.article-footer {
    position: relative;
    z-index: 1;
}

/* ========== REVEAL ON SCROLL ========== */
.will-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.will-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger sur les grilles pour effet cascade */
.piliers-grid .will-reveal:nth-child(2) { transition-delay: .08s; }
.piliers-grid .will-reveal:nth-child(3) { transition-delay: .16s; }
.piliers-grid .will-reveal:nth-child(4) { transition-delay: .24s; }
.parcours-grid .will-reveal:nth-child(2) { transition-delay: .08s; }
.parcours-grid .will-reveal:nth-child(3) { transition-delay: .16s; }
.parcours-grid .will-reveal:nth-child(4) { transition-delay: .24s; }
.formations-grid .will-reveal:nth-child(2) { transition-delay: .08s; }
.formations-grid .will-reveal:nth-child(3) { transition-delay: .16s; }
.formations-grid .will-reveal:nth-child(4) { transition-delay: .24s; }
.formations-grid .will-reveal:nth-child(5) { transition-delay: .32s; }
.formations-grid .will-reveal:nth-child(6) { transition-delay: .4s; }
.tarifs-grid .will-reveal:nth-child(2) { transition-delay: .1s; }
.tarifs-grid .will-reveal:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
    .will-reveal { opacity: 1; transform: none; transition: none; }
}

/* ========== MICRO-ANIMATIONS WHAOU ========== */

/* Hero : fade-in cascade au load */
.hero-text > * {
    opacity: 0;
    animation: hero-in .7s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-text .hero-badge { animation-delay: .1s; }
.hero-text h1 { animation-delay: .2s; }
.hero-text .hero-subtitle { animation-delay: .35s; }
.hero-text .hero-cta { animation-delay: .5s; }
.hero-text .hero-trust { animation-delay: .65s; }

@keyframes hero-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Badge avec glow animé au load */
.hero-badge {
    position: relative;
    overflow: hidden;
}
.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: badge-shine 3s ease-in-out infinite;
    animation-delay: 1.5s;
}
@keyframes badge-shine {
    0%, 100% { transform: translateX(-100%); }
    50%      { transform: translateX(100%); }
}

/* Highlight dans H1 : gradient anime lentement */
.hero-text h1 .highlight {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Pilier cards : hover glow saumon */
.pilier-card {
    position: relative;
    overflow: hidden;
}
.pilier-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(229,142,90,0.15) 0%, transparent 40%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 1;
}
.pilier-card:hover::after { opacity: 1; }
.pilier-card > * { position: relative; z-index: 2; }

/* Pilier icon : bounce au hover */
.pilier-card:hover .pilier-icon {
    transform: scale(1.1) rotate(-5deg);
}
.pilier-icon {
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}

/* Titres H2 avec soulignement anime au hover sur section-header--center */
.section-header--center h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    margin: 16px auto 0;
    border-radius: 2px;
    transition: width .4s ease;
}
.section-header--center:hover h2::after { width: 100px; }

/* Buttons CTA : pulse leger au load pour attirer l'oeil */
.hero-cta .btn-primary {
    animation: cta-pulse 2.5s ease-in-out 2s 3;
}
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(229,142,90,0.3); }
    50%      { box-shadow: 0 4px 30px rgba(229,142,90,0.6), 0 0 0 8px rgba(229,142,90,0.1); }
}

/* Social cards : hover tilt 3D subtil */
.social-card { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.social-card:hover { transform: translateY(-5px) scale(1.03); }

/* Logo header : entrance rotation */
@keyframes logo-in {
    from { opacity: 0; transform: scale(0.8) rotate(-10deg); }
    to   { opacity: 1; transform: scale(1) rotate(0); }
}
.brand-logo-icon {
    animation: logo-in .8s cubic-bezier(.34,1.56,.64,1);
}


/* ========== SIGNATURE GRADIENTS (qui petent) ========== */
/* Bouton primaire : gradient bleu profond > bleu plus clair (dynamique) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(229, 142, 90, 0.4) !important;
}

/* Bouton blanc sur fond sombre : gradient accent au hover */
.btn-white:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}

/* Pilier featured : fond bleu marine degrade + accent saumon pour l'icone */
.pilier-card--featured {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    color: #fff;
    border-color: transparent !important;
}
.pilier-card--featured h3, .pilier-card--featured p { color: #fff !important; }
.pilier-card--featured p { color: rgba(255,255,255,0.85) !important; }
.pilier-card--featured::before {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%) !important;
}
.pilier-card--featured .pilier-icon {
    background: rgba(255,255,255,0.15) !important;
}
.pilier-card--featured .pilier-icon svg path,
.pilier-card--featured .pilier-icon svg circle,
.pilier-card--featured .pilier-icon svg rect {
    stroke: var(--accent-light) !important;
}
.pilier-card--featured .pilier-link {
    color: var(--accent-light) !important;
}

/* Pilier accent : variante orange degrade (alternance avec featured bleu) */
.pilier-card--accent {
    background: linear-gradient(160deg, var(--accent) 0%, var(--accent-light) 100%) !important;
    color: #fff;
    border-color: transparent !important;
}
.pilier-card--accent h3 { color: #fff !important; }
.pilier-card--accent p { color: rgba(255,255,255,0.92) !important; }
.pilier-card--accent strong { color: #fff !important; }
.pilier-card--accent .pilier-icon {
    background: rgba(255,255,255,0.2) !important;
}
.pilier-card--accent .pilier-icon svg path,
.pilier-card--accent .pilier-icon svg circle,
.pilier-card--accent .pilier-icon svg rect {
    stroke: #fff !important;
}
.pilier-card--accent .pilier-link {
    color: #fff !important;
    font-weight: 700;
}
.pilier-card--accent::after {
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.25) 0%, transparent 50%) !important;
}

/* Header socials : logos reseaux en haut a droite */
.header-socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(30,46,90,0.12);
}
.header-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(30,46,90,0.06);
    color: var(--primary-dark);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.header-social:hover {
    transform: translateY(-2px) scale(1.08);
}
.header-social--instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}
.header-social--facebook:hover {
    background: #1877F2;
    color: #fff;
}
.header-social--youtube:hover {
    background: #FF0000;
    color: #fff;
}
.header-social--whatsapp:hover {
    background: #25D366;
    color: #fff;
}
@media (max-width: 720px) {
    .header-socials {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 8px;
    }
    .header-social { width: 32px; height: 32px; }
    .header-social svg { width: 18px; height: 18px; }
}

/* Section label : accent saumon pour contraster le bleu marine des titres */
.section-label {
    color: var(--accent) !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
}

/* Tarif card recommande : gradient bleu + badge saumon */
.tarif-card--regulier {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    color: #fff;
    border-color: transparent !important;
}
.tarif-card--regulier .tarif-head h3,
.tarif-card--regulier .tarif-label { color: #fff !important; }
.tarif-card--regulier .tarif-prix { color: var(--accent-light) !important; }
.tarif-card--regulier .tarif-note,
.tarif-card--regulier .tarif-foot,
.tarif-card--regulier .tarif-baseline { color: rgba(255,255,255,0.82) !important; }
.tarif-card--regulier::after {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%) !important;
    color: #fff !important;
}
.tarif-card--regulier .tarif-items li {
    border-bottom-color: rgba(255,255,255,0.15) !important;
}
.tarif-card--regulier .tarif-foot {
    border-top-color: rgba(255,255,255,0.15) !important;
}

/* Tarif individuel bloc : gradient marine > saumon (le gros wow) */
.tarif-individuel {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%) !important;
}

/* CTA sections finale : gradient marine + touche saumon */
.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent-dark) 110%) !important;
}

/* Parcours number : gradient accent au lieu de var(--primary-light) plat */
.parcours-number {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1 !important;
}

/* Formation card accent : bord gauche gradient */
.formation-card {
    border-left: 4px solid transparent !important;
    border-image: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%) 1;
}
.formation-type {
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%) !important;
    color: var(--primary-dark) !important;
}

/* Article TL;DR : fond creme + bord saumon */
.article-tldr {
    background: linear-gradient(135deg, var(--blush-light) 0%, #fff 100%) !important;
    border-left-color: var(--accent) !important;
}
.article-tldr strong:first-child { color: var(--accent-dark) !important; }

/* Planning day header : gradient accent */
.planning-day header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
}

/* Rose poudre touche feminine : zones discrete */
.certif-card:hover {
    border-color: var(--accent) !important;
    background: linear-gradient(135deg, #fff 0%, var(--blush-light) 100%);
}

/* Section label + H2 avec touche accent en underline decoratif */
.section-header h2 {
    position: relative;
}


/* ========== PERFORMANCE : stack fonts fallback ========== */
/*
 * Font stacks qui reprennent les fonts systeme en attendant que Google Fonts
 * charge. Evite le FOIT (flash of invisible text) et la CLS.
 */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .logo-text strong {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* ========== ACCESSIBILITE ========== */
/* Fix contraste WCAG AA : --text-light trop clair (3.5:1) -> 4.6:1 */
:root {
    --text-light: #666;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Focus visible universel : navigation clavier accessible */
:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}
.btn:focus-visible {
    outline-offset: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Utilitaire accessibilite lecteur d'ecran uniquement */
.sr-only, .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== WHATSAPP FLOAT (bas gauche) ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.whatsapp-float svg { flex-shrink: 0; width: 26px; height: 26px; }
.whatsapp-float__label { white-space: nowrap; }

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { animation: none; }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        padding: 10px;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
    .whatsapp-float svg { width: 22px; height: 22px; }
    .whatsapp-float__label { display: none; }
}

/* ========== MASQUE les scroll-to-top tiers (Astra, Hostinger) ========== */
/* On garde uniquement notre bouton .scroll-top (violet) */
#ast-scroll-top,
.ast-scroll-top,
.ast-scroll-top-icon,
.ast-back-to-top,
.hostinger-back-to-top,
.back-to-top:not(.scroll-top),
#back-to-top:not(.scroll-top),
#scroll-to-top:not(.scroll-top),
a[href="#top"]:not(.scroll-top),
a[href="#page"]:not(.scroll-top),
.scrolltop-button:not(.scroll-top),
button[aria-label*="top" i]:not(.scroll-top):not(.mobile-menu-toggle),
button[aria-label*="haut" i]:not(.scroll-top):not(.mobile-menu-toggle) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ========== SCROLL TO TOP (custom sobre) ========== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 4px 14px rgba(30, 46, 90, 0.35);
}
.scroll-top:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(30, 46, 90, 0.5);
    transform: translateY(-2px);
}
.scroll-top:active { transform: translateY(0); }
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .scroll-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ========== SOCIALS GRID (page contact) ========== */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}
.social-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 12px;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    min-height: 110px;
}
.social-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform .4s ease;
}
.social-card > * { position: relative; z-index: 1; }
.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    color: #fff;
}
.social-card:hover::before {
    transform: scale(1.08);
}
.social-card__name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
}
.social-card__handle {
    font-size: 12px;
    opacity: .92;
    word-break: break-word;
}

/* Couleurs officielles par reseau */
.social-card--instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-card--facebook::before { background: linear-gradient(135deg, #1877F2 0%, #0a5dc9 100%); }
.social-card--youtube::before { background: linear-gradient(135deg, #FF0000 0%, #c00 100%); }
.social-card--whatsapp::before { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.social-card--linktree::before { background: linear-gradient(135deg, #43E660 0%, #2ea84c 100%); }

/* ========== RATING STARS (AggregateRating) ========== */
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px;
    padding: 8px 14px;
    background: #FFF8E1;
    border-radius: 8px;
    border: 1px solid #FFE082;
}
.rating-stars__visual { display: inline-flex; gap: 2px; }
.rating-stars__text {
    font-size: 14px;
    color: #5D4100;
}
.rating-stars__text strong { color: #FF8F00; font-size: 16px; }

/* ========== TL;DR ARTICLES ========== */
.article-tldr {
    background: linear-gradient(135deg, var(--bg-warm) 0%, #fff 100%);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0 32px;
    font-size: 16px;
    line-height: 1.6;
}
.article-tldr strong:first-child {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
}

/* ========== SEASON BANNER ========== */
.season-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}
.season-banner__emoji { font-size: 18px; }
.season-banner p { margin: 0; }
.season-banner a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}
.season-banner a:hover { color: #fff; opacity: .9; }

/* ========== LOGO (vrai logo + placeholder) ========== */
.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}
.brand-logo--placeholder {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: 50%;
}
.header-logo a { gap: 14px; display: flex; align-items: center; text-decoration: none; }

/* Logo carre (icon seule + texte a cote) - nouveau logo v2 */
.header-logo--full a {
    gap: 14px;
    align-items: center;
}
.brand-logo-icon {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 14px rgba(20, 32, 74, 0.15);
}
.header-logo--full a:hover .brand-logo-icon {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 8px 22px rgba(229, 142, 90, 0.35);
}
.coach-header.scrolled .brand-logo-icon {
    width: 64px;
    height: 64px;
}
.logo-text--marine strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0;
    line-height: 1.1;
    display: block;
}
.logo-text--marine small {
    display: block;
    font-size: 12px;
    color: var(--accent-dark);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: .3px;
}

/* Accessibilite : texte alternatif visible uniquement pour lecteurs d'ecran */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== HERO COMPACT ========== */
.hero--compact { min-height: 560px; padding: 80px 0 60px; }
.hero--compact .hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}
.hero--compact .hero-text .highlight { color: var(--primary-light); font-weight: 600; }
.hero--compact .hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
    max-width: 620px;
}
.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 24px;
    padding: 0;
}
.hero-trust li {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-trust li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    display: inline-block;
}

/* ========== PILIERS (4 services) ========== */
.piliers-section { padding: 80px 0; background: var(--bg-light); }
.piliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.pilier-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.pilier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30,46,90,0.15);
    border-color: var(--primary-light);
}
.pilier-card--featured {
    background: linear-gradient(160deg, #fff 0%, var(--bg-warm) 100%);
    border-color: var(--primary-light);
}
.pilier-card--featured::before {
    content: "Sp\00e9cialit\00e9";
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.pilier-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-warm);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.pilier-card h3 { font-size: 19px; color: var(--text-dark); margin: 0; }
.pilier-card p { font-size: 14.5px; color: var(--text-gray); margin: 0; line-height: 1.55; }
.pilier-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding-top: 8px;
}

/* ========== PROOF (Qui suis-je bref) ========== */
.proof-section { padding: 80px 0; background: #fff; }
.proof-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center;
}
.proof-image img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(30,46,90,0.18);
}
.proof-content h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    margin: 12px 0 20px;
    line-height: 1.2;
}
.proof-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}
.proof-points li {
    position: relative;
    padding-left: 24px;
    font-size: 14.5px;
    color: var(--text-gray);
}
.proof-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    opacity: .2;
}
.proof-points li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ========== PLANNING ========== */
.planning-section, .planning-preview { padding: 80px 0; }
.planning-preview { background: var(--bg-warm); }
.planning-section { background: #fff; }

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.planning-day {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
}
.planning-preview .planning-day { background: #fff; }
.planning-day header {
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    text-align: center;
}
.planning-day header h3 {
    color: #fff;
    font-size: 17px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.planning-day ul { list-style: none; padding: 12px 0; margin: 0; }
.planning-day li {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.planning-day li:last-child { border-bottom: none; }
.planning-day time {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-dark);
    font-family: 'Montserrat', sans-serif;
}
.planning-day li span {
    font-size: 15px;
    color: var(--text-dark);
}
.planning-note {
    text-align: center;
    margin-top: 32px;
    color: var(--text-gray);
    font-size: 15px;
}

/* ========== TARIFS ========== */
.tarifs-section { padding: 80px 0; background: var(--bg-light); }
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.tarif-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tarif-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30,46,90,0.15);
}
.tarif-card--regulier {
    border-color: var(--primary);
    position: relative;
}
.tarif-card--regulier::after {
    content: "Recommand\00e9";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.tarif-head { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.tarif-baseline {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.tarif-head h3 { font-size: 26px; margin: 0; color: var(--text-dark); }
.tarif-items { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.tarif-items li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 10px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}
.tarif-items li:last-child { border-bottom: none; }
.tarif-label { font-weight: 600; font-size: 15px; color: var(--text-dark); grid-row: 1; }
.tarif-prix {
    font-weight: 800;
    font-size: 20px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    grid-row: 1;
    grid-column: 2;
    white-space: nowrap;
}
.tarif-note {
    font-size: 13px;
    color: var(--text-gray);
    grid-row: 2;
    grid-column: 1 / -1;
}
.tarif-foot {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.tarif-individuel {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
}
.tarif-individuel-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}
.tarif-individuel-inner svg path { stroke: #fff; }
.tarif-individuel h3 { color: #fff; margin: 0 0 6px; font-size: 20px; }
.tarif-individuel p { color: rgba(255,255,255,0.92); margin: 0; font-size: 15px; line-height: 1.55; }
.tarif-individuel .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}
.tarif-individuel .btn-primary:hover {
    background: var(--bg-warm);
}

/* ========== TRAILS PAGE ========== */
.trails-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}
.trails-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.trails-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.trails-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,32,74,0.85) 0%, rgba(30,46,90,0.6) 100%);
}
.trails-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
}
.trails-hero__content h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin: 16px 0;
}
.trails-hero__content .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 24px;
}

.trails-profils { padding: 80px 0; background: #fff; }
.profils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.profil-card {
    background: var(--bg-light);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform .25s ease;
}
.profil-card:hover { transform: translateY(-4px); }
.profil-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30,46,90,0.1);
}
.profil-card h3 { font-size: 17px; margin: 0 0 10px; color: var(--text-dark); }
.profil-card p { font-size: 14px; color: var(--text-gray); margin: 0; line-height: 1.55; }

.trails-methode { padding: 80px 0; background: var(--bg-light); }
.trails-inclus { padding: 80px 0; background: #fff; }
.inclus-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.inclus-image img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(30,46,90,0.18);
}
.inclus-content h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 12px 0 20px; }
.inclus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.inclus-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-gray);
}
.inclus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.inclus-list li strong { color: var(--text-dark); font-weight: 700; }

/* ========== SECTION HEADER CENTER ========== */
.section-header--center { text-align: center; margin: 0 auto 24px; max-width: 720px; }
.section-header--center p { margin: 0 auto; color: var(--text-gray); }

/* ========== PAGE HEADER COMPACT ========== */
.page-header--compact { padding: 80px 0 40px; }

/* ========== FOOTER ENRICHI ========== */
.gc-footer { background: var(--accent); color: rgba(255,255,255,0.85); padding: 56px 0 20px; }
.gc-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand strong { display: block; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.footer-brand p { color: rgba(255,255,255,0.75); font-size: 14.5px; line-height: 1.55; margin-bottom: 20px; max-width: 340px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-nav h4, .footer-contact h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { padding: 5px 0; }
.footer-nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14.5px; transition: color .2s ease; }
.footer-nav a:hover { color: #fff; }
.footer-contact p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-zone { font-size: 13px; }
.gc-footer__sep { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 24px 0; }
.gc-footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.gc-footer__credit a { color: rgba(255,255,255,0.55); text-decoration: none; }
.gc-footer__credit a:hover { color: #fff; }

/* ========== VIDEO PRESENTATION ========== */
.video-section { padding: 80px 0; background: var(--bg-light); }

.video-wrap {
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30,46,90,0.2);
    background: #000;
    max-width: 960px; /* par defaut paysage */
}

/* Variante portrait (format Reels / Stories 9:16) : taille naturelle centree */
.video-wrap--portrait {
    max-width: 420px;
    aspect-ratio: 9 / 16;
    max-height: min(640px, 75vh);
}

.video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Pas d'aspect-ratio sur variante paysage pour que le navigateur gere */
.video-wrap:not(.video-wrap--portrait) video {
    height: auto;
    object-fit: unset;
}

@media (max-width: 500px) {
    .video-wrap--portrait {
        max-width: min(85vw, 360px);
        max-height: 70vh;
    }
}

/* ========== CERTIFICATIONS ========== */
.certifications-section { padding: 60px 0; background: #fff; border-top: 1px solid var(--border); }
.certif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.certif-card {
    background: var(--bg-light);
    padding: 24px 20px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border);
    transition: transform .2s ease, border-color .2s ease;
}
.certif-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.certif-card svg { color: var(--primary); margin-bottom: 12px; }
.certif-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.certif-card span { font-size: 12.5px; color: var(--text-gray); }

/* ========== PARCOURS / FORMATIONS / ZONE ========== */
.parcours-section { padding: 80px 0; background: var(--bg-light); }
.parcours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.parcours-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
}
.parcours-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-light);
    opacity: .3;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}
.parcours-card h3 { font-size: 19px; margin: 0 0 12px; color: var(--text-dark); position: relative; z-index: 2; }
.parcours-card p { font-size: 14.5px; color: var(--text-gray); line-height: 1.6; margin: 0; }

.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.formation-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 14px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.formation-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-warm);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.formation-card h3 { font-size: 17px; margin: 0 0 10px; }
.formation-card p { font-size: 14px; color: var(--text-gray); line-height: 1.55; margin: 0; }

.zone-section { padding: 80px 0; background: #fff; }
.zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.zone-card {
    padding: 28px 20px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid var(--border);
}
.zone-card svg { margin-bottom: 12px; }
.zone-card h3 { font-size: 17px; margin: 0 0 8px; }
.zone-card p { font-size: 14px; color: var(--text-gray); margin: 0; line-height: 1.5; }

.about-content--reverse .about-image { order: 1; }
.about-content--reverse .about-text { order: 2; }

.about-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.about-list li {
    padding: 14px 0 14px 28px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.55;
}
.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* ========== ANTI-DOORWAY : contenu unique par ville ========== */
.local-unique {
    background: #fff;
    padding: 64px 0;
    border-top: 1px solid var(--border);
}
.local-unique h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 16px;
    color: var(--text-dark);
}
.local-unique h3 {
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.local-unique p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.local-unique .article-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========== PAGES VILLES (SEO LOCAL) ========== */
.page-header--hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 80px 0 64px;
    text-align: center;
}
.page-header--hero h1 {
    color: #fff;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
    margin: 16px 0 20px;
}
.page-header--hero p {
    color: rgba(255,255,255,0.92);
    font-size: clamp(15px, 2vw, 19px);
    max-width: 720px;
    margin: 0 auto 28px;
}
.page-header--hero .section-label { color: rgba(255,255,255,0.85); }
.page-header--hero .hero-cta { justify-content: center; }

.local-intro { padding: 80px 0; background: #fff; }
.local-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}
.local-intro-image img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(30,46,90,0.18);
}
.local-intro h2 { font-size: clamp(24px, 3.5vw, 34px); margin: 12px 0 20px; line-height: 1.2; }

.zones-couvertes { padding: 80px 0; background: var(--bg-warm); }
.zones-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.zone-tag {
    background: #fff;
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--primary-light);
}

/* ========== ARTICLES BLOG (longue traine) ========== */
.article-page { background: var(--bg-light); padding-bottom: 80px; }
.article-container { background: #fff; }
.article-header {
    background: linear-gradient(135deg, #fff 0%, var(--bg-warm) 100%);
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: var(--text-light); }

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.article-header h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 820px;
}
.article-lead {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    line-height: 1.55;
    max-width: 720px;
    margin-bottom: 20px;
}
.article-meta {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.article-meta span, .article-meta time { display: inline-block; }

.article-body {
    padding: 48px 0 40px;
}
.container--narrow { max-width: 780px !important; margin: 0 auto; padding: 0 20px; }

.article-body h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 40px 0 16px;
    color: var(--text-dark);
    line-height: 1.3;
}
.article-body h3 {
    font-size: 19px;
    margin: 28px 0 12px;
    color: var(--text-dark);
}
.article-body p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.article-list, .article-list-ordered {
    margin: 16px 0 24px;
    padding-left: 24px;
}
.article-list li, .article-list-ordered li {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.article-list-ordered { counter-reset: ol-counter; list-style: none; padding-left: 0; }
.article-list-ordered li {
    counter-increment: ol-counter;
    position: relative;
    padding-left: 44px;
    min-height: 32px;
}
.article-list-ordered li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.article-box {
    background: var(--bg-warm);
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}
.article-box h3 { margin-top: 16px; }
.article-box h3:first-child { margin-top: 0; }
.article-box ul { padding-left: 20px; margin: 8px 0; }
.article-box li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }

.article-cta-inline {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 32px 36px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
}
.article-cta-inline h3 { color: #fff; font-size: 22px; margin: 0 0 8px; }
.article-cta-inline p { color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.article-cta-inline .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}
.article-cta-inline .btn-primary:hover { background: var(--bg-warm); }

.faq-inline { margin: 24px 0 0; }
.faq-inline > div {
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 12px;
}
.faq-inline h3 {
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--primary-dark);
}
.faq-inline p { font-size: 15px; margin: 0; line-height: 1.6; }

.guides-lies { padding: 64px 0; background: var(--bg-light); }

.article-related {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}
.article-related li {
    margin: 0;
    padding: 0;
}
.article-related a {
    display: block;
    background: var(--bg-warm);
    padding: 14px 18px;
    border-radius: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    border-left: 3px solid var(--primary);
    transition: background .2s ease, transform .2s ease;
}
.article-related a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(2px);
}

.article-footer {
    background: var(--bg-light);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
.article-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.article-author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.article-author-box strong { display: block; font-size: 18px; color: var(--text-dark); margin-bottom: 4px; }
.article-author-box p { font-size: 14.5px; color: var(--text-gray); margin: 0 0 8px; line-height: 1.55; }
.article-author-box a { color: var(--primary); font-weight: 600; font-size: 14px; text-decoration: none; }
.article-author-box a:hover { text-decoration: underline; }

/* ========== FORCE HIDE Astra native footer ========== */
/* On a notre propre footer (.gc-footer), tout le reste d'Astra doit disparaitre */
.site-footer,
.ast-small-footer,
.ast-small-footer-wrap,
.ast-footer-copyright,
.site-below-footer-wrap,
.site-primary-footer-wrap,
.ast-builder-footer-grid-row,
.ast-builder-grid-row-container,
.ast-theme-credit-link,
footer#colophon,
footer[itemtype="https://schema.org/WPFooter"]:not(.gc-footer) {
    display: none !important;
}

/* ========== FOOTER ENRICHI (5 colonnes) ========== */
.footer-main {
    grid-template-columns: 1.5fr 0.9fr 1.1fr 1.1fr 1fr !important;
}
.footer-dirigeante {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
    margin-bottom: 16px !important;
}
.footer-siret {
    font-size: 12px !important;
    color: rgba(255,255,255,0.5) !important;
    margin-top: 8px !important;
}
.footer-sitemap {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 24px 0;
}
.footer-sitemap p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin: 0;
}
.footer-sitemap strong {
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gc-footer__credit a strong { color: #fff; }
.gc-footer__copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.gc-footer__copy a:hover { color: #fff; }

/* ========== MOBILE ========== */
@media (max-width: 1100px) {
    .footer-main { grid-template-columns: 1fr 1fr 1fr !important; gap: 32px !important; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
    .proof-wrap, .inclus-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .proof-image img, .inclus-image img {
        max-height: 420px;
    }
    .tarif-individuel-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    .tarif-individuel-inner > svg {
        margin: 0 auto;
    }
    /* Hero : plus d'espace vide en haut, contenu en flux naturel */
    .hero-section.hero--compact,
    .trails-hero {
        min-height: 0 !important;
        align-items: flex-start;
        padding: 32px 0 48px !important;
    }
    .hero--compact .hero-content,
    .trails-hero__content { padding: 0 !important; }
    /* Page header classique aussi en mode compact */
    .page-header,
    .page-header--compact,
    .page-header--hero {
        padding: 40px 0 32px !important;
    }
    .piliers-section, .planning-section, .planning-preview, .proof-section, .tarifs-section, .trails-profils, .trails-methode, .trails-inclus {
        padding: 56px 0;
    }
}

@media (max-width: 860px) {
    .footer-main { grid-template-columns: 1fr 1fr !important; }
    .local-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .local-intro-image img { max-height: 400px; }
    .article-header { padding: 40px 0 24px; }
    .article-cta-inline { padding: 24px 20px; }
    .article-author-box { flex-direction: column; text-align: center; }
    .article-author-box img { margin: 0 auto; }
}
@media (max-width: 560px) {
    .footer-main { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 8px 16px; font-size: 13px; }

    /* ====== HEADER MOBILE COMPACT ====== */
    /* Override le CSS de murart.css qui mettait tout en colonne */
    .coach-header .header-top {
        flex-direction: row !important;
        gap: 12px !important;
        padding: 12px 0 !important;
        align-items: center;
        border-bottom: none !important;
    }
    /* Logo prend la place disponible */
    .header-logo { flex: 1; min-width: 0; }
    .header-logo a { gap: 0; justify-content: flex-start; }
    .brand-logo-full {
        max-height: 56px;
        max-width: 100%;
        width: auto;
    }
    .coach-header.scrolled .brand-logo-full {
        max-height: 46px;
    }
    /* Fallback placeholder */
    .brand-logo, .brand-logo--placeholder { width: 44px; height: 44px; }
    .brand-logo--placeholder svg { width: 44px; height: 44px; }
    .logo-text strong { font-size: 17px; }
    .logo-text small { font-size: 11px; }

    /* Cache le bloc contact du TOP BAR mobile */
    .coach-header .header-top .header-contact {
        display: none !important;
    }

    /* Le hamburger est dans .header-nav qui est SOeUR de .header-top (pas enfant)
       -> on positionne .header-nav en ABSOLUTE dans .header-container
       -> surtout PAS de transform (sinon casse le position:fixed du menu overlay) */
    .coach-header .header-container {
        position: relative !important;
    }
    .coach-header .header-top {
        display: flex !important;
        align-items: center !important;
        padding: 14px 0 !important;
        padding-right: 68px !important; /* reserve la place pour le burger */
        border-bottom: none !important;
    }
    .coach-header .header-nav {
        flex-direction: row !important;
        width: auto !important;
        gap: 0 !important;
        border-top: none !important;
        padding: 0 !important;
        position: absolute !important;
        top: 14px !important;
        right: 20px !important;
        transform: none !important;
        margin: 0 !important;
    }

    /* Logo mobile : icon + texte a cote, taille reduite */
    .brand-logo-icon {
        width: 52px !important;
        height: 52px !important;
    }
    .coach-header.scrolled .brand-logo-icon {
        width: 44px !important;
        height: 44px !important;
    }
    .logo-text--marine strong { font-size: 15px !important; }
    .logo-text--marine small { font-size: 10px !important; line-height: 1.3; }
    .header-logo--full a { gap: 10px !important; }
    .header-logo { min-width: 0; flex: 1; overflow: hidden; }
    .logo-text--marine {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .logo-text--marine strong,
    .logo-text--marine small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
    }

    /* Bouton hamburger : violet plein, bien visible, cohérent avec la marque */
    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        padding: 0;
        background: var(--primary) !important;
        border-radius: 10px;
        border: none !important;
        -webkit-appearance: none;
        appearance: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        transition: background .2s ease, transform .2s ease;
        z-index: 10001;
        position: relative;
    }
    .mobile-menu-toggle:hover { background: var(--primary-dark) !important; }
    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background: #fff !important;
        border-radius: 2px;
        transition: transform .3s ease, opacity .2s ease;
    }
    /* Animation X quand menu ouvert */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-cta { display: none !important; }

    /* ====== MENU MOBILE : OVERLAY PLEIN ECRAN ====== */
    .main-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: none !important;
        background: #fff !important;
        padding: 88px 24px 32px !important;
        margin: 0 !important;
        box-shadow: none !important;
        overflow-y: auto;
        display: none !important;
        flex-direction: column;
        gap: 4px;
        list-style: none;
        z-index: 10000;
    }
    .main-menu.menu-open {
        display: flex !important;
    }
    .main-menu > li {
        list-style: none;
        border: none !important;
        width: 100%;
    }
    .main-menu > li a {
        display: block !important;
        padding: 18px 20px !important;
        font-size: 17px !important;
        font-weight: 600 !important;
        color: var(--text-dark) !important;
        text-decoration: none;
        border-bottom: 1px solid var(--border) !important;
        transition: background .2s ease, color .2s ease;
        white-space: nowrap;
    }
    .main-menu > li a:hover,
    .main-menu > li.current-menu-item a,
    .main-menu > li.current_page_item a {
        background: var(--bg-warm);
        color: var(--primary);
    }

    /* Bloc contact injecte en bas du menu */
    .main-menu .mobile-contact-block {
        list-style: none;
        margin-top: 24px;
        padding: 20px !important;
        background: var(--bg-light);
        border-radius: 12px;
        border-bottom: none !important;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .main-menu .mobile-contact-block a {
        display: flex !important;
        align-items: center !important;
        gap: 12px;
        padding: 14px 16px !important;
        background: #fff !important;
        border-radius: 10px;
        color: var(--primary-dark) !important;
        font-weight: 600;
        font-size: 15px !important;
        border: none !important;
        text-decoration: none;
        white-space: normal;
        word-break: break-word;
    }
    .main-menu .mobile-contact-block a svg {
        flex-shrink: 0;
        color: var(--primary);
    }
    .main-menu .mobile-contact-block a.btn-cta {
        background: var(--primary) !important;
        color: #fff !important;
        justify-content: center;
        padding: 16px !important;
        font-size: 16px !important;
    }
    .main-menu .mobile-contact-block a.btn-cta svg { color: #fff; }

    /* Empeche scroll body quand menu ouvert */
    body.menu-is-open {
        overflow: hidden;
    }
    .proof-points { grid-template-columns: 1fr; }
    .tarif-head h3 { font-size: 22px; }
    .tarif-prix { font-size: 18px; }
    .tarif-items li { grid-template-columns: 1fr; }
    .tarif-prix { grid-column: 1; }
}
