/* ==========================================================================
   La Fabrique by Coco — Studio d'accompagnement travaux
   Direction artistique : créatif, chaleureux, accessible, pédagogique
   Stack cible : WordPress + Elementor + WooCommerce + Amelia + o2switch
   ========================================================================== */

/* -----------------------------
   1. VARIABLES & RESET
   ----------------------------- */
:root {
  --bronze: #A97845;
  --bronze-deep: #7A4A23;
  --bronze-glow: rgba(169, 120, 69, 0.25);
  --noir: #111111;
  --noir-profond: #0c0c0c;
  --blanc-casse: #F6F3EE;
  --lin: #E8DDD0;
  --taupe: #C9B8A5;
  --ink-soft: rgba(17, 17, 17, 0.68);
  --blanc-soft: rgba(246, 243, 238, 0.78);

  --font-titre: 'Syne', 'Helvetica Neue', Arial, sans-serif;
  --font-texte: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft: 0 18px 50px -28px rgba(17, 17, 17, 0.35);
  --shadow-bronze: 0 20px 60px rgba(169, 120, 69, 0.28);

  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 36px;

  --header-height: 88px;
  --transition-base: 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4,
.title-xl, .title-lg, .title-md, .title-sm {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  /* Prévient le débordement horizontal accidentel (sections décoratives,
     formes organiques en position absolute). */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-texte);
  font-size: 17px;
  line-height: 1.75;
  color: var(--noir);
  background: var(--blanc-casse);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

::selection {
  background: var(--bronze);
  color: var(--blanc-casse);
}

/* -----------------------------
   2. TYPOGRAPHIE
   ----------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 700;
  margin: 0 0 0.6em;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.title-xl {
  font-size: clamp(40px, 7.2vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  line-height: 1.0;
}

.title-md {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.1;
}

p {
  margin: 0 0 1.2em;
}

.lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
}

.section-dark .lead {
  color: var(--blanc-soft);
}

.eyebrow {
  font-family: var(--font-texte);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 22px;
}

.section-dark .eyebrow {
  color: var(--taupe);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-texte);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap var(--transition-base), color var(--transition-base);
}

.text-link::after {
  content: "→";
  transition: transform var(--transition-base);
}

.text-link:hover {
  gap: 14px;
  color: var(--bronze-deep);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* -----------------------------
   3. LAYOUT — CONTAINERS & SECTIONS
   ----------------------------- */
.container {
  width: min(1240px, 100% - 64px);
  margin-inline: auto;
}

.wide-container {
  width: min(1480px, 100% - 32px);
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.section-light  { background: var(--blanc-casse); color: var(--noir); }
.section-lin    { background: var(--lin); color: var(--noir); }
.section-dark   { background: var(--noir); color: var(--blanc-casse); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--blanc-casse); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.split-reverse > :first-child { order: 2; }
.split-reverse > :last-child  { order: 1; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head .eyebrow { margin-bottom: 14px; }

/* -----------------------------
   4. BUTTONS
   ----------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-texte);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  animation: shimmer 900ms forwards;
}

.btn-light {
  background: var(--blanc-casse);
  color: var(--noir);
  border-color: var(--blanc-casse);
}
.btn-light:hover,
.btn-light:focus-visible {
  background: var(--bronze);
  color: var(--blanc-casse);
  border-color: var(--bronze);
  box-shadow: var(--shadow-bronze);
}

.btn-dark {
  background: var(--noir);
  color: var(--blanc-casse);
  border-color: var(--noir);
}
.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  color: var(--blanc-casse);
  box-shadow: var(--shadow-bronze);
}

.btn-bronze {
  background: var(--bronze);
  color: var(--blanc-casse);
  border-color: var(--bronze);
}
.btn-bronze:hover,
.btn-bronze:focus-visible {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  color: var(--blanc-casse);
  box-shadow: var(--shadow-bronze);
}

.btn-ghost {
  background: transparent;
  color: var(--bronze);
  border-color: rgba(169, 120, 69, 0.5);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(169, 120, 69, 0.08);
  border-color: var(--bronze);
  color: var(--bronze-deep, #7A4A23);
}

.btn-outline {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-outline:hover {
  background: var(--noir);
  color: var(--blanc-casse);
}

.btn-arrow::after { display: none; }
.btn-arrow .arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}
.btn-arrow:hover .arrow {
  transform: translateX(6px);
}

/* -----------------------------
   5. CUSTOM CURSOR
   ----------------------------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--bronze);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 240ms ease, height 240ms ease, background 240ms ease, opacity 200ms ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-hover {
  width: 32px;
  height: 32px;
  background: rgba(169, 120, 69, 0.35);
}

@media (hover: none) {
  .cursor-dot { display: none; }
}

/* -----------------------------
   6. HEADER & NAV
   ----------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 22px 0;
  transition: background var(--transition-base), backdrop-filter var(--transition-base), padding var(--transition-base), border-color var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(26, 20, 15, 0.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 14px 0;
  border-bottom-color: rgba(169, 120, 69, 0.2);
}

.nav-shell {
  width: min(1320px, 100% - 64px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  font-family: var(--font-texte);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(246, 243, 238, 0.85);
  padding: 8px 16px;
  transition: color var(--transition-base);
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width var(--transition-base);
}

.main-nav a:not(.nav-cta):hover,
.main-nav a.is-active {
  color: var(--bronze);
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--blanc-casse) !important;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.nav-cta:hover {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  box-shadow: var(--shadow-bronze);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--blanc-casse);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* -----------------------------
   7. HERO
   ----------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 60px) 0 80px;
  overflow: hidden;
  color: var(--blanc-casse);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 88% 12%, rgba(169, 120, 69, 0.35), transparent 70%),
    linear-gradient(95deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.45) 55%, rgba(17, 17, 17, 0.18) 100%);
}

.hero-content {
  width: min(1240px, 100% - 64px);
  margin-inline: auto;
  position: relative;
  max-width: 920px;
  padding-left: 28px;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 1px;
  height: 60px;
  background: var(--bronze);
}

.hero-content .eyebrow {
  color: var(--taupe);
}

.hero-content .title-xl {
  margin-bottom: 24px;
}

.hero-content .lead {
  color: var(--blanc-soft);
  font-size: clamp(17px, 1.4vw, 22px);
  max-width: 620px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-badges {
  position: absolute;
  right: clamp(32px, 5vw, 80px);
  bottom: clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(169, 120, 69, 0.55);
  background: rgba(17, 17, 17, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bronze);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Word reveal for hero h1 */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.word.is-revealed {
  animation: wordReveal 720ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Compact hero (legal + sub pages) */
.page-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 80px) 0 70px;
  overflow: hidden;
  color: var(--blanc-casse);
  isolation: isolate;
}

.page-hero.compact { min-height: 52vh; }

.page-hero .hero-media,
.page-hero .hero-veil {
  position: absolute;
  inset: 0;
}

.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-veil {
  background:
    radial-gradient(70% 50% at 80% 20%, rgba(169, 120, 69, 0.28), transparent 70%),
    linear-gradient(110deg, rgba(17, 17, 17, 0.78) 0%, rgba(17, 17, 17, 0.55) 60%, rgba(17, 17, 17, 0.3) 100%);
}

.page-hero.is-warm .hero-veil {
  background:
    radial-gradient(80% 60% at 70% 20%, rgba(169, 120, 69, 0.4), transparent 70%),
    linear-gradient(110deg, rgba(17, 17, 17, 0.55) 0%, rgba(122, 74, 35, 0.35) 60%, rgba(17, 17, 17, 0.25) 100%);
}

.page-hero .hero-content {
  width: min(1240px, 100% - 64px);
  /* Aligné à gauche comme sur l'accueil et "à propos" */
  margin-left: max(48px, calc((100vw - 1280px) / 2));
  margin-right: auto;
  max-width: 720px;
  text-align: left;
}

/* Titre H1 des page-hero : même calibrage que l'accueil
   (.page-index .hero-title) pour avoir un rendu uniforme sur toutes les pages. */
.page-hero .title-xl {
  font-size: clamp(28px, 3.4vw, 52px) !important;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-align: left;
}
@media (max-width: 760px) {
  .page-hero .title-xl {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.15;
  }
}

.page-hero .hero-content .lead {
  color: var(--blanc-soft);
  font-size: clamp(16px, 1.2vw, 19px);
}

/* -----------------------------
   8. PROOF BAR (Marquee)
   ----------------------------- */
.proofbar {
  background: var(--blanc-casse);
  border-top: 1px solid rgba(169, 120, 69, 0.18);
  border-bottom: 1px solid rgba(169, 120, 69, 0.18);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.proof-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.proof-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-texte);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
}

.proof-track span::after {
  content: "✦";
  color: var(--bronze);
  margin-left: 18px;
}

.proofbar:hover .proof-track {
  animation-play-state: paused;
}

/* -----------------------------
   9. CARDS (premium, project, value, note, price, etc.)
   ----------------------------- */

/* Premium card (services accueil — fond noir) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.premium-card {
  position: relative;
  padding: 38px 32px 32px;
  border-radius: var(--radius-m);
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 320px;
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  transform-style: preserve-3d;
  will-change: transform;
}

.premium-card span:not(.eyebrow) {
  display: inline-block;
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--bronze);
  margin-bottom: 22px;
}

.premium-card h3 {
  color: var(--blanc-casse);
  font-size: 28px;
  margin-bottom: 14px;
}

.premium-card p {
  color: var(--blanc-soft);
  margin: 0;
}

.premium-card:hover {
  border-color: rgba(169, 120, 69, 0.55);
  background: rgba(169, 120, 69, 0.06);
  box-shadow: var(--shadow-bronze);
}

/* Témoignages */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.testimonial-card {
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius-m);
  background: #fff;
  border: 1px solid rgba(169, 120, 69, 0.16);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -40px rgba(169, 120, 69, 0.45);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: var(--blanc-casse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-texte);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--noir);
  position: relative;
  padding-left: 22px;
}

.testimonial-card blockquote::before {
  content: "\201C";
  position: absolute;
  left: -2px;
  top: -18px;
  font-family: var(--font-titre);
  font-style: normal;
  font-size: 64px;
  color: var(--bronze);
  opacity: 0.4;
  line-height: 1;
}

.testimonial-card .eyebrow {
  margin: 0;
}

/* Process steps + orbit (méthode accueil) */
.method-showcase {
  background: linear-gradient(180deg, var(--blanc-casse) 0%, var(--lin) 100%);
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.method-copy { max-width: 520px; }

.method-orbit {
  position: relative;
  justify-self: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(169, 120, 69, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(169, 120, 69, 0.08), transparent 70%);
}

.method-orbit img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(169, 120, 69, 0.4));
  animation: float 5s ease-in-out infinite;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 14px rgba(169, 120, 69, 0.6);
}

.dot-one   { animation: orbitOne 8s linear infinite; }
.dot-two   { animation: orbitTwo 12s linear infinite; background: var(--bronze-deep); }
.dot-three { animation: pulse 3s ease-in-out infinite; top: 12%; left: 18%; }

.method-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 72px);
}

.process-step {
  padding: 28px 24px;
  border-radius: var(--radius-m);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 120, 69, 0.4);
  box-shadow: var(--shadow-soft);
}

.process-step span {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--bronze);
  display: inline-block;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* CTA panel */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 6vw, 80px);
  border-radius: var(--radius-l);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(169, 120, 69, 0.22), transparent 70%),
    linear-gradient(180deg, #181818, #0e0e0e);
  border: 1px solid rgba(169, 120, 69, 0.25);
}

.cta-panel img {
  width: 72px;
  margin-bottom: 22px;
  animation: float 5s ease-in-out infinite;
}

.cta-panel h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 16px;
}

.cta-panel p {
  color: var(--blanc-soft);
  margin: 0;
  max-width: 52ch;
}

/* -----------------------------
   10. SIGNATURE / SPLIT IMAGE
   ----------------------------- */
.signature-split {
  position: relative;
}

.signature-split .image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(169, 120, 69, 0.25), transparent 60%),
    linear-gradient(160deg, var(--lin), var(--taupe));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.signature-split .image-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(169, 120, 69, 0.35);
  border-radius: calc(var(--radius-l) - 14px);
  pointer-events: none;
}

.signature-split .image-frame::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50% 60% 40% 50% / 50% 40% 60% 50%;
  border: 1px solid rgba(169, 120, 69, 0.4);
  animation: float 6s ease-in-out infinite;
}

.signature-split .image-frame img {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(169, 120, 69, 0.5));
  animation: float 5s ease-in-out infinite;
}

.signature-blob {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -160px;
  border: 1px solid rgba(169, 120, 69, 0.25);
  border-radius: 56% 44% 62% 38% / 48% 52% 48% 52%;
  z-index: 0;
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}

/* -----------------------------
   11. GALLERY
   ----------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--lin);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figure.large { grid-row: span 2; }
.gallery figure.wide  { grid-column: span 2; }

.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--blanc-casse);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 56px);
}

/* -----------------------------
   12. PLACEHOLDERS (img placeholders CSS only)
   ----------------------------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--lin);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px dashed rgba(169, 120, 69, 0.35);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.img-placeholder.is-pattern-grid {
  background-color: var(--lin);
  background-image:
    repeating-linear-gradient(0deg, rgba(169, 120, 69, 0.1) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(169, 120, 69, 0.1) 0 1px, transparent 1px 28px);
}

.img-placeholder.is-pattern-organic {
  background:
    radial-gradient(120% 80% at 30% 30%, rgba(169, 120, 69, 0.18), transparent 60%),
    radial-gradient(80% 100% at 80% 80%, rgba(201, 184, 165, 0.4), transparent 60%),
    var(--lin);
}

.img-placeholder.is-pattern-chevron {
  background-color: var(--lin);
  background-image: repeating-linear-gradient(45deg, rgba(169, 120, 69, 0.08) 0 8px, transparent 8px 28px);
}

.img-placeholder .ph-icon {
  font-size: 30px;
  color: var(--bronze);
  opacity: 0.55;
}

.img-placeholder .ph-eyebrow {
  font-family: var(--font-texte);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

.img-placeholder .ph-label {
  font-family: var(--font-texte);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  padding: 0 16px;
}

/* -----------------------------
   13. INTERNAL NAV (accompagnements) — v2
   ----------------------------- */
.internal-nav-wrapper {
  position: sticky;
  top: calc(var(--header-height) - 12px);
  z-index: 30;
  overflow: hidden;
}

.internal-nav-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, rgba(246, 243, 238, 0.95), transparent);
  pointer-events: none;
  display: none;
}

.internal-nav {
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: none;
  border-bottom: 1px solid rgba(169, 120, 69, 0.12);
  padding: 0;
}

.internal-nav-inner {
  width: min(1240px, 100% - 64px);
  margin-inline: auto;
  display: flex;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.internal-nav-inner::-webkit-scrollbar { display: none; }

.internal-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 18px 24px;
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.internal-nav a::after { display: none; }

.internal-nav a.is-active,
.internal-nav a:hover {
  color: var(--bronze);
  border-bottom-color: var(--bronze);
}

/* -----------------------------
   14. ACCOMPAGNEMENTS — sections différenciées
   ----------------------------- */
.section-placo {
  background: var(--blanc-casse);
  position: relative;
}
.section-placo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.05) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.05) 0 1px, transparent 1px 80px);
  pointer-events: none;
  opacity: 0.7;
}
.section-placo > .container { position: relative; }

.section-beton {
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(232, 221, 208, 0.85), transparent 65%),
    radial-gradient(70% 60% at 90% 80%, rgba(201, 184, 165, 0.6), transparent 65%),
    var(--blanc-casse);
}

.section-coaching {
  background:
    radial-gradient(70% 50% at 80% 20%, rgba(169, 120, 69, 0.16), transparent 70%),
    var(--lin);
}

/* Visuel placo CSS-only */
.placo-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-l);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 30px;
}

.placo-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(169, 120, 69, 0.4);
  border-radius: calc(var(--radius-l) - 14px);
}

.placo-visual .line-h,
.placo-visual .line-v {
  position: absolute;
  background: var(--bronze);
}

.placo-visual .line-h {
  left: 22%;
  right: 22%;
  height: 1px;
  top: 50%;
}

.placo-visual .line-v {
  top: 28%;
  bottom: 28%;
  width: 1px;
  left: 62%;
}

.placo-visual .dot {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: var(--bronze);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(169, 120, 69, 0.15);
}

.placo-visual .dim {
  position: absolute;
  font-family: var(--font-texte);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.placo-visual .dim-top   { top: 14px; left: 50%; transform: translateX(-50%); }
.placo-visual .dim-right { right: 0; top: 50%; transform-origin: right center; transform: translateY(-50%) rotate(90deg); }

/* Visuel béton CSS-only */
.beton-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: linear-gradient(160deg, var(--taupe), #d4c4af);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.beton-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(122, 74, 35, 0.25);
  border-radius: inherit;
}

.beton-visual .block {
  background: var(--blanc-casse);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.12);
  position: absolute;
}

.beton-visual .block-1    { width: 50%; height: 18%; bottom: 28%; left: 25%; border-radius: 6px; }
.beton-visual .block-2    { width: 26%; height: 28%; bottom: 28%; left: 25%; border-radius: 6px 6px 0 0; background: #fafaf8; }
.beton-visual .block-3    { width: 18%; height: 35%; bottom: 28%; right: 25%; border-radius: 6px 6px 0 0; background: #efe7da; }
.beton-visual .block-base { width: 60%; height: 8%; bottom: 20%; left: 20%; border-radius: 4px; background: #b8a48b; }

/* Coaching panel */
.coaching-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.coaching-panel {
  background:
    radial-gradient(80% 70% at 0% 0%, rgba(169, 120, 69, 0.22), transparent 60%),
    linear-gradient(180deg, #181818, var(--noir-profond));
  color: var(--blanc-casse);
  padding: clamp(40px, 5vw, 60px);
  border-radius: var(--radius-l);
  border: 1px solid rgba(169, 120, 69, 0.25);
}

.coaching-panel .eyebrow { color: var(--taupe); }
.coaching-panel h2 { color: var(--blanc-casse); }
.coaching-panel p { color: var(--blanc-soft); }

.coaching-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(169, 120, 69, 0.55);
  background: rgba(169, 120, 69, 0.1);
  color: var(--bronze);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 14px 0 30px;
}

.notes-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note-card {
  padding: 28px 30px;
  border-radius: var(--radius-m);
  background: var(--blanc-casse);
  border: 1px solid rgba(17, 17, 17, 0.07);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.note-card:hover {
  transform: translateX(8px);
  border-color: var(--bronze);
}

.note-card span {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--bronze);
}

.note-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.note-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

/* RDV options */
.rdv-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.rdv-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rdv-card {
  padding: 32px 30px;
  border-radius: var(--radius-m);
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.rdv-card:hover {
  transform: translateY(-6px);
  border-color: var(--bronze);
  box-shadow: var(--shadow-bronze);
}

.rdv-card h3 {
  color: var(--blanc-casse);
  font-size: 22px;
  margin-bottom: 8px;
}

.rdv-card p {
  color: var(--blanc-soft);
  margin: 0;
  font-size: 15px;
}

.rdv-card .price-tag {
  font-family: var(--font-titre);
  font-size: 26px;
  color: var(--bronze);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Tarifs section */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
}

.price-card {
  padding: 36px 30px;
  border-radius: var(--radius-m);
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--bronze);
}

.price-card h3 {
  color: var(--blanc-casse);
  font-size: 20px;
  margin: 0;
}

.price-card .amount {
  font-family: var(--font-titre);
  font-size: 30px;
  font-weight: 700;
  color: var(--bronze);
  letter-spacing: -0.01em;
}

.price-card p {
  color: var(--blanc-soft);
  font-size: 14px;
  margin: 0;
}

.price-bonus {
  margin-top: clamp(32px, 4vw, 56px);
  padding: 30px 36px;
  border-radius: var(--radius-m);
  background: rgba(169, 120, 69, 0.1);
  border: 1px solid rgba(169, 120, 69, 0.3);
  color: var(--blanc-soft);
  font-size: 16px;
  text-align: center;
}

/* -----------------------------
   15. REALISATIONS — filtres + cards + progress
   ----------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-deep));
  width: 0%;
  z-index: 100;
  transition: width 80ms linear;
}

.filtres-galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.filtres-galerie .filtre {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: transparent;
  color: var(--noir);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

/* Mobile : scroll horizontal au lieu de wrap (les 5 filtres en pilule
   restent sur une seule ligne et l'utilisateur swipe pour voir le reste). */
@media (max-width: 720px) {
  .filtres-galerie {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 12px;
    margin-left: -16px;
    margin-right: -16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .filtres-galerie::-webkit-scrollbar { display: none; }
  .filtres-galerie .filtre {
    scroll-snap-align: start;
    padding: 10px 18px;
    font-size: 12.5px;
  }
}

.filtres-galerie .filtre:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.filtres-galerie .filtre.is-active {
  background: var(--noir);
  color: var(--blanc-casse);
  border-color: var(--noir);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-m);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow var(--transition-base), opacity 400ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -40px rgba(169, 120, 69, 0.45);
}

.project-card.is-hidden {
  display: none;
}

.project-card.is-filtering {
  opacity: 0;
  transform: scale(0.95);
}

.project-card figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--lin, #E8DDD0);
}

.project-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Quelques projets sont en portrait marqué : on bascule en contain pour
   voir TOUT le contenu, avec un léger fond lin comme passe-partout. */
.project-card[data-fit="contain"] figure img,
.project-card[data-fit="contain"] .aa-apres img,
.project-card[data-fit="contain"] .aa-avant img {
  object-fit: contain;
}

.project-card:hover figure img {
  transform: scale(1.05);
}

.project-card .card-info {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card .card-info .eyebrow { margin: 0; }

.project-card h3 {
  font-size: 22px;
  margin: 0;
}

.project-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

/* -----------------------------
   16. À PROPOS — histoire éditoriale
   ----------------------------- */
.story-content {
  max-width: 760px;
  margin: 0 auto;
}

.story-act {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.story-act .eyebrow { margin-bottom: 12px; }

.story-act p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.8;
  color: var(--noir);
}

.story-quote {
  margin: clamp(48px, 6vw, 80px) 0;
  padding: 40px 24px;
  border-top: 1px solid rgba(169, 120, 69, 0.35);
  border-bottom: 1px solid rgba(169, 120, 69, 0.35);
  text-align: center;
  font-family: var(--font-titre);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--bronze);
  letter-spacing: -0.01em;
}

.portrait-placeholder {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  background: var(--lin);
  border: 1px dashed rgba(169, 120, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portrait-placeholder img {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(169, 120, 69, 0.45));
  animation: float 6s ease-in-out infinite;
}

.portrait-note {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.value-card {
  padding: 36px 32px;
  border-radius: var(--radius-m);
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.12);
  transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--bronze);
  background: rgba(169, 120, 69, 0.07);
}

.value-card span {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--bronze);
  display: inline-block;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--blanc-casse);
  font-size: 24px;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--blanc-soft);
  margin: 0;
}

.reasons-block {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin: clamp(28px, 4vw, 48px) 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reasons-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  padding: 18px 24px;
  background: #fff;
  border-radius: var(--radius-s);
  border: 1px solid rgba(169, 120, 69, 0.15);
}

.reasons-list li::before {
  content: "→";
  color: var(--bronze);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

/* -----------------------------
   17. CONTACT / RESERVATION
   ----------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-aside {
  padding: clamp(36px, 4vw, 48px);
  border-radius: var(--radius-l);
  background:
    radial-gradient(80% 80% at 0% 0%, rgba(169, 120, 69, 0.18), transparent 60%),
    linear-gradient(180deg, #fff, var(--blanc-casse));
  border: 1px solid rgba(169, 120, 69, 0.18);
  box-shadow: var(--shadow-soft);
}

.contact-aside img {
  width: 64px;
  margin-bottom: 18px;
}

.contact-aside h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 14px;
}

.contact-aside p { color: var(--ink-soft); }

.contact-infos {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-infos a,
.contact-infos li {
  font-size: 15px;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-infos a:hover { color: var(--bronze); }

.form-shell {
  background: #fff;
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--radius-l);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.is-full { grid-column: 1 / -1; }

.form-field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: var(--blanc-casse);
  font-family: var(--font-texte);
  font-size: 15px;
  color: var(--noir);
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(169, 120, 69, 0.15);
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

/* FAQ */
.faq-stack {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-m);
  border: 1px solid rgba(169, 120, 69, 0.18);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item[open] {
  border-color: var(--bronze);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--noir);
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 26px;
  color: var(--bronze);
  transition: transform var(--transition-base);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--ink-soft);
}

/* -----------------------------
   18. LEGAL PAGES
   ----------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-titre);
  font-size: 28px;
  margin: 36px 0 14px;
}

.legal-content h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  margin: 24px 0 10px;
  color: var(--bronze-deep, #7A4A23);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.legal-content ul {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 18px;
  padding-left: 1.4em;
}
.legal-content ul li {
  margin-bottom: 6px;
}
.legal-content ul li::marker {
  color: var(--bronze, #A97845);
}

.legal-content a {
  color: var(--bronze, #A97845);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-content a:hover {
  color: var(--bronze-deep, #7A4A23);
}

.legal-content strong { color: var(--noir, #111); font-weight: 600; }

.legal-meta {
  font-size: 13.5px !important;
  color: var(--bronze, #A97845) !important;
  letter-spacing: 0.04em;
  margin: 0 0 32px !important;
}

.legal-disclaimer {
  margin-top: 48px !important;
  padding: 16px 20px;
  background: rgba(169, 120, 69, 0.08);
  border-left: 3px solid var(--bronze, #A97845);
  border-radius: 4px;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: var(--ink-soft) !important;
}

/* -----------------------------
   19. FOOTER
   ----------------------------- */
.site-footer {
  background: var(--noir-profond);
  color: var(--blanc-soft);
  padding: 52px 0 24px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 120, 69, 0.6), transparent);
}

.footer-curve {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(169, 120, 69, 0.1);
  right: -240px;
  top: -240px;
  pointer-events: none;
}

.footer-inner {
  width: min(1360px, 100% - 64px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.7fr 1.6fr;
  gap: 80px;
  position: relative;
}

.footer-brand-block img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-block p {
  color: var(--blanc-soft);
  font-size: 13px;
  max-width: 36ch;
  margin-bottom: 18px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(169, 120, 69, 0.4);
  color: var(--bronze);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition-base), color var(--transition-base);
}

.instagram-link:hover {
  background: var(--bronze);
  color: var(--blanc-casse);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-columns h3 {
  font-family: var(--font-titre);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blanc-casse);
  margin: 0 0 14px;
}

.footer-columns a,
.footer-columns span {
  display: block;
  font-size: 13px;
  color: var(--blanc-soft);
  margin-bottom: 8px;
  transition: color var(--transition-base);
}

.footer-columns a:hover { color: var(--bronze); }

.footer-bottom {
  width: min(1360px, 100% - 64px);
  margin: 36px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 243, 238, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, 0.45);
}

/* -----------------------------
   20. REVEAL ON SCROLL
   ----------------------------- */
/* v6.4 — Système reveal Rubi : split-line + variantes directionnelles + scale + card */

/* .reveal — translation verticale simple */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Split-line : titres dont chaque ligne sort du bas avec overflow:hidden mask */
.split-line-wrap {
  overflow: hidden;
  display: block;
}
.split-line {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.split-line.is-visible { transform: translateY(0); }
.split-line-wrap:nth-child(2) .split-line { transition-delay: 120ms; }
.split-line-wrap:nth-child(3) .split-line { transition-delay: 240ms; }
.split-line-wrap:nth-child(4) .split-line { transition-delay: 360ms; }

/* Reveal-card — translation + légère rotation de redressement */
.reveal-card {
  opacity: 0;
  transform: translateY(50px) rotate(1deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-card.is-visible { opacity: 1; transform: translateY(0) rotate(0deg); }
.reveal-card:nth-child(2) { transition-delay: 100ms; }
.reveal-card:nth-child(3) { transition-delay: 200ms; }
.reveal-card:nth-child(4) { transition-delay: 300ms; }
.reveal-card:nth-child(5) { transition-delay: 400ms; }
.reveal-card:nth-child(6) { transition-delay: 500ms; }

/* Reveal-left — depuis la gauche */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

/* Reveal-right — depuis la droite */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* Reveal-scale — pour les images */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* -----------------------------
   21. KEYFRAMES
   ----------------------------- */
@keyframes orbitOne {
  from { transform: rotate(0deg) translateX(94px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(94px) rotate(-360deg); }
}
@keyframes orbitTwo {
  from { transform: rotate(0deg) translateX(64px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(64px) rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}
@keyframes shimmer {
  from { transform: translateX(-120%) skewX(-12deg); }
  to   { transform: translateX(220%) skewX(-12deg); }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes bronzeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(169, 120, 69, 0.2); }
  50%       { box-shadow: 0 0 40px rgba(169, 120, 69, 0.45); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   23. CORRECTIONS V2 — bg-shapes, prestations refresh, témoignages asymétriques,
       méthode timeline, coaching bento, prix-inline, avant/après,
       chiffres animés, citation principale
   ========================================================================== */

/* --- 23.1 — Background shapes animées --- */
.bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-shape,
.bg-shape-2,
.bg-shape-3 {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  opacity: 0.06;
  animation: morphShape 18s ease-in-out infinite alternate;
  will-change: transform, border-radius;
}

.bg-shape-2 {
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  animation: morphShape 24s ease-in-out infinite alternate-reverse;
}

.bg-shape-3 {
  border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
  animation: morphShape 20s ease-in-out infinite alternate;
  animation-delay: -8s;
}

.section-light .bg-shape,
.section-light .bg-shape-2,
.section-light .bg-shape-3 { background: var(--bronze); }

.section-dark .bg-shape,
.section-dark .bg-shape-2,
.section-dark .bg-shape-3 { background: #fff; opacity: 0.04; }

.section-lin .bg-shape,
.section-lin .bg-shape-2,
.section-lin .bg-shape-3 { background: var(--bronze-deep); opacity: 0.08; }

/* Toutes les sections doivent passer en relative + isolation pour que bg-shapes restent en fond */
.section > .container,
.section > .wide-container,
.section > .section-head { position: relative; z-index: 1; }

@keyframes morphShape {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  33%  { transform: translate(2%, 1.5%) scale(1.04) rotate(2deg); border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%  { transform: translate(-1.5%, 2%) scale(0.97) rotate(-1.5deg); border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
  100% { transform: translate(1%, -1%) scale(1.02) rotate(1deg); border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%; }
}

/* --- 23.2 — Hero recentré (badges supprimés côté HTML) --- */
.hero-content {
  max-width: 920px;
  padding-left: 28px;
}

/* --- 23.3 — Prestations refresh (fond lin, cards ouvertes) --- */
.section-prestations {
  background: var(--lin);
  color: var(--noir);
  position: relative;
  overflow: hidden;
}
.section-prestations h2,
.section-prestations h3 { color: var(--noir); }
.section-prestations .eyebrow { color: var(--bronze-deep); }
.section-prestations .lead { color: var(--ink-soft); }

.prestation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
}

.prestation-card {
  position: relative;
  background: var(--blanc-casse);
  border: 1px solid rgba(169, 120, 69, 0.15);
  border-radius: 18px;
  padding: 40px 36px 32px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.prestation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--bronze);
  transition: height 0.4s ease;
}

.prestation-card:hover::before { height: 100%; }

.prestation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(169, 120, 69, 0.15);
}

.prestation-num {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-titre);
  font-size: 120px;
  font-weight: 800;
  color: rgba(169, 120, 69, 0.07);
  line-height: 1;
  pointer-events: none;
}

.prestation-card h3 {
  font-family: var(--font-titre);
  font-size: 26px;
  margin: 0;
}

.prestation-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.prestation-card .text-link {
  margin-top: auto;
}

/* --- 23.4 — Témoignages asymétriques --- */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  align-items: start;
}

.temoignage-card {
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  padding: 48px 32px 32px;
  position: relative;
  border: none;
  box-shadow: 0 8px 40px rgba(17, 17, 17, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temoignage-card:nth-child(2) {
  border-radius: 4px 20px 4px 20px;
  transform: translateY(16px);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(169, 120, 69, 0.18);
}

.temoignage-card:nth-child(2):hover {
  transform: translateY(12px);
}

.temoignage-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-titre);
  font-size: 80px;
  color: var(--bronze);
  opacity: 0.2;
  line-height: 1;
}

.temoignage-citation {
  font-family: var(--font-titre);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--noir);
  margin: 0;
}

.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(169, 120, 69, 0.2);
}

.temoignage-auteur-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: var(--blanc-casse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.temoignage-auteur-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.temoignage-auteur-info strong {
  font-family: var(--font-texte);
  font-size: 14px;
  font-weight: 500;
  color: var(--noir);
}

.temoignage-auteur-info span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* --- 23.5 — Réalisations mini : texture + courbes --- */
.section-realisations-mini {
  background:
    radial-gradient(ellipse 80% 60% at 15% 80%, rgba(169, 120, 69, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201, 184, 165, 0.25), transparent),
    var(--blanc-casse);
  position: relative;
  overflow: hidden;
}

.section-realisations-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100,200 Q400,50 900,300 Q1400,500 1800,200' stroke='rgba(169,120,69,0.08)' stroke-width='1' fill='none'/%3E%3Cpath d='M-100,400 Q300,200 800,450 Q1300,650 1800,350' stroke='rgba(169,120,69,0.06)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section-realisations-mini > .container,
.section-realisations-mini > .wide-container {
  position: relative;
  z-index: 1;
}

.section-realisations-mini .gallery figure {
  border-radius: 16px 4px 16px 4px;
}

.section-realisations-mini .gallery figure:nth-child(2) {
  border-radius: 4px 16px 4px 16px;
}

.section-realisations-mini .gallery figure:nth-child(4) {
  border-radius: 16px 4px 16px 4px;
}

/* --- 23.6 — Section Méthode — timeline horizontale + slide-in --- */
.section-methode {
  background: linear-gradient(160deg, var(--blanc-casse) 0%, var(--lin) 100%);
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
  position: relative;
}

.methode-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.methode-header h2 { margin: 0; }

/* v6.5 — anciennes règles méthode timeline retirées (remplacé par layout polaroid avec path SVG) */

.methode-step {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(169, 120, 69, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}

.methode-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.methode-step:hover {
  box-shadow: 0 16px 48px rgba(169, 120, 69, 0.15);
  transform: translateY(-4px);
}

.methode-step .step-num {
  font-family: var(--font-titre);
  font-size: 13px;
  font-weight: 700;
  color: var(--bronze);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.methode-step h3 {
  font-family: var(--font-titre);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.1;
}

.methode-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* --- 23.7 — CTA final v6.5 — fond noir profond (séparation forte avec témoignages lin) --- */
.section-cta-final {
  background:
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(169, 120, 69, 0.22), transparent 70%),
    linear-gradient(135deg, var(--noir) 0%, var(--noir-profond) 100%);
  padding: clamp(80px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(169, 120, 69, 0.18);
}

/* Trait bronze décoratif en haut pour marquer la transition */
.section-cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}

.cta-panel-open {
  background: transparent;
  border: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-panel-open h2 {
  font-family: var(--font-titre);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  color: var(--blanc-casse);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}

.cta-panel-open .eyebrow { color: var(--taupe); }

.cta-panel-open p {
  color: var(--blanc-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
  margin-top: 20px;
}

.btn-cta-main {
  background: var(--blanc-casse);
  color: var(--noir);
  border: 1px solid var(--blanc-casse);
  border-radius: 999px;
  padding: 18px 36px;
  font-family: var(--font-texte);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.btn-cta-main:hover,
.btn-cta-main:focus-visible {
  background: var(--bronze);
  color: var(--blanc-casse);
  border-color: var(--bronze);
  transform: translateY(-3px);
}

/* --- 23.8 — Section Coaching bento (sortir du noir) --- */
.section-coaching-bento {
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(201, 184, 165, 0.3), transparent),
    linear-gradient(160deg, var(--blanc-casse), var(--lin));
  position: relative;
  overflow: hidden;
}

.coaching-intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.coaching-intro h2 { margin-bottom: 18px; }

/* v6.7 : 2 colonnes — main bronze à gauche, stack 3 étapes à droite avec hauteur naturelle */
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.coaching-main {
  background: var(--noir);
  color: var(--blanc-casse);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* v6.7 : contenu en haut, bouton poussé en bas */
  gap: 16px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

/* Eyebrow en haut de la card bronze */
.coaching-main .eyebrow {
  margin: 0 0 4px;
  color: var(--taupe);
}

/* Le bouton coaching-cta : pleine largeur + plus grand + poussé en bas */
.coaching-main .coaching-cta {
  align-self: stretch;
  margin-top: auto;
  justify-content: center;
  padding: 20px 32px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.coaching-etapes-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coaching-main::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 120, 69, 0.3), transparent 70%);
  pointer-events: none;
}

.coaching-main h3 {
  color: var(--blanc-casse);
  font-size: 22px;
  margin: 0;
}

.coaching-main p {
  color: var(--blanc-soft);
  margin: 0;
  font-size: 15px;
}

.coaching-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(169, 120, 69, 0.25);
  border: 1px solid rgba(169, 120, 69, 0.4);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-texte);
  font-size: 14px;
  font-weight: 500;
  color: var(--taupe);
  width: fit-content;
}

.coaching-price-badge .sep { opacity: 0.5; }

.coaching-etape {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(169, 120, 69, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-etape:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(169, 120, 69, 0.12);
}

.etape-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--bronze);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-titre);
}

.coaching-etape h3 {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
}

.coaching-etape p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* --- 23.9 — Prix intégrés (badge inline sous chaque prestation) --- */
.prix-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 12px 20px;
  background: rgba(169, 120, 69, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(169, 120, 69, 0.25);
}

/* v6.7 : espace explicite entre prix-inline et le bouton CTA qui suit */
.prix-inline + .hero-actions {
  margin-top: 8px;
}

.prix-label {
  font-family: var(--font-texte);
  font-size: 12px;
  color: var(--bronze);
  font-weight: 500;
}

.prix-montant {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 700;
  color: var(--noir);
  letter-spacing: -0.01em;
}

.prix-detail {
  font-family: var(--font-texte);
  font-size: 12px;
  color: var(--ink-soft);
}

.section-dark .prix-inline {
  background: rgba(169, 120, 69, 0.15);
  border-color: rgba(169, 120, 69, 0.35);
}
.section-dark .prix-montant { color: var(--blanc-casse); }
.section-dark .prix-detail { color: var(--blanc-soft); }

/* --- 23.10 — Avant/après slider --- */
.project-card.avant-apres figure {
  padding: 0;
  background: transparent;
  /* Carré : meilleur compromis entre photos portrait et paysage */
  aspect-ratio: 1 / 1;
}

.aa-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.aa-apres img,
.aa-avant img {
  object-position: center;
}

.aa-apres,
.aa-avant {
  position: absolute;
  inset: 0;
}

.aa-apres img,
.aa-avant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.aa-apres .img-placeholder,
.aa-avant .img-placeholder {
  border-radius: 0;
}

.aa-avant {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.08s linear;
}

.aa-avant .img-placeholder {
  background-color: var(--taupe);
}
.aa-avant .img-placeholder.is-pattern-grid {
  background-color: var(--taupe);
}

.aa-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.aa-line {
  width: 2px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  position: absolute;
}

.aa-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--noir);
  font-weight: 700;
  font-family: var(--font-texte);
}

.aa-tag {
  position: absolute;
  top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.7);
  color: var(--blanc-casse);
  font-family: var(--font-texte);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 9;
  pointer-events: none;
}

.aa-tag-avant { left: 14px; }
.aa-tag-apres { right: 14px; }

/* --- 23.11 — À propos : citations grandes + filigrane actes --- */
.histoire-acte {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid rgba(169, 120, 69, 0.15);
}

.histoire-acte:first-child { border-top: none; padding-top: 0; }

.histoire-acte::before {
  content: attr(data-acte);
  position: absolute;
  right: 0;
  top: 20px;
  font-family: var(--font-titre);
  font-size: 140px;
  font-weight: 800;
  color: rgba(169, 120, 69, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.histoire-acte > * { position: relative; z-index: 1; }

.citation-principale {
  font-family: var(--font-titre);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--noir);
  max-width: 860px;
  margin: clamp(48px, 6vw, 80px) auto;
  text-align: center;
  position: relative;
  padding: 0 60px;
}

.citation-principale::before,
.citation-principale::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--bronze);
  top: 50%;
}
.citation-principale::before { left: 0; }
.citation-principale::after  { right: 0; }

/* --- 23.12 — Section chiffres (à propos) --- */
.section-chiffres {
  background: var(--noir);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.chiffre-item {
  padding: 48px 30px;
  border-right: 1px solid rgba(246, 243, 238, 0.08);
  text-align: center;
}

.chiffre-item:last-child { border-right: none; }

.chiffre-num {
  display: block;
  font-family: var(--font-titre);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 12px;
}

.chiffre-label {
  font-family: var(--font-texte);
  font-size: 13px;
  color: rgba(246, 243, 238, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   24. V3 — Formes organiques signature (niche + goutte + haricot)
       Masques d'images organiques · placo-visual réel · coaching avec image
       Béton placeholder organique · pourquoi-visual
   ========================================================================== */

/* --- 24.1 — Formes organiques signature --- */
.shape-goutte    { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
.shape-goutte-2  { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
.shape-goutte-3  { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
.shape-haricot   { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; transform: rotate(-20deg); }

@keyframes morphNiche {
  0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: translate(0,0) rotate(0deg) scale(1); }
  25%  { border-radius: 40% 60% 50% 50% / 60% 40% 55% 45%; transform: translate(1%,2%) rotate(3deg) scale(1.03); }
  50%  { border-radius: 70% 30% 40% 60% / 45% 55% 60% 40%; transform: translate(-1%,1%) rotate(-2deg) scale(0.98); }
  75%  { border-radius: 45% 55% 65% 35% / 55% 45% 45% 55%; transform: translate(2%,-1%) rotate(1deg) scale(1.02); }
  100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: translate(0,0) rotate(0deg) scale(1); }
}

@keyframes morphGoutte {
  0%   { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; transform: translate(0,0) rotate(-20deg) scale(1); }
  33%  { border-radius: 35% 65% 50% 50% / 45% 55% 45% 55%; transform: translate(-1%,2%) rotate(-15deg) scale(1.04); }
  66%  { border-radius: 65% 35% 40% 60% / 55% 45% 65% 35%; transform: translate(2%,-1%) rotate(-25deg) scale(0.97); }
  100% { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; transform: translate(0,0) rotate(-20deg) scale(1); }
}

.bg-shape-organique,
.bg-shape-goutte,
.bg-shape-goutte-2 {
  position: absolute;
  pointer-events: none;
  will-change: transform, border-radius;
}

.bg-shape-organique {
  opacity: 0.07;
  animation: morphNiche 20s ease-in-out infinite;
}

.bg-shape-goutte {
  opacity: 0.06;
  animation: morphGoutte 16s ease-in-out infinite;
}

.bg-shape-goutte-2 {
  opacity: 0.05;
  animation: morphGoutte 22s ease-in-out infinite reverse;
  animation-delay: -7s;
}

.section-light .bg-shape-organique,
.section-light .bg-shape-goutte,
.section-light .bg-shape-goutte-2 { background: var(--bronze); }

.section-dark .bg-shape-organique,
.section-dark .bg-shape-goutte,
.section-dark .bg-shape-goutte-2 { background: rgba(246, 243, 238, 0.8); opacity: 0.04; }

.section-lin .bg-shape-organique,
.section-lin .bg-shape-goutte,
.section-lin .bg-shape-goutte-2 { background: var(--bronze-deep); opacity: 0.09; }

/* --- 24.2 — Décoration niche courbe SVG --- */
.deco-niche {
  position: absolute;
  width: 80px;
  height: 200px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* --- 24.3 — Photos rectangulaires sur project-card (pas de border-radius) --- */
.project-grid .project-card figure { border-radius: 0; }

/* Mini-gallery accueil — formes mixtes */
.section-realisations-mini .gallery figure:nth-child(1) { border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%; }
.section-realisations-mini .gallery figure:nth-child(2) { border-radius: 8px 24px 8px 24px; }
.section-realisations-mini .gallery figure:nth-child(3) { border-radius: 24px 8px 24px 8px; }
.section-realisations-mini .gallery figure:nth-child(4) { border-radius: 40% 20% 35% 45% / 30% 45% 35% 40%; }

/* --- 24.4 — Placo visual : remplacé par vraie image en forme niche --- */
.placo-visual-real {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 5 / 6;
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.15);
  margin-left: auto;
}

.placo-visual-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placo-visual-inset {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  overflow: hidden;
  border: 3px solid var(--blanc-casse);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.15);
  background: var(--lin);
}

.placo-visual-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 24.5 — Coaching main avec image en fond + overlay --- */
.coaching-main-with-image {
  background-image: var(--coaching-bg-image);
  background-size: cover;
  background-position: center;
}

.coaching-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.6) 100%);
  border-radius: inherit;
  z-index: 0;
}

.coaching-main-with-image > *:not(.coaching-main-overlay) {
  position: relative;
  z-index: 1;
}

/* --- 24.6 — Béton placeholder organique --- */
.beton-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  position: relative;
}

.beton-shape {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--taupe), var(--lin));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: morphNiche 18s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.beton-form {
  width: 80px;
  height: 80px;
  background: rgba(169, 120, 69, 0.35);
  border-radius: 50% 30% 60% 20% / 40% 60% 30% 50%;
  animation: morphGoutte 8s ease-in-out infinite;
}

.beton-coming {
  font-family: var(--font-texte);
  font-size: 13px;
  color: rgba(17, 17, 17, 0.55);
  text-align: center;
  padding: 0 16px;
  margin: 0;
  letter-spacing: 0.04em;
}

/* --- 24.7 — Section pourquoi-visual (À propos) --- */
.pourquoi-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.pourquoi-visual figure {
  margin: 0;
  border-radius: 50% 30% 50% 30% / 40% 50% 40% 50%;
  overflow: hidden;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.pourquoi-visual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pourquoi-caption .eyebrow { margin-bottom: 12px; }

.pourquoi-caption p {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--noir);
  margin: 0;
}

/* ==========================================================================
   25. V4 FINAL — Hero photo-06 · Header vague ondulée · Bento prestations
       Carrousel témoignages · Coaching bronze · Béton harmonisé · À propos refonte
   ========================================================================== */

/* --- 25.1 — HERO accueil refonte (photo coin-lecture + perspective) --- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 80px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: rotate(0.8deg) scale(1.015);
  transform-origin: center center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.45) 50%, rgba(122, 74, 35, 0.2) 100%);
}
.hero .hero-content {
  position: relative; z-index: 2;
  max-width: 720px; padding: 0 48px;
  margin: 0 0 0 auto; margin-left: max(48px, calc((100vw - 1280px) / 2));
}
.hero .hero-content::before { display: none; }
.hero-content .eyebrow { color: rgba(246, 243, 238, 0.75); margin-bottom: 20px; }
.hero-title { color: var(--blanc-casse); margin-bottom: 24px; }
.hero-sub { color: rgba(246, 243, 238, 0.82); font-size: 18px; line-height: 1.65; max-width: 520px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 24px; flex-wrap: wrap; }

.btn-primary {
  background: var(--bronze);
  color: #fff;
  border: 1px solid var(--bronze);
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--bronze-deep, #7A4A23); border-color: var(--bronze-deep, #7A4A23); color: #fff; }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(246, 243, 238, 0.55);
}
.btn-ghost-white:hover,
.btn-ghost-white:focus-visible { background: rgba(246, 243, 238, 0.12); border-color: var(--blanc-casse); color: #fff; }

/* --- 25.2 — HEADER refonte : transparent → blanc cassé + vague --- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0; transition: background 0.4s ease, backdrop-filter 0.4s ease; }
.site-header:not(.is-scrolled) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: none; }
.site-header.is-scrolled {
  background: rgba(246, 243, 238, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(169, 120, 69, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  position: relative;
  z-index: 2;
  max-width: none;
}

/* Double logo : blanc sur hero, bronze au scroll */
.logo { position: relative; display: block; line-height: 0; }
.logo-blanc { display: block; transition: opacity 0.4s ease; height: 36px; width: auto; }
.logo-bronze { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.4s ease; height: 36px; width: auto; }
.site-header.is-scrolled .logo-blanc { opacity: 0; }
.site-header.is-scrolled .logo-bronze { opacity: 1; }

/* Main nav v4 — override des règles précédentes via spécificité accrue */
.site-header .main-nav { display: flex; align-items: center; gap: 8px; }

.site-header .nav-link {
  font-family: var(--font-texte);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  color: rgba(246, 243, 238, 0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-header .nav-link:hover::after,
.site-header .nav-link.is-active::after { transform: scaleX(1); }
.site-header .nav-link:hover,
.site-header .nav-link.is-active { color: rgba(246, 243, 238, 1); }
.site-header.is-scrolled .nav-link { color: rgba(17, 17, 17, 0.72); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active { color: var(--bronze); }

.site-header .nav-cta {
  background: var(--bronze);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.2s ease;
  margin-left: 8px;
  border: none;
}
.site-header .nav-cta:hover { background: var(--bronze-deep); transform: translateY(-2px); }
.site-header.is-scrolled .nav-cta { background: var(--noir); }
.site-header.is-scrolled .nav-cta:hover { background: var(--bronze); }

/* SVG vague ondulée — visible au scroll uniquement */
.header-wave {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 22px;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.site-header:not(.is-scrolled) .header-wave { opacity: 0; }
.site-header.is-scrolled .header-wave { opacity: 1; }
.header-wave path { fill: rgba(246, 243, 238, 0.95); }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--blanc-casse);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.site-header.is-scrolled .burger span { background: var(--noir); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-header .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 90;
  }
  .site-header .main-nav.is-open { transform: translateY(0); }
  .site-header .nav-link { font-size: 22px; font-family: var(--font-titre); font-weight: 600; color: var(--blanc-casse); }
  .site-header .nav-cta { font-size: 14px; padding: 14px 32px; }
  .burger { display: flex; }
  .header-inner { padding: 18px 24px; }
}

/* --- 25.3 — PRESTATIONS BENTO (grande card image + 2 cards verre) --- */
.prestations-header { margin-bottom: 56px; }

.prestations-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 540px;
}

.presta-card--large {
  grid-row: 1 / 3;
  background: var(--noir);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.presta-card--large .presta-img { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.presta-card--large .presta-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.presta-card--large:hover .presta-img img { transform: scale(1.06); }

.presta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.3) 50%, transparent 100%);
}

.presta-card--large .presta-content {
  position: relative; z-index: 2;
  padding: 36px;
  color: var(--blanc-casse);
}
.presta-card--large .presta-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--bronze);
  display: block; margin-bottom: 8px;
  font-family: var(--font-titre);
}
.presta-card--large h3 {
  font-family: var(--font-titre);
  font-size: 26px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.1;
  color: var(--blanc-casse);
}
.presta-card--large p {
  font-size: 14px;
  color: rgba(246,243,238,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.link-arrow,
.link-arrow-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.25s ease;
}
.link-arrow { color: var(--bronze); }
.link-arrow-white { color: var(--blanc-casse); border-bottom-color: rgba(246,243,238,0.4); }
.link-arrow:hover,
.link-arrow-white:hover { gap: 14px; }

.presta-card--tall,
.presta-card--square {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(169,120,69,0.12);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.presta-card--tall:hover,
.presta-card--square:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(169,120,69,0.14);
}

.presta-num-bg {
  position: absolute;
  top: -24px; right: 12px;
  font-family: var(--font-titre);
  font-size: 150px;
  font-weight: 800;
  color: rgba(169,120,69,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.presta-shape-deco {
  position: absolute;
  top: 20px; right: 20px;
  width: 70px; height: 90px;
  border: 1.5px solid rgba(169,120,69,0.18);
  border-radius: 50% 30% 50% 30% / 40% 50% 40% 50%;
  animation: morphGoutte 14s ease-in-out infinite;
}

.presta-card--tall .eyebrow,
.presta-card--square .eyebrow { margin-bottom: 10px; }

.presta-card--tall h3,
.presta-card--square h3 {
  font-family: var(--font-titre);
  font-size: 22px; font-weight: 700;
  margin: 0 0 10px; line-height: 1.15;
  color: var(--noir);
}
.presta-card--tall p,
.presta-card--square p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 20px;
}

@media (max-width: 1024px) {
  .prestations-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .presta-card--large { grid-column: 1 / 3; grid-row: 1; min-height: 360px; }
}
@media (max-width: 640px) {
  .prestations-bento { grid-template-columns: 1fr; }
  .presta-card--large { grid-column: 1; min-height: 300px; }
}

/* --- 25.4 — TÉMOIGNAGES CARROUSEL défilant --- */
.section-temoignages {
  background: var(--lin);
  padding: 120px 0 100px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(169, 120, 69, 0.15);
}

/* v6.5 : courbe douce entre réalisations (blanc cassé) et témoignages (lin) */
.section-temoignages::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--blanc-casse), transparent);
  pointer-events: none;
}

/* Override : fades latéraux du carrousel doivent matcher le nouveau fond lin */
.section-temoignages .temoignages-outer::before {
  background: linear-gradient(to right, var(--lin) 30%, transparent) !important;
}
.section-temoignages .temoignages-outer::after {
  background: linear-gradient(to left, var(--lin) 30%, transparent) !important;
}
.temoignages-header { padding: 0 48px; margin-bottom: 56px; max-width: 1280px; margin-inline: auto; }
.temoignages-outer { position: relative; overflow: hidden; }
.temoignages-outer::before,
.temoignages-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.temoignages-outer::before { left: 0; background: linear-gradient(to right, var(--blanc-casse) 30%, transparent); }
.temoignages-outer::after  { right: 0; background: linear-gradient(to left, var(--blanc-casse) 30%, transparent); }

.temoignages-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 48px;
  animation: scrollCarrousel 30s linear infinite;
}
.temoignages-track:hover { animation-play-state: paused; }

@keyframes scrollCarrousel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.section-temoignages .temoignage-card {
  width: 400px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 4px 24px rgba(17,17,17,0.06);
  border: 1px solid rgba(169,120,69,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transform: none;
}
.section-temoignages .temoignage-card:hover { transform: translateY(-4px); }
.section-temoignages .temoignage-card::before { display: none; }

.t-quote {
  font-family: var(--font-titre);
  font-size: 72px;
  color: var(--bronze);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: -8px;
  height: 36px;
}
.section-temoignages .temoignage-card p {
  font-family: var(--font-titre);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--noir);
  flex: 1;
  margin: 0;
}
.section-temoignages .temoignage-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(169,120,69,0.12);
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  font-family: var(--font-titre);
}
.section-temoignages .temoignage-card footer div { display: flex; flex-direction: column; gap: 3px; }
.section-temoignages .temoignage-card footer strong {
  font-family: var(--font-texte);
  font-size: 13px;
  font-weight: 500;
  color: var(--noir);
}
.section-temoignages .temoignage-card footer span {
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* --- 25.5 — COACHING fond bronze chaud (exit noir) --- */
.coaching-main,
.coaching-main-with-image {
  background:
    linear-gradient(135deg, var(--bronze-deep) 0%, rgba(169, 120, 69, 0.9) 100%) !important;
}

.coaching-main-with-image {
  background:
    var(--coaching-bg-image, none),
    linear-gradient(135deg, var(--bronze-deep) 0%, rgba(169, 120, 69, 0.9) 100%) !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
  background-blend-mode: overlay, normal !important;
}

.coaching-main-overlay {
  background: linear-gradient(135deg, rgba(122, 74, 35, 0.85) 0%, rgba(169, 120, 69, 0.6) 100%) !important;
}

.coaching-main h2,
.coaching-main h3,
.coaching-main p { color: var(--blanc-casse) !important; }

.coaching-main .coaching-price-badge {
  background: rgba(246,243,238,0.12) !important;
  border-color: rgba(246,243,238,0.3) !important;
  color: var(--blanc-casse) !important;
}
.coaching-main .coaching-price-badge .sep { color: rgba(246,243,238,0.45) !important; }

/* --- 25.6 — BÉTON harmonisation --- */
.section-beton {
  background:
    radial-gradient(ellipse 65% 55% at 80% 35%, rgba(201,184,165,0.35), transparent),
    radial-gradient(ellipse 45% 65% at 15% 70%, rgba(169,120,69,0.1), transparent),
    var(--blanc-casse) !important;
}

.beton-shape {
  background: linear-gradient(140deg, var(--lin) 0%, rgba(201,184,165,0.55) 100%) !important;
  border: 1.5px solid rgba(169,120,69,0.18) !important;
  box-shadow: 0 24px 64px rgba(169,120,69,0.08) !important;
}

.beton-form {
  background: rgba(169,120,69,0.18) !important;
  border: 1px solid rgba(169,120,69,0.28) !important;
}

/* --- 25.7 — APPROCHE/SIGNATURE bg-shapes adoucies --- */
.signature-split .bg-shape-organique,
.signature-split .bg-shape-goutte {
  opacity: 0.04 !important;
  filter: blur(4px);
}

/* --- 25.8 — À PROPOS refonte --- */
/* v6.9 — Hero à propos : photo de fond + overlay + grand titre éditorial */
.apropos-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 80px) clamp(24px, 6vw, 80px) clamp(80px, 9vw, 120px);
  overflow: hidden;
  color: var(--blanc-casse);
  isolation: isolate;
}

.apropos-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.apropos-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65) saturate(0.85);
  will-change: transform;
}

.apropos-hero .hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(169, 120, 69, 0.35), transparent 70%),
    linear-gradient(165deg, rgba(17, 17, 17, 0.78) 0%, rgba(17, 17, 17, 0.48) 50%, rgba(122, 74, 35, 0.42) 100%);
}

.apropos-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.apropos-hero .eyebrow {
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-bottom: 28px;
}

.apropos-title {
  margin: 0 0 32px;
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  color: var(--blanc-casse);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apropos-title-line {
  display: block;
}

.apropos-title-main {
  color: var(--blanc-casse);
}

.apropos-title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
  font-family: var(--font-titre);
}

.apropos-hero .lead {
  color: rgba(246, 243, 238, 0.85);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 36px;
}

.apropos-hero .lead em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}

.apropos-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(169, 120, 69, 0.3);
  border-radius: 999px;
  font-family: var(--font-texte);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(246, 243, 238, 0.85);
  flex-wrap: wrap;
}

.apropos-meta-item strong {
  color: var(--bronze);
  font-weight: 600;
}

.apropos-meta-sep {
  color: var(--bronze);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .apropos-hero {
    min-height: 70vh;
    padding: calc(var(--header-height) + 60px) 24px 56px;
  }
  .apropos-hero-meta { font-size: 12px; padding: 12px 18px; gap: 12px; }
}

/* v6.8 — Section histoire : flux narratif vertical centré avec emphases bronze */
.section-histoire {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
  background: var(--blanc-casse);
}

.histoire-container {
  max-width: 880px;
  margin: 0 auto;
}

.histoire-header {
  text-align: center;
  margin-bottom: clamp(60px, 7vw, 100px);
}

.histoire-header h2 {
  margin: 0;
}

.histoire-actes {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 6vw, 80px);
}

.acte {
  position: relative;
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid rgba(169, 120, 69, 0.18);
}

.acte:first-child {
  border-top: none;
  padding-top: 0;
}

.acte-num {
  position: absolute;
  top: 8px;
  right: 0;
  font-family: var(--font-titre);
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 800;
  color: rgba(169, 120, 69, 0.1);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.acte .eyebrow { margin-bottom: 16px; }

.acte h3 {
  font-family: var(--font-titre);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 22ch;
}

.acte p {
  font-family: var(--font-texte);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.78);
  max-width: 60ch;
  margin: 0;
}

.acte p em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 500;
  background: linear-gradient(transparent 70%, rgba(169, 120, 69, 0.12) 70%);
  padding: 0 2px;
}

/* Citation finale, conclusion narrative */
.histoire-citation {
  margin: clamp(80px, 10vw, 120px) 0 0;
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(169, 120, 69, 0.25);
  text-align: center;
}

.histoire-citation p {
  font-family: var(--font-titre);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--noir);
  margin: 0 0 24px;
}

.histoire-citation p em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}

.histoire-citation cite {
  font-family: var(--font-texte);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* === Valeurs : emphases bronze sur intro et items === */
.valeurs-intro p em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}

.valeur-item p em {
  color: var(--taupe);
  font-style: italic;
  font-weight: 500;
}

.section-valeurs {
  background: var(--noir);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}
.valeurs-intro {
  margin-bottom: 60px;
  color: var(--blanc-casse);
  max-width: 720px;
}
.valeurs-intro .eyebrow { color: var(--taupe); }
.valeurs-intro h2 { color: var(--blanc-casse); }
.valeurs-intro p { color: var(--blanc-soft); }
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(169,120,69,0.12);
  border-radius: 16px;
  overflow: hidden;
}
.valeur-item {
  background: var(--noir);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.valeur-item:hover { background: rgba(169,120,69,0.05); }
.valeur-num-bg {
  position: absolute;
  top: -30px; right: 16px;
  font-family: var(--font-titre);
  font-size: 160px;
  font-weight: 800;
  color: rgba(169,120,69,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.valeur-item h3 {
  font-family: var(--font-titre);
  font-size: 30px;
  font-weight: 700;
  color: var(--blanc-casse);
  margin: 0 0 16px;
  position: relative;
}
.valeur-item p {
  font-size: 15px;
  color: rgba(246,243,238,0.55);
  line-height: 1.75;
  max-width: 360px;
  position: relative;
  margin: 0;
}
@media (max-width: 768px) {
  .valeurs-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   26. V5 — Loader · Clip-path title reveal · Cursor lag premium ·
       Header wave plus visible · Approche overflow+blur · Prestations ordre ·
       Mini-gallery pill · Méthode zigzag · Séparateurs vague
   ========================================================================== */

/* --- 26.1 — Renforcement typo (anti-pixelisation) --- */
.eyebrow,
.nav-link,
.nav-cta {
  font-family: var(--font-titre);
}

body, p, .lead {
  font-family: var(--font-texte);
}

/* --- 26.2 — LOADER --- */
.site-loader {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 240px;
}

.loader-logo {
  width: 120px;
  height: auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.loader-bar-wrap {
  width: 100%;
  height: 1px;
  background: rgba(246,243,238,0.15);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--bronze);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 1px;
}

.loader-pct {
  font-family: var(--font-titre);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(246,243,238,0.5);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- 26.3 — TITLE REVEAL (clip-path par mot) --- */
.title-reveal {
  overflow: visible;
}

.title-reveal .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
  line-height: inherit;
}

.title-reveal .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.title-reveal.is-visible .word {
  transform: translateY(0);
}

.title-reveal.is-visible .word-wrap:nth-child(1)  .word { transition-delay: 0ms; }
.title-reveal.is-visible .word-wrap:nth-child(2)  .word { transition-delay: 80ms; }
.title-reveal.is-visible .word-wrap:nth-child(3)  .word { transition-delay: 160ms; }
.title-reveal.is-visible .word-wrap:nth-child(4)  .word { transition-delay: 240ms; }
.title-reveal.is-visible .word-wrap:nth-child(5)  .word { transition-delay: 320ms; }
.title-reveal.is-visible .word-wrap:nth-child(6)  .word { transition-delay: 400ms; }
.title-reveal.is-visible .word-wrap:nth-child(7)  .word { transition-delay: 480ms; }
.title-reveal.is-visible .word-wrap:nth-child(8)  .word { transition-delay: 560ms; }
.title-reveal.is-visible .word-wrap:nth-child(9)  .word { transition-delay: 640ms; }
.title-reveal.is-visible .word-wrap:nth-child(10) .word { transition-delay: 720ms; }

/* --- 26.4 — CURSOR PREMIUM (outer + dot avec lag) --- */
.cursor-outer {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(169,120,69,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s ease,
              width 0.3s cubic-bezier(0.16,1,0.3,1),
              height 0.3s cubic-bezier(0.16,1,0.3,1),
              background 0.3s ease,
              border-color 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  opacity: 0;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--bronze);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  opacity: 0;
  /* Pas de mix-blend-mode pour éviter le décalage perçu */
  mix-blend-mode: normal;
}

.cursor-outer.is-visible,
.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-outer.is-hovering {
  width: 56px; height: 56px;
  background: rgba(169,120,69,0.1);
  border-color: var(--bronze);
}

.cursor-outer.is-clicking {
  width: 28px; height: 28px;
  background: rgba(169,120,69,0.2);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea {
  cursor: none !important;
}

/* --- 26.5 — HEADER WAVE plus visible (toujours, plus haute) --- */
.header-wave {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 30px;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.site-header .header-wave { opacity: 1 !important; }

.site-header:not(.is-scrolled) .header-wave path {
  fill: rgba(246,243,238,0.15);
}

.site-header.is-scrolled .header-wave path {
  fill: rgba(246,243,238,0.98);
}

/* Menu links plus généreux */
.site-header .nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 16px;
}

.logo img { width: 130px; height: auto; }
.logo-blanc, .logo-bronze { height: auto !important; width: 130px; }

.header-inner { padding: 26px 56px; }

@media (max-width: 768px) {
  .header-inner { padding: 18px 24px; }
  .logo img { width: 100px; }
  .logo-blanc, .logo-bronze { width: 100px; }
}

/* --- 26.6 — SECTION APPROCHE refonte (overflow + blur + image organique) --- */
.signature-split {
  overflow: hidden;
  position: relative;
}

.signature-split .bg-shape-organique {
  opacity: 0.05 !important;
  filter: blur(40px) !important;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
}

.signature-split .bg-shape-goutte {
  opacity: 0.04 !important;
  filter: blur(50px) !important;
  bottom: -60px;
  left: -80px;
  width: 350px;
  height: 400px;
}

.signature-split.fade-to-blanc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--blanc-casse));
  pointer-events: none;
}

.signature-split.fade-to-lin::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--lin));
  pointer-events: none;
}

.approche-visual {
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(17,17,17,0.12);
}

.approche-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* --- 26.7 — PRESTATIONS : nouvel ordre 01 coaching / 02 placo / 03 béton --- */
.prestations-bento {
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto;
  min-height: 480px;
}

.prestations-bento .presta-card--tall,
.prestations-bento .presta-card--large,
.prestations-bento .presta-card--square {
  grid-row: 1;
}

.prestations-bento .presta-card--tall   { grid-column: 1; }
.prestations-bento .presta-card--large  { grid-column: 2; }
.prestations-bento .presta-card--square { grid-column: 3; }

.prestations-intro {
  font-family: var(--font-texte);
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  margin: 16px 0 0;
}

.prestations-ligne {
  width: 48px;
  height: 2px;
  background: var(--bronze);
  margin-top: 32px;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .prestations-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .prestations-bento .presta-card--large {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 360px;
  }
  .prestations-bento .presta-card--tall   { grid-column: 1; grid-row: 2; }
  .prestations-bento .presta-card--square { grid-column: 2; grid-row: 2; }
}

@media (max-width: 640px) {
  .prestations-bento { grid-template-columns: 1fr; }
  .prestations-bento .presta-card--large,
  .prestations-bento .presta-card--tall,
  .prestations-bento .presta-card--square {
    grid-column: 1;
    grid-row: auto;
  }
}

/* --- 26.8 — MINI-GALLERY captions pill + hover subtil --- */
.section-realisations-mini .gallery figure {
  position: relative;
  overflow: hidden;
}

.section-realisations-mini .gallery figure::before,
.section-realisations-mini .gallery figure::after {
  display: none !important;
}

.section-realisations-mini .gallery figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(17,17,17,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--blanc-casse);
  font-family: var(--font-texte);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: visible;
  max-width: none;
}

.section-realisations-mini .gallery figure img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.section-realisations-mini .gallery figure:hover img {
  transform: scale(1.04);
}

/* --- 26.9 — MÉTHODE POLAROID PATH (v6.1) — 4 cards inclinées reliées par chemin bezier --- */
.methode-steps-zigzag {
  position: relative;
  height: 720px;
  max-width: 1000px;
  margin: 0 auto;
}

.methode-curve {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  pointer-events: none;
  opacity: 0.6;
}

.methode-curve-path {
  stroke-dashoffset: 0;
  animation: drawCurve 14s ease-in-out infinite;
}

@keyframes drawCurve {
  0%   { stroke-dashoffset: 0; }
  50%  { stroke-dashoffset: -120; }
  100% { stroke-dashoffset: 0; }
}

.methode-step-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.methode-step-row--right {
  grid-template-columns: 200px 1fr 120px;
}

.step-num-giant {
  font-family: var(--font-titre);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 800;
  color: rgba(169,120,69,0.12);
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease;
  letter-spacing: -0.02em;
}

.methode-step-row:hover .step-num-giant {
  color: rgba(169,120,69,0.3);
}

.step-content {
  padding: 32px 0;
  border-top: 1px solid rgba(169,120,69,0.2);
}

.step-content h3 {
  font-family: var(--font-titre);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-shape {
  width: 120px;
  height: 160px;
  border: 1.5px solid rgba(169,120,69,0.2);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: morphNiche 16s ease-in-out infinite;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.methode-step-row:hover .step-shape {
  border-color: rgba(169,120,69,0.5);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .methode-step-row,
  .methode-step-row--right {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-num-giant { font-size: 64px; }
  .step-visual { display: none; }
  .methode-step-row--right .step-num-giant { order: -1; }
  .methode-steps-zigzag { gap: 48px; }
}

/* --- 26.10 — SECTION SEPARATORS (vague entre sections) --- */
.section-wave-sep {
  position: relative;
  margin-top: -2px;
  line-height: 0;
  width: 100%;
}

.section-wave-sep svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ==========================================================================
   27. V5.1 FIX — Header couleurs nettes · Méthode flex (anti-chevauchement)
       Cursor haricot · Reveal safety net
   ========================================================================== */

/* --- 27.1 — HEADER (v6.1) : pas de flou, box-shadow visible --- */
.site-header,
.site-header.is-scrolled,
.site-header:not(.is-scrolled) {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

.site-header:not(.is-scrolled) {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: 0 2px 40px rgba(17, 17, 17, 0.15) !important;
}

.site-header.is-scrolled {
  background: rgba(246, 243, 238, 0.96) !important;
  border-bottom: 1px solid rgba(169, 120, 69, 0.1) !important;
  box-shadow: 0 2px 24px rgba(17, 17, 17, 0.08) !important;
}

/* --- 27.2 — MÉTHODE POLAROID PATH (v6.1) — 4 cards absolute + ligne pointillée bezier --- */
.methode-steps-zigzag {
  position: relative;
  height: 720px;
  max-width: 1000px;
  margin: 0 auto;
}

.methode-path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.methode-path-svg path {
  fill: none;
  stroke: rgba(169, 120, 69, 0.5);
  stroke-width: 1.8;
  stroke-linecap: round;
  /* Tracé progressif au scroll : dashoffset piloté par JS */
  stroke-dasharray: var(--path-length, 2000);
  stroke-dashoffset: var(--path-length, 2000);
  transition: stroke-dashoffset 120ms linear;
}

.methode-step-row {
  position: absolute;
  width: 42%;
  background: rgba(255, 255, 255, 0.85);
  padding: 24px 24px 28px;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1), 0 2px 8px rgba(17, 17, 17, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  /* v6.5 : opacity 0 par défaut, révélée par initMethodePathDraw selon progression ligne */
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}
.methode-step-row.is-reached {
  opacity: 1;
}

/* Positions par ordre HTML (01-02-03-04) — :nth-of-type pour ignorer le SVG */
.methode-step-row:nth-of-type(1) { top: 0;     left: 0;   transform: rotate(-2deg); }
.methode-step-row:nth-of-type(2) { top: 80px;  right: 0;  transform: rotate(1.5deg); }
.methode-step-row:nth-of-type(3) { top: 360px; left: 5%;  transform: rotate(-1deg); }
.methode-step-row:nth-of-type(4) { bottom: 0;  right: 5%; transform: rotate(2deg); }

.methode-step-row:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 24px 56px rgba(169, 120, 69, 0.2), 0 4px 12px rgba(17, 17, 17, 0.08);
  z-index: 5;
}

.methode-step-row .step-num-giant {
  font-family: var(--font-titre);
  font-size: 56px;
  font-weight: 800;
  color: rgba(169, 120, 69, 0.18);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.methode-step-row .step-content {
  padding: 0;
  border-top: none;
  margin: 0;
}

.methode-step-row .step-content h3 {
  font-family: var(--font-titre);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.1;
}

.methode-step-row .step-content p {
  font-family: var(--font-texte);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.methode-step-row .step-visual {
  display: none;
}

@media (max-width: 768px) {
  .methode-steps-zigzag {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .methode-step-row,
  .methode-step-row:nth-child(1),
  .methode-step-row:nth-child(2),
  .methode-step-row:nth-child(3),
  .methode-step-row:nth-child(4) {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%;
    transform: rotate(0deg);
  }
  .methode-path-svg { display: none; }
}

/* --- 27.3 — CURSOR HARICOT (SVG) - v6.1 pointer-events none forcé --- */
.cursor-outer,
.cursor-dot {
  pointer-events: none !important;
}

.cursor-outer {
  width: 44px;
  height: 52px;
  border: none;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}

.cursor-outer svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.cursor-outer .haricot-shape {
  fill: none;
  stroke: rgba(169, 120, 69, 0.6);
  stroke-width: 1.5;
  transition: stroke 0.3s ease, fill 0.3s ease;
}

.cursor-outer.is-hovering {
  width: 64px;
  height: 76px;
}

.cursor-outer.is-hovering .haricot-shape {
  fill: rgba(169, 120, 69, 0.1);
  stroke: var(--bronze);
}

.cursor-outer.is-clicking {
  width: 36px;
  height: 42px;
}

.cursor-outer.is-clicking .haricot-shape {
  fill: rgba(169, 120, 69, 0.25);
}

/* ==========================================================================
   28. V6 — Expérience immersive complète
       Grain · Smooth scroll · Hero 3 couches · Polaroid · Stats · Citation
       En chantier · Magnetic · Clip-path approche · Dégradés animés · Bordure cards
       Footer texture
   ========================================================================== */

/* --- 28.1 — GRAIN OVERLAY --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.032;
  mix-blend-mode: overlay;
}

/* --- 28.2 — SMOOTH SCROLL (supprimé v6.1) — scroll natif via html { scroll-behavior: smooth } --- */

/* --- 28.3 — HERO 3 COUCHES PARALLAXE --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-layers {
  position: absolute;
  inset: 0;
}

.hero-layer {
  position: absolute;
  inset: -20%;
  will-change: transform;
}

.hero-layer--img img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: rotate(0.8deg) scale(1.02);
  display: block;
}

.hero-layer--overlay { background: transparent; }
.hero-layer--overlay .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.45) 50%, rgba(122,74,35,0.2) 100%);
}

.hero-layer--content {
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  inset: 0;
}

.hero-layer--content .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 48px;
  margin-left: max(48px, calc((100vw - 1280px) / 2));
}

/* --- 28.4 — POLAROID SCROLL HORIZONTAL --- */
.section-realisations-mini {
  background: var(--blanc-casse);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.real-header {
  padding: 0 48px;
  margin-bottom: 24px;
  max-width: 1280px;
  margin-inline: auto;
}

.real-scroll-wrap {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  cursor: grab;
}

.real-scroll-wrap:active { cursor: grabbing; }

.real-scroll-track {
  display: flex;
  gap: 32px;
  padding: 20px 80px;
  width: max-content;
  user-select: none;
}

.polaroid {
  flex-shrink: 0;
  width: 280px;
  background: #fff;
  padding: 12px 12px 48px;
  margin: 0;
  box-shadow: 0 4px 16px rgba(17,17,17,0.1), 0 1px 4px rgba(17,17,17,0.06);
  border-radius: 2px;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
  cursor: pointer;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05) translateY(-8px);
  box-shadow: 0 20px 60px rgba(17,17,17,0.18), 0 4px 16px rgba(17,17,17,0.1);
  z-index: 10;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.polaroid figcaption {
  font-family: var(--font-texte);
  font-size: 12px;
  color: rgba(17,17,17,0.55);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.real-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 80px;
  margin-top: -20px;
  font-family: var(--font-texte);
  font-size: 12px;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hintPulse 2s ease infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50%       { opacity: 1; transform: translateX(6px); }
}

.real-cta {
  margin-top: 48px;
  display: inline-block;
  padding: 0;
}

/* v6.5 : fades latéraux plus doux et moins envahissants */
.real-scroll-wrap::before,
.real-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.real-scroll-wrap::before { left: 0;  background: linear-gradient(to right, var(--blanc-casse) 30%, transparent); }
.real-scroll-wrap::after  { right: 0; background: linear-gradient(to left,  var(--blanc-casse) 30%, transparent); }

/* --- 28.5 — STATS SECTION (compteurs animés sur noir) --- */
.section-stats {
  background: var(--noir);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(169,120,69,0.2), transparent 70%);
  pointer-events: none;
  animation: statsGlow 12s ease-in-out infinite;
}

@keyframes statsGlow {
  0%, 100% { transform: translate(-5%, 0); opacity: 0.7; }
  50%       { transform: translate(10%, 5%); opacity: 1; }
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(169,120,69,0.25);
  flex-shrink: 0;
}

.stat-num {
  display: block;
  font-family: var(--font-titre);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-texte);
  font-size: 13px;
  color: rgba(246,243,238,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .stats-grid { flex-direction: column; gap: 0; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 28px 24px; }
}

/* --- 28.6 — CITATION FLOTTANTE (fond noir gradient animé) --- */
.section-citation {
  padding: 80px 48px !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--noir) 0%, #1a1008 50%, var(--noir) 100%);
  background-size: 300% 300%;
  animation: gradientShift 18s ease infinite alternate;
}

/* v6.2 : séparateur explicite entre citation et chantier */
.section-break,
.citation-chantier-sep {
  height: 2px;
  background: rgba(246, 243, 238, 0.06);
  border: 0;
  margin: 0;
}

.section-en-chantier {
  margin-top: 0;
  /* v6.5 : fond gradient bronze pur (plus d'image lourde) */
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(169, 120, 69, 0.25), transparent 70%),
    linear-gradient(135deg, var(--bronze-deep) 0%, var(--noir) 100%);
  min-height: 380px;
  height: auto;
  padding: 80px 24px;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.citation-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.citation-line {
  flex: 1;
  height: 1px;
  background: rgba(169,120,69,0.3);
}

.citation-grande {
  text-align: center;
  flex: 3;
  margin: 0;
}

.citation-grande p {
  font-family: var(--font-titre);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--blanc-casse);
  margin: 0 0 18px;
}

.citation-grande cite {
  font-family: var(--font-texte);
  font-size: 13px;
  color: var(--bronze);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
}

@media (max-width: 768px) {
  .citation-inner { gap: 16px; }
  .citation-line  { display: none; }
}

/* --- 28.7 — EN CHANTIER (fond flou + dot pulsant) --- */
.section-en-chantier {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chantier-bg {
  position: absolute;
  inset: 0;
}

.chantier-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) saturate(0.6);
  transform: scale(1.05);
  display: block;
}

.chantier-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.7);
}

.chantier-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanc-casse);
  padding: 0 24px;
  max-width: 720px;
}

.chantier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(169,120,69,0.2);
  border: 1px solid rgba(169,120,69,0.4);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 28px;
}

.chantier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  animation: chantierPulse 1.5s ease infinite;
}

@keyframes chantierPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.chantier-content h2 {
  font-family: var(--font-titre);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--blanc-casse);
}

.chantier-content p {
  font-family: var(--font-texte);
  font-size: 16px;
  color: rgba(246,243,238,0.65);
  margin: 0 0 32px;
}

/* --- 28.8 — MAGNETIC BUTTONS (transition retour) --- */
.magnetic {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* --- 28.9 — SECTION APPROCHE clip-path d'ouverture --- */
.section-approche {
  clip-path: inset(0 8% round 20px);
  transform: scale(0.96);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-approche.is-open {
  clip-path: inset(0% 0% round 0px);
  transform: scale(1);
}

/* --- 28.10 — DÉGRADÉS ANIMÉS prestations + méthode --- */
@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-prestations {
  background: linear-gradient(135deg,
    var(--lin) 0%,
    rgba(201,184,165,0.4) 30%,
    var(--blanc-casse) 50%,
    rgba(169,120,69,0.08) 70%,
    var(--lin) 100%);
  background-size: 300% 300%;
  animation: gradientDrift 18s ease infinite;
}

.section-methode {
  background: linear-gradient(160deg,
    var(--blanc-casse) 0%,
    rgba(201,184,165,0.3) 40%,
    var(--lin) 70%,
    rgba(169,120,69,0.06) 100%);
  background-size: 300% 300%;
  animation: gradientDrift 22s ease infinite reverse;
}

/* v6.5 — BORDURE BRONZE refonte : box-shadow propre au hover (suppression mask cassé) */
.presta-card,
.section-temoignages .temoignage-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.presta-card::before,
.section-temoignages .temoignage-card::before {
  display: none !important; /* technique mask-composite fragile retirée */
}

.presta-card > *,
.section-temoignages .temoignage-card > * {
  position: relative;
  z-index: 1;
}

.presta-card:hover {
  box-shadow:
    0 0 0 1.5px rgba(169, 120, 69, 0.5),
    0 24px 60px rgba(169, 120, 69, 0.18);
}

.section-temoignages .temoignage-card:hover {
  box-shadow:
    0 0 0 1.5px rgba(169, 120, 69, 0.5),
    0 20px 50px rgba(169, 120, 69, 0.15);
}

/* Bento gap augmenté à 24px (v6.1) */
.prestations-bento { gap: 24px; }

@keyframes borderRotate {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(30deg); }
}

/* --- 28.12 — FOOTER texture points --- */
.site-footer {
  position: relative;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(169,120,69,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.site-footer > *:not(.footer-curve) { position: relative; z-index: 1; }
.site-footer > .footer-curve { position: absolute; z-index: 0; }

/* ==========================================================================
   29. V6.9 — A-PROPOS refonte typo + marges uniformes
   ========================================================================== */

/* Hierarchy commune : letter-spacing affiné, line-height généreuse, max-widths cohérents */
.page-a-propos h2.title-lg,
.page-a-propos .histoire-header h2,
.page-a-propos .valeurs-intro h2 {
  font-family: var(--font-titre);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--noir);
}

.section-valeurs h2 { color: var(--blanc-casse) !important; }

/* Force le blanc cassé sur toutes les sections sombres de la nouvelle structure */
.page-a-propos .apropos-section--dark h2,
.page-a-propos .apropos-section--dark h2.title-lg,
.page-a-propos .apropos-section--dark h3 { color: var(--blanc-casse) !important; }

/* Eyebrows uniformes */
.page-a-propos .eyebrow {
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section-valeurs .eyebrow { color: var(--taupe) !important; }

/* Section chiffres — typo + marges */
.section-chiffres {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
}

.section-chiffres .container {
  max-width: 1180px;
  margin: 0 auto;
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.chiffre-item {
  padding: clamp(36px, 4vw, 52px) clamp(20px, 3vw, 36px);
}

.chiffre-num {
  font-family: var(--font-titre);
  font-size: clamp(56px, 7.5vw, 110px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bronze);
}

.chiffre-label {
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, 0.55);
}

/* Valeurs intro centrée, marges aérées */
.section-valeurs .valeurs-intro {
  max-width: 740px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}

.section-valeurs .valeurs-intro p {
  font-family: var(--font-texte);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--blanc-soft);
  margin-top: 20px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Valeurs grid items : typo plus marquée */
.section-valeurs .valeurs-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.section-valeurs .valeur-item {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 3vw, 48px);
}

.section-valeurs .valeur-item h3 {
  font-family: var(--font-titre);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--blanc-casse);
}

.section-valeurs .valeur-item p {
  font-family: var(--font-texte);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: rgba(246, 243, 238, 0.7);
  max-width: 380px;
  margin: 0;
}

/* Numéros filigrane valeurs plus présents */
.section-valeurs .valeur-num-bg {
  font-size: clamp(120px, 14vw, 180px);
  color: rgba(169, 120, 69, 0.07);
  font-weight: 800;
  letter-spacing: -0.04em;
  top: -20px;
  right: 8px;
}

/* Section pourquoi : layout enrichi, marges, typo */
.page-a-propos .section-lin {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px) !important;
}

.page-a-propos .pourquoi-visual {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.page-a-propos .pourquoi-visual figure {
  margin: 0;
  border-radius: 50% 30% 50% 30% / 40% 50% 40% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 460px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

.page-a-propos .pourquoi-visual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-a-propos .pourquoi-caption p:not(.eyebrow) {
  font-family: var(--font-titre);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--noir);
  margin: 14px 0 0;
  letter-spacing: -0.005em;
}

/* Reasons block bien aéré */
.page-a-propos .reasons-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.page-a-propos .reasons-block .eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

.page-a-propos .reasons-block h2 {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.page-a-propos .reasons-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(36px, 4vw, 56px);
}

.page-a-propos .reasons-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(169, 120, 69, 0.18);
  font-family: var(--font-titre);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-a-propos .reasons-list li::before {
  content: "→";
  color: var(--bronze);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.1em;
  flex-shrink: 0;
}

.page-a-propos .reasons-list li:last-child {
  border-bottom: none;
}

.page-a-propos .reasons-block .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* CTA final marges uniformes */
.page-a-propos .section-cta-final {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px) !important;
}

/* ==========================================================================
   30. V6.9 — Page BOUTIQUE (placeholder coming soon)
   ========================================================================== */

.boutique-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 80px) clamp(24px, 6vw, 80px) clamp(80px, 9vw, 120px);
  overflow: hidden;
  color: var(--blanc-casse);
  isolation: isolate;
}

.boutique-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.boutique-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
}

.boutique-hero .hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(169, 120, 69, 0.35), transparent 70%),
    linear-gradient(160deg, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.5) 50%, rgba(122, 74, 35, 0.4) 100%);
}

.boutique-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.boutique-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  margin-bottom: 28px;
  background: rgba(169, 120, 69, 0.18);
  border: 1px solid rgba(169, 120, 69, 0.4);
  border-radius: 999px;
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.boutique-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  animation: chantierPulse 1.6s ease infinite;
}

.boutique-hero .eyebrow {
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
}

.boutique-title {
  margin: 0 0 32px;
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 800;
  color: var(--blanc-casse);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.boutique-hero .lead {
  color: rgba(246, 243, 238, 0.85);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.boutique-hero .lead em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}

/* Section catégories teaser */
.boutique-categories {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px) !important;
}

.boutique-categories .container { max-width: 1200px; margin: 0 auto; }

.boutique-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.boutique-header h2 {
  font-family: var(--font-titre);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.boutique-card {
  position: relative;
  background: var(--blanc-casse);
  border: 1px solid rgba(169, 120, 69, 0.15);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.boutique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1.5px rgba(169, 120, 69, 0.4), 0 24px 56px rgba(169, 120, 69, 0.16);
}

.boutique-card-visual {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
}

.boutique-card-visual .beton-shape {
  width: 100px;
  height: 120px;
  background: linear-gradient(140deg, var(--lin), rgba(201, 184, 165, 0.6));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morphNiche 14s ease-in-out infinite;
}

.boutique-card-visual .beton-form {
  width: 40px;
  height: 40px;
  background: rgba(169, 120, 69, 0.25);
  border-radius: 50% 30% 60% 20% / 40% 60% 30% 50%;
  animation: morphGoutte 8s ease-in-out infinite;
}

.boutique-card-visual.is-placo {
  background: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(169, 120, 69, 0.08) 18px, rgba(169, 120, 69, 0.08) 19px),
              repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(169, 120, 69, 0.08) 18px, rgba(169, 120, 69, 0.08) 19px);
  border-radius: 12px;
}

.boutique-card-visual.is-placo svg {
  width: 80px;
  height: 100px;
}

.boutique-card-visual.is-bois {
  background: var(--lin);
  border-radius: 12px;
  overflow: hidden;
}

.boutique-card-visual .bois-pattern {
  width: 80%;
  height: 80px;
  background:
    repeating-linear-gradient(90deg, rgba(122, 74, 35, 0.12) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(122, 74, 35, 0.18), rgba(122, 74, 35, 0.08));
  border-radius: 6px;
}

.boutique-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-titre);
  font-size: 70px;
  font-weight: 800;
  color: rgba(169, 120, 69, 0.07);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.boutique-card .eyebrow {
  margin: 0;
}

.boutique-card h3 {
  font-family: var(--font-titre);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--noir);
}

.boutique-card p {
  font-family: var(--font-texte);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}

.boutique-card p em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}

.boutique-card-meta {
  display: inline-block;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid rgba(169, 120, 69, 0.18);
  font-family: var(--font-texte);
  font-size: 13px;
  color: var(--bronze);
  letter-spacing: 0.04em;
}

.boutique-card-meta strong {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 18px;
  color: var(--noir);
  letter-spacing: -0.01em;
}

/* Boutique notify actions */
.boutique-notify-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

@media (max-width: 1024px) {
  .boutique-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .boutique-grid { grid-template-columns: 1fr; }
}

/* -----------------------------
   22. REDUCED MOTION
   ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-card,
  .reveal-scale,
  .split-line,
  .word {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   OFFRES — accordion, pricing row, bouton ghost-dark
   ========================================================================== */

/* ── Accordion offres ─────────────────────────────────────────────────────── */
.offer-accordion {
  border-top: 1px solid rgba(169, 120, 69, .2);
  margin-top: 1.5rem;
}

.offer-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(169, 120, 69, 0.07);
  border: 1px solid rgba(169, 120, 69, 0.24);
  border-radius: 8px;
  cursor: pointer;
  padding: 13px 18px;
  font-family: var(--font-texte);
  font-size: .93rem;
  font-weight: 600;
  color: var(--noir, #111);
  text-align: left;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
  /* Neutralise le highlight touch rose/magenta (iOS/Android/Windows) */
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.offer-accordion__trigger:hover {
  background: rgba(169, 120, 69, 0.13);
  border-color: var(--bronze, #A97845);
  color: var(--bronze-deep, #7A4A23);
}

/* :focus ET :focus-visible — couvre le ring OS (Windows accent rose/magenta) */
.offer-accordion__trigger:focus,
.offer-accordion__trigger:focus-visible {
  outline: 2px solid var(--bronze, #A97845);
  outline-offset: 2px;
  color: var(--noir, #111);
}

.offer-accordion__trigger:active {
  background: rgba(169, 120, 69, 0.17);
  border-color: var(--bronze, #A97845);
  color: var(--bronze-deep, #7A4A23);
}

.offer-accordion__trigger[aria-expanded="true"] {
  background: rgba(169, 120, 69, 0.11);
  border-color: var(--bronze, #A97845);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--bronze-deep, #7A4A23);
}

.offer-accordion__trigger[aria-expanded="true"]:focus,
.offer-accordion__trigger[aria-expanded="true"]:focus-visible {
  outline: 2px solid var(--bronze, #A97845);
  outline-offset: 2px;
  color: var(--bronze-deep, #7A4A23);
}

.offer-accordion__icon {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--bronze);
}

.offer-accordion__trigger[aria-expanded="true"] .offer-accordion__icon {
  transform: rotate(180deg);
}

.offer-accordion__body { padding: .25rem 0 1.5rem; }
.offer-accordion__body[hidden] { display: none; }
.offer-accordion__body:not([hidden]) {
  border: 1px solid rgba(169, 120, 69, 0.2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1.25rem 1.25rem 1.5rem;
}

.offer-accordion__section-title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 .25rem;
  color: var(--noir);
}

.offer-accordion__objective {
  font-size: .9rem;
  color: #7a6a5a;
  margin: 0 0 1rem;
  font-style: italic;
}

.offer-accordion__label {
  font-weight: 600;
  font-size: .9rem;
  margin: 1rem 0 .4rem;
  color: var(--noir);
}

.offer-accordion__warning {
  font-size: .875rem;
  background: rgba(169, 120, 69, .08);
  border-left: 3px solid var(--bronze);
  border-radius: 0 6px 6px 0;
  padding: .75rem 1rem;
  margin: 1rem 0 0;
  color: var(--noir);
  line-height: 1.6;
}

.offer-accordion__note {
  font-size: .85rem;
  color: #7a6a5a;
  background: rgba(169, 120, 69, .06);
  border-left: 3px solid var(--bronze);
  border-radius: 0 6px 6px 0;
  padding: .75rem 1rem;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.offer-checklist--accordion {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.offer-checklist--accordion li {
  font-size: .9rem;
  color: var(--noir);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.offer-checklist--accordion li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--bronze);
}

/* ── Pricing row (2 cartes côte à côte) ──────────────────────────────────── */
.offer-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (max-width: 600px) {
  .offer-pricing-row { grid-template-columns: 1fr; }
}

.offer-pricing-card {
  border: 1px solid rgba(169, 120, 69, .2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.offer-pricing__label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
  font-family: var(--font-titre);
  font-weight: 700;
}

.offer-pricing__title {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  margin: 0;
  color: var(--noir);
  font-weight: 700;
}

.offer-pricing__desc {
  font-size: .85rem;
  color: #7a6a5a;
  margin: 0 0 auto;
  line-height: 1.5;
  font-family: var(--font-texte);
}

.offer-price {
  font-family: var(--font-titre);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--bronze);
  letter-spacing: -.03em;
  line-height: 1;
  margin: .25rem 0 0;
}

.offer-price span {
  font-size: .55em;
  font-weight: 700;
  vertical-align: middle;
}

.offer-price__note {
  font-size: .78rem;
  color: var(--bronze);
  margin: .25rem 0 .75rem;
  font-family: var(--font-texte);
  font-weight: 500;
}

/* ── Bouton ghost-dark ────────────────────────────────────────────────────── */
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-titre);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid rgba(17, 17, 17, .3);
  border-radius: 999px;
  color: var(--noir);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
  white-space: nowrap;
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  border-color: var(--noir);
  background: var(--noir);
  color: var(--blanc-casse);
}

/* ==========================================================================
   27. ZONE D'INTERVENTION (index.html — SEO local)
   ========================================================================== */
.zone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.zone-text p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 1.2em;
}

.zone-communes-wrap {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.25rem;
  background: rgba(169, 120, 69, 0.06);
  border-left: 3px solid var(--bronze);
  border-radius: 0 8px 8px 0;
}

.zone-communes-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze-deep, #7A4A23);
  margin: 0 0 .5rem;
}

.zone-communes-list {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

.zone-map iframe {
  display: block;
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .zone-inner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   28. À PROPOS — photo bio section
   ========================================================================== */
.section-bio-photo { overflow: hidden; }

.bio-photo-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.bio-photo-fig {
  margin: 0;
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
}

.bio-photo-fig img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}

.bio-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(17, 17, 17, 0.52);
  color: var(--blanc-casse);
  font-family: var(--font-texte);
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

.bio-text p {
  margin-top: 0;
  margin-bottom: 1.4em;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
}

.bio-tag {
  padding: 7px 16px;
  background: rgba(169, 120, 69, 0.09);
  border: 1px solid rgba(169, 120, 69, 0.25);
  border-radius: 999px;
  font-family: var(--font-texte);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze-deep, #7A4A23);
}

@media (max-width: 820px) {
  .bio-photo-wrap {
    grid-template-columns: 1fr;
  }
  .bio-photo-fig {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   BOUTON WHATSAPP FLOTTANT
   Site-wide, ancré bas-droite, vert WhatsApp officiel.
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: width var(--transition-base), background-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
  white-space: nowrap;
}

.wa-float:hover,
.wa-float:focus-visible {
  width: 184px;
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.65), 0 6px 14px rgba(0, 0, 0, 0.22);
}

.wa-float:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.wa-float__icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  padding: 16px;
  display: block;
}

.wa-float__label {
  font-family: var(--font-texte);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 200ms ease 80ms, transform 240ms ease 80ms;
  padding-right: 20px;
}

.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  opacity: 1;
  transform: translateX(0);
}

/* Décaler le bouton quand le bandeau cookies est ouvert */
body:has(.cookie-banner:not([hidden])) .wa-float {
  bottom: 110px;
}

@media (max-width: 720px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  .wa-float__icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    padding: 14px;
  }
  /* Sur mobile : pas d'expansion sur tap accidentel, seulement via JS
     qui ajoute la classe `.is-expanded` au 1er tap. */
  .wa-float:hover,
  .wa-float:focus-visible {
    width: 54px;
  }
  .wa-float__label {
    display: none;
  }
  /* Mobile — tap-to-expand : la classe is-expanded est posée par JS
     pour montrer un label "Contacter sur WhatsApp" avant l'ouverture. */
  .wa-float.is-expanded {
    width: 220px;
    background: #128C7E;
  }
  .wa-float.is-expanded .wa-float__label {
    display: inline-block;
    font-family: var(--font-texte);
    font-weight: 600;
    font-size: 13px;
    opacity: 1;
    transform: none;
    padding-right: 18px;
  }
  body:has(.cookie-banner:not([hidden])) .wa-float {
    bottom: 160px;
  }
}

@media print {
  .wa-float { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-float__label {
    transition: none;
  }
  .wa-float:hover,
  .wa-float:focus-visible {
    transform: none;
  }
}

/* ==========================================================================
   PAGE À PROPOS v2 — nouvelle structure 6 sections + onglets ancres
   ========================================================================== */

/* ── Nav ancres sticky ──────────────────────────────────────────────────── */
.apropos-anchors {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(169, 120, 69, 0.12);
  box-shadow: 0 4px 16px -10px rgba(17, 17, 17, 0.18);
}
.apropos-anchors a {
  font-family: var(--font-texte);
  font-size: 13px;
  font-weight: 500;
  color: var(--noir);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.apropos-anchors a:hover,
.apropos-anchors a:focus-visible {
  background: var(--bronze);
  color: #fff;
  outline: none;
}

/* ── Section générique ──────────────────────────────────────────────────── */
.apropos-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px; /* compense la sticky nav lors d'un clic d'ancre */
}
.apropos-section--alt {
  background: var(--lin);
}
.apropos-section--dark {
  background: linear-gradient(160deg, var(--noir) 0%, var(--noir-profond) 100%);
  color: var(--blanc-casse);
}
.apropos-section--dark .eyebrow {
  color: var(--bronze);
}
.apropos-section--dark h2,
.apropos-section--dark h3 {
  color: var(--blanc-casse);
}
.apropos-section--dark p,
.apropos-section--dark li {
  color: rgba(246, 243, 238, 0.82);
}

/* ── Split 2 colonnes (texte + photo) ───────────────────────────────────── */
.apropos-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.apropos-split.split-reverse {
  direction: rtl;
}
.apropos-split.split-reverse > * {
  direction: ltr;
}
.apropos-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.apropos-text .eyebrow {
  margin: 0;
}
.apropos-text .title-lg {
  margin: 0;
}
.apropos-text .lead {
  margin: 0;
}
.apropos-photo {
  margin: 0;
  border-radius: var(--radius-m, 22px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--lin);
  box-shadow: var(--shadow-soft);
}
.apropos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.apropos-photo:hover img {
  transform: scale(1.03);
}

/* ── Header de section centré ───────────────────────────────────────────── */
.apropos-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
}
.apropos-header .eyebrow {
  margin: 0 0 8px;
}
.apropos-header h2 {
  margin: 0 0 16px;
}
.apropos-header .lead {
  margin: 0;
}

/* ── Grille valeurs (4 cards) ───────────────────────────────────────────── */
.apropos-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.apropos-value-card {
  background: rgba(246, 243, 238, 0.06);
  border: 1px solid rgba(169, 120, 69, 0.25);
  border-radius: var(--radius-m, 22px);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.apropos-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--bronze);
}
.apropos-value-num {
  font-family: var(--font-titre);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
  margin: 0;
}
.apropos-value-card h3 {
  font-family: var(--font-titre);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.apropos-value-card p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ── Liste engagements ──────────────────────────────────────────────────── */
.apropos-engagements-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apropos-engagements-list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-texte);
  font-size: 15.5px;
  line-height: 1.55;
}
.apropos-engagements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 4px rgba(169, 120, 69, 0.15);
}

/* ── Grille offre (3 cards) ─────────────────────────────────────────────── */
.apropos-offre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.apropos-offre-card {
  background: #fff;
  border-radius: var(--radius-m, 22px);
  padding: clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.apropos-offre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(169, 120, 69, 0.28);
}
.apropos-offre-tag {
  align-self: flex-start;
  font-family: var(--font-titre);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 6px 12px;
  border: 1px solid var(--bronze);
  border-radius: 999px;
}
.apropos-offre-card h3 {
  font-family: var(--font-titre);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  margin: 4px 0 0;
  line-height: 1.18;
}
.apropos-offre-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.apropos-offre-card .link-arrow {
  margin-top: 12px;
}

/* ── Signature dans le CTA final ────────────────────────────────────────── */
.apropos-signature {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 16px;
  margin: 18px 0 0;
  color: var(--bronze);
  letter-spacing: 0.02em;
}
.apropos-cta-final .cta-panel-open {
  align-items: center;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .apropos-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apropos-offre-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .apropos-anchors {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .apropos-anchors::-webkit-scrollbar { display: none; }
  .apropos-split,
  .apropos-split.split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .apropos-photo {
    aspect-ratio: 4 / 3;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .apropos-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   À PROPOS v2 — Variantes créatives par section
   ========================================================================== */

/* ── 02 — Timeline animée du parcours ───────────────────────────────────── */
.apropos-parcours {
  padding-block: clamp(80px, 9vw, 140px);
}

.apropos-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
  position: relative;
  counter-reset: timeline-step;
}

/* Rail vertical bronze qui se trace progressivement au scroll */
.apropos-timeline__rail {
  position: absolute;
  left: 28px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(169, 120, 69, 0.15) 0%,
    rgba(169, 120, 69, 0.45) 100%);
  border-radius: 2px;
  transform-origin: top center;
  animation: lfbcRailDraw 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes lfbcRailDraw {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.apropos-timeline__step {
  position: relative;
  padding: 20px 0 40px 80px;
  display: grid;
  grid-template-columns: minmax(70px, auto) 1fr;
  gap: 4px 24px;
  align-items: baseline;
}
.apropos-timeline__step:last-child { padding-bottom: 0; }

/* Pastille bronze sur le rail, avec un anneau qui pulse au reveal */
.apropos-timeline__dot {
  position: absolute;
  left: 20px;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blanc-casse);
  border: 3px solid var(--bronze);
  box-shadow: 0 0 0 0 rgba(169, 120, 69, 0.4);
  z-index: 1;
  transition: box-shadow 0.6s ease;
}
.apropos-timeline__step.is-visible .apropos-timeline__dot {
  animation: lfbcDotPulse 1.4s ease-out;
}
@keyframes lfbcDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(169, 120, 69, 0.45); }
  60%  { box-shadow: 0 0 0 14px rgba(169, 120, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(169, 120, 69, 0); }
}

/* Pastille finale pleine — point d'arrivée "Aujourd'hui" */
.apropos-timeline__dot--final {
  background: var(--bronze);
  width: 22px;
  height: 22px;
  left: 18px;
  top: 24px;
}

.apropos-timeline__year {
  font-family: var(--font-titre);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bronze);
  text-transform: uppercase;
  grid-row: 1;
}

.apropos-timeline__body {
  grid-row: 2;
  grid-column: 1 / -1;
}
.apropos-timeline__body h3 {
  font-family: var(--font-titre);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  margin: 4px 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.apropos-timeline__body p {
  font-family: var(--font-texte);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

@media (min-width: 720px) {
  /* Layout horizontal : année à gauche, contenu à droite, dot au centre */
  .apropos-timeline {
    max-width: 900px;
  }
  .apropos-timeline__rail {
    left: 50%;
    transform: translateX(-50%);
  }
  .apropos-timeline__step {
    padding: 0 0 56px 0;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: center;
  }
  .apropos-timeline__dot {
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
  }
  .apropos-timeline__dot--final {
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
  }
  .apropos-timeline__step:nth-child(odd) .apropos-timeline__year {
    grid-column: 1;
    text-align: right;
    padding-right: 28px;
  }
  .apropos-timeline__step:nth-child(odd) .apropos-timeline__body {
    grid-column: 3;
    grid-row: 1;
    padding-left: 28px;
    text-align: left;
  }
  .apropos-timeline__step:nth-child(even) .apropos-timeline__year {
    grid-column: 3;
    text-align: left;
    padding-left: 28px;
    order: 2;
  }
  .apropos-timeline__step:nth-child(even) .apropos-timeline__body {
    grid-column: 1;
    grid-row: 1;
    padding-right: 28px;
    text-align: right;
  }
  /* Le rail commence après le 1er dot pour que le tracé suive */
  .apropos-timeline__rail {
    top: 30px;
    bottom: 30px;
  }
}

/* ── 03 — Pourquoi (lettre éditoriale, sans citation) ───────────────────── */
.apropos-pourquoi {
  position: relative;
  padding-block: clamp(100px, 12vw, 180px);
  overflow: hidden;
}

.apropos-pourquoi__shape {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.045;
  background: var(--bronze);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: morphNiche 22s ease-in-out infinite;
}

.apropos-letter {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid rgba(169, 120, 69, 0.15);
  box-shadow: 0 30px 80px -40px rgba(17, 17, 17, 0.18);
}

.apropos-letter__rule {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--bronze);
  border-radius: 3px;
}
.apropos-letter__rule--bottom {
  top: auto;
  bottom: 0;
  width: 40px;
  height: 2px;
  opacity: 0.55;
}

.apropos-letter .eyebrow {
  margin: 0 0 12px;
  text-align: center;
}

.apropos-letter__title {
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: -0.015em;
}

.apropos-letter__lead {
  font-family: var(--font-titre);
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.35;
  text-align: center;
  margin: 0 0 36px;
  color: var(--bronze-deep, #7A4A23);
  letter-spacing: -0.005em;
}

.apropos-letter__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-texte);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--noir);
}

.apropos-letter__dropcap {
  float: left;
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 4.2em;
  line-height: 0.85;
  margin: 0.05em 12px -0.1em 0;
  color: var(--bronze);
  letter-spacing: -0.02em;
}

.apropos-letter__highlight {
  position: relative;
  font-family: var(--font-titre);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.4;
  padding: 14px 0 14px 22px;
  border-left: 3px solid var(--bronze);
  color: var(--noir);
  margin: 8px 0;
}

/* ── 04 — Valeurs (4 piliers en colonnes, filets bronze) ────────────────── */
.apropos-valeurs {
  padding-block: clamp(80px, 10vw, 140px);
}

.apropos-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.apropos-pillar {
  padding: 8px clamp(20px, 2.4vw, 36px);
  position: relative;
  text-align: left;
}

/* Filets bronze verticaux entre piliers */
.apropos-pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 84%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(169, 120, 69, 0.45) 25%,
    rgba(169, 120, 69, 0.45) 75%,
    transparent 100%);
}

.apropos-pillar__num {
  font-family: var(--font-titre);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  opacity: 0.85;
}

.apropos-pillar__title {
  font-family: var(--font-titre);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--blanc-casse);
  letter-spacing: -0.005em;
}

.apropos-pillar__desc {
  font-family: var(--font-texte);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(246, 243, 238, 0.7);
  margin: 0;
}

/* ── 05 — Engagements (checklist verticale, coches animées) ─────────────── */
.apropos-engagements-section {
  padding-block: clamp(80px, 9vw, 140px);
}
.apropos-engagements-section .container--narrow {
  max-width: 760px;
}

.apropos-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apropos-check {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(169, 120, 69, 0.18);
}
.apropos-check:last-child {
  border-bottom: 0;
}

.apropos-check__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.apropos-check.is-visible .apropos-check__mark {
  transform: scale(1);
  animation: lfbcCheckPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lfbcCheckPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.apropos-check__body h3 {
  font-family: var(--font-titre);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--noir);
  letter-spacing: -0.005em;
}

.apropos-check__body p {
  font-family: var(--font-texte);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Responsive piliers + checklist */
@media (max-width: 920px) {
  .apropos-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  /* Coupe le filet vertical entre col 1 et col 2 sur la 2e rangée */
  .apropos-pillar:nth-child(2)::after { display: none; }
  /* Ajoute un filet horizontal sous la 1ère rangée */
  .apropos-pillar:nth-child(1)::before,
  .apropos-pillar:nth-child(2)::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(169, 120, 69, 0.35);
  }
}

@media (max-width: 560px) {
  .apropos-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .apropos-pillar {
    padding: 22px clamp(16px, 4vw, 24px);
    border-bottom: 1px solid rgba(169, 120, 69, 0.25);
  }
  .apropos-pillar:last-child { border-bottom: 0; }
  .apropos-pillar:not(:last-child)::after,
  .apropos-pillar::before { display: none; }

  .apropos-letter__dropcap {
    font-size: 3.4em;
  }
}
