/* ── Variables ──────────────────────────────────────── */
:root {
  --bg:       #0e0e0e;
  --surface:  #161616;
  --border:   #252525;
  --text:     #f0ede8;
  --muted:    #7a7a7a;
  --accent:   #C8174A;
  --accent2:  #e01e57;
  --max-w:    1120px;
  --nav-h:    64px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; overscroll-behavior-y: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Accessibility ──────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* Skip navigation link */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999999;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 6px 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-nav:focus { top: 0; }

/* ── Loading screen — Split Door ────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 100000;
  overflow: hidden; pointer-events: none;
}
.loader-door {
  position: absolute; top: 0; bottom: 0;
  background: var(--bg);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader-door-l { left: 0; right: 50%; }
.loader-door-r { right: 0; left: 50%; }
.loader-door-l.open { transform: translateX(-101%); }
.loader-door-r.open { transform: translateX(101%); }

/* Seam — bord droit de la porte gauche, glisse avec elle à l'ouverture */
.loader-seam-top,
.loader-seam-bottom {
  position: absolute;
  right: 0; width: 1px;
  background: var(--accent);
  opacity: .9; z-index: 1; height: 0;
}
/* Phase 1 : descend du haut jusqu'au bord supérieur du logo */
.loader-seam-top {
  top: 0;
  animation: seamTop 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
@keyframes seamTop { to { height: calc(50% - 55px); } }
/* Phase 2 : repart juste sous le logo vers le bas — top injecté par JS */
.loader-seam-bottom {
  animation: seamBottom 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.63s forwards;
}
@keyframes seamBottom { to { height: calc(50% - 55px); } }

/* Logo — centré via JS, position initialisée ici */
.loader-inner {
  position: absolute;
  width: 140px; height: 80px;
  z-index: 2;
  /* left / top injectés par JS */
}
.loader-logo {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: loaderLogoIn 0.5s ease 0.3s forwards;
}
@keyframes loaderLogoIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Curseur custom ─────────────────────────────────── */
@media (pointer: fine) {
  body, a, button { cursor: none; }
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, background .2s ease, opacity .2s ease;
    will-change: transform; /* compositor-only — no layout reflow */
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: .45;
    transition: width .3s ease, height .3s ease, opacity .3s ease, border-color .2s ease;
    will-change: transform; /* compositor-only — no layout reflow */
  }
  .cursor-dot.hovering  { width: 10px; height: 10px; background: var(--accent2); }
  .cursor-ring.hovering { width: 52px; height: 52px; opacity: .25; }
  .cursor-dot.hidden, .cursor-ring.hidden { opacity: 0; }
}

/* ── Scroll reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Grain texture (desktop uniquement — évite blocage tactile Safari) */
@media (pointer: fine) {
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.038;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
  }
}

/* ── Layout helpers ─────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
section[id] { scroll-margin-top: calc(var(--nav-h) + .5rem); }
.label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }

/* ── Typography ─────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 600; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; line-height: 1.15; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.25; margin-bottom: .6rem; }
em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; font-size: .88rem; font-weight: 600; letter-spacing: .04em;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer; transition: all .22s;
}
.btn-primary {
  background: linear-gradient(135deg, #C8174A 0%, #8a0f33 100%);
  color: #fff; border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 2px 8px rgba(200,23,74,.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d91e53 0%, #9a1140 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 28px rgba(200,23,74,.45), 0 2px 8px rgba(200,23,74,.25);
  border-color: transparent;
}
.btn-wa {
  background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
  color: var(--text); border-color: #2a2a2a; gap: .55rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 2px 8px rgba(0,0,0,.3);
}
.btn-wa:hover {
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 28px rgba(37,211,102,.18), 0 2px 8px rgba(0,0,0,.3);
}
.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; fill: #25D366; }

/* ── Nav ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(14,14,14,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-since { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); padding-left: .75rem; border-left: 1px solid var(--accent); }
.lang-switch { display: flex; align-items: center; gap: .35rem; margin-left: 1.25rem; padding-left: 1.25rem; border-left: 1px solid var(--border); flex-shrink: 0; }
.lang-btn { font-size: .65rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); transition: color .2s; }
.lang-btn:hover, .lang-btn.lang-active { color: var(--text); }
.lang-sep { font-size: .55rem; color: var(--dim); line-height: 1; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: .83rem; font-weight: 500; letter-spacing: .04em;
  margin-left: auto;
}
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-size: .83rem; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent); padding: .35rem .9rem; border-radius: 2px;
  transition: all .2s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

/* mobile nav */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; z-index: 410; position: relative; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .35s cubic-bezier(.76,0,.24,1), opacity .25s ease, background .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero (Split screen) ────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 38fr 62fr;
  padding-top: var(--nav-h);
}
.hero-left {
  display: flex;
  align-items: center;
  padding: 4rem 3rem 4rem max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  background: var(--bg);
  border-right: 1px solid var(--border);
  position: relative;
  min-width: 0;
}
.hero-left::after {
  content: '';
  position: absolute; right: -1px; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent) 40%, var(--accent) 60%, transparent);
  opacity: .35;
}
.hero-content { max-width: 420px; width: 100%; }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,14,14,.3) 0%, transparent 35%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: .4rem .75rem;
  border-radius: 50px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #2ecc71; flex-shrink: 0;
  animation: dotBreathe 2.8s ease-in-out infinite;
}
@keyframes dotBreathe {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46,204,113,0); }
  50%       { opacity: .45; box-shadow: 0 0 5px 2px rgba(46,204,113,.25); }
}
.eyebrow-open {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; white-space: nowrap; flex-shrink: 0;
}
.eyebrow-sep { color: rgba(255,255,255,.2); font-size: .7rem; margin: 0 .05rem; flex-shrink: 0; }
.eyebrow-time {
  font-size: .67rem; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.hero-accent {
  width: 36px; height: 2px; background: var(--accent);
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: .88;
  letter-spacing: -.05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}
.hero-keywords {
  display: flex; flex-direction: column; gap: .45rem;
  margin-bottom: 2.25rem;
}
.hero-kw-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.hero-kw {
  font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  padding: .32rem .75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.hero-kw-since {
  display: none; /* caché sur desktop */
  color: var(--accent);
  border-color: rgba(200,23,74,.35);
  background: rgba(200,23,74,.05);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-actions .btn { flex: 1; min-width: 150px; justify-content: center; white-space: nowrap; }
.hero-actions .btn-wa svg { width: 22px; height: 22px; }

/* ── Sport Hub ──────────────────────────────────────── */
#sport-hub { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hub-header { text-align: center; margin-bottom: 4rem; }
.hub-header h2 { margin-bottom: .75rem; }
.hub-header p { color: var(--muted); max-width: 48ch; margin: 0 auto; }
.hub-intro { color: rgba(240,237,232,.7) !important; font-size: .95rem; margin-bottom: .4rem !important; }
.hub-tagline {
  color: var(--accent) !important;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  margin-top: 1.75rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  max-width: 32ch !important;
}

/* ── Typewriter flicker h2 (inherit color) ───────────── */
@keyframes h2Flicker {
  0%   { opacity:0; color:#fff; text-shadow:0 0 14px rgba(255,255,255,.95); }
  18%  { opacity:1; color:#fff; text-shadow:0 0 18px rgba(255,255,255,.8); }
  28%  { opacity:0; }
  42%  { opacity:1; color:#fff; text-shadow:0 0 8px rgba(255,255,255,.6); }
  55%  { opacity:1; }
  100% { opacity:1; color:inherit; text-shadow:none; }
}
.tw-chunk-h2 { display:inline-block; opacity:0; white-space:nowrap; }
.tw-chunk-h2.tw-in { animation:h2Flicker .75s ease forwards; }

/* ── Typewriter flicker effect ───────────────────────── */
@keyframes twFlicker {
  0%   { opacity: 0; color: #fff; text-shadow: 0 0 14px rgba(255,255,255,.95); }
  18%  { opacity: 1; color: #fff; text-shadow: 0 0 18px rgba(255,255,255,.8); }
  28%  { opacity: 0; color: #fff; }
  42%  { opacity: 1; color: #fff; text-shadow: 0 0 8px rgba(255,255,255,.6); }
  55%  { opacity: 1; }
  100% { opacity: 1; color: var(--accent); text-shadow: none; }
}
.hub-tagline .tw-chunk {
  display: inline-block;
  opacity: 0;
  white-space: nowrap;
}
.hub-tagline .tw-chunk.tw-in {
  animation: twFlicker .65s ease forwards;
}

/* ── Contact header ─────────────────────────────────── */
.contact-header {
  text-align: center; padding: 2.5rem 1.5rem 1.75rem;
  margin-bottom: 1.5rem; border-bottom: 1px solid var(--border);
  position: relative;
}
.contact-header::before {
  content: ''; display: block;
  width: 40px; height: 2px; background: var(--accent);
  margin: 0 auto 1.5rem;
}
.contact-header .label { color: var(--accent); margin-bottom: .75rem; }
.contact-header h2 { margin-bottom: 0; }
.hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.hub-card {
  background: var(--bg); padding: 0; overflow: hidden; display: flex; flex-direction: column;
  opacity: 0;
  transition: opacity .55s ease, transform .65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hub-card:nth-child(1) { transform: translateX(-120px); }
.hub-card:nth-child(2) { transform: translateX(-60px); }
.hub-card:nth-child(3) { transform: translateX(0); }
.hub-card:nth-child(4) { transform: translateX(60px); }
.hub-card:nth-child(5) { transform: translateX(120px); }
.hub-card.card-in { opacity: 1; transform: translateX(0) !important; }
.hub-card-img { aspect-ratio: 3/2; overflow: hidden; }
.hub-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hub-card:hover .hub-card-img img { transform: scale(1.04); }
.hub-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.hub-num { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; font-weight: 900;}
.hub-card h3 { margin-bottom: .5rem; }
.hub-card p { font-size: .85rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.hub-details { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.hub-pill { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .6rem; background: var(--surface); border: 1px solid var(--border); border-radius: 2px; color: var(--muted); }
.hub-service-tags { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: .9rem; }
.hub-service-tag { font-size: .68rem; font-weight: 500; letter-spacing: .04em; padding: .3rem .75rem; background: transparent; border: 1px solid var(--border); border-radius: 50px; color: var(--muted); white-space: nowrap; }
.hub-service-tag--active { border-color: var(--accent); color: var(--accent); }
.hub-card a { font-size: .78rem; font-weight: 600; color: var(--accent); letter-spacing: .04em; margin-top: auto; }
.hub-deco { margin-top: auto; width: 28px; height: 2px; background: var(--border); }
.hub-card a:hover { color: var(--accent2); }

/* ── Hub games accordion ───────────────────────── */
.hub-games-toggle {
  background: none; border: none; padding: .45rem 0;
  display: flex; align-items: center; gap: .45rem;
  font-family: inherit; font-size: .75rem; font-weight: 600;
  letter-spacing: .04em; color: var(--accent); cursor: pointer;
  margin-top: .1rem;
}
.hub-games-toggle:hover { color: var(--accent2); }
.hub-games-arrow {
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}
.hub-games-toggle[aria-expanded="true"] .hub-games-arrow { transform: rotate(180deg); }
.hub-games-list {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.16,1,.3,1), margin .38s ease;
  display: flex; flex-wrap: wrap; gap: .3rem .4rem;
  margin-bottom: 0;
}
.hub-games-list.open { max-height: 300px; margin-bottom: .75rem; }
.hub-game {
  font-size: .68rem; letter-spacing: .03em;
  color: rgba(240,237,232,.55);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px; padding: .18rem .48rem;
}
.hub-game--etc {
  color: rgba(240,237,232,.25);
  background: none;
  border-color: transparent;
  font-style: italic;
}

/* ── Live Sports ────────────────────────────────────── */
.live-sports { padding: 5rem 0 0; }
.live-header { text-align: center; margin-bottom: 3rem; }
.live-header h2 { margin-bottom: .5rem; }
.live-header p { color: var(--muted); font-size: .9rem; }
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #e02d2d; margin-right: .5rem; vertical-align: middle;
  animation: pulse 1.5s ease-in-out infinite;
}
.label:has(.live-dot) { color: #e02d2d; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}
.live-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 6px;
}
.live-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 4px; cursor: default;
}
.live-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.live-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.live-card:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.live-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.live-card:nth-child(5) { grid-column: 2; grid-row: 2; }
.live-card:nth-child(6) { display: none; }
.live-card-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.live-card:hover .live-card-photo { transform: scale(1.06); }
.live-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.05) 100%);
}
.live-card-body {
  position: relative; z-index: 1;
  padding: 1.5rem 1.5rem 1.4rem;
}
.live-badge {
  display: inline-block;
  font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.7);
  padding: .22rem .55rem; border-radius: 2px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  margin-bottom: .6rem;
}
.live-card-name {
  font-size: 1.35rem; font-weight: 700; color: #fff; line-height: 1.1;
}
.live-card-sub {
  font-size: .68rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-top: .35rem;
}
@media (max-width: 900px) {
  .live-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .live-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .live-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .live-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .live-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .live-card:nth-child(5) { grid-column: 2; grid-row: 3; }
}
@media (max-width: 480px) {
  .live-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .live-card:nth-child(n) { grid-column: 1; grid-row: auto; }
}

/* ── Privatisation section — Option D ───────────────── */
.private-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.private-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 25%, rgba(200,23,74,.07) 0%, transparent 70%);
  pointer-events: none;
}
.private-inner { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }

/* Eyebrow */
.private-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.75rem; }
.private-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: dotBreathe 2.8s ease-in-out infinite; }
.private-eyebrow-line { flex: 1; height: 1px; background: var(--border); }
.private-label {
  color: var(--accent); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; margin: 0;
  opacity: 0;
}
.private-label.label-in { animation: labelReveal .9s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes labelReveal {
  from { opacity: 0; letter-spacing: .9em; }
  to   { opacity: 1; letter-spacing: .2em; }
}

/* Title & desc */
.private-title {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; line-height: 1.15; margin-bottom: 1rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(0.22,1,0.36,1);
}
.private-title.title-in { opacity: 1; transform: translateY(0); }
.private-desc { font-size: .88rem; color: var(--muted); max-width: 560px; line-height: 1.8; margin: 0 auto 3rem; }

/* Features — horizontal row */
.private-features {
  display: flex; flex-direction: row;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.private-feat {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: .5rem;
  padding: 1.75rem .75rem;
  border-inline-end: 1px solid var(--border);
  background: transparent;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(0.22,1,0.36,1), background .2s;
  text-align: center;
}
.private-feat:last-child { border-inline-end: none; }
.private-feat:hover { background: rgba(255,255,255,.03); }
.private-feat.feat-in { opacity: 1; transform: translateY(0); }
.private-feat-num { font-size: .56rem; font-weight: 800; letter-spacing: .12em; color: var(--accent); }
.private-feat-icon { font-size: 1.25rem; color: var(--accent); margin: .2rem 0; display: block; }
.private-feat-body { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.private-feat-title { font-size: .72rem; font-weight: 700; color: var(--text); letter-spacing: .05em; text-transform: uppercase; }
.private-feat-sub { font-size: .67rem; color: var(--muted); line-height: 1.45; }

.private-note { font-size: .72rem; color: var(--muted); margin-bottom: 2rem; opacity: .65; line-height: 1.6; }

@media (max-width: 640px) {
  .private-features { flex-direction: column; border: none; gap: 0; }
  .private-feat {
    flex-direction: row; align-items: center; text-align: left;
    padding: .9rem 1rem .9rem .85rem;
    gap: .9rem;
    border-inline-end: none;
    border-left: 2px solid var(--accent);
    border-bottom: 0.5px solid rgba(255,255,255,.07);
  }
  .private-feat:last-child { border-bottom: none; }
  .private-feat-num { display: none; }
  .private-feat-icon {
    width: 36px; height: 36px;
    background: rgba(200,23,74,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0; margin: 0;
  }
  .private-feat-body { align-items: flex-start; }
}

/* ── Match reservation CTA ─────────────────────────── */
.match-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 6px;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
}
.match-cta-text { display: flex; align-items: center; gap: 1rem; }
.match-cta-icon { font-size: 1.4rem; color: var(--accent); line-height: 1; flex-shrink: 0; }
.match-cta-title { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .15rem; }
.match-cta-sub { font-size: .8rem; color: var(--muted); }
.match-cta-btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 640px) {
  .match-cta { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem; }
  .match-cta-btn { width: 100%; justify-content: center; }
}

/* ── Gallery Carousel ──────────────────────────────── */
#gallery { padding-bottom: 5rem; scroll-margin-top: calc(var(--nav-h) + .5rem); }
#gallery .wrap { margin-bottom: 0; }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; padding: 0; }
.gallery-header a { font-size: .82rem; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: .1rem; transition: color .2s, border-color .2s; }
.gallery-header a:hover { color: var(--text); border-color: var(--text); }

/* ── Gallery ticker ─────────────────────────────────── */
.gallery-ticker {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1.5rem 0 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%);
}
.ticker-row {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}
.ticker-left   { animation: tickerLeft   40s linear infinite; }
.ticker-right  { animation: tickerRight  52s linear infinite; }
@keyframes tickerLeft  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes tickerRight { from { transform: translateX(-50%); } to { transform: translateX(0);    } }
.ticker-row img {
  height: 240px;
  width: auto;
  display: block;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: cover;
  user-select: none;
  opacity: .75;
  transform: rotate(-0.8deg) scale(1);
  transition: opacity .35s ease, transform .35s cubic-bezier(0.22,1,0.36,1);
}
.ticker-row img:hover {
  opacity: 1;
  transform: rotate(0deg) scale(1.03);
  cursor: zoom-in;
}

/* ── Contact inline ─────────────────────────────────── */
#contact { background: var(--surface); border-top: 1px solid var(--border); scroll-margin-top: var(--nav-h); }
.contact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 1.5rem; }
.contact-item-google { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.contact-item-tripadvisor { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; border-top: 1px solid var(--border); }
.contact-item-tripadvisor .ta-left { display: flex; flex-direction: column; gap: .6rem; }
.contact-item-tripadvisor .ta-bubbles { display: flex; gap: 4px; align-items: center; }
.contact-item-google .google-left { display: flex; flex-direction: column; gap: .6rem; }
.contact-item-google .google-stars { display: flex; gap: 3px; color: #FBBC04; font-size: 1.4rem; line-height: 1; animation: starPulse 3.2s ease-in-out infinite; }
.contact-item-google .google-cta { display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--border); padding: .6rem 1.2rem; border-radius: 6px; font-size: .82rem; font-weight: 600; color: var(--text); transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.contact-item-google:hover .google-cta { background: #4285F4; border-color: #4285F4; color: #fff; }
.contact-item-google .google-cta svg { width: 16px; height: 16px; }
.contact-item { background: var(--bg); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: .6rem; opacity: 0; transform: translateX(-40px); transition: opacity .5s ease, transform .55s cubic-bezier(0.22,1,0.36,1); }
.contact-item.from-right { transform: translateX(40px); }
.contact-item.slide-in { opacity: 1; transform: translateX(0); }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); margin-bottom: .5rem; transition: background .2s; }
.contact-item-icon svg { width: 20px; height: 20px; color: var(--text); }
.contact-item:hover .contact-item-icon { background: var(--accent); border-color: var(--accent); }
.contact-item-label { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact-item-val { font-size: 1.05rem; font-weight: 500; color: var(--text); transition: color .2s; }
.contact-item-val:hover { color: var(--accent); }
.contact-item-sub { font-size: .78rem; color: var(--muted); }
@media (max-width: 900px) { .contact-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .contact-row { grid-template-columns: 1fr; } }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  /* Global */
  section { padding: 3.5rem 0; }
  h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-since { display: none; }
  .lang-switch { display: none; }
  .nav-logo img { height: 36px; }

  /* Hero — split becomes stacked on mobile */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 48svh auto;
    min-height: auto;
    padding-top: var(--nav-h);
  }
  .hero-right { order: 1; min-height: 48svh; }
  .hero-left { order: 2; padding: 2.5rem 1.5rem 3rem; align-items: flex-start; }
  .hero-content { max-width: 100%; }
  .hero-right::after { background: linear-gradient(to bottom, rgba(14,14,14,.15) 0%, transparent 40%); }
  .hero-eyebrow { font-size: .65rem; gap: .5rem; padding: .4rem .8rem; margin-bottom: 1.5rem; }
  .eyebrow-time { font-size: .62rem; }
  .hero-accent { margin-bottom: 1.25rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-keywords { gap: .35rem; margin-bottom: 1.75rem; }
  .hero-kw { font-size: .52rem; letter-spacing: .1em; padding: .28rem .6rem; }
  .hero-kw-since { display: inline-block; }
  .hero-actions { gap: .6rem; }
  .btn { padding: .75rem 1.4rem; font-size: .83rem; }

  /* Sport hub */
  .hub-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .hub-card { padding: 1.5rem 1.25rem; }
  .hub-card h3 { font-size: 1rem; }

  /* Live sports */
  .live-sports { padding: 3rem 0 0; }
  .live-header { margin-bottom: 1.5rem; }
  .live-card-name { font-size: 1.1rem; }
  .live-card-body { padding: 1rem 1rem 1rem; }

  /* Gallery ticker mobile */
  .gallery-header { margin-bottom: 1rem; padding: 0 1.5rem; }
  .ticker-row img { height: 140px; }
  .gallery-ticker { gap: 7px; padding: 1rem 0 1.5rem; }

  /* Contact header */
  .contact-header { padding: 1.25rem 1.5rem 1rem; margin-bottom: .75rem; }
  .contact-header h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .contact-header::before { margin-bottom: .5rem; }

  /* Contact cards */
  .contact-row { grid-template-columns: 1fr 1fr; }
  .contact-item { padding: 1.1rem 1rem; }
  .contact-item-val { font-size: .9rem; }
  .contact-item-google { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-item-google .google-cta { width: 100%; justify-content: center; }

}

@media (max-width: 400px) {
  .hub-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  }

/* ── Bottom nav ──────────────────────────────────────── */
.bottom-nav { display: none; }

/* ── Hub dots (desktop hidden) ───────────────────────── */
.hub-dots { display: none; }

/* ── Hub desktop — 5 cartes ligne unique ── */
.hub-arrow { display: none; }
@media (min-width: 641px) {
  .hub-grid {
    display: flex !important; flex-wrap: nowrap !important;
    width: 100% !important; gap: 1.5px !important;
    background: var(--border) !important;
    border: 1px solid var(--border) !important;
    padding: 0 !important; margin: 0 !important;
    animation: none !important; overflow: visible !important;
  }
  .hub-card {
    flex: 1 1 0 !important; min-width: 0 !important;
    max-width: none !important; scroll-snap-align: unset !important;
    border-right: none !important;
  }
}

/* ── Premium mobile upgrades ─────────────────────────── */
@media (max-width: 640px) {
  /* Mobile tagline block */
  .mobile-tagline {
    display: block;
    padding: 1.75rem 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
  }
  .mobile-tl-h {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 12vw, 2.8rem);
    font-weight: 700;
    font-style: normal;
    line-height: .88;
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.1rem;
  }
  .mobile-tl-h em { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 700; color: var(--accent); }
  /* Ticker */
  .mobile-tl-ticker {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .mobile-tl-track {
    display: inline-block;
    animation: mobileTicker 18s linear infinite;
  }
  .mobile-tl-track span {
    display: inline;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .mobile-tl-track span em {
    font-style: normal;
    color: var(--accent);
  }
  @keyframes mobileTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .mobile-hours {
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    padding: .95rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.025);
  }
  .mobile-hours-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #2ecc71; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(46,204,113,.18);
    animation: dotPulse 2.2s ease-in-out infinite;
  }
  @keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(46,204,113,.18); }
    50%      { box-shadow: 0 0 0 6px rgba(46,204,113,.07); }
  }
  .mobile-hours-text {
    font-size: .82rem; font-weight: 600;
    letter-spacing: .06em;
    color: rgba(240,237,232,.82);
    white-space: nowrap;
  }
  .mobile-hours-text .mh-open {
    color: #fff;
    font-weight: 700;
  }
  .mobile-hours-text .mh-sep {
    color: rgba(255,255,255,.25);
    margin: 0 .3rem;
  }
  .mobile-hours-text .mh-time {
    color: rgba(240,237,232,.65);
    font-weight: 500;
  }

  /* B — Bottom navigation */
  body { padding-bottom: 68px; }

  .bottom-nav {
    display: flex;
    position: fixed;
    top: auto; bottom: 0; left: 0; right: 0; z-index: 300;
    height: auto;
    background: rgba(14,14,14,.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    border-bottom: none;
    padding: .55rem 0 calc(.55rem + env(safe-area-inset-bottom));
    justify-content: space-around; align-items: center;
  }
  .bottom-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: .3rem .55rem;
    font-size: .55rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); transition: color .2s;
  }
  .bottom-nav-item svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .bottom-nav-item.active { color: var(--accent); }
  .bottom-nav-item.active svg { stroke: var(--accent); }
  .bottom-nav-ig { transition: color .2s; }
  .bottom-nav-ig:active { color: #e1306c; }

  /* C — Live sports horizontal scroll */
  .live-grid {
    display: flex; flex-direction: row;
    overflow-x: auto; gap: 8px;
    padding: 0 1.25rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .live-grid::-webkit-scrollbar { display: none; }
  .live-card {
    flex-shrink: 0; width: 195px; height: 256px;
    scroll-snap-align: start; border-radius: 6px;
  }
  .live-card:nth-child(n) { grid-column: unset; grid-row: unset; }

  /* A — Carousel CSS scroll-snap (sans JS) */
  .hub-grid {
    display: flex !important; overflow-x: auto;
    flex-wrap: nowrap !important;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 12px; scrollbar-width: none; background: none !important; border: none !important;
    padding-left: 1.5rem; padding-right: 1.5rem;
    margin-left: -1.5rem; margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
  .hub-grid::-webkit-scrollbar { display: none; }
  .hub-card {
    flex-shrink: 0 !important; width: 82vw !important; max-width: 340px;
    scroll-snap-align: start; flex-direction: column !important; padding: 0 !important; min-height: unset;
  }
  .hub-card-img { width: 100%; aspect-ratio: 3 / 2; height: auto; flex-shrink: 0; }
  .hub-card-body { padding: 1.5rem; }
  .hub-card p { display: block; }
  .hub-details { display: flex; }
  .hub-service-tags { display: flex; }
  .hub-deco { display: block; }
  .hub-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
  /* Pagination dots */
  .hub-dots { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 1.1rem 0 .75rem; background: var(--surface); }
  .hub-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background .25s, width .25s; flex-shrink: 0; }
  .hub-dot.active { background: var(--accent); width: 20px; border-radius: 3px; }

  /* E — H1 éditorial géant */
  .hero h1 { font-size: clamp(3.6rem, 22vw, 5rem); margin-bottom: 0; }

  /* F — Contact grid brandé */
  .contact-row {
    grid-template-columns: 1fr 1fr;
    background: transparent; border: none;
    gap: 10px;
  }
  .contact-item:not(.contact-item-google) {
    flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem; gap: .55rem;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--surface);
  }
  .contact-item:not(.contact-item-google) .contact-item-icon {
    width: 52px; height: 52px; border-radius: 14px;
    margin-bottom: .2rem;
  }
  .contact-item:not(.contact-item-google) .contact-item-icon svg { width: 26px; height: 26px; }
  .contact-item-val { display: none; }
  .contact-item-sub { display: none; }
  .contact-item-label {
    font-size: .65rem; letter-spacing: .12em;
    color: var(--text); font-weight: 600;
  }

  /* Couleurs brandées */
  .contact-item:nth-child(1) .contact-item-icon { background: rgba(52,199,89,.12); border-color: rgba(52,199,89,.25); }
  .contact-item:nth-child(1) .contact-item-icon svg { color: #34C759; stroke: #34C759; }
  .contact-item:nth-child(2) .contact-item-icon { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.25); }
  .contact-item:nth-child(2) .contact-item-icon svg { fill: #25D366; }
  .contact-item:nth-child(3) .contact-item-icon { background: rgba(225,48,108,.12); border-color: rgba(225,48,108,.25); }
  .contact-item:nth-child(3) .contact-item-icon svg { color: #E1306C; stroke: #E1306C; }
  .contact-item:nth-child(4) .contact-item-icon { background: rgba(234,67,53,.12); border-color: rgba(234,67,53,.25); }
  .contact-item:nth-child(4) .contact-item-icon svg { color: #EA4335; stroke: #EA4335; }

  /* Google — pleine largeur */
  .contact-item-google {
    grid-column: 1 / -1;
    flex-direction: row; align-items: center;
    padding: 1.2rem 1.5rem; gap: 1rem;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--surface);
  }
  .contact-item-google .google-left { gap: .35rem; }
  .contact-item-google .contact-item-label { color: var(--muted); }
  .contact-item-google .contact-item-sub { display: none; }
  .contact-item-google .google-cta { padding: .5rem 1rem; font-size: .75rem; }

  /* J — Boutons en bas, titre en haut, photo respire au milieu */
  .hero-content { display: flex !important; flex-direction: column; min-height: 82svh; }
  .hero-actions { order: 1; margin-top: auto !important; flex-direction: column; gap: .75rem !important; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-actions .btn-wa { width: 100%; }
  .hero-keywords { order: 2; margin-bottom: 0 !important; margin-top: .85rem; }

  /* Bouton Menu — ghost blanc sur hero photo */
  .hero-left .btn-primary {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,.55) !important;
    color: #fff !important;
    box-shadow: none !important;
  }
  .hero-left .btn-primary:hover {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.8) !important;
    transform: translateY(-2px);
  }

  /* L — Pull quote hub-intro */
  .hub-intro {
    font-size: clamp(.78rem, 3.8vw, .95rem) !important;
    line-height: 1.3 !important;
    color: var(--text) !important;
    opacity: 1 !important;
    text-align: center;
    padding: .75rem 0 1rem;
    max-width: none !important;
    white-space: nowrap;
  }
  .hub-intro .pull-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s ease, transform .45s ease;
  }
  .hub-intro.words-in .pull-word {
    opacity: 1; transform: none;
  }

  /* H — Hero paysage mobile */
  .hero {
    grid-template-columns: 1fr !important;
    grid-template-rows: max(62vw, 48svh) !important;
    min-height: unset !important;
    height: max(62vw, 48svh);
    padding-top: 0 !important;
    overflow: hidden;
    position: relative;
  }
  .hero-left { display: none !important; }
  .hero-right {
    position: relative !important;
    inset: unset !important;
    width: 100% !important;
    height: max(62vw, 48svh) !important;
    min-height: unset !important;
    order: 0 !important;
  }
  .hero-right::after { display: none !important; }
  
  
  
  
  /* Mobile hero buttons — under mobile-tagline */
  .mobile-hero-actions {
    display: flex;
    gap: .75rem;
    padding: 1.25rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .mobile-hero-actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: .85rem 1rem;
    font-size: .88rem;
  }
  .mobile-hero-actions .btn-primary {
    background: linear-gradient(135deg, #C8174A 0%, #8a0f33 100%);
    border: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(200,23,74,.3);
  }



  /* I — Galerie carousel mobile (handled above) */
}

@media (max-width: 480px) {
  .live-grid { display: flex; flex-direction: row; }
  .live-card:nth-child(n) { grid-column: unset; grid-row: unset; }
}

/* ── Scroll progress bar ─────────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 100001;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  pointer-events: none;
}

/* ── Stats strip ─────────────────────────────────────── */
.stats-strip {
  display: flex; align-items: stretch; justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-strip .stat-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--border);
  gap: .25rem;
}
.stats-strip .stat-item:last-child { border-right: none; }
.stats-strip .stat-item--link {
  cursor: pointer; text-decoration: none;
  transition: background .2s;
}
.stats-strip .stat-item--link:hover { background: rgba(255,255,255,.04); }
@media (pointer: coarse) {
  .stats-strip .stat-item--link { pointer-events: none; cursor: default; }
}
.stats-strip .stat-top { display: flex; align-items: baseline; gap: .1rem; line-height: 1; }
.stats-strip .stat-num {
  font-size: 2.8rem; font-weight: 700; color: var(--text); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats-strip .stat-suf { font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stats-strip .stat-lbl {
  font-size: .6rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-top: .4rem;
}
.stats-strip .stat-sub {
  font-size: .65rem; font-weight: 500; letter-spacing: .04em;
  color: var(--accent); margin-top: .2rem;
  width: 100%; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* ── Ticker ──────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  display: inline-block; padding-right: 4rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.ticker-track span strong { color: var(--accent); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.testi-header {
  margin-bottom: 2.5rem;
}
.testi-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-top: .4rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
/* testi-stars moved to star animations block */
.testi-text {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(240,237,232,.8);
  flex: 1;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.testi-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.testi-loc {
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}

.testi-dots { display: none; }

@media (max-width: 640px) {
  .testimonials { padding: 3rem 0; }
  .testi-header { padding: 0 1.5rem; margin-bottom: 1.5rem; }
  .testi-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1.5rem 1rem;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    border-radius: 12px;
    padding: 1.4rem 1.25rem;
  }
  .testi-dots { display: flex; justify-content: center; align-items: center; gap: 8px; padding: .9rem 0 0; }
  .testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background .25s, width .25s; flex-shrink: 0; cursor: pointer; }
  .testi-dot.active { background: var(--accent); width: 20px; border-radius: 3px; }
}

/* ── Live sports scroll dots (mobile) ───────────────────── */
.live-dots { display: none; }
@media (max-width: 640px) {
  .live-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 8px; padding: .7rem 0 .4rem;
  }
  .live-dot-item {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border);
    transition: background .25s, width .25s; flex-shrink: 0;
  }
  .live-dot-item.active { background: var(--accent); width: 20px; border-radius: 3px; }
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  opacity: .85;
}
.footer-brand p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: .82rem;
  color: rgba(240,237,232,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Closing tagline */
.closing-tagline {
  text-align: center;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}
.closing-tagline p {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -.01em;
  color: rgba(240,237,232,.7);
  line-height: 1.3;
  white-space: nowrap; /* single-line on desktop */
}
@media (max-width: 640px) {
  .closing-tagline p {
    font-size: clamp(0.85rem, 4.2vw, 1.4rem); /* shrinks to fit on mobile */
    white-space: nowrap;
  }
}
.closing-tagline em { color: var(--accent); font-style: italic; font-family: 'Playfair Display', serif; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.5rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 28px; }
  .footer-bottom { padding: 1.25rem 1.5rem 0; }
  .closing-tagline { padding: 2.5rem 1.5rem; }
}


/* ── Mobile tagline (desktop hidden) ───────────────── */
@media (min-width: 641px) { .mobile-tagline, .mobile-hours, .mobile-hero-actions { display: none; } }

/* ── Skeleton shimmer ────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, #222 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}

/* ── Section mobile spacing ──────────────────────────── */
@media (max-width: 640px) {
  .stats-strip { padding: 1.5rem 0; }
  #sport-hub   { padding: 3.5rem 0; }
  .testimonials { padding: 3.5rem 0 2rem; }
  #gallery     { padding-bottom: 3.5rem; }
  #contact     { padding-top: 0; }
  .closing-tagline { padding: 2rem 1.5rem; }
}

/* ── Text split animation ────────────────────────────── */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-word.word-in { opacity: 1; transform: translateY(0); }

/* ── Mobile tagline (desktop hidden) ───────────────── */
@media (min-width: 641px) { .mobile-tagline, .mobile-hours { display: none; } }

/* grain: see @media (pointer: fine) block above */

/* ── Magnetic buttons ────────────────────────────────── */
.btn-primary, .match-cta-btn { will-change: transform; }

@media (max-width: 640px) {
  /* Stats strip mobile */
  .stats-strip { flex-wrap: wrap; }
  .stats-strip .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .stats-strip .stat-item:nth-child(2n) { border-right: none; }
  .stats-strip .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stats-strip .stat-num { font-size: 2.2rem; }
  .stats-strip .stat-suf { font-size: 1.3rem; }
}

/* ── Stars animations ──────────────────────────────── */
@keyframes starPulse {
  0%,100% { color: #FBBC04; }
  50%      { color: #ffe066; text-shadow: 0 0 10px rgba(251,188,4,.6); }
}
.stat-stars {
  display: inline-block;
  animation: starPulse 2.8s ease-in-out infinite;
}
.testi-stars {
  font-size: .9rem;
  letter-spacing: 2px;
  animation: starPulse 3s ease-in-out infinite;
}

/* ── Prefers reduced motion ─────────────────────────── */
/* Respecter le réglage "Limiter les animations" de l'OS */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Garder le loader fonctionnel mais instantané */
  .loader-door { transition-duration: 0.01ms !important; }
  /* Garder les split-words visibles même sans animation */
  .split-word { opacity: 1 !important; transform: none !important; }
  /* Garder les éléments reveal visibles */
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Mobile hero actions — always visible, two-column layout ── */
@media (max-width: 640px) {
  .hero-content {
    min-height: auto !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: .75rem !important;
    width: 100%;
    margin-top: 1.35rem !important;
    order: 2;
  }

  .hero-actions .btn,
  .hero-actions .btn-wa {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px;
    padding: .85rem .7rem;
    justify-content: center;
    gap: .55rem;
    font-size: clamp(.76rem, 3.8vw, .92rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-left .btn-primary {
    background: linear-gradient(135deg, #d91650 0%, #a60f3b 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(200, 23, 74, .3) !important;
  }

  .hero-actions .btn svg {
    width: 21px !important;
    height: 21px !important;
  }

  .hero-keywords {
    order: 1;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    gap: .55rem !important;
  }

  .hero-actions .btn,
  .hero-actions .btn-wa {
    min-height: 50px;
    padding-inline: .45rem;
    font-size: .74rem;
  }
}

/* ── Mobile gallery — Safari iOS fix ───────────────────── */
@media (max-width: 640px) {
  /* mask-image blacks out the section on Safari iOS with animated children */
  .gallery-ticker {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    gap: 8px;
    padding: 1rem 0 1.5rem;
    /* Force Safari to create compositing layer before first paint */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent clipping during image load */
    overflow: hidden;
    /* Ensure rows are visible before animation starts */
    opacity: 1;
  }

  /* Reuse desktop translateX keyframes — no 3D/preserve-3d which creates
     invisible compositing layers on Safari iOS */
  .gallery-ticker .ticker-left {
    animation: tickerLeft 34s linear infinite !important;
    animation-delay: -0.1s !important; /* start mid-animation so no jump on first paint */
  }
  .gallery-ticker .ticker-right {
    animation: tickerRight 42s linear infinite !important;
    animation-delay: -0.1s !important;
  }

  /* Reset desktop rotate(-0.8deg) — breaks Safari compositing when parent
     row is animating; translateZ also causes layer conflicts, use none */
  .gallery-ticker .ticker-row img {
    height: 150px !important;
    width: auto !important;
    min-width: 100px !important; /* prevent row collapsing before images load */
    transform: none !important;
    -webkit-transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    /* Force image decode before paint to avoid blank frame on Safari */
    content-visibility: auto;
  }
}

/* Animation always running — gallery-ready class removed (was never set by JS) */
.gallery-ticker .ticker-row {
  animation-play-state: running;
}