/* =========================================================
   OLD'S GYM — Feuille de styles
   Palette de marque : charbon + rouge profond + orange-rouge
   Typo : Barlow Condensed (titres) / Barlow (corps)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ----------------------- Tokens ----------------------- */
:root {
  --bg:        #131313;
  --bg-2:      #1b1b1b;
  --bg-3:      #232323;
  --card:      #1e1e1e;
  --accent:    #c23706;   /* orange-rouge — accent principal */
  --accent-2:  #e8531d;   /* orange plus clair — hover / lueurs */
  --red:       #8b1a1a;   /* rouge profond du logo */
  --text:      #f5f5f5;
  --muted:     #a6a6a6;
  --silver:    #9a9a9a;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.16);

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(194, 55, 6, 0.4), 0 18px 50px rgba(194, 55, 6, 0.18);

  /* échelle z-index */
  --z-nav: 50;
  --z-hero-text: 30;
  --z-hero-media: 20;
}

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .display {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

::selection { background: var(--accent); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ----------------------- Utilitaires ----------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 3px; font-weight: 600;
  font-size: 15px; color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--accent); }

.section-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 22px;
}
.section-title .hl { color: var(--accent); }

.lead { color: var(--muted); font-size: 1.12rem; max-width: 64ch; }

.center { text-align: center; }

/* Accessibilité : visible pour les lecteurs d'écran / moteurs, masqué visuellement */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* FAQ (citabilité GEO / AI search) */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; transition: border-color .3s var(--ease); }
.faq-item:hover { border-color: rgba(194,55,6,.45); }
.faq-item h3 { font-size: 1.4rem; margin-bottom: 8px; letter-spacing: .5px; }
.faq-item p { color: var(--muted); }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.center .lead { margin-left: auto; margin-right: auto; }

.text-accent { color: var(--accent-2); }

/* ----------------------- Boutons ----------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 30px; border-radius: 10px;
  min-height: 48px;
  transition: transform .2s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 30px rgba(194, 55, 6, 0.35);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232, 83, 29, 0.45); }
.btn--ghost { border: 2px solid var(--line-2); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent-2); outline-offset: 3px; border-radius: 6px;
}

/* ----------------------- Navbar ----------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 58px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); transition: transform .25s var(--ease); }
.nav__brand:hover img { transform: scale(1.05); }
.nav__brand b {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  font-size: 1.35rem; letter-spacing: 1px; line-height: 1;
}
.nav__brand b span { color: var(--accent-2); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 1.2px; font-weight: 600; font-size: 1.02rem;
  padding: 10px 14px; border-radius: 8px; color: var(--text);
  transition: color .2s, background .2s; position: relative;
}
.nav__links a:not(.btn):hover { color: var(--accent-2); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__links .btn { padding: 11px 22px; min-height: 44px; }
.nav__member { padding: 11px 16px !important; }
.nav__member svg { width: 18px; height: 18px; }

.nav__burger {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--line-2); align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); position: relative; transition: .3s; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text); transition: .3s; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* ----------------------- Hero scroll-expand ----------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero__sticky {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  will-change: opacity;
}
.hero__bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.35); }

.hero__media {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--z-hero-media);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,.55);
  max-width: 95vw; max-height: 85vh;
  will-change: width, height;
}
.hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media-shade { position: absolute; inset: 0; background: rgba(0,0,0,.35); }

.hero__title {
  position: relative; z-index: var(--z-hero-text);
  width: 100%; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2px; pointer-events: none;
  mix-blend-mode: difference;
}
.hero__title { margin: 0; }
.hero__title .hero__word {
  display: block;
  font-size: clamp(4rem, 15vw, 10.5rem); color: #fff; line-height: .9;
  will-change: transform; letter-spacing: 2px;
}
.hero__tagline {
  position: absolute; bottom: 7%; left: 0; right: 0; z-index: var(--z-hero-text);
  display: flex; flex-direction: column; align-items: center; gap: 12px; pointer-events: none;
}
.hero__subtitle {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 2.5px; font-weight: 500;
  font-size: clamp(.72rem, 1.5vw, .95rem); color: rgba(255, 255, 255, 0.92);
  text-align: center; max-width: 92vw; margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.hero__tagline .small {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 4px; font-weight: 600; color: var(--accent-2); font-size: 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; margin: 0 auto; pointer-events: auto;
}
.hero__chevron { width: 26px; height: 26px; animation: bob 1.8s infinite var(--ease); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* contenu révélé après expansion */
.hero__reveal {
  max-width: 900px; margin: 0 auto; padding: 70px 24px 30px;
  text-align: center; opacity: 0; transition: opacity .7s var(--ease);
}
.hero.expanded .hero__reveal { opacity: 1; }

/* ----------------------- Bandeau marquee ----------------------- */
.marquee {
  background: var(--accent); color: #fff; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(0,0,0,.2);
}
.marquee__track { display: inline-flex; gap: 0; animation: scrollX 26s linear infinite; }
.marquee__track span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 4px; font-size: 1.5rem; padding: 16px 30px; display: inline-flex; align-items: center; gap: 30px;
}
.marquee__track span::after { content: "★"; color: rgba(0,0,0,.45); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ----------------------- Grilles & cartes ----------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(194,55,6,.55); box-shadow: var(--glow); }
.card__icon {
  width: 58px; height: 58px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--red));
  display: grid; place-items: center; margin-bottom: 22px;
}
.card__icon svg { width: 28px; height: 28px; color: #fff; }
.card h3 { font-size: 1.7rem; margin-bottom: 12px; letter-spacing: 1px; }
.card p { color: var(--muted); font-size: 1.02rem; }

/* Split image + texte */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.split__media:hover img { transform: scale(1.06); }
.split__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
}
.split__badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 2px;
  font-weight: 700; background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 8px;
}

/* Citation / mission */
.mission {
  margin: 26px 0 4px; padding: 18px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(194, 55, 6, 0.08);
  border-radius: 0 10px 10px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; line-height: 1.25; font-style: italic; color: var(--text);
}
.mission .hl { color: var(--accent-2); font-style: normal; }

/* Liste à puces stylée */
.ticks { display: grid; gap: 14px; margin-top: 24px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.ticks li svg { width: 22px; height: 22px; color: var(--accent-2); flex: none; margin-top: 4px; }

/* ----------------------- Univers (block-based) ----------------------- */
.universe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: var(--radius); overflow: hidden; }
.universe__col {
  position: relative; min-height: 440px; padding: 38px 32px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden; isolation: isolate;
}
.universe__col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.universe__col::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(19,19,19,.15) 0%, rgba(19,19,19,.55) 50%, rgba(19,19,19,.92) 100%); }
.universe__col:hover img { transform: scale(1.08); }
.universe__col .num { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 3px; color: var(--accent-2); font-weight: 700; }
.universe__col h3 { font-size: 2rem; margin: 8px 0 10px; }
.universe__col p { color: #d6d6d6; font-size: 1rem; }

/* ----------------------- Espaces (galerie) ----------------------- */
.space { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; isolation: isolate; }
.space img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.space::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.8)); }
.space:hover img { transform: scale(1.07); }
.space__body { padding: 30px; position: absolute; bottom: 0; left: 0; right: 0; }
.space__body h3 { font-size: 1.8rem; color: #fff; margin-bottom: 8px; }
.space__body p { color: #d8d8d8; font-size: .98rem; }
.space--tall { grid-row: span 2; min-height: 100%; }
.espaces-grid { grid-auto-rows: 1fr; }
.space--wide { grid-column: span 2; }

/* ----------------------- Planning ----------------------- */
.planning-figure {
  max-width: 920px; margin: 0 auto; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
  background: #2b2b2b;
}
.planning-figure img { width: 100%; height: auto; display: block; }
.planning-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
.planning {
  width: 100%; min-width: 760px; border-collapse: collapse;
  font-family: 'Barlow Condensed', sans-serif; text-align: center;
  background: #2b2b2b;
}
.planning th {
  background: #161616; color: #fff; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 1.15rem; font-weight: 700; padding: 16px 8px; border: 1px solid #111;
}
.planning td { border: 1px solid #1a1a1a; padding: 16px 8px; vertical-align: middle; height: 78px; }
.planning .band td {
  background: var(--accent); color: #fff; font-weight: 700; letter-spacing: 1px;
  font-size: 1.02rem; padding: 7px; height: auto; text-transform: uppercase;
}
.planning .cls { color: #fff; font-weight: 700; font-size: 1.45rem; letter-spacing: 1px; line-height: 1.05; }
.planning .cls small { display: block; font-size: .8rem; letter-spacing: 2px; color: var(--accent-2); margin-top: 4px; font-weight: 600; }
.planning .empty { background: #262626; }
.planning .slot:hover { background: #343434; }
.planning-hint { color: var(--muted); font-size: .95rem; margin-top: 16px; text-align: center; }

/* ----------------------- Tarifs ----------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-6px); border-color: var(--line-2); }
.price--featured { border-color: var(--accent); box-shadow: var(--glow); background: linear-gradient(180deg, #251410, var(--card)); }
.price__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: .85rem;
  padding: 6px 18px; border-radius: 20px; white-space: nowrap;
}
.price h3 { font-size: 1.9rem; letter-spacing: 1px; }
.price__amount { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; margin: 14px 0 6px; }
.price__amount b { font-size: 3.6rem; color: var(--accent-2); line-height: 1; }
.price__amount span { color: var(--muted); font-size: 1.1rem; }
.price ul { display: grid; gap: 12px; margin: 22px 0 28px; }
.price li { display: flex; gap: 12px; align-items: flex-start; color: #ddd; font-size: 1rem; }
.price li svg { width: 20px; height: 20px; color: var(--accent-2); flex: none; margin-top: 4px; }
.price .btn { margin-top: auto; }

.note-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.note {
  border: 1px dashed var(--line-2); border-radius: var(--radius-sm); padding: 22px 24px; background: var(--bg-2);
}
.note h4 { font-size: 1.3rem; color: var(--accent-2); margin-bottom: 6px; letter-spacing: 1px; }
.note p { color: var(--muted); font-size: .98rem; }
.note p b { color: var(--text); }

/* ----------------------- Équipe ----------------------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.member:hover { transform: translateY(-6px); border-color: rgba(194,55,6,.5); }
.member__img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--bg-3); }
.member__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: grayscale(.2) contrast(1.05); }
.member:hover .member__img img { transform: scale(1.06); filter: grayscale(0); }
.member__body { padding: 24px 26px 30px; }
.member__role { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-2); font-weight: 600; font-size: .95rem; }
.member__body h3 { font-size: 1.7rem; margin: 4px 0 12px; }
.member__body p { color: var(--muted); font-size: .98rem; }

/* ----------------------- Pourquoi nous (features) ----------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { display: flex; gap: 18px; align-items: flex-start; padding: 26px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .3s, transform .3s var(--ease); }
.feature:hover { border-color: rgba(194,55,6,.5); transform: translateY(-4px); }
.feature__ic { width: 50px; height: 50px; flex: none; border-radius: 12px; background: rgba(194,55,6,.14); display: grid; place-items: center; }
.feature__ic svg { width: 26px; height: 26px; color: var(--accent-2); }
.feature h4 { font-size: 1.35rem; letter-spacing: 1px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ----------------------- CTA band ----------------------- */
.cta {
  position: relative; overflow: hidden; isolation: isolate; border-radius: 0;
  padding: 120px 0; text-align: center;
}
.cta video, .cta img.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(19,19,19,.78), rgba(139,26,26,.55)); }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; margin-bottom: 18px; }
.cta p { color: #e8e8e8; max-width: 60ch; margin: 0 auto 34px; font-size: 1.15rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----------------------- Stats ----------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat b { font-family: 'Barlow Condensed', sans-serif; font-size: 3.2rem; color: var(--accent-2); display: block; line-height: 1; }
.stat span { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-size: .95rem; }

/* ----------------------- Footer ----------------------- */
.footer { background: #0f0f0f; border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { height: 80px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: .98rem; max-width: 34ch; }
.footer h5 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 1.2rem; margin-bottom: 18px; color: #fff; }
.footer ul { display: grid; gap: 10px; }
.footer a, .footer li { color: var(--muted); font-size: .98rem; transition: color .2s; }
.footer a:hover { color: var(--accent-2); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; margin-top: 4px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 10px; display: grid; place-items: center; transition: all .25s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid var(--line); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent-2); }

/* ----------------------- Page header (sous-pages) ----------------------- */
.page-hero { padding: 160px 0 70px; position: relative; text-align: center; border-bottom: 1px solid var(--line); background: radial-gradient(900px 400px at 50% -10%, rgba(194,55,6,.22), transparent 70%), var(--bg); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.page-hero p { color: var(--muted); margin-top: 14px; }
.breadcrumb { color: var(--muted); font-size: .9rem; margin-bottom: 18px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--accent-2); }

/* ----------------------- Contact ----------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: rgba(194,55,6,.14); display: grid; place-items: center; }
.info-row__ic svg { width: 22px; height: 22px; color: var(--accent-2); }
.info-row h4 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 1.15rem; margin-bottom: 2px; }
.info-row p, .info-row a { color: var(--muted); font-size: 1rem; }
.info-row a:hover { color: var(--accent-2); }

form .field { margin-bottom: 20px; }
form label { display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: .95rem; margin-bottom: 8px; color: #ddd; }
form input, form select, form textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(194,55,6,.25); }
form textarea { resize: vertical; min-height: 140px; }
.form-note { color: var(--muted); font-size: .88rem; margin-top: 14px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 30px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.3) invert(.92) hue-rotate(180deg) contrast(.9); }

/* hours table */
.hours { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours td { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 1rem; }
.hours td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.hours tr:last-child td { border-bottom: none; }

/* ----------------------- Mentions légales ----------------------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.9rem; margin: 40px 0 14px; color: var(--accent-2); letter-spacing: 1px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal b { color: var(--text); }
.legal .info-table { width: 100%; border-collapse: collapse; margin: 10px 0 20px; background: var(--card); border-radius: var(--radius); overflow: hidden; }
.legal .info-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 1rem; }
.legal .info-table td:first-child { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); width: 42%; }
.legal .info-table td:last-child { color: var(--text); font-weight: 600; }

/* ----------------------- Reveal animation ----------------------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .split { gap: 40px; }
}
@media (max-width: 880px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: #161616; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 100px 26px 40px; gap: 6px; transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  body.menu-open .nav__links { transform: translateX(0); }
  .nav__links a:not(.btn) { padding: 14px 12px; font-size: 1.2rem; border-bottom: 1px solid var(--line); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 14px; }
  .nav__burger { display: flex; }
  body.menu-open::after { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 40; }

  .section { padding: 80px 0; }
  .grid-2, .grid-3, .grid-4, .pricing, .team, .features, .note-cards, .universe, .contact-grid, .stats, .footer__grid { grid-template-columns: 1fr; }
  .universe { gap: 0; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .space--tall { grid-row: auto; min-height: 320px; }
  .espaces-grid { grid-auto-rows: auto; }
  .space--wide { grid-column: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .marquee__track span { font-size: 1.2rem; padding: 12px 20px; }
  .btn { width: 100%; }
  .cta__actions .btn { width: auto; }
}

/* ----------------------- Toast (inscription) ----------------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(140%);
  background: #1d1d1d; color: #fff; border: 1px solid var(--accent);
  border-radius: 12px; padding: 16px 22px; z-index: 200;
  display: flex; align-items: center; gap: 12px; max-width: 92vw;
  box-shadow: 0 18px 50px rgba(0,0,0,.5); font-weight: 500;
  transition: transform .45s var(--ease), opacity .45s var(--ease); opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 22px; height: 22px; color: var(--accent-2); flex: none; }

/* ----------------------- Cookies RGPD ----------------------- */
.cookie {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 180;
  max-width: 540px; background: #181818; border: 1px solid var(--line-2);
  border-radius: 16px; padding: 24px 26px; box-shadow: 0 20px 60px rgba(0,0,0,.6);
  transform: translateY(160%); transition: transform .5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 1.35rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.cookie h4 svg { width: 22px; height: 22px; color: var(--accent-2); }
.cookie p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.cookie p a { color: var(--accent-2); text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btns .btn { padding: 11px 20px; font-size: .95rem; min-height: 44px; flex: 1 1 auto; }
.cookie__btns .btn--link { background: none; border: none; color: var(--muted); text-decoration: underline; flex: 1 1 100%; padding: 6px; letter-spacing: 1px; }
.cookie__btns .btn--link:hover { color: var(--accent-2); }

/* bouton flottant discret bas-gauche */
.cookie-fab {
  position: fixed; left: 14px; bottom: 14px; z-index: 170;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(30,30,30,.85); border: 1px solid var(--line-2);
  display: grid; place-items: center; backdrop-filter: blur(6px);
  opacity: .55; transition: opacity .25s, transform .25s, background .25s;
}
.cookie-fab:hover { opacity: 1; transform: scale(1.08); background: var(--accent); border-color: var(--accent); }
.cookie-fab svg { width: 19px; height: 19px; color: #fff; }

/* modal personnalisation */
.cookie-modal { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.show { display: flex; }
.cookie-modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); }
.cookie-modal__panel { position: relative; background: #181818; border: 1px solid var(--line-2); border-radius: 16px; max-width: 520px; width: 100%; padding: 32px; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow); }
.cookie-modal__panel h3 { font-size: 1.7rem; margin-bottom: 6px; }
.cookie-modal__panel > p { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.cookie-cat { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-cat h5 { font-size: 1.05rem; font-family: 'Barlow', sans-serif; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.cookie-cat p { color: var(--muted); font-size: .88rem; }
.cookie-cat__main { flex: 1; }
.switch { position: relative; width: 48px; height: 27px; flex: none; align-self: center; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: #3a3a3a; border-radius: 30px; transition: background .25s; }
.switch .track::after { content: ""; position: absolute; left: 3px; top: 3px; width: 21px; height: 21px; background: #fff; border-radius: 50%; transition: transform .25s; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(21px); }
.switch input:disabled + .track { opacity: .55; }
.switch input:focus-visible + .track { outline: 3px solid var(--accent-2); outline-offset: 2px; }
.cookie-modal__actions { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.cookie-modal__actions .btn { flex: 1 1 auto; }

/* placeholder de consentement carte */
.map-consent {
  min-height: 320px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), var(--bg-3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px; gap: 14px; margin-top: 30px;
}
.map-consent svg { width: 40px; height: 40px; color: var(--accent-2); }
.map-consent p { color: var(--muted); max-width: 40ch; }

@media (max-width: 520px) {
  .cookie { left: 10px; right: 10px; bottom: 10px; padding: 20px; }
  .cookie__btns .btn { flex: 1 1 100%; }
}

/* ----------------------- Reduced motion ----------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
