/* ==========================================================================
   Bizstay — bizstay.fr
   Direction artistique alignée sur le dossier de partenariat propriétaire :
   éditorial, filets fins, grands titres Fraunces, numérotation laiton,
   photos à plaque décalée. Palette : bleu nuit #1B2A4A · crème #F7F3EC ·
   laiton #B08D57 · encre #14181F.
   ========================================================================== */

:root {
  --bleu-nuit: #1B2A4A;
  --bleu-nuit-2: #223357;
  --creme: #F7F3EC;
  --creme-2: #EFE8DC;
  --creme-3: #E7DECE;
  --laiton: #B08D57;
  --laiton-2: #9A7A49;
  --encre: #14181F;
  --blanc: #FFFFFF;
  --gris-doux: #5C6470;
  --filet: rgba(27, 42, 74, 0.14);
  --filet-clair: rgba(247, 243, 236, 0.18);

  --font-titres: "Fraunces", Georgia, serif;
  --font-corps: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --largeur-max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-corps);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--encre);
  background-color: var(--creme);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bleu-nuit);
}

h1, h2 {
  font-family: var(--font-titres);
  font-weight: 500;
  line-height: 1.12;
  color: var(--bleu-nuit);
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }

h3 {
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--bleu-nuit);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

.conteneur {
  width: 100%;
  max-width: var(--largeur-max);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  padding-block: clamp(72px, 10vw, 128px);
}

/* --- Accessibilité ------------------------------------------------------ */

.saut-contenu {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bleu-nuit);
  color: var(--blanc);
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}

.saut-contenu:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--laiton);
  outline-offset: 2px;
}

/* --- Éléments partagés -------------------------------------------------- */

.surtitre {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--laiton-2);
  margin-bottom: 22px;
}

.surtitre .num {
  margin-right: 6px;
}

.trait {
  display: block;
  width: 52px;
  height: 2px;
  background-color: var(--laiton);
  border: none;
  margin: 28px 0 0;
}

.intro-section {
  max-width: 620px;
  color: var(--gris-doux);
  font-size: 1.08rem;
}

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-corps);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bouton:hover { transform: translateY(-1px); }

.bouton--principal {
  background-color: var(--laiton);
  color: var(--blanc);
}

.bouton--principal:hover {
  background-color: var(--laiton-2);
}

.lien-fleche {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--creme);
  border-bottom: 1px solid rgba(247, 243, 236, 0.45);
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}

.lien-fleche:hover { border-color: var(--creme); }

.lien-fleche--navy {
  color: var(--bleu-nuit);
  border-bottom-color: rgba(27, 42, 74, 0.35);
}

.lien-fleche--navy:hover { border-color: var(--bleu-nuit); }

.a-completer {
  background: rgba(176, 141, 87, 0.12);
  border: 1px dashed var(--laiton);
  border-radius: 6px;
  padding: 0 6px;
  font-size: 0.88em;
  color: var(--laiton-2);
  white-space: nowrap;
}

/* --- En-tête ------------------------------------------------------------ */

.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--filet);
}

.entete__barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.entete__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.entete__logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.entete__logo span {
  font-family: var(--font-titres);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--bleu-nuit);
}

.entete__nav {
  display: none;
}

.entete__cta {
  display: none;
}

.entete__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--filet);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.entete__burger span {
  display: block;
  height: 1.5px;
  background-color: var(--bleu-nuit);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.entete__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.entete__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.entete__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--filet);
  background-color: var(--creme);
  padding: 12px 24px 28px;
}

.nav-mobile.ouvert { display: block; }

.nav-mobile a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  font-weight: 500;
  color: var(--encre);
  border-bottom: 1px solid var(--filet);
}

.nav-mobile .bouton {
  margin-top: 18px;
  width: 100%;
  border-bottom: none;
}

@media (min-width: 900px) {
  .entete__burger, .nav-mobile { display: none !important; }

  .entete__nav {
    display: flex;
    gap: 30px;
  }

  .entete__nav a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--encre);
    transition: color 0.15s ease;
  }

  .entete__nav a:hover { color: var(--laiton-2); }

  .entete__cta {
    display: inline-flex;
    padding: 11px 22px;
    font-size: 0.9rem;
  }
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--bleu-nuit);
  background-image:
    radial-gradient(ellipse 80% 60% at 85% -10%, rgba(176, 141, 87, 0.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 110%, rgba(34, 51, 87, 0.9), transparent 65%);
  color: var(--creme);
  padding-block: clamp(88px, 14vw, 170px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__media video.playing {
  opacity: 1;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 42, 74, 0.93) 0%, rgba(27, 42, 74, 0.76) 45%, rgba(27, 42, 74, 0.42) 100%),
    linear-gradient(0deg, rgba(27, 42, 74, 0.6), rgba(27, 42, 74, 0.12));
}

.hero .conteneur {
  position: relative;
  z-index: 1;
}

.hero .surtitre { color: var(--laiton); }

.hero h1 {
  color: var(--creme);
  max-width: 16ch;
  margin-bottom: 0;
}

.hero .trait { margin-block: 30px 26px; }

.hero__sous-titre {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(247, 243, 236, 0.82);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  margin-bottom: 52px;
}

.hero__reperes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  padding: 24px 0 0;
  margin: 0;
  list-style: none;
  font-size: 0.9rem;
  color: rgba(247, 243, 236, 0.65);
  border-top: 1px solid var(--filet-clair);
  max-width: 720px;
}

.hero__reperes li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__reperes li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--laiton);
  flex-shrink: 0;
}

/* --- Hero de page intérieure ----------------------------------------------- */

.hero--page {
  padding-block: clamp(64px, 9vw, 112px);
}

.hero--page h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  max-width: 20ch;
}

.hero--page .hero__sous-titre {
  margin-bottom: 0;
}

/* --- Navigation : page active ------------------------------------------------ */

.entete__nav a.actif,
.nav-mobile a.actif {
  color: var(--laiton-2);
}

/* --- Listes éditoriales ------------------------------------------------------- */

.liste-filets {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.liste-filets li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--encre);
  padding: 14px 0;
  border-bottom: 1px solid var(--filet);
  font-size: 1rem;
}

.liste-filets li:first-child {
  border-top: 1px solid var(--filet);
}

.liste-filets li::before {
  content: "—";
  color: var(--laiton);
  font-weight: 600;
  flex-shrink: 0;
}

.liste-simple {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--gris-doux);
}

.liste-simple li {
  padding: 4px 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.liste-simple li::before {
  content: "—";
  color: var(--laiton);
  flex-shrink: 0;
}

/* --- Grille de domaines (2 colonnes, filets) ----------------------------------- */

.domaines__grille {
  display: grid;
  gap: 0 clamp(48px, 7vw, 96px);
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--filet);
  max-width: 900px;
}

.domaines__grille li {
  list-style: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--filet);
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--encre);
}

.domaines__grille li::before {
  content: "—";
  color: var(--laiton);
  font-weight: 600;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .domaines__grille { grid-template-columns: 1fr 1fr; }
}

/* --- Variante 3 colonnes des engagements (valeurs) ------------------------------ */

@media (min-width: 900px) {
  .engagements__grille--trois {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Bande d'appel à l'action (bleu nuit) ---------------------------------------- */

.bande-cta {
  background-color: var(--bleu-nuit);
  color: var(--creme);
}

.bande-cta .surtitre { color: var(--laiton); }

.bande-cta h2 {
  color: var(--creme);
  max-width: 18ch;
}

.bande-cta p {
  color: rgba(247, 243, 236, 0.78);
  max-width: 560px;
}

.bande-cta .bouton { margin-top: 18px; }

/* --- En-têtes de section -------------------------------------------------- */

.entete-section {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* --- 01 · Engagements (éditorial, sans cartes) ----------------------------- */

.engagements__grille {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--filet);
}

.engagement {
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--filet);
}

.engagement__numero {
  display: block;
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--laiton);
  margin-bottom: 18px;
}

.engagement p {
  margin: 0;
  color: var(--gris-doux);
  font-size: 0.99rem;
  max-width: 46ch;
}

@media (min-width: 760px) {
  .engagements__grille {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(48px, 7vw, 96px);
  }
}

/* --- 02 · Comment ça marche ------------------------------------------------ */

.etapes__liste {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--filet);
  max-width: 860px;
}

.etape {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--filet);
}

.etape__numero {
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--laiton);
}

.etape h3 { margin-bottom: 6px; }

.etape p {
  margin: 0;
  color: var(--gris-doux);
  max-width: 56ch;
}

/* --- 03 · Cadre contractuel & conformité ------------------------------------ */

.conformite {
  background-color: var(--bleu-nuit);
  color: var(--creme);
}

.conformite .surtitre { color: var(--laiton); }

.conformite h2 {
  color: var(--creme);
  max-width: 16ch;
}

.conformite__citation {
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding-left: 28px;
  border-left: 2px solid var(--laiton);
  max-width: 720px;
}

.conformite__citation p {
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.5;
  color: rgba(247, 243, 236, 0.94);
  margin: 0;
}

.conformite__note {
  margin: 26px 0 0;
  color: rgba(247, 243, 236, 0.68);
  max-width: 620px;
}

/* --- Intermède visuel (image cadrée entre deux sections) ---------------------- */

.intermede {
  padding-bottom: clamp(72px, 10vw, 128px);
}

.intermede .conteneur {
  max-width: 900px;
}

.intermede img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* --- Interlude image pleine largeur ------------------------------------------ */

.interlude {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.interlude img {
  width: 100%;
  height: clamp(380px, 60vh, 620px);
  object-fit: cover;
}

.interlude::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 24, 31, 0.62) 0%, rgba(20, 24, 31, 0.08) 55%, rgba(20, 24, 31, 0.12) 100%);
}

.interlude__citation {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 6vw, 88px);
  bottom: clamp(28px, 5vw, 56px);
  text-align: right;
  color: var(--creme);
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  line-height: 1.3;
  margin: 0;
}

.interlude__citation::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background-color: var(--laiton);
  margin: 0 0 18px auto;
}

/* --- 04 · Entreprises & voyageurs --------------------------------------------- */

.sejours__grille {
  display: grid;
  gap: clamp(48px, 7vw, 72px);
}

@media (min-width: 900px) {
  .sejours__grille {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }
}

.sejours__services {
  margin: 30px 0 40px;
  padding: 0;
  list-style: none;
}

.sejours__services li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--encre);
  padding: 13px 0;
  border-bottom: 1px solid var(--filet);
  font-size: 0.99rem;
}

.sejours__services li:first-child {
  border-top: 1px solid var(--filet);
}

.sejours__services li::before {
  content: "—";
  color: var(--laiton);
  font-weight: 600;
  flex-shrink: 0;
}

.sejours__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 34px);
  padding: 18px 18px 18px 0;
}

.cadre-photo {
  position: relative;
}

.cadre-photo::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background-color: var(--creme-3);
  z-index: 0;
}

.cadre-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cadre-photo--haute {
  grid-row: span 2;
}

.sejours__photos .cadre-photo:nth-child(3) { margin-top: 8px; }

/* --- 05 · Chiffres clés (bande bleu nuit) --------------------------------------- */

.chiffres {
  background-color: var(--bleu-nuit);
  color: var(--creme);
}

.chiffres .surtitre { color: var(--laiton); }

.chiffres__grille {
  display: grid;
  gap: 0;
  margin-top: clamp(40px, 6vw, 64px);
}

.chiffre {
  padding: 36px 0;
  border-top: 1px solid var(--filet-clair);
}

.chiffre__valeur {
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: clamp(3.4rem, 8vw, 5.4rem);
  line-height: 1;
  color: var(--creme);
  margin-bottom: 14px;
}

.chiffre--objectif .chiffre__valeur { color: var(--laiton); }

.chiffre__legende {
  margin: 0;
  color: rgba(247, 243, 236, 0.72);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

@media (min-width: 760px) {
  .chiffres__grille {
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(40px, 6vw, 80px);
  }
}

/* --- 06 · FAQ --------------------------------------------------------------------- */

.faq__liste {
  max-width: 860px;
  border-top: 1px solid var(--filet);
}

.faq__item {
  border-bottom: 1px solid var(--filet);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 56px 26px 0;
  font-family: var(--font-titres);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--bleu-nuit);
  position: relative;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--laiton);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__reponse {
  padding: 0 0 28px;
  color: var(--gris-doux);
  max-width: 64ch;
}

.faq__reponse p { margin-bottom: 0.6em; }
.faq__reponse p:last-child { margin-bottom: 0; }

/* --- 07 · Contact (bleu nuit) ------------------------------------------------------- */

.contact {
  background-color: var(--bleu-nuit);
  color: var(--creme);
}

.contact .surtitre { color: var(--laiton); }

.contact h2 {
  color: var(--creme);
}

.contact .intro-section {
  color: rgba(247, 243, 236, 0.75);
}

.contact__grille {
  display: grid;
  gap: clamp(48px, 7vw, 88px);
}

@media (min-width: 900px) {
  .contact__grille {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact__coordonnees {
  display: grid;
  gap: 26px;
  margin-top: clamp(36px, 5vw, 56px);
}

.contact__coordonnee {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: baseline;
}

.contact__coordonnee strong {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--laiton);
}

.contact__coordonnee a,
.contact__coordonnee span {
  font-family: var(--font-titres);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--creme);
  text-decoration: none;
}

.contact__coordonnee a:hover { text-decoration: underline; }

.contact__coordonnee .a-completer {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  color: #D9BE94;
  background: rgba(176, 141, 87, 0.16);
  border-color: rgba(217, 190, 148, 0.6);
}

.contact__note {
  margin-top: 34px;
  color: rgba(247, 243, 236, 0.6);
  font-size: 0.92rem;
}

/* Formulaire éditorial sur fond bleu nuit */

.formulaire {
  border-top: 1px solid var(--filet-clair);
  padding-top: 10px;
}

.formulaire__champ {
  padding: 20px 0 6px;
  border-bottom: 1px solid var(--filet-clair);
}

.formulaire__champ label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--laiton);
  margin-bottom: 2px;
}

.formulaire__champ .optionnel {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: rgba(247, 243, 236, 0.5);
}

.formulaire__champ input,
.formulaire__champ select,
.formulaire__champ textarea {
  width: 100%;
  padding: 8px 0 12px;
  border: none;
  background: transparent;
  font-family: var(--font-corps);
  font-size: 1.05rem;
  color: var(--creme);
}

.formulaire__champ select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B08D57' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}

.formulaire__champ select option {
  color: var(--encre);
  background-color: var(--creme);
}

.formulaire__champ textarea {
  resize: vertical;
  min-height: 96px;
}

.formulaire__champ input::placeholder,
.formulaire__champ textarea::placeholder {
  color: rgba(247, 243, 236, 0.35);
}

.formulaire__champ input:focus,
.formulaire__champ select:focus,
.formulaire__champ textarea:focus {
  outline: none;
}

.formulaire__champ:focus-within {
  border-bottom-color: var(--laiton);
}

.formulaire__rangee {
  display: grid;
  gap: 0;
}

@media (min-width: 600px) {
  .formulaire__rangee {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

.formulaire__rgpd {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.6);
  margin: 26px 0 30px;
}

.formulaire__rgpd a { color: rgba(247, 243, 236, 0.85); }

.formulaire__rgpd input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--laiton);
}

.formulaire__statut {
  margin-top: 18px;
  font-size: 0.94rem;
  display: none;
}

.formulaire__statut.visible { display: block; }

.formulaire__statut--succes { color: #9FD8A4; }

.formulaire__statut--erreur { color: #F0A8A8; }

/* --- Pied de page ---------------------------------------------------------------- */

.pied {
  background-color: #16223B;
  color: rgba(247, 243, 236, 0.7);
  padding-block: 64px 36px;
  font-size: 0.9rem;
  border-top: 1px solid var(--filet-clair);
}

.pied a {
  color: var(--creme);
}

.pied__grille {
  display: grid;
  gap: 40px;
  margin-bottom: 52px;
}

@media (min-width: 800px) {
  .pied__grille {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
  }
}

.pied__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.pied__logo img { width: 38px; height: 38px; object-fit: contain; }

.pied__logo span {
  font-family: var(--font-titres);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--creme);
}

.pied h4 {
  color: var(--laiton);
  font-family: var(--font-corps);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
}

.pied ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.pied a { text-decoration: none; }
.pied a:hover { text-decoration: underline; }

.pied__mentions {
  border-top: 1px solid var(--filet-clair);
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(247, 243, 236, 0.5);
}

.pied__mentions p { margin-bottom: 6px; }

.pied .a-completer {
  background: rgba(176, 141, 87, 0.16);
  border-color: rgba(217, 190, 148, 0.5);
  color: #C9A96E;
}

/* --- Pages légales ------------------------------------------------------------------ */

.page-legale {
  padding-block: clamp(56px, 8vw, 96px);
}

.page-legale .conteneur { max-width: 780px; }

.page-legale h1 { font-size: clamp(2rem, 5vw, 2.8rem); }

.page-legale h2 {
  font-size: 1.45rem;
  margin-top: 2.2em;
}

.page-legale ul { color: var(--encre); }

.page-legale .retour {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.92rem;
}

/* --- Apparition au défilement --------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* --- Divers -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
