/* ==========================================================================
   CREANOR — Parc d'activités (EUROCAP · GROUPE BECI SAS)
   Feuille de style principale.

   Cette feuille est la transcription exacte du design source
   « Creanor.dc.html » : chaque valeur (couleur, px, timing, courbe) est
   reprise à l'identique. Les styles `style-hover` du design deviennent des
   règles `:hover`, les états dynamiques deviennent des variables CSS.

   Les seules additions sont les media-queries (§ 20) : le design source est
   une maquette desktop sans point de rupture, inutilisable en production
   mobile. Au-delà de 1100px le rendu est strictement identique à la maquette.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons de design
   -------------------------------------------------------------------------- */
:root {
  --ink: #081F2D;
  --red: #E83A51;
  --pink: #F79AA8;
  --cream: #F5F3EF;
  --cream-deep: #EDE9E2;
  --slate: #3F5364;
  --muted: #6B7A85;
  --green: #7BE2A8;
  --green-deep: #1E7A4B;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shell: 1240px;
  --gut: 36px;
  --chevrons: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='120'%20viewBox='-13%20-15%20160%20120'%3E%3Cg%20fill='%23ffffff'%20fill-opacity='0.06'%3E%3Cpolygon%20points='27.3,1.2%208.2,1.2%2044.8,37.8%2081.4,1.2%2062.4,1.2%2044.8,18.7'/%3E%3Cpolygon%20points='62.4,89.9%2081.4,89.9%2044.8,53.3%208.2,89.9%2027.3,89.9%2044.8,72.4'/%3E%3Cpolygon%20points='0.4,63.1%200.4,82.1%2037,45.5%200.4,8.9%200.4,28%2017.9,45.5'/%3E%3Cpolygon%20points='89,70.9%2089,90%20133.4,45.6%2089,1.1%2089,20.1%20114.4,45.6'/%3E%3C/g%3E%3C/svg%3E");
  --chevrons-soft: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='120'%20viewBox='-13%20-15%20160%20120'%3E%3Cg%20fill='%23ffffff'%20fill-opacity='0.04'%3E%3Cpolygon%20points='27.3,1.2%208.2,1.2%2044.8,37.8%2081.4,1.2%2062.4,1.2%2044.8,18.7'/%3E%3Cpolygon%20points='62.4,89.9%2081.4,89.9%2044.8,53.3%208.2,89.9%2027.3,89.9%2044.8,72.4'/%3E%3Cpolygon%20points='0.4,63.1%200.4,82.1%2037,45.5%200.4,8.9%200.4,28%2017.9,45.5'/%3E%3Cpolygon%20points='89,70.9%2089,90%20133.4,45.6%2089,1.1%2089,20.1%20114.4,45.6'/%3E%3C/g%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* L'en-tête est fixe et haut de 71 px : sans cette réserve, une ancre — et
     tout élément atteint au clavier — se pose derrière la barre. */
  scroll-padding-top: 88px;
}
@media (max-width: 720px) { html { scroll-padding-top: 76px; } }

body {
  margin: 0;
  background: #081F2D;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #081F2D;
  -webkit-font-smoothing: antialiased;
}

a { color: #E83A51; text-decoration: none; }
a:hover { color: #081F2D; }

input, select, textarea, button { font-family: inherit; }

img, svg { max-width: 100%; }

/* Les conteneurs du site sont en grid/flex : sans cette règle, `display`
   l'emporterait sur l'attribut `hidden` et les panneaux masqués resteraient
   visibles. */
[hidden] { display: none !important; }

/* Lien d'évitement — accessibilité clavier (RGAA / WCAG 2.4.1) */
.c-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: #E83A51;
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 12px 0;
}
.c-skip:focus { left: 0; color: #fff; }

.c-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #E83A51;
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Animations (identiques au design source)
   -------------------------------------------------------------------------- */
/* Le motif glisse par transform, pas par background-position : la première
   est composée sur le GPU, la seconde repeint tout le calque à chaque image
   — et ces calques font la taille de l'écran, en boucle infinie. */
@keyframes chevdrift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(320px, 0, 0); } }
@keyframes rise { from { opacity: 0; transform: translate3d(0, 28px, 0); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes float3d {
  0%, 100% { transform: perspective(1400px) rotateX(6deg) rotateY(-13deg) translateY(0); }
  50% { transform: perspective(1400px) rotateX(6deg) rotateY(-13deg) translateY(-16px); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollnudge {
  0% { transform: translateY(0); opacity: .35; }
  45% { transform: translateY(9px); opacity: 1; }
  100% { transform: translateY(0); opacity: .35; }
}
@keyframes reveal { from { opacity: 0; transform: translate3d(0, 40px, 0); } to { opacity: 1; transform: none; } }
@keyframes revealScale { from { opacity: 0; transform: translate3d(0, 30px, 0) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes sheen { from { transform: translateX(-140%) skewX(-18deg); } to { transform: translateX(240%) skewX(-18deg); } }
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232,58,81,.55); }
  50% { opacity: .35; transform: scale(.82); box-shadow: 0 0 0 5px rgba(232,58,81,0); }
}
@keyframes glowpulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  /* Le bandeau ne défile plus : sa piste, taillée pour glisser, laissait son
     dernier mot coupé au bord droit. Figée, elle se centre et revient à la
     ligne. */
  .c-marquee__track { width: 100%; flex-wrap: wrap; justify-content: center; }
}

/* --------------------------------------------------------------------------
   4. Coquille
   -------------------------------------------------------------------------- */
.c-page { width: 100%; overflow-x: hidden; background: #F5F3EF; }

.c-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 48px var(--gut);
}

/* --------------------------------------------------------------------------
   5. En-tête fixe
   -------------------------------------------------------------------------- */
.c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  --nav-ink: #ffffff;
  --logo-ink: #ffffff;
  --logo-ink-soft: rgba(255,255,255,0.72);
  --nav-bg: transparent;
  --nav-blur: none;
  --nav-line: transparent;
  --lang-bg: rgba(255,255,255,0.08);
  --lang-line: rgba(255,255,255,0.26);
}

/* État « page défilée » — équivalent de state.past dans le design source */
.c-header.is-past {
  --nav-ink: #081F2D;
  --logo-ink: #081F2D;
  --logo-ink-soft: rgba(8,31,45,0.66);
  --nav-bg: rgba(245,243,239,0.45);
  --nav-blur: blur(14px);
  --nav-line: rgba(8,31,45,0.10);
  --lang-bg: rgba(255,255,255,0.55);
  --lang-line: rgba(8,31,45,0.14);
}

/* Pages intérieures (mentions légales…) : en-tête toujours en mode clair */
.c-header--solid {
  --nav-ink: #081F2D;
  --logo-ink: #081F2D;
  --logo-ink-soft: rgba(8,31,45,0.66);
  --nav-bg: rgba(245,243,239,0.92);
  --nav-blur: blur(14px);
  --nav-line: rgba(8,31,45,0.10);
  --lang-bg: rgba(255,255,255,0.55);
  --lang-line: rgba(8,31,45,0.14);
}

.c-header__bg {
  position: absolute;
  inset: 0;
  background: var(--nav-bg);
  -webkit-backdrop-filter: var(--nav-blur);
  backdrop-filter: var(--nav-blur);
  border-bottom: 1px solid var(--nav-line);
  transition: background .35s ease, border-color .35s ease;
}

/* La barre est mise à l'échelle, pas redimensionnée : animer `width` forçait
   un calcul de mise en page à chaque image de défilement, sur toute la largeur
   de l'en-tête. */
.c-header__progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  background: #E83A51;
  transform-origin: 0 50%;
  transform: scaleX(var(--progress, 0));
  transition: transform .12s linear;
  will-change: transform;
}

.c-header__inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.c-logo { display: block; }
.c-logo svg { height: 40px; width: auto; display: block; }
.c-logo__ink { fill: var(--logo-ink); }
.c-logo__ink-soft { fill: var(--logo-ink-soft); }
.c-logo__ink-footer { fill: #FFFFFF; }
.c-logo__ink-footer-soft { fill: rgba(255,255,255,0.72); }
.c-logo__mark { fill: #E83A51; }
.c-logo__wordmark {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 104px;
  letter-spacing: 11px;
}
.c-logo__tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 9.5px;
}

.c-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .35s ease;
  color: var(--nav-ink);
}
.c-nav__link { color: inherit; }
.c-nav__link:hover { color: #E83A51; }

.c-lang {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--lang-line);
  border-radius: 999px;
  background: var(--lang-bg);
  transition: background .35s ease, border-color .35s ease;
}
.c-lang__btn {
  display: inline-block;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  line-height: normal;
  letter-spacing: 0.08em;
  background-color: transparent;
  color: var(--nav-ink);
}
.c-lang__btn:hover { color: #E83A51; }
.c-lang__btn.is-active,
.c-lang__btn.is-active:hover { background-color: #E83A51; color: #ffffff; }

.c-btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #E83A51;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px -10px rgba(232,58,81,0.9);
  transition: transform .25s ease, box-shadow .25s ease;
}
.c-btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(232,58,81,1);
  color: #fff;
}

/* Bouton menu mobile — masqué au-delà de 900px, le desktop reste intact */
.c-burger {
  /* Enfant flex : sans cela il se comprime à 28 px de large sur 42 de haut
     dès 320 px, et le bouton devient un ovale. */
  flex: none;
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--lang-line);
  border-radius: 999px;
  background: var(--lang-bg);
  color: var(--nav-ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.c-burger__bars { display: block; width: 18px; height: 12px; position: relative; }
.c-burger__bars::before,
.c-burger__bars::after,
.c-burger__bars span {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.c-burger__bars::before { top: 0; }
.c-burger__bars span { top: 5px; }
.c-burger__bars::after { bottom: 0; }
.c-burger[aria-expanded="true"] .c-burger__bars::before { transform: translateY(5px) rotate(45deg); }
.c-burger[aria-expanded="true"] .c-burger__bars span { opacity: 0; }
.c-burger[aria-expanded="true"] .c-burger__bars::after { transform: translateY(-5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.c-hero {
  position: relative;
  background: #081F2D;
  color: #fff;
  overflow: hidden;
  height: calc(100svh - 34px);
  min-height: 600px;
  display: flex;
  align-items: center;
}
.c-hero__chevrons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 1;
}
.c-hero__chevrons::before {
  content: "";
  position: absolute;
  /* Le motif déborde de 320px à gauche — la longueur d'un cycle — pour rester
     couvrant pendant toute la translation. */
  inset: 0 0 0 -320px;
  background-image: var(--chevrons);
  background-size: 160px 120px;
  animation: chevdrift 14s linear infinite;
  will-change: transform;
}
.c-hero__glow {
  position: absolute;
  top: -180px; right: -140px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,58,81,0.35), rgba(232,58,81,0) 68%);
  animation: glowpulse 9s ease-in-out infinite;
  pointer-events: none;
}
.c-hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 96px var(--gut) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.c-hero__copy { animation: rise .9s var(--ease) both; }

.c-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.c-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E83A51;
  display: inline-block;
  animation: blink 1.6s ease-in-out infinite;
}

.c-hero__title {
  margin: 18px 0 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.c-hero__title-accent { color: #E83A51; }

.c-hero__para {
  margin: 22px 0 0;
  max-width: 52ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.62;
  color: rgba(255,255,255,0.74);
}

.c-hero__social {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 22px 0 0;
  padding: 9px 16px 9px 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.c-hero__social svg { width: 17px; height: 17px; display: block; flex: none; }
.c-hero__social span { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.86); }

.c-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

.c-btn-lg {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}
.c-btn-lg--primary {
  background: #E83A51;
  color: #fff;
  box-shadow: 0 18px 40px -16px rgba(232,58,81,0.95);
  transition: transform .25s ease;
}
.c-btn-lg--primary:hover { transform: translateY(-3px); color: #fff; }
.c-btn-lg--ghost {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  transition: background .25s ease;
}
.c-btn-lg--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

.c-hero__panel { perspective: 1400px; animation: fade 1.2s ease .2s both; }
.c-hero__float { animation: float3d 8s ease-in-out infinite; transform-style: preserve-3d; position: relative; }
.c-hero__floatglow {
  position: absolute;
  inset: 18px -18px -22px 26px;
  border-radius: 26px;
  background: rgba(232,58,81,0.35);
  filter: blur(28px);
}
.c-hero__card {
  position: relative;
  background: linear-gradient(158deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  padding: 30px 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.75);
}
.c-hero__cardtitle {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F79AA8;
}
.c-dispo { margin-top: 18px; display: grid; gap: 11px; }
.c-dispo__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  transition: transform .3s ease, background .3s ease;
}
.c-dispo__row:hover {
  transform: translateZ(30px) translateX(6px);
  background: rgba(255,255,255,0.15);
}
.c-dispo__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; }
.c-dispo__meta { font-size: 13px; color: rgba(255,255,255,0.6); }
.c-dispo__state {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7BE2A8;
  white-space: nowrap;
}
.c-hero__cardfoot { margin: 18px 0 0; font-size: 13px; color: rgba(255,255,255,0.55); }

.c-scroll {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.c-scroll:hover { color: #ffffff; }
.c-scroll svg { width: 17px; height: auto; display: block; animation: scrollnudge 1.9s ease-in-out infinite; }

/* --------------------------------------------------------------------------
   7. Bandeau défilant
   -------------------------------------------------------------------------- */
/* Le corail de la charte ne porte le blanc qu'à 4,07:1 — sous le seuil AA
   pour ce corps de texte. Assombri d'un cran, à 4,72:1, teinte préservée. */
.c-marquee { background: #D42743; color: #fff; overflow: hidden; padding: 9px 0; }
.c-marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }

/* Déclaré après la règle de base, et non avant : à spécificité égale c'est
   l'ordre du fichier qui tranche. Figée, la piste doit revenir à la ligne,
   sans quoi la moitié des entrées reste hors écran pour toujours. */
@media (prefers-reduced-motion: reduce) {
  .c-marquee__track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
  }
}
.c-marquee__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.c-marquee__sep { opacity: 0.5; }

/* --------------------------------------------------------------------------
   8. Chiffres clés
   -------------------------------------------------------------------------- */
.c-stats { background: #F5F3EF; }
.c-stats__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 26px var(--gut);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  perspective: 1400px;
}
.c-stat {
  position: relative;
  background: #fff;
  border: 1px solid rgba(8,31,45,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 10px 22px -18px rgba(8,31,45,0.55);
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
}
.c-stat:hover {
  transform: translateY(-5px) rotateX(7deg) rotateY(-5deg);
  box-shadow: 0 26px 46px -26px rgba(8,31,45,0.5);
  border-color: rgba(232,58,81,0.35);
}
.c-stat__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #E83A51, rgba(232,58,81,0));
}
.c-stat__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #E83A51;
}
.c-stat__label { margin-top: 6px; font-size: 12.5px; line-height: 1.4; color: #3F5364; }

/* --------------------------------------------------------------------------
   9. Titres de section
   -------------------------------------------------------------------------- */
.c-kicker {
  margin: 0 0 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E83A51;
}
.c-kicker--light { color: #F79AA8; }
.c-kicker--tight { margin-bottom: 14px; }

.c-h2 {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.c-h2--sm { font-size: clamp(26px, 2.8vw, 34px); line-height: 1.04; }
.c-h2--22 { max-width: 22ch; }
.c-h2--20 { max-width: 20ch; }

.c-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.c-sectionhead--24 { margin-bottom: 24px; }
.c-sectionhead__aside {
  margin: 0;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.6;
  color: #3F5364;
}
.c-sectionhead__aside--38 { max-width: 38ch; line-height: 1.7; }

/* --------------------------------------------------------------------------
   10. Espaces
   -------------------------------------------------------------------------- */
.c-espaces { background: #F5F3EF; }
.c-espaces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  perspective: 1600px;
}
.c-espace {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #ffffff, rgba(232,58,81,0.045));
  border: 1px solid rgba(8,31,45,0.1);
  border-radius: 16px;
  padding: 20px 22px 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
}
.c-espace:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 34px 60px -34px rgba(8,31,45,0.45);
  border-color: rgba(232,58,81,0.4);
}
.c-espace__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E83A51, rgba(232,58,81,0));
}
.c-espace__num {
  position: absolute;
  top: -18px; right: -4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: rgba(8,31,45,0.055);
  line-height: 1;
}
.c-espace__body { position: relative; display: flex; flex-direction: column; flex: 1; }
.c-espace__title {
  margin: 0 0 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.c-espace__text {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #3F5364;
  max-width: 44ch;
}
.c-espace__tags {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.c-tag {
  padding: 5px 11px;
  background: rgba(232,58,81,0.08);
  border: 1px solid rgba(232,58,81,0.16);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #081F2D;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   11. Services
   -------------------------------------------------------------------------- */
.c-services { background: #081F2D; color: #fff; position: relative; overflow: hidden; }
.c-services__chevrons {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.c-services__chevrons::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -320px;
  background-image: var(--chevrons-soft);
  background-size: 160px 120px;
  animation: chevdrift 22s linear infinite reverse;
  will-change: transform;
}
.c-services__inner { position: relative; }
.c-services__intro {
  margin: 0 0 20px;
  max-width: 70ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.c-services .c-h2 { margin-bottom: 20px; }
.c-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.c-service {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 19px 20px 20px;
  transition: transform .35s var(--ease), background .35s ease;
}
.c-service:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.c-service__kicker {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F79AA8;
}
.c-service__title {
  margin: 9px 0 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}
.c-service__body { margin: 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.68); }

/* --------------------------------------------------------------------------
   12. Tarifs
   -------------------------------------------------------------------------- */
.c-tarifs { background: #F5F3EF; }
.c-tarifs__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.c-tarifs__lead {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.65;
  color: #3F5364;
  max-width: 48ch;
}
.c-tarifs .c-h2 { margin-bottom: 22px; }
.c-btn-lg--ink {
  background: #081F2D;
  color: #fff;
  transition: transform .25s ease, background .25s ease;
}
.c-btn-lg--ink:hover { transform: translateY(-3px); background: #E83A51; color: #fff; }
.c-offres { display: grid; gap: 14px; }
.c-offre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(8,31,45,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.c-offre:hover { transform: translateX(8px); box-shadow: 0 24px 48px -28px rgba(8,31,45,0.45); }
.c-offre__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 17px; }
.c-offre__body { font-size: 14px; color: #3F5364; margin-top: 4px; }
.c-offre__price {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #E83A51;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   13. Réhabilitation
   -------------------------------------------------------------------------- */
.c-reno { background: #081F2D; color: #fff; position: relative; overflow: hidden; }
.c-reno__glow {
  position: absolute;
  top: -160px; left: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,58,81,0.28), rgba(232,58,81,0) 70%);
}
.c-reno__inner { position: relative; }
.c-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.c-btn-outline:hover { background: #E83A51; border-color: #E83A51; transform: translateY(-3px); color: #fff; }
.c-reno__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}
.c-reno__figure {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
  margin: 0;
}
.c-reno__media { position: relative; height: 100%; min-height: 300px; }
.c-reno__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.c-reno__p { margin: 0 0 11px; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.82); }
.c-reno__atouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.c-reno__atout {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px;
  padding: 9px 11px;
  font-size: 12.5px;
  line-height: 1.3;
}
.c-reno__atout::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #E83A51;
  flex: none;
}
.c-reno__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.c-reno__role-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F79AA8;
  margin-bottom: 4px;
}
.c-reno__role-value { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; }

/* --------------------------------------------------------------------------
   14. Accès
   -------------------------------------------------------------------------- */
.c-acces { background: #EDE9E2; border-top: 1px solid rgba(8,31,45,0.1); }
.c-acces__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.c-acces .c-h2 { margin-bottom: 22px; }
.c-acces__lead {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.65;
  color: #3F5364;
  max-width: 46ch;
}
.c-acces__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.c-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(8,31,45,0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .3s ease, transform .3s ease;
}
.c-chip:hover { border-color: rgba(232,58,81,0.45); transform: translateY(-2px); }
.c-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  flex: 0 0 auto;
}
.c-chip__icon svg { width: 18px; height: 18px; display: block; }
.c-distances { border-top: 1px solid rgba(8,31,45,0.18); }
.c-distances__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(8,31,45,0.18);
  /* Décalé par transform : `padding-left` recalculait la mise en page de la
     ligne à chaque image du survol. */
  transition: transform .3s ease;
}
.c-distances__row:hover { transform: translateX(14px); }
.c-distances__label { font-size: 16px; }
.c-distances__value {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #E83A51;
  white-space: nowrap;
}
.c-acces__note { margin: 14px 0 0; font-size: 13px; color: #6B7A85; }

/* --------------------------------------------------------------------------
   15. Réservation / formulaire
   -------------------------------------------------------------------------- */
.c-reservation { background: #F5F3EF; }
.c-reservation__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 40px var(--gut);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}
.c-reservation .c-h2 { margin-bottom: 22px; }
.c-reservation__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: #3F5364;
  max-width: 46ch;
}
.c-contactlist {
  border-top: 1px solid rgba(8,31,45,0.18);
  padding-top: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: #3F5364;
}
.c-contactlist strong { color: #081F2D; }
.c-contactlist a { font-weight: 700; white-space: nowrap; }

.c-formcard {
  background: linear-gradient(158deg, rgba(8,31,45,0.07), rgba(8,31,45,0.03));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(8,31,45,0.16);
  border-radius: 20px;
  padding: 26px 26px 24px;
  box-shadow: 0 30px 60px -44px rgba(8,31,45,0.55);
}
.c-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  align-items: start;
}
.c-form__full { grid-column: 1 / -1; }

.c-modes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 5px;
  background: #F5F3EF;
  border-radius: 14px;
}
/* Les trois sélecteurs du formulaire sont des `input[type=radio]` masqués
   suivis d'un `label` : l'état actif tient donc au seul CSS, et les
   sélecteurs restent utilisables au clavier et sans JavaScript. */
.c-modes__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11px 8px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background-color: transparent;
  color: #3F5364;
}
.c-modes__btn:hover { color: #081F2D; }
.c-modes__radio:checked + .c-modes__btn,
.c-modes__radio:checked + .c-modes__btn:hover {
  background-color: #081F2D;
  color: #ffffff;
  box-shadow: 0 10px 22px -14px rgba(8,31,45,0.9);
}
.c-modes__radio:focus-visible + .c-modes__btn,
.c-segment__radio:focus-visible + .c-segment__btn,
.c-choice__radio:focus-visible + .c-choice {
  outline: 3px solid #E83A51;
  outline-offset: 2px;
}

.c-fieldgroup { display: grid; gap: 14px; }
.c-fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.c-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #3F5364;
  margin-bottom: 6px;
}
.c-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 12px;
  font-size: 14.5px;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 6px 18px -14px rgba(8,31,45,0.6);
  color: #081F2D;
}
.c-textarea {
  width: 100%;
  height: 106px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 12px;
  font-size: 14.5px;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 6px 18px -14px rgba(8,31,45,0.6);
  color: #081F2D;
  resize: vertical;
}
.c-input[aria-invalid="true"], .c-textarea[aria-invalid="true"] { border-color: #E83A51; }

.c-segment {
  display: flex;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 6px 18px -14px rgba(8,31,45,0.6);
}
.c-segment__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  border: 0;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  color: #3F5364;
}
.c-segment__btn:hover { background-color: #F5F3EF; }
.c-segment__radio:checked + .c-segment__btn,
.c-segment__radio:checked + .c-segment__btn:hover { background-color: #081F2D; color: #ffffff; }

.c-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-choice {
  display: block;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 12px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #081F2D;
}
.c-choice:hover { border-color: rgba(8,31,45,0.45); }
.c-choice__radio:checked + .c-choice,
.c-choice__radio:checked + .c-choice:hover {
  border-color: rgba(232,58,81,0.55);
  background-color: rgba(232,58,81,0.08);
}
.c-choice__title { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; }
.c-choice__body { display: block; margin-top: 3px; font-size: 11.5px; color: #3F5364; }

.c-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #3F5364;
  cursor: pointer;
}
.c-consent input {
  width: 17px; height: 17px;
  margin: 1px 0 0;
  accent-color: #E83A51;
  flex: 0 0 auto;
}
.c-consent strong { color: #081F2D; font-weight: 600; }

.c-captcha {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 12px;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.c-captcha svg { width: 18px; height: 18px; flex: none; }
.c-captcha__text { font-size: 12.5px; color: #3F5364; }
.c-captcha__text strong { color: #081F2D; font-weight: 700; }
.c-captcha__input {
  width: 78px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(8,31,45,0.18);
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #081F2D;
}
.c-captcha__ok { font-size: 12px; font-weight: 700; color: #1E7A4B; }

.c-formerror {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #E83A51;
}
.c-submit {
  grid-column: 1 / -1;
  padding: 15px;
  background: #E83A51;
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  box-shadow: 0 18px 36px -20px rgba(232,58,81,0.9);
  transition: transform .25s ease;
}
.c-submit:hover { transform: translateY(-2px); }
.c-submit[disabled] { opacity: .6; cursor: progress; transform: none; }
.c-rgpd {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(63,83,100,0.7);
}
.c-rgpd a { color: #E83A51; text-decoration: underline; }

/* Champ leurre anti-robot — invisible et hors du flux clavier */
.c-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.c-sent { padding: 48px 0; text-align: center; }
.c-sent__mark {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(232,58,81,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #E83A51;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}
.c-sent__title { margin: 0 0 10px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; }
.c-sent__body { margin: 0 0 26px; font-size: 16px; color: #3F5364; line-height: 1.6; }
.c-sent__again {
  padding: 14px 26px;
  background: #081F2D;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   16. Groupe
   -------------------------------------------------------------------------- */
.c-groupe { background: #EDE9E2; border-top: 1px solid rgba(8,31,45,0.1); }
.c-groupe__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.c-gcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(8,31,45,0.1);
  border-radius: 18px;
  overflow: hidden;
  color: #081F2D;
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
}
.c-gcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 64px -34px rgba(8,31,45,0.55);
  border-color: rgba(232,58,81,0.4);
  color: #081F2D;
}
.c-gcard__head {
  position: relative;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid rgba(8,31,45,0.08);
  overflow: hidden;
}
.c-gcard__logo {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: transform .5s var(--ease);
}
.c-gcard:hover .c-gcard__logo { transform: scale(1.04); }
.c-gcard__word {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 2.8px;
  color: #081F2D;
}
.c-gcard__sub { display: flex; align-items: center; gap: 7px; margin-top: 6px; }
.c-gcard__sub svg { height: 9px; width: auto; display: block; }
.c-gcard__subtext {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 8.5px;
  line-height: 1;
  letter-spacing: 2.4px;
  color: #3F5364;
}
.c-gcard__mark { height: 19px; width: auto; display: block; margin-top: 4.5px; flex: 0 0 auto; }
.c-gcard__rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #E83A51;
  pointer-events: none;
}
.c-gcard__body { padding: 20px 24px 24px; }
.c-gcard__index { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.c-gcard__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #E83A51;
}
.c-gcard__line { flex: 1; height: 1px; background: rgba(8,31,45,0.12); }
.c-gcard__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.c-gcard__text { font-size: 15px; line-height: 1.6; color: #3F5364; }
.c-gcard__more {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: #E83A51;
}

.c-parks { margin-top: 18px; }
.c-parks__title {
  margin: 0 0 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #081F2D;
}
.c-parks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  perspective: 1600px;
}
.c-park {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(8,31,45,0.1);
  border-radius: 14px;
  overflow: hidden;
  color: #081F2D;
  box-shadow: 0 10px 24px -20px rgba(8,31,45,0.6);
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
}
.c-park:hover {
  transform: translateY(-6px) rotateX(6deg);
  box-shadow: 0 30px 54px -30px rgba(8,31,45,0.5);
  border-color: rgba(232,58,81,0.35);
  color: #081F2D;
}
.c-park__media { position: relative; height: 132px; }
.c-park__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.c-park__foot {
  padding: 13px 16px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.c-park__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.c-park__sub { margin-top: 3px; font-size: 12px; color: #3F5364; }
.c-park__chev { color: #E83A51; font-weight: 700; }
.c-parks__all {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(8,31,45,0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #081F2D;
}
.c-parks__all:hover { border-color: #E83A51; color: #E83A51; }

/* --------------------------------------------------------------------------
   17. Pied de page
   -------------------------------------------------------------------------- */
.c-footer { background: #081F2D; color: #fff; position: relative; overflow: hidden; }
.c-footer__glow {
  position: absolute;
  bottom: -260px; left: -160px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,58,81,0.28), rgba(232,58,81,0) 68%);
  animation: glowpulse 11s ease-in-out infinite;
  pointer-events: none;
}
.c-footer__inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 26px var(--gut) 14px;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.c-footer__wide { grid-column: span 2; }
.c-footer__h {
  margin: 0 0 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.c-footer__addr { font-size: 13px; line-height: 1.55; font-style: normal; }
.c-footer__name { font-weight: 700; }
.c-footer__addr-lines { color: rgba(255,255,255,0.68); }
.c-footer__route {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.c-footer__route:hover { background: rgba(255,255,255,0.1); color: #fff; }
.c-footer__label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F79AA8;
  margin-bottom: 8px;
}
.c-footer__label + .c-footer__label,
.c-footer__spaced { margin-top: 12px; }
.c-footer__tel {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.c-footer__tel:hover { color: #F79AA8; }
.c-footer__small { font-size: 12px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.c-footer__link { font-size: 12px; color: #fff; line-height: 1.55; }
.c-footer__link:hover { color: #F79AA8; }
.c-footer__dim { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.c-footer__bar {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.c-footer__brand { display: flex; align-items: center; gap: 16px; }
.c-footer__brand svg { height: 28px; width: auto; display: block; }
.c-footer__legal {
  font-size: 9.5px;
  letter-spacing: 0.02em;
  /* 0.4 donnait 3,76:1 sur le fond nuit ; 0.55 porte à 5,88:1. */
  color: rgba(255,255,255,0.55);
}
.c-footer__legal a { color: rgba(255,255,255,0.65); }
.c-footer__legal a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   18. Pages intérieures (mentions légales, confidentialité, 404)
   -------------------------------------------------------------------------- */
.c-legal { background: #F5F3EF; }
.c-legal__hero {
  background: #081F2D;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.c-legal__hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -320px;
  background-image: var(--chevrons-soft);
  background-size: 160px 120px;
  animation: chevdrift 22s linear infinite;
  will-change: transform;
}
.c-legal__hero-inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 130px var(--gut) 48px;
}
.c-legal__title {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.c-legal__body {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px var(--gut) 64px;
}
.c-legal__block {
  background: #fff;
  border: 1px solid rgba(8,31,45,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px -22px rgba(8,31,45,0.6);
}
.c-legal__block h2 {
  margin: 0 0 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: #081F2D;
}
.c-legal__block p { margin: 0 0 12px; font-size: 15px; line-height: 1.7; color: #3F5364; }
.c-legal__block p:last-child { margin-bottom: 0; }
.c-legal__block ul { margin: 0 0 12px; padding-left: 20px; font-size: 15px; line-height: 1.7; color: #3F5364; }
.c-legal__block li { margin-bottom: 4px; }
.c-legal__block strong { color: #081F2D; }
.c-legal__block a { text-decoration: underline; }
.c-legal__updated { margin: 18px 0 0; font-size: 13px; color: #6B7A85; }
.c-breadcrumb {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
}
.c-breadcrumb a { color: rgba(255,255,255,0.85); }
.c-breadcrumb a:hover { color: #F79AA8; }

.c-404 { text-align: center; }
.c-404 .c-btn-lg--primary { margin-top: 24px; }

/* --------------------------------------------------------------------------
   19. Révélation au défilement (data-rv)
   -------------------------------------------------------------------------- */
[data-rv].is-hidden { opacity: 0; }
[data-rv="1"].is-hidden { transform: translate3d(0, 40px, 0); }
[data-rv="2"].is-hidden { transform: translate3d(0, 30px, 0) scale(.97); }

/* --------------------------------------------------------------------------
   20. Adaptations responsives
   Ajout nécessaire à la mise en production : la maquette source est un
   rendu desktop unique. Au-delà de 1100px, rien ne change.
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --gut: 28px; }
  .c-hero__inner { grid-template-columns: 1fr; gap: 36px; padding-top: 104px; }
  .c-hero { height: auto; min-height: 0; }
  .c-hero__panel { perspective: none; }
  .c-hero__float { animation: none; }
  .c-hero__para { max-width: 60ch; }
  .c-scroll { display: none; }
  .c-nav { gap: 16px; font-size: 13.5px; }
  .c-reno__grid { grid-template-columns: 1fr; }
  .c-reno__media { min-height: 260px; }
  .c-tarifs__inner,
  .c-acces__inner,
  .c-reservation__inner { grid-template-columns: 1fr; gap: 32px; }
  .c-services__grid { grid-template-columns: repeat(2, 1fr); }
  .c-groupe__grid { grid-template-columns: repeat(2, 1fr); }
  .c-parks__grid { grid-template-columns: repeat(2, 1fr); }
  .c-stats__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .c-burger { display: inline-flex; }
  .c-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: var(--gut);
    left: var(--gut);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(245,243,239,0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(8,31,45,0.12);
    border-radius: 18px;
    box-shadow: 0 30px 60px -30px rgba(8,31,45,0.55);
    color: #081F2D;
    font-size: 16px;
  }
  .c-nav[hidden] { display: none; }
  .c-nav__link { padding: 12px 10px; border-radius: 10px; }
  .c-nav__link:hover { background: rgba(232,58,81,0.07); }
  .c-lang { align-self: flex-start; margin-top: 6px; --lang-bg: #fff; --lang-line: rgba(8,31,45,0.14); }
  .c-lang__btn { color: #081F2D; }
  .c-btn-nav { justify-content: center; margin-top: 6px; }
  .c-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  :root { --gut: 20px; }
  .c-shell { padding: 40px var(--gut); }
  .c-espaces__grid { grid-template-columns: 1fr; }
  .c-services__grid { grid-template-columns: 1fr; }
  .c-groupe__grid { grid-template-columns: 1fr; }
  .c-parks__grid { grid-template-columns: 1fr 1fr; }
  .c-reno__atouts { grid-template-columns: 1fr; }
  .c-form { grid-template-columns: 1fr; gap: 14px; }
  .c-offre { flex-direction: column; align-items: flex-start; gap: 10px; }
  .c-offre:hover { transform: none; }
  .c-legal__hero-inner { padding-top: 110px; }
  .c-footer__grid { grid-template-columns: 1fr; }
  .c-footer__wide { grid-column: span 1; }
  .c-header__inner { gap: 16px; }
  .c-logo svg { height: 32px; }
}

@media (max-width: 520px) {
  .c-stats__inner { grid-template-columns: 1fr; }
  .c-fieldrow { grid-template-columns: 1fr; }
  .c-choices { grid-template-columns: 1fr; }
  .c-parks__grid { grid-template-columns: 1fr; }
  .c-hero__actions .c-btn-lg { width: 100%; justify-content: center; }
  .c-formcard { padding: 20px 18px; }
  .c-legal__block { padding: 20px 18px; }
}

/* --------------------------------------------------------------------------
   21. Impression
   -------------------------------------------------------------------------- */
@media print {
  .c-header, .c-scroll, .c-marquee, .c-formcard, .c-hero__glow, .c-footer__glow { display: none !important; }
  body { background: #fff; color: #000; }
  .c-page { background: #fff; }
  * { animation: none !important; box-shadow: none !important; }
}
