/* ============================================================
   CROSSFIT GIANTS — Accueil
   Direction : World Fitness Project — ligue sportive premium
   Noir pur #000 · accent vert #06ED8D · Poppins Black
   ============================================================ */

:root {
  --bg: #000000;
  --panel: #0B0B0B;
  --panel-2: #121212;
  --green: #06ED8D;
  --green-dim: #05c376;
  --white: #FFFFFF;
  --gray: #A6A6A6;
  --gray-dim: #6B6B6B;
  --line: rgba(255,255,255,0.13);
  --line-soft: rgba(255,255,255,0.07);

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 72px);
  --hd: 76px;

  --f: "Poppins", system-ui, sans-serif;

  /* corner "+" marks (WFP signature) */
  --plus-w: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='9'%20height='9'%3E%3Cpath%20d='M4.5%200v9M0%204.5h9'%20stroke='%23ffffff'%20stroke-width='1'/%3E%3C/svg%3E");
  --plus-g: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='9'%20height='9'%3E%3Cpath%20d='M4.5%200v9M0%204.5h9'%20stroke='%2306ED8D'%20stroke-width='1'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--f);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(72px, 10vw, 150px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

/* ---------- Typography ---------- */
.display {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}
.display .green { color: var(--green); }
.display--xl { font-size: clamp(42px, 7.4vw, 86px); }
.display--lg { font-size: clamp(34px, 5.2vw, 62px); }
.display--md { font-size: clamp(26px, 3.6vw, 44px); }

.outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.28);
  color: transparent;
}

.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; color: var(--gray); max-width: 56ch; }
.muted { color: var(--gray); }
.green-t { color: var(--green); }

/* Bracket label  [ TEXTE ] */
.bracket {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.bracket::before { content: "[ "; }
.bracket::after  { content: " ]"; }
.bracket--w { color: var(--white); }
.bracket--dim { color: var(--gray); }

/* ---------- Corner "+" marks ---------- */
.corners { position: relative; }
.corners::after {
  content: "";
  position: absolute;
  inset: -7px;
  pointer-events: none;
  background-image: var(--plus-w), var(--plus-w), var(--plus-w), var(--plus-w);
  background-repeat: no-repeat;
  background-position: left top, right top, left bottom, right bottom;
}
.corners--g::after {
  background-image: var(--plus-g), var(--plus-g), var(--plus-g), var(--plus-g);
}

/* ---------- Buttons (ghost) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--f);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  padding: 18px 26px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; font-weight: 700; }
.btn:hover .arrow { transform: translateX(5px); }
.btn:hover { background: var(--white); color: #000; border-color: var(--white); }
.btn:active { transform: translateY(1px); }

.btn--green { border-color: var(--green); color: var(--green); }
.btn--green:hover { background: var(--green); color: #000; border-color: var(--green); }
.btn--solid { background: var(--green); color: #000; border-color: var(--green); }
.btn--solid:hover { background: #fff; color: #000; border-color: #fff; }
.btn--sm { padding: 13px 18px; font-size: 11.5px; }
.btn--lg { padding: 21px 32px; font-size: 14px; }
.btn--block { width: 100%; }

/* play / circular */
.play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--f);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.play .disc {
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.play:hover .disc { border-color: var(--green); color: var(--green); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  height: var(--hd);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; }
.logo {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.logo .dot { width: 9px; height: 9px; background: var(--green); border-radius: 50%; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.82);
  transition: color .2s ease;
}
.nav a:hover { color: var(--white); }
.nav a.is-accent { color: var(--green); }
.header__cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: #fff; transition: transform .25s ease, opacity .2s ease; }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 140;
  background: #000;
  display: flex; flex-direction: column;
  padding: 110px var(--gut) 40px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer a {
  font-weight: 900; font-size: 32px; text-transform: uppercase;
  padding-block: 13px; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 16px;
}
.drawer a .num { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: .1em; }
.drawer .btn { margin-top: 30px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
img.hero__img { z-index: 0; }
.hero__img::part(empty) { }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, #000 4%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 110px);
  padding-top: 120px;
}
.hero .bracket { margin-bottom: 22px; }
.hero__title { max-width: 16ch; }
.hero__sub { margin: 26px 0 0; max-width: 48ch; color: rgba(255,255,255,0.82); font-size: clamp(15px,1.3vw,18px); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 38px; }
.scrolldown {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-dim); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scrolldown .bar { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--green), transparent); }

/* ---------- Reassurance ---------- */
.reassure { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.reassure__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.reassure__item {
  padding: 26px 14px; display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--line-soft);
}
.reassure__item:first-child { border-left: 0; }
.reassure__item .v { font-weight: 900; font-size: clamp(24px, 2.4vw, 34px); line-height: 1; }
.reassure__item .v .green { color: var(--green); }
.reassure__item .k { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-dim); }

/* ---------- Section head ---------- */
.shead { max-width: 820px; }
.shead .bracket { margin-bottom: 20px; }
.shead .display { margin-bottom: 0; }
.shead .lead { margin-top: 22px; }
.shead--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; max-width: none; }

/* ============================================================
   POURQUOI — dark cards
   ============================================================ */
.cards4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(40px, 5vw, 64px); }
.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 250px;
  min-width: 0;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.card:hover { border-color: rgba(6,237,141,0.45); transform: translateY(-4px); }
.pill {
  align-self: flex-start;
  white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #000; background: var(--green);
  padding: 5px 11px; border-radius: 999px;
}
.pill--ghost { background: transparent; color: var(--gray); border: 1px solid var(--line); }
.card h3 { font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: -0.01em; margin: 8px 0 0; line-height: 1.1; }
.card p { margin: 0; font-size: 14.5px; color: var(--gray); line-height: 1.65; }

/* ============================================================
   1ère SÉANCE — image bg + horizontal rows
   ============================================================ */
.firsttime { position: relative; overflow: hidden; }
.firsttime__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.30; }
.firsttime__bg img { width: 100%; height: 100%; object-fit: cover; }
.firsttime__veil { position: absolute; inset: 0; background: linear-gradient(to right, #000 30%, rgba(0,0,0,0.55) 100%); pointer-events: none; }
.firsttime .wrap { position: relative; z-index: 2; }

.rows { margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease, background .25s ease;
}
.row:hover { padding-left: 16px; }
.row__n { font-weight: 900; font-size: 30px; color: var(--green); line-height: 1; }
.row__main h3 { font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); text-transform: uppercase; margin: 0 0 4px; letter-spacing: -0.01em; }
.row__main p { margin: 0; color: var(--gray); font-size: 14.5px; max-width: 60ch; }
.row__meta { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-dim); white-space: nowrap; }

.darkcta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: clamp(40px, 5vw, 56px); }
.darkcta p { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }

/* ============================================================
   LA BOX
   ============================================================ */
.box-top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.box-media { position: relative; }
.box-media image-slot, .box-media img { width: 100%; aspect-ratio: 5/4; min-height: 320px; border-radius: 16px; object-fit: cover; display: block; }
.box-outline {
  font-weight: 900; text-transform: uppercase; line-height: 0.86;
  font-size: clamp(60px, 11vw, 150px);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.box-outline .outline { display: block; }
.spaces { margin-top: clamp(36px, 5vw, 52px); border-top: 1px solid var(--line); }

/* ============================================================
   FORMULES
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(40px, 5vw, 60px); align-items: stretch; }
.plan {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 32px 30px 34px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  min-width: 0;
}
.plan--main { border-color: var(--green); background: linear-gradient(180deg, rgba(6,237,141,0.08), rgba(6,237,141,0) 60%), var(--panel-2); }
.plan__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.plan__name { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.plan__price { font-weight: 900; font-size: 52px; line-height: 1; margin: 8px 0 2px; }
.plan__price .green { color: var(--green); }
.plan__price small { font-size: 13px; font-weight: 600; color: var(--gray); letter-spacing: 0.04em; }
.plan__desc { font-size: 14px; color: var(--gray); margin: 4px 0 0; }
.plan__list { list-style: none; padding: 0; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.plan__list li { display: flex; gap: 11px; font-size: 14px; align-items: flex-start; color: rgba(255,255,255,0.9); }
.plan__list li::before { content: ""; width: 16px; height: 16px; flex: none; margin-top: 3px; background: var(--plus-g); background-repeat: no-repeat; background-position: center; }
.plan .btn { margin-top: auto; }

.plans-note { margin-top: 24px; display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.plans-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }

/* ============================================================
   AVIS
   ============================================================ */
.reviews-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; }
.score { display: flex; align-items: center; gap: 22px; }
.score__big { font-weight: 900; font-size: clamp(56px, 8vw, 96px); line-height: 0.85; color: var(--green); }
.score__big span { color: var(--white); }
.stars { color: var(--green); letter-spacing: 3px; font-size: 18px; }
.score__meta { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-dim); }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(36px, 4vw, 52px); }
.review { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 16px; padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.review .stars { font-size: 14px; }
.review p { margin: 0; font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.6; }
.review__who { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.review__av { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #000; font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.review__name { font-weight: 700; font-size: 14.5px; }
.review__tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dim); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 20px; padding: 24px 0; text-align: left;
  font-family: var(--f); font-weight: 700; font-size: clamp(16px, 1.9vw, 21px); color: var(--white);
  text-transform: uppercase; letter-spacing: -0.01em;
}
.faq__q .qn { font-size: 12px; font-weight: 600; color: var(--green); flex: none; letter-spacing: 0.08em; }
.faq__q .ic { margin-left: auto; flex: none; width: 24px; height: 24px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--green); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__q .ic::before { width: 15px; height: 1.5px; }
.faq__q .ic::after { width: 1.5px; height: 15px; transition: transform .25s ease, opacity .2s ease; }
.faq__item.is-open .ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a p { margin: 0; padding: 0 0 26px 44px; color: var(--gray); font-size: 15px; max-width: 64ch; }

/* ============================================================
   RÉSERVATION
   ============================================================ */
.booknow { margin-top: clamp(40px, 5vw, 56px); }
.booknow__head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 16px; }
.booknow__sub { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.calendly-shell { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 16px; padding: 8px; overflow: hidden; }
.calendly-inline-widget { border-radius: 10px; overflow: hidden; }

.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.book-grid--fallback { margin-top: clamp(28px, 4vw, 44px); }
.book-grid--fallback .bracket { margin-bottom: 18px; }

.bookform { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.field input {
  font-family: var(--f); font-size: 15px; padding: 15px 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; color: #fff;
}
.field input::placeholder { color: var(--gray-dim); }
.field input:focus { outline: none; border-color: var(--green); }
.field.row2 { flex-direction: row; gap: 12px; }
.field.row2 > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.book-note { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dim); }
.form-ok { display: none; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }

.contact-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.contact-card {
  display: flex; flex-direction: column; gap: 6px; padding: 18px 20px;
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-card:hover { border-color: rgba(6,237,141,0.5); transform: translateY(-2px); }
.contact-card .k { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-dim); }
.contact-card .v { font-weight: 700; font-size: 16px; }
.contact-card .v .green { color: var(--green); }

.mapwrap { margin-top: 12px; }
.mapwrap image-slot { width: 100%; height: 200px; border-radius: 12px; }
.mapwrap .cap { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dim); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding-block: clamp(56px, 7vw, 96px) 40px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.footer .logo { font-size: 26px; }
.footer__about { margin-top: 20px; color: var(--gray); font-size: 14.5px; max-width: 40ch; }
.footer__handle { font-weight: 900; font-size: 20px; margin-top: 22px; text-transform: uppercase; }
.footer__handle .green { color: var(--green); }
.footer h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-dim); margin: 0 0 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li { font-size: 14.5px; color: var(--gray); }
.footer__col a:hover { color: var(--green); }
.footer__nap { font-style: normal; line-height: 1.8; color: var(--gray); }
.footer__nap a:hover { color: var(--green); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,0.85); }
.socials a:hover { border-color: var(--green); color: var(--green); }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-dim);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
  padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: rgba(0,0,0,0.94); backdrop-filter: blur(8px);
  border-top: 1px solid var(--green);
  display: none;
}
.mobile-cta .btn { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards4 { grid-template-columns: repeat(2, 1fr); }
  .box-top { grid-template-columns: 1fr; }
  .box-media { order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .shead--split { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .reassure__row { grid-template-columns: repeat(2, 1fr); }
  .reassure__item:nth-child(odd) { border-left: 0; }
  .cards4 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .cards3 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .row { grid-template-columns: 54px 1fr; gap: 16px; }
  .row__meta { grid-column: 2; }
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; }
  .hero__cta { gap: 16px; }
}

/* ============================================================
   SUB-PAGES (LA BOX / PLANNING / TARIFS / ENTREPRISES / CONTACT)
   ============================================================ */
.nav a.is-active { color: var(--green); }
.hero--page { min-height: 80svh; }

/* End CTA band */
.endcta { border-top: 1px solid var(--line-soft); }
.endcta .bracket { margin-bottom: 18px; }
.endcta .lead { margin: 22px 0 32px; }

/* Cinematic treatment on content photos */
.box-media img, .gallery img, .post-card__media img, .article__cover img,
.firsttime__bg img { filter: brightness(0.92) contrast(1.06) saturate(0.96); }
.post-card__media { position: relative; overflow: hidden; }
.post-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0) 55%); pointer-events: none; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(36px, 5vw, 52px); }
.gallery image-slot, .gallery img { width: 100%; aspect-ratio: 4/5; border-radius: 14px; object-fit: cover; display: block; }
.gallery image-slot.wide, .gallery img.wide { grid-column: span 2; aspect-ratio: 8/5; }

/* Tag / equipment chips */
.tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(32px, 4vw, 48px); }
.tag-item {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 14px 20px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  transition: border-color .2s ease, color .2s ease;
}
.tag-item:hover { border-color: rgba(6,237,141,0.5); }
.tag-item::before { content: ""; width: 14px; height: 14px; flex: none; background: var(--plus-g); background-repeat: no-repeat; background-position: center; }

/* Planning rows */
.rows--plan { margin-top: clamp(20px, 3vw, 28px); }
.rows--plan .row { grid-template-columns: 116px 1fr auto; }
.rows--plan .row__n { font-size: 22px; }
.rows--plan .row__main h3 { font-size: clamp(18px, 2vw, 24px); }
.day { margin-top: clamp(34px, 4.5vw, 52px); }
.day__h { display: flex; align-items: baseline; gap: 16px; padding-bottom: 6px; border-bottom: 2px solid var(--green); }
.day__h .d { font-weight: 900; font-size: clamp(22px, 2.6vw, 30px); text-transform: uppercase; }
.day__h .c { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-dim); }

/* "à confirmer" note */
.note { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dim); display: inline-flex; gap: 9px; align-items: center; }
.note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }

/* Tarifs: 4-up cards + includes */
.plans--4 { grid-template-columns: repeat(4, 1fr); }
.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; margin-top: clamp(30px, 4vw, 44px); list-style: none; padding: 0; }
.includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.9); padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.includes li::before { content: ""; width: 16px; height: 16px; margin-top: 3px; flex: none; background: var(--plus-g); background-repeat: no-repeat; background-position: center; }

/* Generic split + info cards */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.infocards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(32px, 4vw, 46px); }
.bigmap image-slot { width: 100%; height: clamp(280px, 40vw, 460px); border-radius: 16px; }
.bigmap iframe { width: 100%; height: clamp(300px, 42vw, 480px); border: 1px solid var(--line-soft); border-radius: 16px; display: block; filter: invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* Access / numbered intro list reuse .rows */
.field textarea {
  font-family: var(--f); font-size: 15px; padding: 15px 16px; min-height: 130px; resize: vertical;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; color: #fff;
}
.field textarea::placeholder { color: var(--gray-dim); }
.field textarea:focus { outline: none; border-color: var(--green); }

@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .plans--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .infocards { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery image-slot.wide { grid-column: auto; }
  .plans--4 { grid-template-columns: 1fr; }
  .rows--plan .row { grid-template-columns: 92px 1fr; }
  .rows--plan .row__meta { grid-column: 2; }
}

/* ============================================================
   BLOG
   ============================================================ */
.hero--compact { min-height: 56svh; }

/* Filter bar */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(36px, 5vw, 52px); }
.filter {
  font-family: var(--f); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: rgba(255,255,255,0.82); cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.filter:hover { border-color: rgba(6,237,141,0.5); color: #fff; }
.filter.is-active { background: var(--green); border-color: var(--green); color: #000; }

/* Article cards grid */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(32px, 4vw, 48px); }
.post-card {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 16px;
  overflow: hidden; min-width: 0;
  transition: border-color .25s ease, transform .25s ease;
}
.post-card:hover { border-color: rgba(6,237,141,0.45); transform: translateY(-4px); }
.post-card__media { position: relative; }
.post-card__media image-slot, .post-card__media img { width: 100%; aspect-ratio: 16/10; display: block; object-fit: cover; }
.post-card__cat {
  position: absolute; top: 14px; left: 14px;
  white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #000; background: var(--green); padding: 5px 11px; border-radius: 999px;
}
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card__date { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-dim); }
.post-card__title { font-family: var(--f); font-weight: 800; font-size: 19px; line-height: 1.18; margin: 0; color: #fff; letter-spacing: -0.01em; }
.post-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }
.post-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
}
.post-card__link .arrow { transition: transform .2s ease; }
.post-card:hover .post-card__link .arrow { transform: translateX(4px); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: clamp(40px, 5vw, 60px); }
.pagination a, .pagination span {
  min-width: 44px; height: 44px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid var(--line); border-radius: 8px; color: rgba(255,255,255,0.82);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.pagination a:hover { border-color: rgba(6,237,141,0.5); color: #fff; }
.pagination .is-current { background: var(--green); border-color: var(--green); color: #000; }
.pagination .dots { border: 0; color: var(--gray-dim); }
.pagination .nav-arrow { font-weight: 700; }

/* ============================================================
   ARTICLE
   ============================================================ */
.article { padding-top: calc(var(--hd) + clamp(28px, 4vw, 44px)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-dim); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .cur { color: var(--gray); }

.article__head { max-width: 820px; margin-top: 22px; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 20px; }
.article__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #000; background: var(--green); padding: 5px 12px; border-radius: 999px; }
.article__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-dim); }
.article__metatext { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-dim); }
.article h1.article__title { font-family: var(--f); font-weight: 900; text-transform: uppercase; line-height: 0.98; letter-spacing: -0.02em; font-size: clamp(30px, 4.6vw, 56px); margin: 0; color: #fff; }
.article__cover { margin-top: clamp(28px, 4vw, 40px); }
.article__cover image-slot, .article__cover img { width: 100%; aspect-ratio: 16/9; border-radius: 16px; object-fit: cover; display: block; }

.prose { max-width: 720px; margin: clamp(32px, 4vw, 48px) auto 0; }
.prose p { font-size: 17px; line-height: 1.8; color: #D6D6D6; margin: 0 0 22px; }
.prose p:first-of-type { font-size: 19px; color: #EAEAEA; }
.prose h2 { font-family: var(--f); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.8vw, 30px); letter-spacing: -0.01em; color: #fff; margin: 44px 0 16px; line-height: 1.1; }
.prose h2 .green { color: var(--green); }
.prose ul { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { display: flex; gap: 12px; font-size: 16.5px; line-height: 1.6; color: #D6D6D6; }
.prose ul li::before { content: ""; width: 15px; height: 15px; margin-top: 5px; flex: none; background: var(--plus-g); background-repeat: no-repeat; background-position: center; }
.prose strong { color: #fff; }
.prose .sample-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(6,237,141,0.4); border-radius: 999px; padding: 4px 11px; margin-bottom: 26px; }

/* Inline CTA card */
.cta-card {
  max-width: 720px; margin: clamp(36px, 5vw, 52px) auto;
  background: linear-gradient(180deg, rgba(6,237,141,0.1), rgba(6,237,141,0) 70%), var(--panel-2);
  border: 1px solid var(--green); border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.cta-card .bracket { margin: 0; }
.cta-card h3 { font-family: var(--f); font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 3vw, 32px); line-height: 1; margin: 0; color: #fff; letter-spacing: -0.01em; }
.cta-card h3 .green { color: var(--green); }
.cta-card p { margin: 0; color: var(--gray); font-size: 15px; }

/* Related */
.related { border-top: 1px solid var(--line-soft); }

/* ============================================================
   CROSSFIT (page) + SERVICES + TEASER
   ============================================================ */
/* Split feature block: text + image */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.feature--rev .feature__media { order: -1; }
.feature__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; display: block; filter: brightness(0.92) contrast(1.06) saturate(0.96); }
.feature__media.wide img { aspect-ratio: 5/4; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(36px, 5vw, 56px); }

/* Levels row reuse .rows; benefits reuse .includes */

/* Services cards */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: clamp(36px, 5vw, 52px); }
.service {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0;
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden;
  min-width: 0; transition: border-color .25s ease, transform .25s ease;
}
.service:hover { border-color: rgba(6,237,141,0.45); transform: translateY(-4px); }
.service__media { position: relative; min-height: 100%; }
.service__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.05); }
.service__body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 12px; }
.service__body h3 { font-family: var(--f); font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: -0.01em; margin: 6px 0 0; line-height: 1.1; }
.service__body p { margin: 0; font-size: 14.5px; color: var(--gray); line-height: 1.65; }
.service__body .btn { margin-top: auto; align-self: flex-start; }

/* Teaser band */
.teaser { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.teaser__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: 16px; display: block; filter: brightness(0.92) contrast(1.06); }

@media (max-width: 1024px) {
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .feature__media img { aspect-ratio: 16/10; }
  .pillars { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .teaser { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service { grid-template-columns: 1fr; }
  .service__media { min-height: 200px; }
  .service__media img { position: static; }
}

@media (max-width: 1024px) {
  .posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .posts { grid-template-columns: 1fr; }
  .filters { gap: 8px; }
  .filter { padding: 9px 14px; font-size: 11px; }
}

/* ===== Correctifs affichage mobile (audit 31/05/2026) ===== */
@media (max-width: 720px) {
  .btn { white-space: normal; line-height: 1.3; text-align: center; }
  .plan .btn, .service__body .btn { width: 100%; }
}

/* ===== Correctifs débordement horizontal mobile (audit 31/05/2026) ===== */
@media (max-width: 720px) {
  .book-grid > * { min-width: 0; }
  .bookform, .field, .field.row2 > div { min-width: 0; }
  .field input, .field textarea,
  .bookform input, .bookform textarea,
  input, textarea, select { width: 100%; max-width: 100%; box-sizing: border-box; }
  .row__meta { white-space: normal; }
}
