/* ================================================================
   BELLORY — Le Management Textile Premium
   Charte graphique : luxe contemporain sobre, sombre et minéral.
   Conception mobile d'abord — points de rupture : 640, 900, 1280 px.
   ================================================================ */

/* ---------- Variables de la charte ---------- */
:root {
  /* Palette */
  --noir: #0E0E0D;            /* fond principal, noir profond légèrement chaud */
  --lin: #F6F3EE;             /* fond secondaire, blanc de lin */
  --encre-clair: #1A1917;     /* texte sur fond clair */
  --encre-sombre: #EDEAE4;    /* texte sur fond sombre */
  --attenue: #8E8A82;         /* surtitres, légendes, mentions */
  --accent: #B99A6B;          /* champagne / laiton pâle — un seul élément doré par écran */
  --accent-clair: #DCC9A8;    /* survol de l'accent, états actifs */
  --filet: rgba(185, 154, 107, 0.25); /* lignes de 1 px */

  /* Typographies */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Rythme */
  --marge: 6vw;               /* marge latérale generouse */
  --nav-h: 76px;              /* hauteur de la barre de navigation */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px); /* compensation de la barre pour les ancres */
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--encre-sombre);
  background: var(--noir);
  overflow-x: hidden; /* aucun débordement horizontal */
  -webkit-font-smoothing: antialiased;
}

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

/* Lecteurs d'écran uniquement */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* Lien d'évitement (accessibilité clavier) */
.skip-link {
  position: fixed; top: -100px; left: var(--marge);
  z-index: 200; padding: 0.6rem 1.2rem;
  background: var(--noir); color: var(--accent-clair);
  border: 1px solid var(--filet); text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 12px; }

/* Focus visible en accent — navigation clavier */
:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

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

/* Sans JavaScript : tout le contenu est visible immédiatement */
html.no-js .reveal, html.no-js [data-split] { opacity: 1; transform: none; }
html.no-js .veil { display: none; }
html.no-js .etapes__trace { transform: none; }

/* ---------- Grain textile (opacité 3 %) ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 90;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-drift 24s steps(6) infinite;
}
@keyframes grain-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Voile de chargement ---------- */
.veil {
  position: fixed; inset: 0; z-index: 300;
  background: var(--noir);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}
.veil__mark {
  font-family: var(--sans); font-weight: 300;
  letter-spacing: 0.5em; text-indent: 0.5em;
  color: var(--encre-sombre); font-size: 0.9rem;
  transition: opacity 0.4s ease;
}
.veil.is-lifted { transform: translateY(-100%); visibility: hidden; }
.veil.is-lifted .veil__mark { opacity: 0; }

/* ---------- Curseur personnalisé (desktop pointeur fin) ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed; top: 0; left: 0; z-index: 250;
    width: 28px; height: 28px;
    margin: -14px 0 0 -14px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
  }
  .cursor.is-hover {
    width: 52px; height: 52px; margin: -26px 0 0 -26px;
  }
}

/* ---------- Indicateur de progression de lecture ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; z-index: 160;
  background: transparent;
}
.progress span {
  display: block; height: 100%;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  height: var(--nav-h);
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem);
  padding: 0 var(--marge) 0 0; /* le carre du burger touche le bord gauche */
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease,
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid transparent;
}
/* La barre s'efface a la descente et reapparait des que l'on remonte */
.nav.is-cachee { transform: translateY(-100%); }
.nav.is-dense {
  background: rgba(246, 243, 238, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(185, 154, 107, 0.3);
}
.nav__brand {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.98rem; letter-spacing: 0.46em; text-indent: 0.46em;
  color: var(--encre-sombre); text-decoration: none;
  white-space: nowrap;
  transition: color 0.5s ease;
}
.nav.is-dense .nav__brand { color: var(--encre-clair); }
/* Filets de part et d'autre du mot-marque */
.nav__filet { flex: 1 1 0; height: 1px; background: var(--filet); min-width: 1rem; }
.nav__droite { display: none; }
.nav__tel {
  font-size: 0.78rem; letter-spacing: 0.12em;
  color: var(--attenue); text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease;
}
.nav__tel:hover { color: var(--accent); }
.nav.is-dense .nav__tel { color: #6E6A62; }
@media (min-width: 900px) {
  .nav__droite { display: flex; align-items: center; gap: 1.6rem; }
  .nav .nav__cta { display: inline-block; }
}

/* Burger : carre noir permanent, a la maniere des maisons hotelieres */
.nav__burger {
  display: inline-flex; flex-direction: column; gap: 7px;
  align-items: center; justify-content: center;
  width: var(--nav-h); height: var(--nav-h); flex: 0 0 auto;
  background: var(--noir); border: 0; cursor: pointer;
  transition: background 0.4s ease;
}
.nav__burger:hover { background: #1C1B19; }
.nav__burger span {
  display: block; width: 24px; height: 1px;
  background: var(--accent-clair);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Menu mobile plein écran */
.menu {
  position: fixed; inset: 0; z-index: 140;
  background: var(--noir);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu nav { display: flex; flex-direction: column; gap: 2.2rem; text-align: center; }
.menu a {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 8vw, 3.2rem); line-height: 1;
  color: var(--encre-sombre); text-decoration: none;
}
.menu a.menu__cta { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-top: 1rem; }

/* Le menu plein ecran sert a toutes les tailles d'ecran (burger permanent). */

/* ================================================================
   ÉLÉMENTS COMMUNS
   ================================================================ */
section { padding: clamp(5rem, 12vh, 9rem) var(--marge); position: relative; }

.section--dark { background: var(--noir); color: var(--encre-sombre); }
.section--light { background: var(--lin); color: var(--encre-clair); }

/* Transitions adoucies entre sections sombres et claires : la couleur de la
   section précédente fond dans le haut de la suivante sur une longue
   distance, avec une courbe d'atténuation progressive (dégradé « scrim »,
   sans palier perceptible). Le dégradé vit dans un padding dédié : il ne
   recouvre jamais le contenu. */
:root { --fondu-h: clamp(240px, 34vh, 440px); }
.fondu-haut-sombre, .fondu-haut-clair { padding-top: calc(var(--fondu-h) + 1.5rem); }
.fondu-haut-sombre::before,
.fondu-haut-clair::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: var(--fondu-h);
  pointer-events: none; z-index: 2;
}
.fondu-haut-sombre::before {
  background: linear-gradient(180deg,
    rgba(14, 14, 13, 1)     0%,
    rgba(14, 14, 13, 0.987) 8%,
    rgba(14, 14, 13, 0.951) 15.5%,
    rgba(14, 14, 13, 0.896) 22.5%,
    rgba(14, 14, 13, 0.825) 29%,
    rgba(14, 14, 13, 0.741) 35.3%,
    rgba(14, 14, 13, 0.648) 41.2%,
    rgba(14, 14, 13, 0.55)  47.1%,
    rgba(14, 14, 13, 0.45)  52.9%,
    rgba(14, 14, 13, 0.352) 58.8%,
    rgba(14, 14, 13, 0.259) 64.7%,
    rgba(14, 14, 13, 0.175) 71%,
    rgba(14, 14, 13, 0.104) 77.5%,
    rgba(14, 14, 13, 0.049) 84.5%,
    rgba(14, 14, 13, 0.013) 92%,
    rgba(14, 14, 13, 0)     100%);
}
.fondu-haut-clair::before {
  background: linear-gradient(180deg,
    rgba(246, 243, 238, 1)     0%,
    rgba(246, 243, 238, 0.987) 8%,
    rgba(246, 243, 238, 0.951) 15.5%,
    rgba(246, 243, 238, 0.896) 22.5%,
    rgba(246, 243, 238, 0.825) 29%,
    rgba(246, 243, 238, 0.741) 35.3%,
    rgba(246, 243, 238, 0.648) 41.2%,
    rgba(246, 243, 238, 0.55)  47.1%,
    rgba(246, 243, 238, 0.45)  52.9%,
    rgba(246, 243, 238, 0.352) 58.8%,
    rgba(246, 243, 238, 0.259) 64.7%,
    rgba(246, 243, 238, 0.175) 71%,
    rgba(246, 243, 238, 0.104) 77.5%,
    rgba(246, 243, 238, 0.049) 84.5%,
    rgba(246, 243, 238, 0.013) 92%,
    rgba(246, 243, 238, 0)     100%);
}

/* Filet séparateur en haut de chaque section sombre suivant une sombre */
.section--dark + .section--dark { border-top: 1px solid var(--filet); }
.section--light + .section--light { border-top: 1px solid rgba(185, 154, 107, 0.3); }

.section__head { max-width: 60rem; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }

/* Surtitre — marqueur typographique du luxe */
.surtitre {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--attenue);
  margin-bottom: 1.4rem;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 300; }

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 18em;
}
.section--dark h2 { color: var(--encre-sombre); }
.section--light h2 { color: var(--encre-clair); }

h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.15; font-weight: 400; }

p { max-width: 62ch; }

.section__texte { margin-top: 1.6rem; font-size: 1.1rem; }
.accroche {
  margin-top: 1.6rem;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.4;
  color: var(--accent);
}

.mention {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--filet);
  font-size: 0.85rem; letter-spacing: 0.02em;
  color: var(--attenue);
}
/* Variante pleine largeur : la mention tient sur une seule ligne au-delà du mobile. */
.mention--ligne { max-width: none; }

/* Boutons — remplissage progressif, jamais de changement de taille */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: 1.0rem 2.4rem;
  border: 1px solid var(--accent);
  border-radius: 999px; /* pilule, a la maniere des maisons hotelieres */
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease, border-color 0.45s ease,
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); /* magnétisme du pointeur */
}
.btn--accent { background: var(--accent); color: var(--noir); }
.btn--accent:hover, .btn--accent:focus-visible { background: var(--accent-clair); border-color: var(--accent-clair); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--accent); color: var(--noir); }

/* Liens du corps de page */
main a:not(.btn), .footer a {
  color: inherit; text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0 1px; background-position: 0 100%;
  transition: background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: 2px;
}
main a:not(.btn):hover, .footer a:hover,
main a:not(.btn):focus-visible, .footer a:focus-visible { background-size: 100% 1px; }

/* ---------- Révélation au défilement ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Révélation des titres mot à mot (les <span> sont créés par script.js).
   Le padding bas compensé par une marge négative évite que le masque
   overflow:hidden ne coupe les jambages (g, p, y…) des serif. */
[data-split] .mot {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding-bottom: 0.16em; margin-bottom: -0.16em;
}
[data-split] .mot > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-split].in-view .mot > span { transform: translateY(0); }

/* ================================================================
   1. OUVERTURE (HERO)
   ================================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 4vh);
  background: var(--noir);
}
/* Photographie d'ouverture, sous un voile noir profond pour la lisibilité.
   Le cadre dépasse légèrement l'écran pour absorber le glissement parallaxe. */
.hero__fond { position: absolute; left: 0; right: 0; top: -9%; bottom: -4%; z-index: 0; will-change: transform; }
.hero__fond img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  animation: hero-zoom 9s cubic-bezier(0.22, 1, 0.36, 1) both; /* zoom lent d'ouverture */
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__fond::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(185, 154, 107, 0.05), transparent 60%),
    linear-gradient(105deg, rgba(14, 14, 13, 0.94) 0%, rgba(14, 14, 13, 0.82) 45%, rgba(14, 14, 13, 0.62) 100%),
    linear-gradient(180deg, rgba(14, 14, 13, 0.55), rgba(14, 14, 13, 0.35) 55%, rgba(14, 14, 13, 0.92) 100%);
}
.hero__inner { max-width: 68rem; position: relative; z-index: 1; }
.hero__scroll { z-index: 1; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  max-width: 12em;
}

/* --- Ouverture : signature de marque sur trois lignes ---
   BELLORY domine, l'accroche vient dessous, la signature ferme le bloc.
   Chaque ligne se révèle à son tour (classes .reveal + data-delay). */
/* Le bloc porte l'échelle ; les trois lignes sont exprimées en em, ce qui fige
   leurs proportions. La taille du bloc est celle des titres de section (h2),
   de sorte que « Le Management Textile » pèse exactement le même poids typographique
   que « Une maison spécialisée. Quatre repères pour la juger. » */
.hero__title--marque {
  max-width: none; letter-spacing: 0;
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
}
.hero__marque,
.hero__accroche,
.hero__signature { display: block; }
.hero__marque {
  /* Même police que le mot-marque de la barre de navigation. */
  font-family: var(--sans); font-weight: 300;
  font-size: 1.56em;
  line-height: 1.05;
  letter-spacing: 0.3em;
  text-indent: 0.3em; /* compense l'interlettrage pour un centrage optique juste */
}
.hero__accroche {
  margin-top: clamp(0.4rem, 1vh, 0.9rem);
  font-size: 1em;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.hero__signature {
  margin-top: clamp(0.9rem, 2vh, 1.6rem);
  font-size: 0.55em;
  line-height: 1.3;
  letter-spacing: 0.012em;
  color: var(--attenue);
}
/* Sur écran étroit, c'est l'interlettrage large — et non le corps — qui ferait
   déborder la ligne. On le resserre pour que le mot-marque garde sa dominance. */
@media (max-width: 620px) {
  .hero__marque { font-size: 1.3em; letter-spacing: 0.13em; text-indent: 0.13em; }
}
.hero__sub {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 44ch;
  color: var(--attenue);
}
.hero__actions { margin-top: 3rem; }
.hero__note {
  margin-top: 1rem;
  font-size: 0.8rem; letter-spacing: 0.06em;
  color: var(--attenue);
}
/* Signal de défilement discret */
.hero__scroll {
  position: absolute; bottom: 3vh; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  text-decoration: none;
}
.hero__scroll-line {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-pulse 2.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero__scroll-txt {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--attenue);
}

/* ================================================================
   2. QUATRE REPÈRES
   ================================================================ */
/* Les quatre repères partagent les mêmes lignes : chiffre, libellé et précision
   s'alignent horizontalement d'une colonne à l'autre, quelle que soit la longueur
   des textes. La grille imbriquée (subgrid) fait ce travail ; la solution de repli
   plus bas assure le même résultat sur les navigateurs qui ne la gèrent pas. */
.reperes__grid {
  display: grid; grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
}
.repere {
  padding: 2.2rem 0; border-top: 1px solid var(--filet);
  display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 0;
}
.repere:first-child { border-top: 0; }
/* Les chiffres reposent sur une même ligne de pied, malgré leurs corps différents. */
.repere__chiffre { align-self: end; }

@supports not (grid-template-rows: subgrid) {
  .repere { display: block; }
  .repere__chiffre { min-height: 1.05em; }
  .repere__libelle { min-height: 2.8em; }
}
.repere__chiffre {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 4.6rem); line-height: 1;
  color: var(--accent);
  font-variant-numeric: lining-nums;
}
/* Repère au libellé chiffré long (« 5 à 10 % ») : corps réduit pour tenir sur une ligne. */
.repere__chiffre--long {
  font-size: clamp(2.2rem, 3.9vw, 3.3rem);
  white-space: nowrap;
}
.repere__libelle { margin-top: 0.9rem; margin-bottom: 0; font-weight: 400; letter-spacing: 0.02em; }
.repere__precision { margin-top: 0.4rem; font-size: 0.88rem; color: var(--attenue); }

@media (min-width: 900px) {
  .reperes__grid { grid-template-columns: repeat(4, 1fr); }
  .repere { border-top: 0; border-left: 1px solid var(--filet); padding: 0.5rem 2.2rem; }
  .repere:first-child { border-left: 0; padding-left: 0; }
}

/* ================================================================
   3. NOTRE CONVICTION
   ================================================================ */
.conviction {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}
.citation.reveal { transform: translateY(24px) scale(0.965); transform-origin: 0 60%; transition-duration: 1.3s; }
.citation.reveal.in-view { transform: none; }
.citation {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1.25;
  max-width: 26em;
  color: var(--encre-sombre);
  margin: clamp(2rem, 6vh, 4rem) 0;
  padding-left: clamp(1.4rem, 3vw, 2.5rem);
  border-left: 1px solid var(--accent);
}
.conviction__reperes { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 1rem; }
.conviction__chiffre {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.1;
  color: var(--accent);
}
.conviction__libelle {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--attenue); margin-top: 0.5rem;
}
.conviction__precision { margin-top: 0.6rem; font-size: 0.92rem; }
@media (min-width: 900px) {
  .conviction__reperes { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

/* ================================================================
   4. NOTRE MÉTHODE — QUATRE PILIERS
   ================================================================ */
.piliers { display: grid; grid-template-columns: 1fr; }
.pilier { padding: 2.4rem 0; border-top: 1px solid rgba(185, 154, 107, 0.3); }
.pilier .pilier__num {
  font-family: var(--serif); font-size: 1rem;
  color: var(--accent); letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}
.pilier h3 { margin-bottom: 0.7rem; }
.pilier p { font-size: 0.98rem; }
@media (min-width: 900px) {
  .piliers { grid-template-columns: 1fr 1fr; gap: 0 5rem; }
}

/* ================================================================
   5. TOUS VOS TEXTILES
   ================================================================ */
.textiles__grid {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(185, 154, 107, 0.3); /* les filets entre cases */
  border: 1px solid rgba(185, 154, 107, 0.3);
}
.textile {
  background: var(--lin);
  padding: 2rem 1.4rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.textile span { font-size: 0.92rem; letter-spacing: 0.02em; transition: transform 0.4s ease; }
.picto {
  width: 44px; height: 44px;
  fill: none; stroke: var(--accent); stroke-width: 1;
  stroke-linecap: round; stroke-linejoin: round;
}
/* Le pictogramme se dessine au survol (stroke-dashoffset animé) */
.picto path { stroke-dasharray: 260; stroke-dashoffset: 0; }
@media (hover: hover) {
  .textile:hover .picto path { animation: dessiner 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
  .textile:hover span { transform: translateX(4px); }
}
@keyframes dessiner {
  from { stroke-dashoffset: 260; }
  to { stroke-dashoffset: 0; }
}
@media (min-width: 900px) { .textiles__grid { grid-template-columns: repeat(4, 1fr); } }

/* ================================================================
   6. NOTRE PROCÉDÉ
   ================================================================ */
.procede {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(185, 154, 107, 0.07), transparent 60%),
    var(--lin);
}
.procede__blocs { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.procede__bloc { position: relative; padding-top: 1rem; }
.procede__bloc .procede__num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(4rem, 8vw, 7rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #7E6335;
  opacity: 0.55;
  margin-bottom: 1rem;
  will-change: transform;
}
@supports not (-webkit-text-stroke: 1px #000) {
  .procede__bloc .procede__num { color: rgba(185, 154, 107, 0.45); }
}
/* Photographies du procédé : cadre au filet, rendu légèrement assourdi.
   Révélation par rideau : un voile noir se retire vers le haut pendant
   que l'image, légèrement zoomée, revient à l'échelle. */
.procede__photo {
  /* Format réduit : les photographies illustrent le propos sans l'écraser. */
  margin: 0 0 1.6rem;
  max-width: 68%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--filet);
  position: relative;
}
.procede__photo picture { display: contents; }
.procede__photo::after {
  content: ""; position: absolute; inset: -1px;
  background: var(--accent);
  transform-origin: 50% 0;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
}
.procede__bloc.in-view .procede__photo::after { transform: scaleY(0); }
.procede__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
  transform: scale(1.14);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.procede__bloc.in-view .procede__photo img { transform: scale(1); }
@media (hover: hover) {
  .procede__bloc.in-view:hover .procede__photo img { transform: scale(1.04); }
}
.procede__bloc h3 { margin-bottom: 0.9rem; max-width: 16em; }
.procede__bloc p { font-size: 0.98rem; color: var(--attenue); }
.procede__bloc p strong { color: var(--encre-sombre); font-weight: 400; }
@media (min-width: 900px) {
  .procede__blocs { grid-template-columns: repeat(3, 1fr); gap: 4rem; }
  .procede__photo { max-width: 62%; }
}

/* ================================================================
   7. LE RÉSULTAT — SIX PREUVES
   ================================================================ */
/* Photographie de linge en fond de section, sous un voile blanc de lin
   qui préserve la lisibilité des six preuves. */
.resultat { position: relative; overflow: hidden; }
.resultat__fond { position: absolute; inset: 0; z-index: 0; }
.resultat__fond img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8);
}
.resultat__fond::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(246, 243, 238, 0.97) 0%,
    rgba(246, 243, 238, 0.9) 40%,
    rgba(246, 243, 238, 0.86) 100%);
}
.resultat .section__head, .resultat .resultat__grid { position: relative; z-index: 1; }

.resultat__grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem 4rem; }
.preuve { padding-top: 1.3rem; border-top: 1px solid var(--accent); max-width: 34rem; }
.preuve h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.preuve p { font-size: 0.96rem; }
@media (min-width: 640px) { .resultat__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .resultat__grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   8. NOS OFFRES
   ================================================================ */
.offres__table-wrap { display: none; }

/* Version mobile : deux blocs empilés */
.offres__mobile { display: grid; gap: 2rem; }
.offre-carte {
  border: 1px solid rgba(185, 154, 107, 0.35);
  border-radius: 2px;
  padding: 2rem 1.6rem;
}
.offre-carte--elite { border-color: var(--accent); background: rgba(185, 154, 107, 0.07); }
.offre-carte h3 {
  font-family: var(--sans); font-weight: 300; font-size: 0.85rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.offre-carte ul { list-style: none; }
.offre-carte li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.7rem 0; border-top: 1px solid rgba(185, 154, 107, 0.2);
  font-size: 0.9rem;
}
.check { color: var(--accent); font-size: 1rem; }
.dash { color: var(--attenue); }
.val { color: var(--accent); font-size: 0.85rem; white-space: nowrap; }

@media (min-width: 900px) {
  .offres__mobile { display: none; }
  .offres__table-wrap { display: block; }
  .offres__table { width: 100%; border-collapse: collapse; }
  .offres__table caption { text-align: left; }
  .offres__table th, .offres__table td {
    padding: 1.05rem 1.4rem;
    border-top: 1px solid rgba(185, 154, 107, 0.3);
    font-weight: 300; text-align: left; vertical-align: baseline;
  }
  .offres__table thead th {
    border-top: 0;
    font-family: var(--sans); font-size: 0.78rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    padding-bottom: 1.6rem;
  }
  .offres__table tbody th { font-size: 0.95rem; width: 52%; }
  .offres__table td { font-size: 0.92rem; }
  /* La colonne Élite, légèrement mise en valeur */
  .offres__table .col-elite {
    background: rgba(185, 154, 107, 0.07);
    border-left: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
  }
  .offres__table thead .col-elite { border-top: 1px solid var(--accent); }
  .offres__table tr:last-child .col-elite { border-bottom: 1px solid var(--accent); }
}

/* ================================================================
   9. VOTRE PARC TEXTILE — A / B
   ================================================================ */
.parc__blocs { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.parc__bloc {
  border: 1px solid rgba(185, 154, 107, 0.35);
  border-radius: 2px;
  padding: 2.4rem 2rem;
}
.parc__bloc .parc__lettre {
  font-family: var(--serif); font-size: 2.6rem; line-height: 1;
  color: var(--accent); margin-bottom: 1.2rem;
}
.parc__bloc h3 { margin-bottom: 0.9rem; max-width: 18em; }
.parc__bloc p { font-size: 0.98rem; }
@media (min-width: 900px) { .parc__blocs { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* ================================================================
   10. DEUX VOLETS — 4★ / 5★
   ================================================================ */
.volets__tabs {
  display: flex; flex-wrap: wrap; gap: 0;
  border-bottom: 1px solid var(--filet);
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.volets__tab {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 300;
  /* Libellés agrandis : ce sont deux portes d'entrée, pas des étiquettes. */
  font-size: clamp(0.95rem, 1.6vw, 1.2rem); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--attenue);
  padding: 1.1rem 0; margin-right: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  transition: color 0.4s ease;
}
.volets__tab::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.volets__tab.is-active { color: var(--encre-sombre); }
.volets__tab.is-active::after { transform: scaleX(1); }
.volets__tab:hover { color: var(--accent-clair); }

/* Fondu croisé entre volets */
.volet { opacity: 0; transition: opacity 0.6s ease; }
.volet.is-active { opacity: 1; }
.volet__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.1;
  max-width: 22em; margin-bottom: 1.6rem;
}
.volet__texte { margin-bottom: 1.2rem; color: var(--attenue); }
.volet__points { display: grid; grid-template-columns: 1fr; gap: 1.8rem; margin-top: 2.4rem; }
.volet__point { padding-top: 1.2rem; border-top: 1px solid var(--filet); }
.volet__point h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.volet__point p { font-size: 0.95rem; color: var(--attenue); }
@media (min-width: 900px) { .volet__points { grid-template-columns: 1fr 1fr; gap: 2.4rem 4rem; } }

/* ================================================================
   11. NOS VALEURS
   ================================================================ */
.valeurs__grid { display: grid; grid-template-columns: 1fr; }
.valeur { padding: 2.2rem 0; border-top: 1px solid var(--filet); }
.valeur h3 { margin-bottom: 0.7rem; }
.valeur p { font-size: 0.98rem; color: var(--attenue); }
@media (min-width: 900px) { .valeurs__grid { grid-template-columns: 1fr 1fr; gap: 0 5rem; } }

/* ================================================================
   12. LA DÉMARCHE — CINQ ÉTAPES
   ================================================================ */
.etapes {
  list-style: none;
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 2.4rem;
  padding-left: 2rem;
}
/* Filet vertical sur mobile, horizontal sur desktop, qui se trace au défilement */
.etapes__trace {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--accent);
  transform: scaleY(0); transform-origin: 50% 0;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.etapes.in-view .etapes__trace { transform: scaleY(1); }
.etape .etape__num {
  font-family: var(--serif); font-size: 1.7rem; line-height: 1;
  color: var(--accent); margin-bottom: 0.7rem;
}
.etape h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.etape p { font-size: 0.92rem; }
@media (min-width: 900px) {
  .etapes { grid-template-columns: repeat(5, 1fr); gap: 2.5rem; padding-left: 0; padding-top: 2.4rem; }
  .etapes__trace {
    left: 0; right: 0; top: 0; bottom: auto; height: 1px; width: auto;
    transform: scaleX(0); transform-origin: 0 50%;
  }
  .etapes.in-view .etapes__trace { transform: scaleX(1); }
}

/* ================================================================
   13. DEMANDER VOTRE AUDIT — FORMULAIRE
   ================================================================ */
.audit {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 65% 50% at 15% 20%, rgba(185, 154, 107, 0.05), transparent 60%),
    var(--noir);
}
.audit__cols { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) { .audit__cols { grid-template-columns: 5fr 7fr; gap: 6rem; } }

.audit__contenu h3 {
  font-size: 1.35rem; color: var(--accent);
  margin-bottom: 1.1rem;
}
.audit__contenu h3 + ul { margin-bottom: 2.6rem; }
.audit__contenu ul { list-style: none; }
.audit__contenu li {
  padding: 0.75rem 0 0.75rem 1.6rem;
  border-top: 1px solid var(--filet);
  font-size: 0.95rem; position: relative;
}
.audit__contenu li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem;
  width: 0.7rem; height: 1px; background: var(--accent);
}

/* --- Formulaire : champs soulignés, libellés flottants, aucune ombre --- */
.form { display: grid; gap: 2.1rem; }

/* Piège à robots : masqué visuellement, hors tabulation */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form__champ { position: relative; }
.form__champ input,
.form__champ select,
.form__champ textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(237, 234, 228, 0.25);
  border-radius: 0;
  color: var(--encre-sombre);
  font-family: var(--sans); font-weight: 300; font-size: 1rem;
  padding: 0.7rem 0 0.55rem;
  transition: border-color 0.4s ease;
  appearance: none; -webkit-appearance: none;
}
.form__champ select { cursor: pointer; }
.form__champ select option { background: var(--noir); color: var(--encre-sombre); }
.form__champ input:focus,
.form__champ select:focus,
.form__champ textarea:focus {
  outline: none;
  border-bottom-color: var(--accent); /* le filet passe en accent champagne au focus */
}
.form__champ label {
  position: absolute; left: 0; top: 0.7rem;
  font-size: 1rem; color: var(--attenue);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.35s ease, color 0.35s ease;
  transform-origin: 0 0;
}
/* Libellé flottant : remonte quand le champ est rempli ou au focus */
.form__champ input:focus + label,
.form__champ input:not(:placeholder-shown) + label,
.form__champ textarea:focus + label,
.form__champ textarea:not(:placeholder-shown) + label,
.form__champ select:focus + label,
.form__champ select.est-rempli + label {
  transform: translateY(-1.45rem) scale(0.72);
  color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase;
}
/* Flèche fine du select */
.form__champ select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B99A6B' stroke-width='1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.2rem center; }

.form__fieldset { border: 0; }
.form__fieldset legend {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--attenue); margin-bottom: 1rem;
}
.form__radios, .form__checks { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.form__radios label, .form__checks label { cursor: pointer; }
.form__radios input, .form__checks input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.form__radios span, .form__checks span {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(237, 234, 228, 0.25);
  border-radius: 2px;
  font-size: 0.85rem;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}
.form__radios input:checked + span, .form__checks input:checked + span {
  border-color: var(--accent); color: var(--accent-clair);
  background: rgba(185, 154, 107, 0.08);
}
.form__radios input:focus-visible + span, .form__checks input:focus-visible + span {
  outline: 1px solid var(--accent); outline-offset: 3px;
}

.form__consent label { display: flex; gap: 0.9rem; align-items: flex-start; cursor: pointer; font-size: 0.88rem; color: var(--attenue); max-width: 62ch; }
.form__consent input {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 auto;
  width: 18px; height: 18px; margin-top: 0.25rem;
  border: 1px solid rgba(237, 234, 228, 0.4);
  border-radius: 0; cursor: pointer;
  display: grid; place-content: center;
  transition: border-color 0.3s ease;
}
.form__consent input:checked { border-color: var(--accent); }
.form__consent input:checked::before {
  content: "✓"; color: var(--accent); font-size: 0.8rem; line-height: 1;
}

/* Messages d'erreur : sobres, en accent — jamais en rouge vif */
.form__erreur {
  margin-top: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--accent-clair);
  min-height: 0;
}
.form__erreur:empty { display: none; }

.form__submit { justify-self: start; margin-top: 0.5rem; }

/* Confirmation d'envoi */
.form__confirmation {
  align-self: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.form__confirmation.is-visible { opacity: 1; }
.form__confirmation p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.35;
  color: var(--encre-sombre);
  padding-left: 1.8rem; border-left: 1px solid var(--accent);
}

/* ================================================================
   14. PIED DE PAGE
   ================================================================ */
.footer {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 12vh, 8rem) var(--marge) 3rem;
  border-top: 1px solid var(--filet);
}
.footer__filigrane {
  position: absolute; left: 50%; bottom: -0.18em;
  transform: translateX(-50%);
  /* Même police que le mot-marque de la barre de navigation. */
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(3.4rem, 13vw, 13rem); line-height: 1;
  letter-spacing: 0.3em; text-indent: 0.3em;
  color: var(--encre-sombre); opacity: 0.08;
  white-space: nowrap; pointer-events: none; user-select: none;
}
.footer__contenu { position: relative; text-align: center; display: grid; gap: 0.7rem; justify-items: center; }
.footer__ligne1 { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--encre-sombre); }
.footer__ligne2 { font-size: 0.82rem; color: var(--attenue); }
.footer__contact { font-size: 0.9rem; }
.footer__liens { font-size: 0.8rem; color: var(--attenue); margin-top: 1rem; }
.footer__copyright { font-size: 0.72rem; color: var(--attenue); margin-top: 1.6rem; }

/* ---------- Bouton flottant ---------- */
.flottant[hidden] { display: none; }
.flottant {
  position: fixed; right: clamp(1rem, 3vw, 2.4rem); bottom: clamp(1rem, 3vw, 2.4rem);
  z-index: 130;
  font-size: 0.68rem; padding: 0.85rem 1.5rem;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.45s ease;
  pointer-events: none;
}
.flottant.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ================================================================
   ACCESSIBILITÉ — prefers-reduced-motion (non négociable)
   Toutes les animations sont neutralisées, le contenu s'affiche
   immédiatement.
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, [data-split] .mot > span { opacity: 1 !important; transform: none !important; }
  .etapes__trace { transform: none !important; }
  .veil { display: none !important; }
  .grain { animation: none !important; }
  .cursor { display: none !important; }
  .hero__scroll-line { animation: none !important; }
  .flottant { opacity: 1; transform: none; pointer-events: auto; }
}

/* ================================================================
   ACCESSIBILITÉ — contraste AA sur fond clair
   Le champagne (#B99A6B) et le gris atténué (#8E8A82) passent AA
   sur fond noir mais pas sur le blanc de lin : les textes en accent
   ou atténués des sections claires utilisent des déclinaisons
   assombries des mêmes teintes. Les filets décoratifs conservent
   la teinte d'origine.
   ================================================================ */
.section--light .surtitre,
.section--light .mention,
.section--light .dash { color: #6E6A62; }

.section--light .accroche,
.section--light .pilier__num,
.section--light .etape__num,
.section--light .parc__lettre,
.section--light .check,
.section--light .val { color: #7E6335; }

/* ================================================================
   MODERNISATION — défilement fluide, bandeau, finitions
   ================================================================ */

/* --- Défilement fluide : la molette est lissée par script.js ; la mise
       en page et la barre de défilement restent entièrement natives. --- */

/* --- Barre de défilement fine, dans la charte --- */
html { scrollbar-width: thin; scrollbar-color: rgba(185, 154, 107, 0.45) var(--noir); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: rgba(185, 154, 107, 0.45); }
::-webkit-scrollbar-thumb:hover { background: rgba(185, 154, 107, 0.7); }

/* --- Curseur : point central dans l'anneau --- */
@media (hover: hover) and (pointer: fine) {
  .cursor::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 4px; height: 4px; margin: -2px 0 0 -2px;
    border-radius: 50%; background: var(--accent);
  }
}

/* --- Tableau des offres : la ligne survolée s'éclaire --- */
@media (hover: hover) {
  .offres__table tbody tr { transition: background 0.3s ease; }
  .offres__table tbody tr:hover { background: rgba(185, 154, 107, 0.06); }
}

/* --- Grille des textiles : légère élévation au survol --- */
.textile { transition: background 0.4s ease; }
@media (hover: hover) {
  .textile:hover { background: #FBF9F5; }
}

/* --- Piliers et preuves : le filet supérieur s'illumine au survol --- */
@media (hover: hover) {
  .preuve { transition: border-color 0.4s ease; }
  .preuve:hover { border-top-color: var(--accent-clair); }
}

/* ================================================================
   Garde-fous des nouveaux effets
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__fond img { animation: none; }
  .hero__fond, .hero__inner { transform: none !important; opacity: 1 !important; }
  .procede__photo::after { transform: scaleY(0) !important; transition: none; }
  .procede__photo img { transform: none !important; transition: none; }
  .nav.is-cachee { transform: none; }
  .citation.reveal { transform: none; }
}
html.no-js .procede__photo::after { transform: scaleY(0); }
html.no-js .procede__photo img { transform: none; }

/* ================================================================
   REFONTE ÉDITORIALE — codes des maisons hôtelières
   (dominante ivoire, cadres passe-partout, filigranes, hero centré)
   ================================================================ */

/* --- Hero centré --- */
.hero--centre { align-items: center; text-align: center; }
.hero--centre .hero__inner { margin: 0 auto; }
.hero--centre .hero__title { margin: 0 auto; max-width: 14em; }
.hero--centre .hero__title--marque { max-width: 22em; }
.hero--centre .hero__sub { margin-left: auto; margin-right: auto; }
.hero--centre .hero__actions { display: flex; flex-direction: column; align-items: center; }

/* --- Typographie des sections claires : encre chaude, surtitres bronze --- */
.section--light h2 { color: #3A3025; }
.section--light .surtitre { color: #7E6335; }
.section--light .repere__chiffre { color: #7E6335; }
.section--light .repere__precision,
.section--light .procede__bloc p { color: #6E6A62; }

/* --- Cadres passe-partout : un second filet décalé derrière l'image --- */
.cadre { position: relative; margin: 0; }
.cadre img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  border: 1px solid rgba(185, 154, 107, 0.5);
  filter: saturate(0.85);
}
.cadre::before {
  content: ""; position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(185, 154, 107, 0.4);
  pointer-events: none;
}
.cadre--bas::before { inset: -14px 14px 14px -14px; }

/* --- Composition éditoriale de la méthode --- */
.methode { position: relative; }
.methode__editorial {
  display: grid; grid-template-columns: 1fr;
  gap: 3.5rem; align-items: center;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.methode__editorial .cadre { aspect-ratio: 3 / 4; width: min(72vw, 320px); }
.cadre--haut { margin-top: -0.5rem; }
.cadre--bas { justify-self: end; margin-top: 1.5rem; }
.section__head--centre { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--centre h2 { margin-left: auto; margin-right: auto; }
.section__head--centre .accroche { margin-left: auto; margin-right: auto; max-width: 34em; }
@media (min-width: 900px) {
  .methode__editorial { grid-template-columns: 1fr 1.7fr 1fr; gap: 4rem; }
  .methode__editorial .cadre { width: 100%; max-width: 330px; }
  .cadre--haut { margin-top: -3rem; }
  .cadre--bas { margin-top: 3.5rem; }
}

/* --- Mots-filigranes de chapitre --- */
.filigrane-mot {
  position: absolute; right: 1vw; bottom: 0.5rem;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(4.5rem, 13vw, 12rem); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(185, 154, 107, 0.10);
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.offres { position: relative; overflow: hidden; }
.methode { overflow: hidden; }

/* --- Barre au-dessus du menu plein écran : redevient transparente --- */
.nav.nav--menu-ouvert { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; }
.nav.nav--menu-ouvert .nav__brand { color: var(--encre-sombre); }
.nav.nav--menu-ouvert .nav__tel { color: var(--attenue); }


/* Mot-marque en ligne (pied de page) : même police que la barre de navigation. */
.mot-marque {
  font-family: var(--sans); font-weight: 300;
  letter-spacing: 0.24em;
  margin-right: -0.24em; /* absorbe l'espace ajouté après la dernière lettre */
}
/* Au fil d'une phrase, l'interlettrage large deviendrait illisible : on le resserre
   tout en gardant la police du mot-marque. */
.mot-marque--prose { letter-spacing: 0.08em; margin-right: -0.08em; }
