/* Coach Xavier — Passer à l'Action | Saly · Ngaparou */

:root {
  --bg: #0a0a0b;
  --bg-2: #121214;
  --bg-3: #1a1a1e;
  --surface: rgba(255,255,255,.03);
  --line: rgba(255,255,255,.08);
  --text: #f2f2f4;
  --muted: #9a9aa8;
  --orange: #ff8c00;
  --orange-light: #ffb020;
  --orange-glow: rgba(255,140,0,.35);
  --gold: #ffc107;
  --whatsapp: #25d366;
  --font-display: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 20px 50px rgba(0,0,0,.5);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--orange); color: #000; padding: .75rem 1rem; z-index: 9999; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* NAV */
.site-nav { min-height: var(--nav-h); background: rgba(10,10,11,.55); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s; padding-block: .55rem; }
.site-nav.is-scrolled { background: rgba(10,10,11,.94); border-bottom-color: var(--line); }
.nav-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,140,0,.35); }
.brand-text { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .1em; line-height: 1; }
.brand-text em { font-style: normal; color: var(--orange); }
.site-nav .nav-link { font-size: .92rem; font-weight: 500; color: var(--muted) !important; padding: .55rem .8rem !important; transition: color .2s; }
.site-nav .nav-link:hover { color: #fff !important; }

/* BUTTONS */
.btn { font-weight: 600; letter-spacing: .03em; border-radius: var(--radius); padding: .85rem 1.35rem; display: inline-flex; align-items: center; gap: .55rem; border: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
@media (prefers-reduced-motion: no-preference) { .btn { transition: background .25s, border-color .25s, box-shadow .25s, transform .45s cubic-bezier(0.22,1,0.36,1); } .btn:hover { transform: translateY(-1px); } }
.btn-cta { background: linear-gradient(135deg, var(--orange), #e67300); color: #000 !important; box-shadow: 0 8px 28px var(--orange-glow); font-weight: 700; }
.btn-cta:hover { background: linear-gradient(135deg, var(--orange-light), var(--orange)); color: #000 !important; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text) !important; }
.btn-ghost:hover { border-color: var(--orange); color: #fff !important; }

/* HERO */
.hero { position: relative; min-height: 100svh; min-height: 100vh; display: flex; align-items: center; padding: calc(var(--nav-h) + 2rem) 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 70% 55% at 50% 20%, rgba(255,140,0,.14), transparent 55%), radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,140,0,.06), transparent 50%), linear-gradient(180deg, #0e0e10, var(--bg)); }
.hero-bg::before, .hero-bg::after { content: ""; position: absolute; width: 50vmax; height: 14vmax; opacity: .4; pointer-events: none; }
.hero-bg::before { top: 10%; left: -10%; background: linear-gradient(115deg, transparent, rgba(255,140,0,.4), transparent); transform: rotate(-15deg); }
.hero-bg::after { bottom: 15%; right: -10%; background: linear-gradient(115deg, transparent, rgba(255,180,0,.25), transparent); transform: rotate(-15deg); }
.hero-content { text-align: center; max-width: 680px; margin: 0 auto; }
.hero-content > picture { display: block; margin: 0 auto 1.25rem; }
.hero-logo { width: clamp(110px, 20vw, 160px); height: clamp(110px, 20vw, 160px); border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(255,140,0,.3), 0 0 40px var(--orange-glow), var(--shadow); }
.hero-eyebrow { margin: 0 0 .5rem; font-size: .78rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--orange); }
.hero-title { margin: 0 0 .5rem; font-family: var(--font-display); font-size: clamp(4rem, 14vw, 7rem); line-height: .85; letter-spacing: .06em; min-height: calc(clamp(4rem, 14vw, 7rem) * .85); }
.x-mark { color: var(--orange); text-shadow: 0 0 30px var(--orange-glow); }
.hero-headline { margin: 0 0 .65rem; font-size: clamp(1.05rem, 2.5vw, 1.3rem); font-weight: 600; }
.hero-lead { margin: 0 auto 1rem; max-width: 38ch; color: var(--muted); font-style: italic; font-size: 1.05rem; text-wrap: pretty; }
.hero-sub { margin: 0 0 1.75rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hero-scroll { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: var(--muted); animation: bounce 2s infinite; }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* SECTIONS */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section:nth-child(even) { background: var(--bg-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-eyebrow { margin: 0 0 .4rem; font-family: var(--font-display); letter-spacing: .22em; font-size: .95rem; color: var(--orange); }
.section-head h2 { margin: 0 0 .75rem; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: .06em; line-height: 1; }
.section-lead { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* SERVICE CARDS */
.svc-card { height: 100%; padding: 1.5rem 1.35rem; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--orange); transition: background .35s, border-color .35s; }
@media (prefers-reduced-motion: no-preference) { .svc-card { transition: transform .5s cubic-bezier(0.22,1,0.36,1), background .35s, border-color .35s; } .svc-card:hover { transform: translateY(-2px); } }
.svc-card:hover { background: rgba(255,140,0,.06); border-color: rgba(255,140,0,.35); }
.svc-card i { font-size: 1.4rem; color: var(--orange); margin-bottom: .85rem; }
.svc-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; font-weight: 600; }
.svc-card p { margin: 0; font-size: .92rem; color: var(--muted); }

/* PREP SPORTS */
.section-prep { background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,140,0,.08), transparent 60%), var(--bg); }
.prep-card { height: 100%; padding: 1.35rem 1.15rem; text-align: center; background: var(--bg-3); border: 1px solid var(--line); transition: border-color .3s, background .3s; }
.prep-card:hover { border-color: rgba(255,140,0,.4); background: rgba(255,140,0,.05); }
.prep-card i { font-size: 1.5rem; color: var(--orange); margin-bottom: .65rem; }
.prep-card h3 { margin: 0 0 .35rem; font-size: .95rem; font-weight: 600; }
.prep-card p { margin: 0; font-size: .82rem; color: var(--muted); }

/* LOCATIONS */
.loc-card { height: 100%; padding: 1.35rem; text-align: center; background: var(--surface); border: 1px solid var(--line); }
.loc-card i { font-size: 1.5rem; color: var(--orange); margin-bottom: .65rem; }
.loc-card h3 { margin: 0 0 .35rem; font-size: 1rem; font-weight: 600; }
.loc-card p { margin: 0; font-size: .85rem; color: var(--muted); }
.about-text { color: var(--muted); font-size: 1.02rem; }
.about-text strong { color: #fff; }

/* GALLERY */
.gallery-ph { margin: 0; height: 100%; }
.gallery-trigger { display: block; width: 100%; padding: 0; border: none; background: none; color: inherit; font: inherit; text-align: inherit; cursor: default; }
.gallery-ph-inner { position: relative; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); transition: border-color .4s, box-shadow .45s; }
@media (prefers-reduced-motion: no-preference) { .gallery-ph-inner { transition: border-color .4s, box-shadow .45s, transform .55s cubic-bezier(0.22,1,0.36,1); } .gallery-ph-inner:hover { transform: translateY(-2px); } }
.gallery-ph-inner:hover { border-color: rgba(255,140,0,.45); box-shadow: 0 12px 32px rgba(0,0,0,.45); }
.gallery-ph-inner .lazy-wrap { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: unset; }
.gallery-ph-inner picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.gallery-ph-inner .lazy-img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.gallery-ph-inner .lazy-img.is-visible, .gallery-ph-inner .is-loaded .lazy-img { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .gallery-ph-inner .lazy-img.is-visible { transition: opacity .5s ease, transform .85s cubic-bezier(0.22,1,0.36,1); }
  .gallery-ph-inner:hover .lazy-img.is-visible { transform: scale(1.02); }
}
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem .85rem .75rem; background: linear-gradient(transparent, rgba(10,10,11,.92)); z-index: 2; pointer-events: none; }
.gallery-cap span { font-weight: 600; font-size: .88rem; }
.gallery-zoom { display: none; }

@media (max-width: 991.98px) {
  .gallery-trigger { cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .gallery-zoom {
    display: grid; place-items: center;
    position: absolute; top: .55rem; right: .55rem; z-index: 3;
    width: 2rem; height: 2rem; border-radius: 50%;
    background: rgba(10,10,11,.72); border: 1px solid rgba(255,140,0,.35);
    color: var(--orange); font-size: .78rem; pointer-events: none;
  }
}

/* GALLERY LIGHTBOX (mobile) */
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 10050;
  display: grid; place-items: center;
  padding: calc(var(--nav-h) + .5rem) .75rem calc(5rem + env(safe-area-inset-bottom));
}
.gallery-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.gallery-lightbox-body { position: relative; z-index: 1; margin: 0; width: min(100%, 720px); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.gallery-lightbox-body picture, .gallery-lightbox-img { display: block; max-width: 100%; max-height: min(68vh, 620px); width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
.gallery-lightbox-cap { color: #fff; font-weight: 600; font-size: .95rem; text-align: center; }
.gallery-lightbox-close, .gallery-lightbox-nav {
  position: absolute; z-index: 2; display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem; padding: 0; border: 1px solid rgba(255,255,255,.15);
  background: rgba(10,10,11,.75); color: #fff; border-radius: 50%;
}
.gallery-lightbox-close { top: calc(var(--nav-h) + .35rem); right: .75rem; font-size: 1.1rem; }
.gallery-lightbox-prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.gallery-lightbox-next { right: .5rem; top: 50%; transform: translateY(-50%); }
body.gallery-lightbox-open { overflow: hidden; }

@media (min-width: 992px) {
  .gallery-lightbox { display: none !important; }
}

/* LAZY */
.lazy-shimmer { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, var(--bg-3) 0%, var(--bg-2) 40%, rgba(255,140,0,.08) 50%, var(--bg-2) 60%, var(--bg-3) 100%); background-size: 200% 100%; animation: shimmer 1.4s ease-in-out infinite; }
.lazy-wrap.is-loaded .lazy-shimmer { opacity: 0; transition: opacity .4s; pointer-events: none; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* FAQ */
.accordion-faq { --bs-accordion-bg: transparent; --bs-accordion-border-color: var(--line); --bs-accordion-btn-bg: var(--surface); --bs-accordion-active-bg: rgba(255,140,0,.08); --bs-accordion-btn-color: var(--text); --bs-accordion-active-color: #fff; }
.accordion-faq .accordion-button:not(.collapsed) { border-left: 3px solid var(--orange); }
.accordion-faq .accordion-body { color: var(--muted); }

/* CONTACT */
.contact-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .3rem; min-height: 150px; padding: 1.4rem 1rem; border: 1px solid var(--line); background: var(--surface); height: 100%; transition: border-color .35s, background .35s; }
@media (prefers-reduced-motion: no-preference) { .contact-tile { transition: transform .5s cubic-bezier(0.22,1,0.36,1), border-color .35s, background .35s; } .contact-tile:hover { transform: translateY(-2px); } }
.contact-tile:hover { border-color: rgba(255,140,0,.4); background: rgba(255,140,0,.05); color: #fff; }
.contact-tile i { font-size: 1.5rem; color: var(--orange); margin-bottom: .25rem; }
.contact-tile span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-tile strong { font-size: .95rem; }
.contact-wa:hover i { color: var(--whatsapp); }
.contact-ig:hover i { color: #e1306c; }

/* FOOTER */
.site-footer { padding: 3.5rem 0 5.5rem; border-top: 1px solid var(--line); background: #060607; }
.footer-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .08em; }
.footer-tag { color: var(--orange); font-size: .85rem; font-style: italic; }
.footer-seo, .footer-address { color: var(--muted); font-size: .92rem; }
.footer-title { font-family: var(--font-display); letter-spacing: .12em; margin-bottom: .75rem; }
.footer-links a { color: var(--muted); font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-links a .fa-facebook { color: #1877f2; }
.footer-bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); text-align: center; color: #6e6e78; font-size: .78rem; }
.footer-credit { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .65rem; margin-top: .15rem; }
.footer-credit-text { font-size: .72rem; color: #6e6e78; }
.footer-credit-text a { color: var(--orange); text-decoration: none; transition: color .2s, opacity .2s; }
.footer-credit-text a:hover { color: #fff; }
.footer-credit-logo { display: inline-flex; opacity: .92; transition: opacity .2s; }
.footer-credit-logo:hover { opacity: 1; }
.footer-credit-logo img { height: 42px; width: auto; }
.footer-brand img { border-radius: 50%; border: 1px solid rgba(255,140,0,.3); }

/* MOBILE CTA */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; display: grid; grid-template-columns: repeat(3,1fr); background: rgba(10,10,11,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); padding: .35rem .35rem calc(.35rem + env(safe-area-inset-bottom)); }
.mobile-cta-btn { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: .55rem .25rem; font-size: .72rem; font-weight: 600; color: #fff; }
.mobile-cta-btn i { font-size: 1.1rem; }
.mobile-cta-btn.call i { color: var(--orange); }
.mobile-cta-btn.wa i { color: var(--whatsapp); }
.mobile-cta-btn.ig i { color: #e1306c; }
@media (max-width: 991.98px) { body { padding-bottom: 72px; } .site-footer { padding-bottom: 6rem; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay,0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lazy-shimmer { animation: none; background: var(--bg-3); }
  .gallery-ph-inner, .gallery-ph-inner:hover, .gallery-ph-inner .lazy-img,
  .svc-card, .svc-card:hover, .contact-tile, .contact-tile:hover, .btn, .btn:hover {
    transform: none !important; transition: border-color .2s, background .2s, opacity .2s !important;
  }
}

@media (max-width: 575.98px) { .hero-cta .btn { width: 100%; justify-content: center; } }
