/* =====================================================================
   FIT FIVE — style.css
   Sections des pages. Ordre : reset > variables > components > style.
   Direction "MATCHDAY" : arêtes vives, typo condensée, aucun flou.
   ===================================================================== */

/* ================================================================== */
/* HERO (accueil)                                                     */
/* ================================================================== */
.hero {
  position: relative;
  background: var(--bg-0); color: #fff;
  padding-top: calc(var(--header-h) + clamp(34px, 6vw, 70px));
  padding-bottom: clamp(44px, 7vw, 90px);
  overflow: hidden;
}
/* Trame de terrain + halo rouge (aucun flou : dégradés uniquement) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}
.hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  inset: -20% -10% auto auto; width: 70%; height: 120%;
  background: radial-gradient(closest-side, rgba(227,6,19,0.20), transparent 72%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(30px, 5vw, 66px); align-items: center;
}
.hero__content { min-width: 0; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; color: var(--text-muted); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 40px; height: 3px; background: var(--red); flex: 0 0 40px; }

.hero__title {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: var(--fs-hero); text-transform: uppercase;
  line-height: 0.84; letter-spacing: -0.01em; color: #fff;
  padding-top: 0.06em;
}
.hero__title em {
  font-style: italic; font-weight: 900; color: var(--red-bright);
  padding-right: 0.06em;   /* réserve pour l'italique */
}
.hero__subtitle {
  font-size: var(--fs-lead); color: rgba(255,255,255,0.78);
  max-width: 44ch; margin-top: 26px; line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* Photo : cadre net + repère rouge */
.hero__media { position: relative; }
.hero__media::before {
  content: ""; position: absolute; z-index: 2;
  left: -10px; top: -10px; width: 74px; height: 74px;
  border-left: 4px solid var(--red); border-top: 4px solid var(--red);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  aspect-ratio: 4 / 4.3;
  border: 1px solid var(--line-strong);
}
.hero__mediatag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; background: var(--black); color: #fff;
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.68rem;
  border-top: 2px solid var(--red);
}
.hero__mediatag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--status-free); animation: ff-pulse 1.8s infinite; }

/* Entrée animée du hero */
.hero .anim-in { opacity: 0; transform: translateY(28px); animation: hero-in 0.85s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero .anim-in.delay-1 { animation-delay: 0.10s; }
.hero .anim-in.delay-2 { animation-delay: 0.20s; }
.hero .anim-in.delay-3 { animation-delay: 0.32s; }
.hero .anim-in.delay-4 { animation-delay: 0.44s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero .anim-in { opacity: 1; transform: none; animation: none; }
  .hero__mediatag .dot { animation: none; }
}

/* ================================================================== */
/* SCOREBOARD (bande de chiffres)                                     */
/* ================================================================== */
.scoreboard { background: #05060A; border-block: 1px solid var(--line); }
.scoreboard__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.scoreboard__cell {
  padding: clamp(22px, 3vw, 34px) clamp(14px, 2vw, 28px);
  border-right: 1px solid var(--line);
  display: grid; gap: 8px; align-content: center;
}
.scoreboard__cell:last-child { border-right: 0; }
.scoreboard__cell .n {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 0.85;
  color: #fff; text-transform: uppercase;
}
.scoreboard__cell .n small { color: var(--red-bright); font-size: 0.55em; }
.scoreboard__cell:nth-child(3) .n { color: var(--red-bright); }
.scoreboard__cell .l {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.68rem; color: var(--text-muted);
}

/* ================================================================== */
/* 01 · RÉSERVATION EXPRESS (panneau de contrôle)                     */
/* ================================================================== */
.quick { background: var(--bg-0); }
.quick__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(32px, 6vw, 84px); align-items: start;
}
.quick__notes { display: grid; gap: 10px; margin-top: 30px; }
.quick__notes li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: var(--text-muted);
}
.quick__notes li::before {
  content: ""; width: 18px; height: 18px; flex: 0 0 18px;
  background: var(--red);
  clip-path: polygon(42% 68%, 84% 24%, 94% 36%, 42% 90%, 8% 56%, 18% 44%);
}

.quick__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: clamp(22px, 3vw, 30px);
  display: grid; gap: 16px;
}
.quick__field { display: grid; gap: 8px; }
.quick__field label {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.66rem;
  color: var(--text-muted);
}
.quick__field select,
.quick__field input {
  width: 100%;
  font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 700;
  font-size: 1.16rem; color: #fff;
  background: var(--gray-900);
  border: 1px solid var(--line-strong);
  padding: 14px 15px;
  transition: border-color var(--t), box-shadow var(--t);
}
.quick__field select:focus,
.quick__field input:focus { outline: none; border-color: var(--red); box-shadow: inset 0 -3px 0 var(--red); }
.quick__submit { margin-top: 6px; }

/* ================================================================== */
/* 02 · LE RÉSEAU — liste "roster" avec photo au survol               */
/* ================================================================== */
.roster-sec { background: var(--anthracite); }
.roster { position: relative; }
.roster__list { border-top: 1px solid var(--line); }

.roster__row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1.15fr) minmax(0, 1fr) auto;
  align-items: center; gap: 10px 26px;
  padding: clamp(24px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--t), padding-left var(--t);
}
.roster__row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: top;
  transition: transform var(--t);
}
.roster__row.is-hovered,
.roster__row:hover { background: rgba(255,255,255,0.02); padding-left: 22px; }
.roster__row:hover::before { transform: scaleY(1); }

.roster__no {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--red);
  transition: color var(--t);
}
.roster__row:hover .roster__no { color: var(--red); }

.roster__city {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  text-transform: uppercase; font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 0.9; color: #fff; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.roster__city small {
  font-size: 0.7rem; font-stretch: var(--w-label); font-weight: 700;
  letter-spacing: 0.16em; color: var(--text-muted);
}
.roster__meta { display: grid; gap: 6px; min-width: 0; }
.roster__addr { font-size: 0.94rem; color: var(--text-muted); }
.roster__acts {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: #fff;
}
.roster__state {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem;
  padding: 5px 10px; width: max-content;
}
.roster__state::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.roster__state.is-open { color: var(--status-free); background: rgba(41,199,101,0.12); }
.roster__state.is-open::before { background: var(--status-free); }
.roster__state.is-closed { color: var(--text-muted); background: rgba(255,255,255,0.06); }
.roster__state.is-closed::before { background: var(--status-closed); }

.roster__cta { display: flex; align-items: center; gap: 20px; justify-self: end; }
.roster__plan {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem;
  color: var(--text-muted);
}
.roster__plan:hover { color: #fff; }

/* Photo suiveuse (desktop, pointeur fin) */
.roster__figure {
  position: absolute; right: 0; top: 0; z-index: 3;
  width: min(38%, 420px); aspect-ratio: 3 / 2;
  pointer-events: none; overflow: hidden;
  border: 1px solid var(--line-strong);
  opacity: 0; transform: translate3d(0, 0, 0);
  transition: opacity 0.3s ease;
}
.roster__figure.is-visible { opacity: 1; }
.roster__figure img { width: 100%; height: 100%; object-fit: cover; }
.roster.has-hover .roster__row:not(.is-hovered) .roster__city { color: rgba(255,255,255,0.35); }
@media (hover: none), (max-width: 992px) { .roster__figure { display: none; } }

/* ================================================================== */
/* TICKER (bande défilante — une seule sur la page)                   */
/* ================================================================== */
.ticker {
  background: var(--red); color: #fff; overflow: hidden;
  display: flex; padding: 14px 0;
  border-block: 1px solid rgba(255,255,255,0.2);
}
.ticker__track {
  display: flex; flex-shrink: 0; align-items: center; gap: 30px;
  white-space: nowrap; padding-right: 30px;
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  text-transform: uppercase; font-size: clamp(1.3rem, 2.4vw, 2rem); letter-spacing: 0.02em;
  animation: ticker 28s linear infinite;
}
.ticker__track i { width: 9px; height: 9px; background: rgba(255,255,255,0.55); flex: 0 0 9px; }
@keyframes ticker { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ================================================================== */
/* LES ACTIVITÉS — diptyque plein écran                               */
/* ================================================================== */
.duo { display: flex; min-height: 76vh; background: var(--black); }
.duo__panel {
  position: relative; flex: 1 1 50%; overflow: hidden;
  display: flex; align-items: flex-end;
  border-right: 1px solid rgba(255,255,255,0.14);
  transition: flex-grow var(--t-slow);
}
.duo__panel:last-child { border-right: 0; }
.duo__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02); transition: transform var(--t-slow), opacity var(--t);
  opacity: 0.55;
}
.duo__panel::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,9,12,0.25) 0%, rgba(8,9,12,0.72) 55%, rgba(8,9,12,0.95) 100%);
}
.duo__panel:hover { flex-grow: 1.3; }
.duo__panel:hover .duo__bg { transform: scale(1.06); opacity: 0.75; }

.duo__body {
  position: relative; z-index: 2;
  padding: clamp(30px, 4vw, 60px);
  width: 100%;
}
.duo__title {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  text-transform: uppercase; font-size: clamp(3rem, 7vw, 6rem); line-height: 0.82;
  color: #fff; margin-bottom: 22px;
}
.duo__facts { display: grid; gap: 8px; margin-bottom: 26px; }
.duo__facts li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 8px;
}
.duo__facts li span {
  font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800;
  color: #fff; font-size: 1.15rem; white-space: nowrap;
}

/* ================================================================== */
/* 03 · APRÈS LE MATCH — mosaïque asymétrique                         */
/* ================================================================== */
.aftermatch { background: var(--bg-0); }
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.mosaic__cell { overflow: hidden; border: 1px solid var(--line); }
.mosaic__cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-slow); }
.mosaic__cell:hover img { transform: scale(1.05); }
.mosaic__a { grid-column: 1 / 7; grid-row: 1 / 3; }
.mosaic__text { grid-column: 7 / 13; grid-row: 1 / 2; padding: clamp(8px, 2vw, 26px) 0 22px clamp(8px, 2vw, 26px); }
.mosaic__b { grid-column: 7 / 10; grid-row: 2 / 3; aspect-ratio: 1 / 1; }
.mosaic__c { grid-column: 10 / 13; grid-row: 2 / 3; aspect-ratio: 1 / 1; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 26px; }
.tag-list li {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem;
  padding: 8px 12px; border: 1px solid var(--line-strong); color: var(--text-muted);
}

/* ================================================================== */
/* COMMENT ÇA MARCHE — timeline horizontale                           */
/* ================================================================== */
.howto { background: var(--gray-light); }
.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding-top: 34px;
  --fill: 0;
}
.timeline::before,
.timeline::after {
  content: ""; position: absolute; top: 0; left: 0; height: 3px;
}
.timeline::before { width: 100%; background: var(--line); }
.timeline::after {
  width: 100%; background: var(--red);
  transform: scaleX(var(--fill)); transform-origin: left;
}
.timeline__step { position: relative; padding-top: 26px; }
.timeline__step::before {
  content: ""; position: absolute; top: -34px; left: 0;
  width: 15px; height: 15px; background: var(--gray-light);
  border: 3px solid var(--red);
}
.timeline__n {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: clamp(2.6rem, 4.6vw, 4rem); line-height: 0.85;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-strong);
  display: block; margin-bottom: 12px;
}
.timeline__step h3 {
  font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800;
  text-transform: uppercase; font-size: 1.25rem; color: #fff; margin-bottom: 8px;
}
.timeline__step p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; }

/* ================================================================== */
/* 04 · ENTREPRISES & GROUPES                                         */
/* ================================================================== */
.b2b { display: grid; grid-template-columns: 1fr 1fr; background: var(--anthracite); }
.b2b__media { position: relative; min-height: 460px; overflow: hidden; }
.b2b__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.b2b__body {
  padding: clamp(34px, 6vw, 84px);
  display: flex; flex-direction: column; justify-content: center;
}
.b2b__list { display: grid; gap: 12px; margin: 26px 0 32px; }
.b2b__list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text-muted); font-size: 0.96rem;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.b2b__list li::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px;
  background: var(--red);
  clip-path: polygon(42% 68%, 84% 24%, 94% 36%, 42% 90%, 8% 56%, 18% 44%);
}
.b2b__body .btn { align-self: flex-start; }

/* ================================================================== */
/* AVIS — bande de liens vers les pages officielles                   */
/* ================================================================== */
.reviews-band { background: var(--bg-0); padding-block: clamp(50px, 7vw, 86px); }
.reviews-band__inner {
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 56px); align-items: center;
}
.reviews-band__inner .title-h3 { color: #fff; line-height: 1.15; }
.reviews-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-link {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; background: var(--surface); border: 1px solid var(--line);
  color: var(--text-dark); transition: border-color var(--t), background var(--t), transform var(--t);
}
.review-link:hover { border-color: var(--red); background: var(--surface-2); transform: translateY(-3px); }
.review-link svg { width: 26px; height: 26px; color: var(--red); flex: 0 0 auto; }
.review-link span { display: grid; gap: 2px; font-size: 0.78rem; color: var(--text-muted); }
.review-link strong {
  font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800;
  text-transform: uppercase; color: #fff; font-size: 1.08rem;
}

/* ================================================================== */
/* CTA final                                                          */
/* ================================================================== */
.cta-final { position: relative; overflow: hidden; background: var(--red); color: #fff; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 62px 62px;
}
.cta-final__inner { position: relative; z-index: 1; padding-block: var(--space-xl); text-align: center; }
.cta-final__title {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  text-transform: uppercase; font-size: var(--fs-h1); line-height: 0.86; margin-bottom: 18px;
}
.cta-final__text { font-size: var(--fs-lead); opacity: 0.9; max-width: 46ch; margin: 0 auto 30px; }

/* ================================================================== */
/* HERO des pages internes                                            */
/* ================================================================== */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 76px);
  padding-bottom: 76px;
  background: var(--black); color: var(--white);
  overflow: hidden;
}
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 120% at 88% 0%, rgba(227,6,19,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(9,9,9,0.7), var(--black));
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem;
  color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb [aria-current] { color: var(--red); }
.page-hero__title {
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: var(--fs-h1); text-transform: uppercase; line-height: 0.86;
}
.page-hero__sub { color: rgba(255,255,255,0.76); font-size: var(--fs-lead); max-width: 54ch; margin-top: 18px; }

/* ================================================================== */
/* GRILLE DES TERRAINS (page terrains)                                */
/* ================================================================== */
.terrain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.terrain-card { display: flex; flex-direction: column; }
.terrain-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.terrain-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.terrain-card:hover .terrain-card__media img { transform: scale(1.06); }
.terrain-card__status { position: absolute; top: 12px; left: 12px; }
.terrain-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.terrain-card__name { font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; }
.terrain-card__specs { display: grid; gap: 6px; font-size: 0.86rem; color: var(--text-muted-dark); }
.terrain-card__specs li { display: flex; align-items: center; gap: 8px; }
.terrain-card__specs .ic { color: var(--red); flex: 0 0 16px; }
.terrain-card__foot { margin-top: auto; padding-top: 6px; }
.terrain-card__num {
  position: absolute; bottom: 8px; left: 16px;
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: 2.6rem; line-height: 1; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.terrain-card__pricetag {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800;
  font-size: 0.98rem; padding: 6px 13px;
}
.terrain-card__pricetag small { font-weight: 400; opacity: 0.85; }

/* ================================================================== */
/* PLAN CARTOGRAPHIQUE (style plan d'évacuation)                      */
/* ================================================================== */
.floorplan { position: relative; }
.floorplan__viewport {
  position: relative; background: #070809;
  border: 1px solid var(--line);
  overflow: auto; padding: 12px;
}
.floorplan__svg { width: 100%; height: auto; display: block; touch-action: pan-x pan-y; }
.fp-empty { color: var(--text-muted); padding: 30px; text-align: center; }

.fp-bg { fill: #070809; }
.fp-building { fill: rgba(255,255,255,0.015); stroke: rgba(255,255,255,0.28); stroke-width: 2; stroke-dasharray: 2 6; }
.fp-title { fill: #fff; font-family: var(--font-head); font-size: 20px; text-transform: uppercase; letter-spacing: 1.5px; }
.fp-subtitle { fill: var(--red-bright); font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }

.fp-zone .fp-shape { fill: #101319; stroke: rgba(255,255,255,0.22); stroke-width: 1.6; transition: fill var(--t), stroke var(--t); }
.fp-zone.is-clickable { cursor: pointer; }
.fp-zone.is-clickable:hover .fp-shape { fill: #161a22; stroke: rgba(255,255,255,0.4); }
.fp-zone.is-clickable:focus-visible { outline: none; }
.fp-zone.is-clickable:focus-visible .fp-shape { stroke: var(--red-bright); stroke-width: 2.6; }
.fp-zone.is-selected .fp-shape { stroke: var(--red-bright); stroke-width: 3; fill: rgba(227,6,19,0.10); }
.fp-zone.is-outdoor .fp-shape { stroke-dasharray: 5 4; fill: #0c0f13; }
.fp-zone[data-status="busy"] .fp-shape,
.fp-zone[data-status="closed"] .fp-shape { fill: #0b0c0f; stroke: rgba(255,255,255,0.12); }
.fp-zone[data-status="busy"] .fp-marks,
.fp-zone[data-status="closed"] .fp-marks { opacity: 0.3; }
.fp-zone[data-status="busy"] .fp-label,
.fp-zone[data-status="closed"] .fp-label { fill: var(--text-muted); }
.fp-zone.is-clickable[data-status="busy"],
.fp-zone.is-clickable[data-status="closed"] { cursor: not-allowed; }

.fp-marks { stroke: rgba(255,255,255,0.4); stroke-width: 1.2; fill: none; }
.fp-marks .fp-dot-c { fill: rgba(255,255,255,0.5); stroke: none; }
.fp-marks .fp-net { stroke: rgba(255,43,59,0.55); stroke-width: 1.6; }
.fp-num { fill: rgba(227,6,19,0.5); font-family: var(--font-display); font-size: 34px; pointer-events: none; }
.fp-label { fill: #fff; font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; pointer-events: none; }
.fp-tag { fill: var(--status-soon); font-family: var(--font-head); font-size: 10px; letter-spacing: 1.5px; }
.fp-status { stroke: #070809; stroke-width: 2; }
.fp-zone[data-status="free"]   .fp-status { fill: var(--status-free); }
.fp-zone[data-status="soon"]   .fp-status { fill: var(--status-soon); }
.fp-zone[data-status="busy"]   .fp-status { fill: var(--status-busy); }
.fp-zone[data-status="closed"] .fp-status { fill: var(--status-closed); }

.fp-annex__bg { fill: rgba(255,255,255,0.02); stroke: rgba(255,255,255,0.14); stroke-width: 1.2; }
.fp-annex__h { fill: #fff; font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.fp-annex__arrow { stroke: var(--red-bright); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fp-annex__room { fill: rgba(255,255,255,0.03); stroke: rgba(255,255,255,0.16); stroke-width: 1.2; }
.fp-annex__t { fill: #fff; font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.fp-annex__t2 { fill: var(--text-muted); font-size: 10px; }

.fp-here__dot { fill: var(--red-bright); }
.fp-here__pulse { fill: rgba(255,43,59,0.3); animation: fpPulse 2s ease-out infinite; transform-origin: center; }
.fp-here__t { fill: var(--red-bright); font-family: var(--font-head); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
@keyframes fpPulse { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }

.fp-exit__box { fill: rgba(41,199,101,0.12); stroke: var(--status-free); stroke-width: 1; }
.fp-exit__arrow { stroke: var(--status-free); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fp-exit__t { fill: var(--status-free); font-family: var(--font-head); font-size: 9px; letter-spacing: 1px; }

@media (prefers-reduced-motion: reduce) { .fp-here__pulse { animation: none; } }

/* Mise en page du plan : plan + panneau latéral */
.plan-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(24px, 4vw, 46px); align-items: start; }
.plan-side { display: flex; flex-direction: column; gap: 18px; }
.plan-side__legend { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.legend-swatch { width: 13px; height: 13px; }
.legend-swatch.free   { background: var(--status-free); }
.legend-swatch.soon   { background: var(--status-soon); }
.legend-swatch.busy   { background: var(--status-busy); }
.legend-swatch.closed { background: var(--status-closed); }
.plan-side h3 { font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; }
.plan-side__note {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  font-size: 0.88rem; color: var(--text-muted);
}
.plan-side__note .ic { color: var(--red); flex: 0 0 auto; }
.plan-side__note .ic svg { width: 18px; height: 18px; }
.plan-side__note strong { color: var(--text-dark); display: block; margin-bottom: 2px; }
.plan-side__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.plan-tab {
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem;
  padding: 9px 16px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text-muted); cursor: pointer; transition: all var(--t);
}
.plan-tab:hover { color: var(--text-dark); border-color: var(--red); }
.plan-tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.plan-explorer__bar { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.plan-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.plan-tabs--activity .plan-tab { font-size: 0.7rem; padding: 7px 13px; }
.plan-info__name { font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.plan-info__list { display: grid; gap: 10px; margin: 14px 0 16px; }
.plan-info__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-muted); }
.plan-info__list .ic { color: var(--red); flex: 0 0 auto; display: inline-flex; }
.plan-info__list .ic svg { width: 17px; height: 17px; }
.plan-info__list a:hover { color: var(--red-bright); }
.plan-info__meta { font-size: 0.84rem; color: var(--text-muted-dark); margin-bottom: 18px; }

/* ================================================================== */
/* CONTACT                                                            */
/* ================================================================== */
.contact-centres { display: grid; gap: 12px; margin: 24px 0 20px; }
.contact-centre { padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--red); }
.contact-centre h3 { font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; margin-bottom: 10px; }
.contact-centre h3 span { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0; }
.contact-centre ul { display: grid; gap: 8px; }
.contact-centre li { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; color: var(--text-muted); }
.contact-centre .ic { color: var(--red); flex: 0 0 auto; display: inline-flex; }
.contact-centre .ic svg { width: 17px; height: 17px; }
.contact-centre a { color: inherit; }
.contact-centre a:hover { color: var(--red-bright); }
.contact-centre__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--red);
  font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem;
}
.contact-centre__link:hover { gap: 13px; }
.contact-hours-note { font-size: 0.88rem; color: var(--text-muted-dark); padding: 14px 16px; background: var(--surface); border-left: 3px solid var(--red); }
.contact-hours-note strong { color: var(--text-dark); }

.contact-cols { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }
.info-list { display: grid; gap: 20px; margin-top: 26px; }
.info-list li { display: flex; gap: 16px; }
.info-list .ic {
  flex: 0 0 46px; height: 46px;
  display: grid; place-items: center; background: var(--red); color: #fff;
}
.info-list strong {
  display: block; font-family: var(--font-head); font-stretch: var(--w-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--red); margin-bottom: 3px;
}
.info-list a:hover { color: var(--red); }

.map-embed { width: 100%; height: 440px; overflow: hidden; border: 1px solid var(--line-strong); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ================================================================== */
/* SERVICES (page services)                                           */
/* ================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.service-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: rgba(227,6,19,0.12); color: var(--red);
  transition: background var(--t), color var(--t);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { background: var(--red); color: var(--white); }
.service-card h3 { font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; }
.service-card p { color: var(--text-muted-dark); font-size: 0.92rem; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: var(--space-lg); }
.feature-row:nth-child(even) .feature-row__media { order: 2; }
.feature-row__media { position: relative; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.feature-row__credit {
  position: absolute; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.82);
  font-size: 0.62rem; padding: 3px 8px;
}
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__body h3 { font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900; font-size: var(--fs-h2); text-transform: uppercase; line-height: 0.9; margin-bottom: 16px; }
.feature-row__list { display: grid; gap: 10px; margin-top: 16px; }
.feature-row__list li { display: flex; gap: 10px; align-items: flex-start; }
.feature-row__list .ic { color: var(--red); flex: 0 0 auto; margin-top: 3px; display: inline-flex; }
.feature-row__list .ic svg { width: 15px; height: 15px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step-card { position: relative; padding: 30px 24px; background: var(--gray-800); border: 1px solid var(--line); color: var(--text-light); overflow: hidden; }
.step-card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -14px; right: 6px;
  font-family: var(--font-display); font-stretch: var(--w-jersey); font-weight: 900;
  font-size: 5rem; color: rgba(227,6,19,0.18); line-height: 1;
}
.step-card h3 { font-family: var(--font-head); font-stretch: var(--w-cond); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; margin: 12px 0 8px; position: relative; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; position: relative; }
.step-card__ic { width: 46px; height: 46px; background: var(--red); color: #fff; display: grid; place-items: center; }
.step-card__ic svg { width: 24px; height: 24px; }

/* ================================================================== */
/* Utilitaires de grille                                              */
/* ================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.text-center { text-align: center; }
