/* ============================================================
   PAINTER — section-specific layouts (theme-agnostic structure)
   Maison Léon · peintre en bâtiment · Toulouse
   ============================================================ */

main { display: block; }

/* ═════════════ HERO ═════════════ */
.hero {
  position: relative;
  /* min-height souple : assez pour le contenu principal mais pas figée
     (le bloc .hero-themes ajouté à l'intérieur étend naturellement la hauteur) */
  min-height: clamp(640px, 80vh, 880px);
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  color: var(--accent);
  opacity: .35;
}
.hero-strokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brush-network path {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: brushDraw 3s cubic-bezier(.5,.1,.2,1) forwards;
  filter: blur(.3px);
}
.brush-network path:nth-child(2) { animation-delay: .3s; stroke: var(--accent-2); }
.brush-network path:nth-child(3) { animation-delay: .6s; stroke: var(--accent-3); }
.brush-network path:nth-child(4) { animation-delay: .9s; stroke: var(--accent-4); }
@keyframes brushDraw { to { stroke-dashoffset: 0; } }

.hero-droplets { position: absolute; inset: 0; }
.drop {
  position: absolute;
  width: 16px; height: 22px;
  background: var(--accent);
  opacity: .55;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(180deg);
  animation: dropFall 7s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}
.drop.drop--terracotta { background: var(--terracotta, #C77B5B); }
.drop.drop--ocre       { background: var(--ocre, #D4A574); }
.drop.drop--paon       { background: var(--bleu-paon, #1E5570); }
.drop.drop--sauge      { background: var(--sauge, #9CAB91); }
.drop.d1 { left: 12%; top: -20px; animation-delay: 0s; }
.drop.d2 { left: 28%; top: -20px; animation-delay: 1.2s; }
.drop.d3 { left: 47%; top: -20px; animation-delay: 2.4s; }
.drop.d4 { left: 66%; top: -20px; animation-delay: .8s; }
.drop.d5 { left: 79%; top: -20px; animation-delay: 3.2s; }
.drop.d6 { left: 92%; top: -20px; animation-delay: 4s; }
@keyframes dropFall {
  0% { transform: translateY(-30px) rotate(180deg) scale(.9); opacity: 0; }
  10% { opacity: .7; }
  90% { opacity: .7; }
  100% { transform: translateY(110vh) rotate(180deg) scale(1.1); opacity: 0; }
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas:
    "meta    visual"
    "headline visual"
    "stats   visual";
  align-items: start;
  gap: clamp(28px, 4vw, 56px) clamp(32px, 5vw, 72px);
  min-height: clamp(560px, 70vh, 760px);
  padding-top: 6vh;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-meta {
  grid-area: meta;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding-top: 0;
}
.hero-headline { grid-area: headline; }
.hero-visual   { grid-area: visual; align-self: stretch; }
.hero-stats    { grid-area: stats; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #4A2E12;            /* brun moyen au lieu du muted pâle */
  font-weight: 700;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .5; }
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  color: #3A2A20;
  font-weight: 600;
}
.hero-rating .icon {
  width: 16px; height: 16px;
  color: #E8A53D;            /* or chaud plus saturé */
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.1));
}
.hero-rating em {
  margin-left: 8px;
  font-style: normal;
  font-weight: 700;
  color: #1F140E;
}

.hero-headline {
  text-align: left;
  position: relative;
  z-index: 2;       /* au-dessus des coups de pinceau du fond */
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .96;
  letter-spacing: -0.035em;
  margin: 0 0 1.2rem;
  font-weight: 700;
  color: #1F140E;                   /* brun foncé bien contrasté sur la craie */
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineRise 1s cubic-bezier(.2,.6,.2,1) forwards;
}
.hero-title .line:nth-child(2) { animation-delay: .15s; }
.hero-title .line:nth-child(3) { animation-delay: .3s; }
.hero-title .italic {
  font-style: italic;
  color: #4A2E12;                   /* brun moyen au lieu du muted invisible */
  font-weight: 500;
}
.hero-title .emphasis {
  color: var(--accent);
  font-weight: 700;
}
@keyframes lineRise { to { opacity: 1; transform: none; } }

.hero-lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #3A2A20;                   /* lisible sans dominer le titre */
  margin: 0 0 2rem;
  font-weight: 500;
  line-height: 1.65;
  opacity: 0;
  animation: lineRise 1s .55s cubic-bezier(.2,.6,.2,1) forwards;
  position: relative;
  z-index: 2;
}
.hero-lead em {
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: lineRise 1s .75s cubic-bezier(.2,.6,.2,1) forwards;
}
.phone-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,.6);
  animation: phonePulse 1.6s ease-out infinite;
}
@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.6); }
  100% { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
}

.hero-stats {
  align-self: end;
  padding-bottom: 2vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.stat {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 4px 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(74, 46, 18, .25);
}
.stat:last-child { border-bottom: 1px solid rgba(74, 46, 18, .25); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: #1F140E;
}
.stat-suf {
  font-size: 1rem;
  color: #4A2E12;
  font-weight: 600;
}
.stat-lab {
  grid-column: 1 / -1;
  font-size: .82rem;
  color: #4A2E12;
  font-weight: 500;
  letter-spacing: .04em;
}

.scroll-cue {
  /* Le bloc hero-themes joue maintenant le rôle d'attracteur visuel
     vers la suite — on cache ce cue redondant pour ne pas chevaucher. */
  display: none;
}
.cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text));
  animation: cueDrop 2s ease-in-out infinite;
}
.cue-label {
  font-size: .65rem;
  letter-spacing: .35em;
  font-weight: 600;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "meta" "headline" "visual" "stats";
    gap: 28px;
  }
  .hero-meta { flex-direction: row; align-items: center; flex-wrap: wrap; padding-top: 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0 24px; padding-bottom: 0; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
}

/* ═════════════ ABOUT ═════════════ */
.about {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.about-inner { max-width: var(--container); margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 100px;
  margin: 0;
}
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--accent-3);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: transform .8s cubic-bezier(.5,.1,.2,1);
}
.portrait-frame:hover { transform: rotate(0); }
.portrait-illu { width: 100%; height: 100%; color: var(--accent); }
.portrait-bg { fill: var(--accent-3); }
.portrait-stroke path, .portrait-stroke circle { stroke: var(--accent); }
.portrait-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--text);
  color: var(--paper);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.portrait-caption {
  margin-top: 18px;
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

.about-text .lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  font-weight: 400;
  margin: 0 0 2.5rem;
  max-width: 50ch;
}

.values-list {
  list-style: none;
  padding: 0; margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
.values-list li {
  display: flex;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.val-num {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}
.val-body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.val-body { color: var(--muted); font-size: .95rem; line-height: 1.55; }
.val-body strong { color: var(--text); font-size: 1.05rem; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  /* Fond ocre clair + texte lin foncé pour un contraste lisible
     (au lieu du terracotta sur ocre, qui sont deux tons chauds proches) */
  background: color-mix(in srgb, var(--accent-3) 55%, var(--paper) 45%);
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.badge .icon { width: 14px; height: 14px; color: var(--accent); }
[data-mode="dark"] .badge {
  background: color-mix(in srgb, var(--accent) 18%, var(--paper) 82%);
  color: #F5EFE6;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}
[data-mode="dark"] .badge .icon { color: var(--accent); }

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 320px; }
  .values-list { grid-template-columns: 1fr; }
}

/* ═════════════ SERVICES ═════════════ */
.services {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
}
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--paper);
  padding: 40px 36px 36px;
  position: relative;
  transition: background .35s, color .35s, transform .35s;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s cubic-bezier(.5,.1,.2,1);
  z-index: -1;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { color: var(--paper); }
.service-card:hover .service-icon { color: var(--paper); transform: rotate(-8deg) scale(1.1); }
.service-card:hover h3 { color: var(--paper); }
.service-card:hover .service-link { color: var(--paper); }
.service-card:hover .service-link .icon { transform: translateX(8px); }
.service-card:hover p { color: rgba(255,255,255,.85); }

.service-icon {
  width: 56px; height: 56px;
  color: var(--accent);
  margin-bottom: 24px;
  transition: color .4s, transform .4s;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .35s;
}
.service-card p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: .95rem;
  transition: color .35s;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--accent);
  transition: color .3s;
}
.service-link .icon { transition: transform .35s; }

@media (max-width: 920px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ═════════════ PREMIUM ═════════════ */
.premium {
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  background: var(--text);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.premium .section-title em { color: var(--accent-3); }
.premium .section-sub { color: rgba(255,255,255,.65); }
.premium .section-head { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

.premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.orb-1 { width: 380px; height: 380px; background: var(--accent); top: 10%; left: -120px; animation: orbFloat 12s ease-in-out infinite; }
.orb-2 { width: 280px; height: 280px; background: var(--accent-2); top: 50%; right: -60px; animation: orbFloat 16s ease-in-out infinite reverse; }
.orb-3 { width: 320px; height: 320px; background: var(--accent-3); bottom: 5%; left: 40%; animation: orbFloat 18s ease-in-out infinite; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}

.premium-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.opt-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .5s cubic-bezier(.5,.1,.2,1), background .4s, border-color .4s;
  overflow: hidden;
  cursor: pointer;
}
.opt-card::after {
  content: attr(data-price);
  position: absolute;
  top: 14px; right: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-3);
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(20px, -20px) scale(.6);
  transition: opacity .4s cubic-bezier(.5,.1,.2,1), transform .4s cubic-bezier(.5,.1,.2,1);
  pointer-events: none;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
}
.opt-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: var(--accent-3);
}
.opt-card:hover::after {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

.opt-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-3);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 16px;
  opacity: .9;
}
.opt-emoji {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 18px;
  transition: transform .4s cubic-bezier(.5,.1,.2,1), background .35s, border-color .35s;
}
.opt-card:hover .opt-emoji {
  transform: rotate(-8deg) scale(1.1);
  background: var(--accent-3);
  border-color: var(--accent-3);
}
.premium-foot {
  max-width: var(--container);
  margin: 36px auto 0;
  text-align: center;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  padding: 14px 22px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 999px;
  display: block;
  width: fit-content;
}
.opt-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  line-height: 1.2;
  padding-right: 110px;
}
.opt-card p {
  color: rgba(255,255,255,.7);
  margin: 0 0 16px;
  font-size: .92rem;
  line-height: 1.5;
}
.opt-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.opt-list li {
  font-size: .78rem;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
}

@media (max-width: 980px) { .premium-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .premium-grid { grid-template-columns: 1fr; } }

/* ═════════════ AVANT/APRÈS ═════════════ */
.ba {
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  background: var(--bg);
  position: relative;
}
.ba-stage {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  cursor: ew-resize;
  background: var(--paper);
}
.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-image svg { width: 100%; height: 100%; }
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path .15s linear;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 4px;
  background: var(--paper);
  transform: translateX(-50%);
  pointer-events: none;
  transition: left .15s linear;
}
.ba-line { position: absolute; inset: 0; background: var(--paper); }
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--text);
  display: grid;
  place-items: center;
  pointer-events: auto;
  cursor: grab;
  box-shadow: 0 14px 32px -12px rgba(0,0,0,.5);
  transition: transform .25s, background .25s, color .25s;
}
.ba-knob:hover { background: var(--accent); color: var(--paper); transform: translate(-50%,-50%) scale(1.1); }
.ba-knob svg { width: 22px; height: 22px; }

.ba-spec {
  max-width: 1100px;
  margin: 28px auto 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-spec li {
  background: var(--paper);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ba-spec span {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ba-spec strong {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
@media (max-width: 700px) { .ba-spec { grid-template-columns: repeat(2, 1fr); } }

/* ═════════════ CONSEILS / SIMULATEUR ═════════════ */
.advice {
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  background: var(--paper);
}
.advice-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.tips-list {
  list-style: none;
  counter-reset: tip;
  padding: 0; margin: 0;
}
.tips-list li {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
}
.tips-list li:last-child { border-bottom: 1px solid var(--line); }
.tip-step {
  grid-row: 1 / span 2;
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.03em;
}
.tips-list h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em;
}
.tips-list p {
  color: var(--muted);
  margin: 0;
  font-size: .98rem;
}

.advice-sim {
  background: var(--text);
  color: var(--paper);
  padding: 36px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 110px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.45);
}
.sim-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 6px 14px;
  border: 1px solid var(--accent-3);
  border-radius: 999px;
  margin-bottom: 18px;
}
.advice-sim h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.sim-sub { color: rgba(255,255,255,.65); margin: 0 0 26px; font-size: .9rem; }

.sim-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.sim-label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.sim-label em {
  font-style: normal;
  color: var(--accent-3);
  font-weight: 700;
}
.sim-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: var(--paper);
  font-size: .95rem;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-3) 50%), linear-gradient(135deg, var(--accent-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  transition: border-color .3s;
}
.sim-select:focus { outline: 0; border-color: var(--accent-3); }
.sim-select option { background: var(--text); }

.sim-toggle {
  display: flex;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.1);
}
.sim-toggle button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: background .35s, color .35s;
}
.sim-toggle button.is-active {
  background: var(--accent-3);
  color: var(--text);
}

.sim-range {
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  outline: 0;
}
.sim-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px; height: 22px;
  background: var(--accent-3);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .25s;
  box-shadow: 0 0 0 4px rgba(187,225,250,.2);
}
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sim-range::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--accent-3);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.sim-result {
  margin: 24px 0 18px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.2);
  text-align: center;
}
.sim-result-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.sim-result-value {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -.02em;
  display: block;
  color: var(--accent-3);
  transition: transform .25s, color .25s;
}
.sim-result-pots {
  display: block;
  margin-top: 6px;
  font-size: .98rem;
  color: rgba(255,255,255,.78);
}
.sim-result-pots strong {
  color: var(--accent-3);
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 1.15em;
}
.sim-result-note { font-size: .78rem; color: rgba(255,255,255,.55); display: block; margin-top: 10px; }

@media (max-width: 920px) {
  .advice-grid { grid-template-columns: 1fr; }
  .advice-sim { position: static; }
}

/* ─── Mode sombre : remontée du contraste sur la section CONSEILS ───
   En light mode, .advice-sim utilise var(--text) (foncé) comme fond.
   En dark mode, --text bascule en ivoire ce qui casserait l'intention
   d'avoir un panneau sombre. On force ici une teinte navy "lifted",
   distincte du --bg (#0d1620), avec des textes clairs pour rester
   nettement lisibles. */
[data-mode="dark"] .advice-sim {
  background: #1a2c40;
  color: #f4f1ea;
  box-shadow:
    0 30px 60px -28px rgba(0,0,0,.75),
    inset 0 0 0 1px rgba(187,225,250,.10);
}
[data-mode="dark"] .advice-sim h3 { color: #FFFFFF; }
[data-mode="dark"] .sim-tag {
  color: #BBE1FA;
  border-color: rgba(187,225,250,.55);
  background: rgba(187,225,250,.08);
}
[data-mode="dark"] .sim-sub        { color: rgba(244,241,234,.85); }
[data-mode="dark"] .sim-label      { color: rgba(244,241,234,.85); }
[data-mode="dark"] .sim-select {
  background: rgba(255,255,255,.08);
  border-color: rgba(187,225,250,.32);
  color: #f4f1ea;
}
[data-mode="dark"] .sim-select option { background: #14202e; color: #f4f1ea; }
[data-mode="dark"] .sim-toggle {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}
[data-mode="dark"] .sim-toggle button { color: rgba(244,241,234,.82); }
[data-mode="dark"] .sim-toggle button.is-active {
  background: #BBE1FA;
  color: #14202e;
}
[data-mode="dark"] .sim-range { background: rgba(255,255,255,.18); }
[data-mode="dark"] .sim-result {
  background: rgba(255,255,255,.04);
  border-color: rgba(187,225,250,.35);
}
[data-mode="dark"] .sim-result-label { color: rgba(244,241,234,.82); }
[data-mode="dark"] .sim-result-value { color: #BBE1FA; }
[data-mode="dark"] .sim-result-note  { color: rgba(244,241,234,.78); }

/* Côté gauche : les 3 conseils — descriptions plus lisibles en dark */
[data-mode="dark"] .tips-list h3 { color: #f4f1ea; }
[data-mode="dark"] .tips-list p  { color: rgba(244,241,234,.78); }
[data-mode="dark"] .tip-step     { color: #BBE1FA; }
[data-mode="dark"] .advice-tips .kicker { color: rgba(244,241,234,.65); }
[data-mode="dark"] .advice-tips .section-title { color: #f4f1ea; }
[data-mode="dark"] .advice-tips .section-title em { color: #BBE1FA; }

/* ═════════════ REVIEWS ═════════════ */
.reviews {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  overflow: hidden;
}
.reviews .section-head { padding: 0 var(--gutter); }
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
  width: max-content;
  animation: marquee 50s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - 12px)); }
}

.rev-card {
  width: clamp(300px, 30vw, 380px);
  flex-shrink: 0;
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .35s, border-color .35s;
}
.rev-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.rev-quote {
  width: 36px; height: 36px;
  color: var(--accent);
  opacity: .25;
}
.rev-quote svg { width: 100%; height: 100%; }
.rev-card p {
  flex: 1;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
}
.rev-card footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 8px;
  font-size: .85rem;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.rev-card footer strong {
  grid-column: 1;
  color: var(--text);
  font-size: .95rem;
}
.rev-card footer span:nth-of-type(1) { grid-column: 1; }
.rev-stars { grid-row: 1 / span 2; grid-column: 2; align-self: center; color: #f5a623; letter-spacing: 1px; }

/* ═════════════ CONTACT ═════════════ */
.contact {
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  background: linear-gradient(135deg, var(--accent), var(--text));
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.05), transparent 40%);
  pointer-events: none;
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact .section-title em { color: var(--accent-3); }
.contact-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 44ch;
}
.contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.ci-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.ci-value {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--paper);
  text-align: right;
}

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { position: relative; grid-column: span 1; }
.field-text { grid-column: span 2; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 18px 0 10px;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-size: 1rem;
  outline: 0;
  resize: vertical;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent-3); }
.field input:not(:placeholder-shown), .field input:focus,
.field textarea:not(:placeholder-shown), .field textarea:focus,
.field select:focus, .field select:valid { padding-top: 22px; }

.field label {
  position: absolute;
  left: 0;
  top: 18px;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  pointer-events: none;
  transition: top .3s, font-size .3s, color .3s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label {
  top: 0;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.field input::placeholder, .field textarea::placeholder { opacity: 0; }
.field input, .field textarea, .field select { caret-color: var(--accent-3); }
.field select option { background: var(--text); }
/* Tant que l'utilisateur n'a pas choisi une vraie option, on masque
   le texte du select (le "—" par défaut) pour qu'il ne se superpose
   pas au label "Sujet" qui flotte à la même hauteur. */
.field select:invalid { color: transparent; }
.field select:focus, .field select:valid { color: var(--paper); }

.field-line {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--accent-3);
  transition: width .35s ease;
}
.field input:focus ~ .field-line,
.field select:focus ~ .field-line,
.field textarea:focus ~ .field-line { width: 100%; }

.form-note {
  grid-column: span 2;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  text-align: center;
}
.form-success {
  grid-column: span 2;
  text-align: center;
  padding: 14px;
  background: rgba(46,204,113,.15);
  color: #abf0c5;
  border-radius: 10px;
  font-weight: 600;
}
.contact-form .btn-block { grid-column: span 2; }

@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 28px; }
  .field, .field-text { grid-column: span 1; }
  .form-note, .contact-form .btn-block, .form-success { grid-column: span 1; }
}

/* ═════════════ FOOTER ═════════════ */
.site-footer {
  position: relative;
  margin-top: clamp(80px, 12vw, 140px);
  padding: 0 var(--gutter) 0;
  background:
    linear-gradient(180deg, rgba(15,76,117,.04), transparent 30%),
    var(--paper);
  color: var(--text);
  border-top: 0;
}
/* Vague décorative qui sépare le footer du dernier section */
.foot-wave {
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  width: 100%;
  height: clamp(40px, 5vw, 80px);
  display: block;
  color: var(--paper);
  transform: rotate(180deg);
  filter: drop-shadow(0 -4px 12px rgba(15,76,117,.08));
}
.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: clamp(60px, 8vw, 100px);
}

/* ── Bandeau CTA "Une urgence ?" ── */
.foot-cta {
  position: relative;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: clamp(22px, 3vw, 32px) clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent-2, var(--accent)) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  box-shadow: 0 24px 60px -20px rgba(15,76,117,.45);
  overflow: hidden;
}
.foot-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.foot-cta__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.foot-cta__icon svg { width: 28px; height: 28px; color: #fff; }
.foot-cta__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  animation: footCtaRing 2.4s ease-out infinite;
}
@keyframes footCtaRing {
  0%   { transform: scale(.7); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.foot-cta__text { position: relative; z-index: 1; line-height: 1.3; }
.foot-cta__eyebrow {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .88;
  margin-bottom: 4px;
}
.foot-cta__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  display: block;
}
.foot-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.foot-cta__btn svg { width: 18px; height: 18px; transition: transform .35s ease; }
.foot-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.25); }
.foot-cta__btn:hover svg { transform: translateX(4px); }

/* ── Grid principal du footer ── */
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.foot-col {}
.foot-col--brand {}
.foot-mark {
  width: 44px; height: 44px;
  display: block;
  color: var(--accent);
  margin-bottom: 16px;
}
.foot-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.foot-tag {
  font-family: inherit;
  font-size: .96rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 38ch;
}
.foot-h {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--text);
}

/* Liens nav du footer */
.foot-nav {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.foot-nav a {
  position: relative;
  font-size: .94rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s, padding-left .3s;
}
.foot-nav a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: opacity .3s, left .3s;
}
.foot-nav a:hover {
  color: var(--accent);
  padding-left: 16px;
}
.foot-nav a:hover::before { opacity: 1; left: 0; }

/* Contact list */
.foot-contact {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 14px;
}
.foot-contact li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--muted);
}
.foot-contact a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color .3s;
}
.foot-contact a:hover { color: var(--accent); }
.foot-ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(15,76,117,.08);
  border-radius: 8px;
  color: var(--accent);
}
.foot-ico svg { width: 16px; height: 16px; }

/* Horaires */
.foot-hours {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 8px;
}
.foot-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.foot-hours li:last-child { border-bottom: 0; }
.foot-hours strong { color: var(--text); font-weight: 600; }
.foot-hours__urgency {
  margin-top: 6px;
  padding: 10px 14px !important;
  background: rgba(34,197,94,.08);
  border-radius: 10px;
  border: 1px solid rgba(34,197,94,.2) !important;
  color: rgb(22,163,74) !important;
  font-weight: 600;
  border-bottom: 1px solid rgba(34,197,94,.2) !important;
  justify-content: flex-start !important;
  gap: 10px;
}
.foot-hours__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgb(34,197,94);
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: footHoursPulse 1.6s ease-out infinite;
}
@keyframes footHoursPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  100% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}

/* Réseaux sociaux */
.foot-social {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(15,76,117,.08);
  color: var(--accent);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s, color .3s;
}
.foot-social a svg { width: 18px; height: 18px; }
.foot-social a:hover {
  transform: translateY(-3px) rotate(-6deg);
  background: var(--accent);
  color: #fff;
}

/* Trust badges */
.foot-trust {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(20px, 3vw, 28px) 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.foot-trust__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 600;
}
.foot-trust__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
}
.foot-trust__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
}
.foot-trust__badge {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2, var(--accent)));
  color: #fff;
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px -4px rgba(15,76,117,.4);
}

/* Bandeau bas */
.foot-bottom {
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: var(--muted);
}
.foot-bottom strong { color: var(--text); font-weight: 700; }
.foot-bottom ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.foot-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}
.foot-bottom a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-col--brand { grid-column: auto; }
  .foot-cta { grid-template-columns: 1fr; text-align: center; }
  .foot-cta__icon { margin: 0 auto; }
  .foot-cta__btn { justify-content: center; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .foot-trust { flex-direction: column; align-items: flex-start; }
}

/* ═════════════ BOUTON WHATSAPP FLOTTANT ═════════════
   Aligné sur la même colonne verticale que .floating-controls
   (right: max(20px, 1.5vw)) et même diamètre (68px) pour un
   stack cohérent. */
.wa-fab {
  position: fixed;
  bottom: max(20px, 1.5vw);
  right: max(20px, 1.5vw);
  z-index: 1000;
  width: 68px; height: 68px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow:
    0 14px 32px -6px rgba(37,211,102,.62),
    0 6px 14px rgba(0,0,0,.20);
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  /* Visible dès le chargement de la page */
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
/* Compat : si du JS ajoute encore is-active, on reste cohérent */
.wa-fab.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 18px 36px -6px rgba(37,211,102,.7),
    0 8px 16px rgba(0,0,0,.22);
}
.wa-fab:active { transform: translateY(-1px) scale(1.02); }
.wa-fab__icon {
  width: 34px; height: 34px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.15));
}
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
  z-index: 1;
}
.wa-fab__pulse--2 { animation-delay: 1s; }
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.wa-fab__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--text);
}
.wa-fab:hover .wa-fab__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 720px) {
  .wa-fab { width: 60px; height: 60px; }
  .wa-fab__icon { width: 30px; height: 30px; }
  .wa-fab__tooltip { display: none; }
}

/* ═════════════ SCROLL REVEAL — VARIANTS ═════════════
   Le JS ajoute déjà `data-reveal` sur des éléments génériques.
   On ajoute des variantes plus visuelles via data-reveal-variant.
   ═════════════════════════════════════════════════════ */
[data-reveal] {
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal][data-reveal-variant="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal][data-reveal-variant="fade-left"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal][data-reveal-variant="fade-right"] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal][data-reveal-variant="scale-in"] {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal][data-reveal-variant="blur-in"] {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition: opacity 1s ease, filter 1s ease, transform 1s cubic-bezier(.2,.6,.2,1);
}
[data-reveal][data-reveal-variant="rotate-in"] {
  opacity: 0;
  transform: rotate(-6deg) translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal][data-reveal-variant].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Stagger children — chaque enfant apparaît avec un délai progressif */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
[data-reveal-stagger].is-in > *  { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .15s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .25s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .35s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .45s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .55s; }
[data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: .65s; }
[data-reveal-stagger].is-in > *:nth-child(n+8) { transition-delay: .75s; }

/* Section heading — révélation en deux temps : eyebrow puis titre */
.section-head[data-reveal] .kicker,
.section-head[data-reveal] .section-title,
.section-head[data-reveal] .section-sub {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.section-head[data-reveal].is-in .kicker        { opacity: 1; transform: none; transition-delay: .05s; }
.section-head[data-reveal].is-in .section-title { opacity: 1; transform: none; transition-delay: .2s; }
.section-head[data-reveal].is-in .section-sub   { opacity: 1; transform: none; transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > *,
  .section-head[data-reveal] .kicker,
  .section-head[data-reveal] .section-title,
  .section-head[data-reveal] .section-sub {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .wa-fab__pulse, .foot-cta__icon::after, .foot-hours__dot { animation: none !important; }
}

/* ═════════════════════════════════════════════════════════════════
   PAINTER — STYLES SPECIFIQUES MAISON LEON
   Hero collage / Methode / Nuancier / Animations peinture
   ═════════════════════════════════════════════════════════════════ */

/* ───── HERO : SVG stroke under "les regles" ───── */
.hero-title .emphasis { position: relative; display: inline-block; }
.hero-stroke-svg {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -.18em;
  width: 104%;
  height: .35em;
  color: var(--accent);
  pointer-events: none;
}
.hero-stroke-svg path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: paintStrokeReveal 1.4s cubic-bezier(.5,.2,.2,1) 1.2s forwards;
  opacity: .7;
}
@keyframes paintStrokeReveal {
  0%   { stroke-dashoffset: 800; opacity: 0; }
  20%  { opacity: .9; }
  100% { stroke-dashoffset: 0; opacity: .7; }
}

/* ───── HERO : COLLAGE 4 PHOTOS ───── */
.hero-visual {
  display: flex;
  align-items: center;
  min-height: clamp(380px, 46vw, 540px);
}
.hero-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero-collage__tile {
  position: absolute;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 38px -10px rgba(42,31,26,.30), 0 4px 10px rgba(42,31,26,.10);
  background: var(--paper);
  isolation: isolate;
  opacity: 0;
  animation: tileIn 1s cubic-bezier(.2,.7,.2,1) forwards;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.hero-collage__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-collage__tile:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 5;
  box-shadow: 0 30px 60px -15px rgba(42,31,26,.40), 0 6px 14px rgba(42,31,26,.15);
}
.hero-collage__tile--1 {
  width: 58%; height: 58%; top: 0; left: 0;
  transform: rotate(-2deg);
  animation-delay: .3s;
  z-index: 2;
}
.hero-collage__tile--2 {
  width: 50%; height: 50%; top: 4%; right: 0;
  transform: rotate(3deg);
  animation-delay: .5s;
  z-index: 3;
}
.hero-collage__tile--3 {
  width: 50%; height: 48%; bottom: 0; left: 6%;
  transform: rotate(-3deg);
  animation-delay: .7s;
  z-index: 1;
}
.hero-collage__tile--4 {
  width: 54%; height: 50%; bottom: 4%; right: 2%;
  transform: rotate(2deg);
  animation-delay: .9s;
  z-index: 4;
}
@keyframes tileIn {
  from { opacity: 0; transform: scale(.9) rotate(0); }
  to   { opacity: 1; }
}
.hero-collage__swatch {
  position: absolute;
  bottom: 10px; left: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.25), inset 0 0 0 2px rgba(255,255,255,.55);
  z-index: 2;
}
.hero-collage__swatch--terracotta { background: #C77B5B; }
.hero-collage__swatch--ocre       { background: #D4A574; }
.hero-collage__swatch--paon       { background: #1E5570; }
.hero-collage__swatch--sauge      { background: #9CAB91; }

@media (max-width: 1080px) {
  .hero-collage { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-visual { min-height: clamp(300px, 90vw, 420px); }
}

/* ───── BTN BRUSH (paintbrush sway on hover) ───── */
.btn-brush { position: relative; overflow: visible; }
.btn-brush .icon-l {
  width: 1.2em; height: 1.2em;
  transition: transform .55s cubic-bezier(.5,.1,.2,1);
}
.btn-brush:hover .icon-l { animation: brushWiggle .8s ease-in-out; }
@keyframes brushWiggle {
  0%, 100% { transform: rotate(0); }
  20%      { transform: rotate(-12deg) translateY(-1px); }
  50%      { transform: rotate(8deg) translateY(0); }
  80%      { transform: rotate(-4deg); }
}
.btn-brush::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 0;
  background: var(--accent);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: translateX(-50%);
  transition: width .4s ease, height .5s ease;
  pointer-events: none;
  opacity: .65;
}
.btn-brush:hover::after { width: 22px; height: 14px; }

/* ═════════════ ABOUT — pull-quote ═════════════ */
.about-quote {
  position: relative;
  margin: 0 0 2rem;
  padding: 24px 28px 24px 56px;
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: 4px 14px 14px 4px;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}
.about-quote p { margin: 0 0 .6rem; }
.about-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-quote__mark {
  position: absolute;
  top: 18px; left: 16px;
  width: 28px; height: 28px;
  color: var(--accent);
  opacity: .35;
}

/* ═════════════ METHODE — TIMELINE 6 ETAPES ═════════════ */
.methode {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.methode::before {
  content: '';
  position: absolute;
  top: 8%; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-4) 30%, transparent), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.methode::after {
  content: '';
  position: absolute;
  bottom: 8%; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-3) 25%, transparent), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.methode .section-head { position: relative; z-index: 2; }

.methode__list {
  list-style: none;
  padding: 0; margin: 0 auto;
  max-width: 920px;
  position: relative;
  z-index: 2;
}
.methode__list::before {
  content: '';
  position: absolute;
  left: 28px; top: 22px; bottom: 22px;
  width: 3px;
  background: linear-gradient(180deg,
    #C77B5B 0%, #D4A574 25%, #1E5570 50%, #9CAB91 75%, #C77B5B 100%);
  border-radius: 3px;
  opacity: .3;
}
.methode__step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 48px 1fr;
  gap: 18px;
  padding: 14px 0 16px;
  align-items: start;
}
.methode__step:not(:last-child) { padding-bottom: 22px; }

.methode__number {
  position: relative;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  z-index: 2;
  box-shadow: 0 4px 12px -6px rgba(199,123,91,.45);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.methode__step[data-step="01"] .methode__number { color: #C77B5B; border-color: #C77B5B; }
.methode__step[data-step="02"] .methode__number { color: #B8865B; border-color: #D4A574; }
.methode__step[data-step="03"] .methode__number { color: #1E5570; border-color: #1E5570; }
.methode__step[data-step="04"] .methode__number { color: #7A8C70; border-color: #9CAB91; }
.methode__step[data-step="05"] .methode__number { color: #C77B5B; border-color: #C77B5B; }
.methode__step[data-step="06"] .methode__number { color: #1E5570; border-color: #1E5570; }
.methode__step:hover .methode__number { transform: scale(1.08) rotate(-4deg); }

.methode__icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-top: 6px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.methode__icon svg { width: 100%; height: 100%; }
.methode__step:hover .methode__icon { transform: rotate(-8deg) scale(1.05); }
.methode__step[data-step="03"] .methode__icon { color: #1E5570; }
.methode__step[data-step="04"] .methode__icon { color: #7A8C70; }
.methode__step[data-step="06"] .methode__icon { color: #C77B5B; }

.methode__body { padding-top: 2px; }
.methode__body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin: 0 0 .25em;
  color: var(--text);
  line-height: 1.2;
}
.methode__body p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
  max-width: 65ch;
}
.methode__body p strong { color: var(--text); font-weight: 700; }
.methode__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.methode__time::before { content: '⏱'; font-size: .9em; }

.methode__drip {
  position: absolute;
  left: 36px;
  bottom: 4px;
  width: 8px; height: 14px;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
  animation: dripDown 3s ease-in-out infinite;
}
.methode__step[data-step="01"] .methode__drip { background: #C77B5B; animation-delay: 0s; }
.methode__step[data-step="02"] .methode__drip { background: #D4A574; animation-delay: .5s; }
.methode__step[data-step="03"] .methode__drip { background: #1E5570; animation-delay: 1s; }
.methode__step[data-step="04"] .methode__drip { background: #9CAB91; animation-delay: 1.5s; }
.methode__step[data-step="05"] .methode__drip { background: #C77B5B; animation-delay: 2s; }
@keyframes dripDown {
  0%, 100% { opacity: 0; transform: translate(-50%, 0) scaleY(.4); }
  20%      { opacity: .9; transform: translate(-50%, 6px) scaleY(1); }
  60%      { opacity: .7; transform: translate(-50%, 30px) scaleY(1.4); }
  90%      { opacity: 0; transform: translate(-50%, 50px) scaleY(.5); }
}

@media (max-width: 720px) {
  .methode__step {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }
  .methode__step .methode__icon { display: none; }
  .methode__list::before { left: 30px; }
  .methode__number { width: 60px; height: 60px; font-size: 1.3rem; }
  .methode__drip { left: 30px; }
}

/* ═════════════ PRESTATIONS — featured pill ═════════════ */
.service-card { position: relative; }
.service-card--featured {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent-3) 18%, var(--paper)) 0%,
    var(--paper) 60%);
  border: 1px solid color-mix(in srgb, var(--accent-3) 40%, transparent);
}
.service-pill {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
  background: var(--accent);
  color: var(--paper);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ═════════════ NUANCIER — 12 SWATCHES ═════════════ */
.nuancier {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.nuancier::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(95deg,
      transparent 0,
      color-mix(in srgb, var(--accent) 3%, transparent) 2px,
      transparent 4px,
      transparent 60px),
    repeating-linear-gradient(-95deg,
      transparent 0,
      color-mix(in srgb, var(--accent-2) 2%, transparent) 1px,
      transparent 3px,
      transparent 80px);
  pointer-events: none;
  z-index: 0;
}
.nuancier .section-head,
.nuancier__grid,
.nuancier__note { position: relative; z-index: 2; }

.nuancier__grid {
  list-style: none;
  padding: 0; margin: 0 auto;
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  perspective: 1000px;
}

.nuancier__card {
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transform-style: preserve-3d;
}
.nuancier__inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 14px;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
  box-shadow: 0 12px 30px -12px rgba(42,31,26,.25), 0 2px 6px rgba(42,31,26,.08);
}
.nuancier__card:hover .nuancier__inner,
.nuancier__card:focus-within .nuancier__inner {
  transform: rotateY(180deg) translateY(-6px);
}

.nuancier__face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.nuancier__face--front { background: var(--swatch, var(--accent)); }
.nuancier__sample {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(95deg,
      rgba(255,255,255,0) 0 6px,
      rgba(255,255,255,.05) 6px 7px),
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.18), transparent 40%);
  pointer-events: none;
}
.nuancier__ref {
  position: relative; z-index: 2;
  font-family: 'Inter', monospace, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.nuancier__name {
  position: relative; z-index: 2;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}
/* Couleurs claires => texte sombre */
.nuancier__card[style*="#E8DDC9"] .nuancier__ref,
.nuancier__card[style*="#D8C9B1"] .nuancier__ref,
.nuancier__card[style*="#F5EFE6"] .nuancier__ref,
.nuancier__card[style*="#B8B0A4"] .nuancier__ref,
.nuancier__card[style*="#D4A574"] .nuancier__ref {
  color: rgba(42,31,26,.65);
  text-shadow: none;
}
.nuancier__card[style*="#E8DDC9"] .nuancier__name,
.nuancier__card[style*="#D8C9B1"] .nuancier__name,
.nuancier__card[style*="#F5EFE6"] .nuancier__name,
.nuancier__card[style*="#B8B0A4"] .nuancier__name,
.nuancier__card[style*="#D4A574"] .nuancier__name {
  color: #2A1F1A;
  text-shadow: none;
}

.nuancier__face--back {
  background: var(--paper);
  color: var(--text);
  transform: rotateY(180deg);
  border: 2px solid var(--swatch, var(--accent));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
}
.nuancier__face--back::before {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  background: var(--swatch, var(--accent));
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--swatch);
}
.nuancier__back-finish {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  line-height: 1.2;
}
.nuancier__back-finish::before {
  content: 'Finition';
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.nuancier__back-room,
.nuancier__back-light {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}
.nuancier__back-room::before {
  content: '⌂  ';
  color: var(--accent);
  font-weight: 700;
}
.nuancier__back-light::before {
  content: '☼  ';
  color: var(--accent-3, var(--accent));
  font-weight: 700;
}

.nuancier__note {
  max-width: 720px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 14px;
  font-size: .92rem;
  color: var(--muted);
}
.nuancier__note .icon { width: 20px; height: 20px; color: var(--accent); }
.nuancier__note strong { color: var(--text); font-weight: 700; }

@media (max-width: 1080px) {
  .nuancier__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nuancier__grid { grid-template-columns: repeat(2, 1fr); }
  .nuancier__name { font-size: .95rem; }
  .nuancier__back-finish { font-size: 1rem; }
}

/* ═════════════ ROLLER TRAIL — bande animée sous le hero ═════════════ */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0,
      color-mix(in srgb, var(--accent) 35%, transparent) 2px,
      transparent 6px,
      transparent 22px),
    linear-gradient(180deg,
      transparent 0%,
      color-mix(in srgb, var(--accent) 12%, transparent) 60%,
      transparent 100%);
  background-size: 220px 100%, 100% 100%;
  animation: rollerTrail 12s linear infinite;
  pointer-events: none;
  opacity: .55;
  z-index: 1;
}
@keyframes rollerTrail {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 440px 0, 0 0; }
}

/* ═════════════ SERVICE CARDS — accent border painter ═════════════ */
.services .service-card {
  border-top: 3px solid transparent;
  background-image: linear-gradient(var(--paper), var(--paper)),
    linear-gradient(90deg, #C77B5B, #D4A574, #1E5570);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ═════════════ ABOUT — outils du peintre (rangée d'icônes) ═════════════ */
.about-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.about-tools__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.about-tools__item {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  /* Couleur sourcée sur le texte foncé pour rester lisible — l'accent
     terracotta sur fond clair manque trop de contraste */
  color: color-mix(in srgb, var(--text) 70%, var(--accent) 30%);
  cursor: default;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .25s ease;
  border-radius: 8px;
  padding: 4px;
}
.about-tools__item svg { width: 100%; height: 100%; }
.about-tools__item:hover {
  transform: translateY(-3px) rotate(-6deg);
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.about-tools__item:nth-child(2):hover { color: var(--ocre, #D4A574); }
.about-tools__item:nth-child(3):hover { color: var(--bleu-paon, #1E5570); }
.about-tools__item:nth-child(4):hover { color: var(--sauge, #9CAB91); }
.about-tools__item:nth-child(5):hover { color: var(--ocre, #D4A574); }
.about-tools__item:nth-child(6):hover { color: var(--accent, #C77B5B); }

/* ═════════════ ACCESSIBILITY : reduce motion ═════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-stroke-svg path,
  .hero-collage__tile,
  .methode__drip,
  .nuancier__inner,
  .hero::after,
  .brush-network path,
  .drop {
    animation: none !important;
  }
  .nuancier__card:hover .nuancier__inner,
  .nuancier__card:focus-within .nuancier__inner {
    transform: rotateY(180deg) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   COLORISTE PUSH — palette plus vive, sections tintées, accents multicolores
   Ajouté après le rendu initial pour pousser la dimension "peintre coloré"
   ═══════════════════════════════════════════════════════════════════════ */

/* ──────── 1. SECTIONS TINTÉES — alternance subtile de fonds colorés ──────── */
.methode {
  background:
    radial-gradient(ellipse at 12% 8%, color-mix(in srgb, var(--ocre) 8%, transparent), transparent 55%),
    radial-gradient(ellipse at 88% 92%, color-mix(in srgb, var(--terracotta) 6%, transparent), transparent 55%),
    var(--craie-ocre);
}
.services, .prestations {
  background:
    radial-gradient(ellipse at 88% 12%, color-mix(in srgb, var(--sauge) 12%, transparent), transparent 55%),
    radial-gradient(ellipse at 8% 80%, color-mix(in srgb, var(--vert-olive) 6%, transparent), transparent 60%),
    var(--craie-sauge);
}

/* ──────── DARK MODE — overrides de fonds + couleurs accent
   pour garder lisibilité (sinon cream sur cream sur les
   sections à fond hardcodé). ──────── */
[data-mode="dark"] .about {
  background:
    radial-gradient(ellipse at 12% 8%, rgba(212,165,116,.10), transparent 55%),
    radial-gradient(ellipse at 88% 92%, rgba(199,123,91,.08), transparent 55%),
    #1F1812 !important;
}
[data-mode="dark"] .services,
[data-mode="dark"] .prestations {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(156,171,145,.16), transparent 55%),
    radial-gradient(ellipse at 8% 80%, rgba(122,140,108,.10), transparent 60%),
    #161814 !important;
}
[data-mode="dark"] .nuancier {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(111,169,197,.14), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(199,98,98,.10), transparent 50%),
    #14181A !important;
}
[data-mode="dark"] .advice {
  background:
    radial-gradient(ellipse at 12% 50%, rgba(199,98,98,.10), transparent 55%),
    radial-gradient(ellipse at 88% 50%, rgba(229,188,140,.10), transparent 55%),
    #1B1410 !important;
}
[data-mode="dark"] .reviews {
  background:
    radial-gradient(ellipse at 25% 100%, rgba(111,169,197,.10), transparent 55%),
    radial-gradient(ellipse at 75% 0%, rgba(150,90,130,.10), transparent 55%),
    #14161A !important;
}

/* Le titre principal hérite de --text (cream en dark) → maintenant
   sur un fond sombre, c'est lisible. On éclaircit aussi les em
   et kickers pour un meilleur contraste sur fond sombre. */
[data-mode="dark"] .services .section-title em,
[data-mode="dark"] .prestations .section-title em { color: #B6C5AB; }
[data-mode="dark"] .services .kicker,
[data-mode="dark"] .prestations .kicker          { color: #B6C5AB; }
[data-mode="dark"] .advice .section-title em     { color: #E58383; }
[data-mode="dark"] .advice .kicker               { color: #E58383; }
[data-mode="dark"] .nuancier .section-title em   { color: #6FA9C5; }
[data-mode="dark"] .nuancier .kicker             { color: #6FA9C5; }
[data-mode="dark"] .reviews .section-title em    { color: #C8A0CC; }
[data-mode="dark"] .reviews .kicker              { color: #C8A0CC; }
[data-mode="dark"] .about .section-title em      { color: #E29275; }
[data-mode="dark"] .about .kicker                { color: #E29275; }
[data-mode="dark"] .gallery .section-title em    { color: #E29275; }
[data-mode="dark"] .gallery .kicker              { color: #E29275; }
[data-mode="dark"] .ba .section-title em         { color: #E58383; }
[data-mode="dark"] .ba .kicker                   { color: #E58383; }
[data-mode="dark"] .methode .section-title em    { color: #E5BC8C; }
[data-mode="dark"] .methode .kicker              { color: #E5BC8C; }
.nuancier {
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--bleu-paon) 9%, transparent), transparent 55%),
    radial-gradient(ellipse at 100% 100%, color-mix(in srgb, var(--rose-brique) 7%, transparent), transparent 50%),
    var(--craie-paon);
}
.advice {
  background:
    radial-gradient(ellipse at 12% 50%, color-mix(in srgb, var(--rose-brique) 8%, transparent), transparent 55%),
    radial-gradient(ellipse at 88% 50%, color-mix(in srgb, var(--ocre) 7%, transparent), transparent 55%),
    var(--craie-rose);
}
.reviews {
  background:
    radial-gradient(ellipse at 25% 100%, color-mix(in srgb, var(--bleu-paon) 8%, transparent), transparent 55%),
    radial-gradient(ellipse at 75% 0%, color-mix(in srgb, var(--aubergine) 6%, transparent), transparent 55%),
    var(--craie-paon);
}

/* ──────── 2. TITRES — couleurs accentuées multicolores par section ──────── */
.methode .section-title em      { color: var(--ocre); }
.services .section-title em,
.prestations .section-title em  { color: var(--vert-olive); }
.nuancier .section-title em     { color: var(--bleu-paon); }
.advice .section-title em       { color: var(--rose-brique); }
.gallery .section-title em      { color: var(--terracotta); }
.reviews .section-title em      { color: var(--aubergine); }
.maps-section .section-title em,
.maps .section-title em         { color: var(--bleu-paon); }
.about .section-title em        { color: var(--terracotta); }
.ba .section-title em           { color: var(--rose-brique); }

/* ──────── 3. KICKERS — chacun sa couleur ──────── */
.methode .kicker      { color: var(--ocre-deep); }
.services .kicker,
.prestations .kicker  { color: var(--vert-olive); }
.nuancier .kicker     { color: var(--bleu-paon); }
.advice .kicker       { color: var(--rose-brique); }
.gallery .kicker      { color: var(--terracotta-deep); }
.reviews .kicker      { color: var(--aubergine); }
.about .kicker        { color: var(--terracotta-deep); }
.ba .kicker           { color: var(--rose-brique); }

/* ──────── 4. CARDS — bande de couleur sur le bord gauche, varie par carte ──────── */
.methode__step,
.service-card,
.prestation-card,
.advice-card {
  position: relative;
  overflow: hidden;
}
.methode__step::after,
.service-card::after,
.prestation-card::after,
.advice-card::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 6px;
  background: var(--accent);
  transition: width .35s cubic-bezier(.5,.1,.2,1);
  pointer-events: none;
  border-radius: 0 4px 4px 0;
  z-index: 0;
}
.methode__step:hover::after,
.service-card:hover::after,
.prestation-card:hover::after,
.advice-card:hover::after { width: 100%; opacity: .08; }

/* Couleurs cyclées : terracotta → ocre → paon → sauge → rose → aubergine */
.methode__step:nth-child(6n+1)::after,
.service-card:nth-child(6n+1)::after,
.prestation-card:nth-child(6n+1)::after,
.advice-card:nth-child(6n+1)::after { background: var(--terracotta); }
.methode__step:nth-child(6n+2)::after,
.service-card:nth-child(6n+2)::after,
.prestation-card:nth-child(6n+2)::after,
.advice-card:nth-child(6n+2)::after { background: var(--ocre); }
.methode__step:nth-child(6n+3)::after,
.service-card:nth-child(6n+3)::after,
.prestation-card:nth-child(6n+3)::after,
.advice-card:nth-child(6n+3)::after { background: var(--bleu-paon); }
.methode__step:nth-child(6n+4)::after,
.service-card:nth-child(6n+4)::after,
.prestation-card:nth-child(6n+4)::after,
.advice-card:nth-child(6n+4)::after { background: var(--sauge); }
.methode__step:nth-child(6n+5)::after,
.service-card:nth-child(6n+5)::after,
.prestation-card:nth-child(6n+5)::after,
.advice-card:nth-child(6n+5)::after { background: var(--rose-brique); }
.methode__step:nth-child(6n)::after,
.service-card:nth-child(6n)::after,
.prestation-card:nth-child(6n)::after,
.advice-card:nth-child(6n)::after { background: var(--aubergine); }

/* ──────── 5. MÉTHODE — numéros 01-06 colorés ──────── */
.methode__number {
  background: var(--terracotta) !important;
  color: var(--blanc-pur) !important;
}
.methode__step:nth-child(6n+1) .methode__number { background: var(--terracotta) !important; }
.methode__step:nth-child(6n+2) .methode__number { background: var(--ocre-deep) !important; }
.methode__step:nth-child(6n+3) .methode__number { background: var(--bleu-paon) !important; }
.methode__step:nth-child(6n+4) .methode__number { background: var(--vert-olive) !important; }
.methode__step:nth-child(6n+5) .methode__number { background: var(--rose-brique) !important; }
.methode__step:nth-child(6n)   .methode__number { background: var(--aubergine) !important; }

/* ──────── 6. BOUTONS PRIMAIRES — gradient peintre ──────── */
.btn-primary,
.btn--primary,
.btn.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--ocre) 60%, var(--rose-brique) 100%) !important;
  background-size: 200% 200% !important;
  color: var(--blanc-pur) !important;
  border: none !important;
  box-shadow:
    0 4px 14px -2px rgba(216,106,71,.45),
    0 0 0 1px rgba(216,106,71,.18),
    inset 0 1px 0 rgba(255,255,255,.25) !important;
  transition: background-position .5s ease, transform .25s, box-shadow .35s !important;
}
.btn-primary:hover,
.btn--primary:hover,
.btn.btn-primary:hover {
  background-position: 100% 100% !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px -2px rgba(216,106,71,.55),
    0 0 26px rgba(232,184,84,.35),
    0 0 0 1px rgba(216,106,71,.28),
    inset 0 1px 0 rgba(255,255,255,.3) !important;
}

/* ──────── 7. ÉCLABOUSSURES SVG — fonds décoratifs aux transitions ──────── */
.methode::before,
.advice::before,
.nuancier::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 180px;
  height: 180px;
  z-index: 0;
  opacity: .5;
}
.methode::before {
  top: 24px; right: 4%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='28' cy='32' r='10' fill='%23E8B854'/><circle cx='52' cy='22' r='5' fill='%23D86A47'/><circle cx='68' cy='42' r='7' fill='%2315678C'/><circle cx='40' cy='58' r='4' fill='%23C24E5E'/><circle cx='75' cy='68' r='6' fill='%237DA67D'/><circle cx='20' cy='72' r='5' fill='%235E3D5C'/></svg>") center/contain no-repeat;
  animation: floaty 12s ease-in-out infinite alternate;
}
.advice::before {
  top: 18%; left: 2%;
  width: 140px; height: 140px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 8 Q 56 22 60 30 Q 70 28 76 36 Q 78 46 70 50 Q 78 60 70 68 Q 60 72 54 64 Q 50 78 42 76 Q 32 72 32 60 Q 22 58 22 48 Q 22 38 32 36 Q 30 22 38 18 Q 46 14 50 8 Z' fill='%23C24E5E' opacity='.6'/></svg>") center/contain no-repeat;
  animation: floaty 14s ease-in-out infinite alternate-reverse;
}
.nuancier::after {
  bottom: 32px; left: 6%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='30' cy='30' r='14' fill='%2315678C' opacity='.55'/><circle cx='62' cy='40' r='10' fill='%23E8B854' opacity='.55'/><circle cx='40' cy='66' r='8' fill='%23D86A47' opacity='.55'/><circle cx='70' cy='72' r='6' fill='%237DA67D' opacity='.55'/></svg>") center/contain no-repeat;
}
@keyframes floaty {
  0%   { transform: translate(0,0) rotate(-3deg); }
  100% { transform: translate(8px,-12px) rotate(4deg); }
}

/* ──────── 8. NUANCIER — les recto deviennent VRAIS échantillons saturés ──────── */
.nuancier__card:nth-child(12n+1) .nuancier__face--front { background: #C24E5E !important; }
.nuancier__card:nth-child(12n+2) .nuancier__face--front { background: #15678C !important; }
.nuancier__card:nth-child(12n+3) .nuancier__face--front { background: #7DA67D !important; }
.nuancier__card:nth-child(12n+4) .nuancier__face--front { background: #E8B854 !important; }
.nuancier__card:nth-child(12n+5) .nuancier__face--front { background: #C9B89C !important; }
.nuancier__card:nth-child(12n+6) .nuancier__face--front { background: #B8B0A8 !important; }
.nuancier__card:nth-child(12n+7) .nuancier__face--front { background: #B23A2A !important; }
.nuancier__card:nth-child(12n+8) .nuancier__face--front { background: #E0CFB4 !important; }
.nuancier__card:nth-child(12n+9) .nuancier__face--front { background: #1F3A5C !important; }
.nuancier__card:nth-child(12n+10) .nuancier__face--front { background: #C68A7A !important; }
.nuancier__card:nth-child(12n+11) .nuancier__face--front { background: #6B7A4C !important; }
.nuancier__card:nth-child(12n) .nuancier__face--front   { background: #F0E8D0 !important; }

/* ──────── 9. KICKERS / EYEBROWS — avec un point coloré devant ──────── */
.kicker::before {
  content: "●";
  display: inline-block;
  margin-right: .4em;
  font-size: .7em;
  vertical-align: middle;
  color: currentColor;
  text-shadow: 0 0 6px currentColor;
}

/* ──────── 10. FOOTER & FOND HERO accentués ──────── */
.hero {
  background:
    radial-gradient(ellipse at 8% 12%, color-mix(in srgb, var(--ocre) 14%, transparent), transparent 55%),
    radial-gradient(ellipse at 92% 18%, color-mix(in srgb, var(--rose-brique) 10%, transparent), transparent 50%),
    radial-gradient(ellipse at 50% 100%, color-mix(in srgb, var(--bleu-paon) 8%, transparent), transparent 55%),
    var(--craie);
}

/* ──────── 11. AVIS CARDS — accent coloré varié ──────── */
.rev-card {
  border-top: 4px solid var(--terracotta);
}
.rev-card:nth-child(6n+1) { border-top-color: var(--terracotta); }
.rev-card:nth-child(6n+2) { border-top-color: var(--ocre-deep); }
.rev-card:nth-child(6n+3) { border-top-color: var(--bleu-paon); }
.rev-card:nth-child(6n+4) { border-top-color: var(--vert-olive); }
.rev-card:nth-child(6n+5) { border-top-color: var(--rose-brique); }
.rev-card:nth-child(6n)   { border-top-color: var(--aubergine); }

/* ──────── 12. STARS dans avis — couleur or vif ──────── */
.rev-stars { color: var(--ocre-deep) !important; }

/* ──────── 13. NAV : underline coloré au survol ──────── */
.site-nav a:hover { color: var(--terracotta); }
.site-nav a:nth-child(2):hover { color: var(--ocre-deep); }
.site-nav a:nth-child(3):hover { color: var(--bleu-paon); }
.site-nav a:nth-child(4):hover { color: var(--vert-olive); }
.site-nav a:nth-child(5):hover { color: var(--rose-brique); }
.site-nav a:nth-child(6):hover { color: var(--aubergine); }

/* Ajustements responsive pour les éclaboussures */
@media (max-width: 720px) {
  .methode::before,
  .advice::before,
  .nuancier::after { width: 100px; height: 100px; opacity: .35; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LIGHTBOX — overlay galerie
   ═══════════════════════════════════════════════════════════════════════ */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(20, 12, 8, 0);
  backdrop-filter: blur(0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  transition: background .3s ease, backdrop-filter .3s ease;
}
.lb-overlay[hidden] { display: none; }
.lb-overlay--open {
  background: rgba(20, 12, 8, .92);
  backdrop-filter: blur(6px);
}
.lb-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .35s ease, transform .35s cubic-bezier(.4,1.4,.6,1);
}
.lb-overlay--open .lb-stage { opacity: 1; transform: scale(1); }
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto; height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.65), 0 0 0 4px var(--craie, #F5EFE6);
  object-fit: contain;
  display: block;
}
.lb-caption {
  color: var(--craie, #F5EFE6);
  font-size: .95rem;
  line-height: 1.5;
  text-align: center;
  max-width: 720px;
  padding: 0 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.lb-caption strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ocre, #E8B854);
  margin-bottom: 2px;
}
.lb-caption span {
  display: inline-block;
  color: rgba(245,239,230,.78);
  font-size: .88rem;
}
.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(245, 239, 230, .12);
  color: var(--craie, #F5EFE6);
  border: 1px solid rgba(245, 239, 230, .25);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, border-color .2s;
  backdrop-filter: blur(8px);
}
.lb-close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 48px; height: 48px;
  font-size: 1.8rem;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 2.2rem;
  font-weight: 300;
}
.lb-prev { left: clamp(16px, 3vw, 32px); }
.lb-next { right: clamp(16px, 3vw, 32px); }
.lb-close:hover,
.lb-nav:hover {
  background: var(--terracotta, #D86A47);
  border-color: var(--terracotta, #D86A47);
  transform: scale(1.08);
}
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
  position: absolute;
  bottom: clamp(16px, 3vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,239,230,.7);
  font-size: .85rem;
  letter-spacing: .12em;
  font-family: "Inter", system-ui, sans-serif;
  background: rgba(0,0,0,.45);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
@media (max-width: 720px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-close { width: 40px; height: 40px; font-size: 1.4rem; }
  .lb-img { max-height: calc(100vh - 180px); }
}

/* ═══════════════════════════════════════════════════════════════════════
   PASTILLE OPT-BADGE — alignement inline propre dans les titres
   (corrige le retour à la ligne sur les sections centrées)
   ═══════════════════════════════════════════════════════════════════════ */
.section-title .opt-badge {
  display: inline-flex !important;
  vertical-align: 0.32em;
  margin-left: .3em;
  width: 20px;
  height: 20px;
  font-size: .55em;
  position: relative;
  top: -0.45em;
}
.section-head-center .section-title {
  /* Évite que le badge tombe sur une ligne séparée quand le titre est centré */
  text-wrap: balance;
}


/* ════════════════════════════════════════════════════════════════
   METHODE — Lisibilite renforcee des textes
   Le titre, le kicker et les paragraphes manquaient de contraste
   sur le fond beige clair (--craie-ocre). On force des couleurs
   nettement plus foncees + un text-shadow leger pour le titre.
   ════════════════════════════════════════════════════════════════ */
.methode .section-title {
  color: #2A1F1A !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.methode .section-title em {
  color: #B8821A !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.methode .kicker {
  color: #8C5A1F !important;
  font-weight: 700 !important;
}
.methode .section-sub {
  color: #4A3528 !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
}
.methode__body h3 {
  color: #2A1F1A !important;
  font-weight: 700 !important;
}
.methode__body p {
  color: #4A3528 !important;
}
.methode__body p strong {
  color: #1A130E !important;
  font-weight: 800 !important;
}
.methode__time {
  color: #8C5A1F !important;
  background: rgba(199,123,91,.16) !important;
  border: 1px solid rgba(199,123,91,.30);
}

/* Mode sombre : on force aussi des couleurs claires bien contrastees */
[data-mode="dark"] .methode .section-title { color: #F5EFE6 !important; text-shadow: 0 1px 2px rgba(0,0,0,.6); }
[data-mode="dark"] .methode .section-title em { color: #E8C879 !important; }
[data-mode="dark"] .methode .kicker { color: #E8C879 !important; }
[data-mode="dark"] .methode .section-sub { color: #D8C8B8 !important; }
[data-mode="dark"] .methode__body h3 { color: #F5EFE6 !important; }
[data-mode="dark"] .methode__body p { color: #C8B8A4 !important; }
[data-mode="dark"] .methode__body p strong { color: #F5EFE6 !important; }
