/* ============ Peinture Blainville — premium résidentiel ============ */
/* Palette: crème #f5f0e8 / vert sauge #5a6b54 / anthracite #2b2b2b */

:root {
  --bg: #f5f0e8;
  --bg-2: #ede5d6;
  --ink: #2b2b2b;
  --ink-soft: #4a4a48;
  --sage: #5a6b54;
  --sage-dark: #3d4a39;
  --sage-soft: #c8d3c1;
  --line: #d8cfbe;
  --paper: #fbf8f2;
  --max: 1180px;
  --gap: clamp(1rem, 2vw, 1.5rem);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ================== HEADER ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 2rem);
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand em { color: var(--sage-dark); font-style: italic; }
.brand-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--sage);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
}
.nav a:not(.cta-link):not(.nav-phone) { position: relative; padding: 0.25rem 0; }
.nav a:not(.cta-link):not(.nav-phone)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--sage); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:not(.cta-link):not(.nav-phone):hover::after { transform: scaleX(1); }

/* Nav phone — pill avec icône qui sonne */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  padding: 0.25rem 0;
  font-feature-settings: "tnum" 1;
  transition: color .2s ease;
}
.nav-phone .phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--sage-dark);
  flex-shrink: 0;
  transform-origin: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  animation: navPhoneRing 7s cubic-bezier(.36,.07,.19,.97) infinite;
}
.nav-phone .phone-icon svg {
  width: 15px;
  height: 15px;
}
.nav-phone .phone-num {
  white-space: nowrap;
}
.nav-phone:hover { color: var(--sage-dark); }
.nav-phone:hover .phone-icon {
  background: var(--sage-dark);
  color: var(--paper);
  transform: scale(1.08) rotate(0);
  animation-play-state: paused;
}
@keyframes navPhoneRing {
  0%, 88%, 100% { transform: rotate(0); }
  90%  { transform: rotate(-12deg); }
  92%  { transform: rotate(12deg); }
  94%  { transform: rotate(-8deg); }
  96%  { transform: rotate(8deg); }
  98%  { transform: rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-phone .phone-icon { animation: none; }
}
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--sage-dark);
  color: var(--paper);
  border: 0;
  height: 52px;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: background .25s ease, transform .2s ease, box-shadow .3s ease;
}
.cta-link > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.cta-link > svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.cta-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -120%;
  width: 80%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateY(-50%) skewX(-18deg);
  transition: left .7s cubic-bezier(.7,.0,.3,1);
  pointer-events: none;
}
.cta-link:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -14px rgba(58,74,57,0.55);
}
.cta-link:hover::before { left: 120%; }
.cta-link:hover svg { transform: translateX(3px); }
.cta-link:active { transform: translateY(0); }

/* CTA padding stable — pas de contraction au scroll */

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

/* Reduce nav spacing on intermediate widths before mobile menu kicks in */
@media (max-width: 1320px) {
  .nav { gap: 1rem; font-size: 0.9rem; }
}

@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; right: 1rem; left: 1rem;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.5rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
    box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18);
  }
  .nav.open { transform: scaleY(1); opacity: 1; }
  .nav a { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .nav a:last-child { border-bottom: 0; }
  .nav-phone {
    justify-content: center;
    background: var(--bg-2);
    margin: 0.4rem 0.5rem 0.2rem;
    padding: 0.6rem 1rem !important;
    border-radius: 999px;
    border-bottom: 0 !important;
  }
  .nav-phone .phone-icon { animation: none; background: var(--sage-dark); color: var(--paper); }
  .cta-link {
    margin: 0.2rem 0.5rem 0.5rem;
    height: 52px;
    padding: 0 1.5rem;
    border-radius: 999px;
    border-bottom: 0;
  }
  .cta-link::before { display: none; }
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--paper);
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); box-shadow: 0 12px 26px -16px rgba(58, 74, 57, 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ================== HERO ================== */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 760px);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.04);
  animation: heroBreath 16s ease-in-out infinite alternate;
}
@keyframes heroBreath {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-1.5%); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(43,43,43,.78) 0%, rgba(43,43,43,.35) 45%, rgba(43,43,43,.05) 75%, transparent 100%),
    linear-gradient(to right, rgba(43,43,43,.35), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  color: var(--paper);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-soft);
  border-left: 2px solid var(--sage-soft);
  padding-left: 0.65rem;
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem;
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--sage-soft); font-weight: 400; }
.hero .lede {
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(251, 248, 242, 0.92);
  margin: 0 0 1.8rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.5rem; }
.hero-ctas .btn-ghost { color: var(--paper); border-color: rgba(251,248,242,0.5); }
.hero-ctas .btn-ghost:hover { background: var(--paper); color: var(--ink); }

.hero-trust {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 720px;
  border-top: 1px solid rgba(251,248,242,0.18);
  padding-top: 1.4rem;
}
.hero-trust li {
  font-size: 0.9rem;
  color: rgba(251, 248, 242, 0.86);
  line-height: 1.4;
}
.hero-trust strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 0.15rem;
}

/* ================== SECTIONS ================== */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.section + .section { border-top: 1px solid var(--line); }
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 0.8rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
  max-width: 24ch;
}
.section-lede {
  max-width: 60ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 2.2rem;
}

/* ================== PROMESSE — moment éditorial sage-dark ================== */
.section-promesse {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(200, 211, 193, 0.20) 0%, rgba(200, 211, 193, 0) 55%),
    radial-gradient(ellipse 90% 70% at 95% 95%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(165deg, #3d4a39 0%, #344038 55%, #2a3128 100%);
}

/* Eyebrow + titre + soulignement adaptés au fond foncé */
.section-promesse .section-eyebrow { color: var(--sage-soft); }
.section-promesse .section-title { color: var(--paper); }
.section-promesse .section-title::after { background: var(--sage-soft); }

/* Brush stroke décoratif crème en haut */
.section-promesse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 720px);
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(251,248,242,0) 8%,
    rgba(251,248,242,0.4) 32%,
    rgba(251,248,242,0.6) 50%,
    rgba(251,248,242,0.4) 68%,
    rgba(251,248,242,0) 92%,
    transparent 100%);
  filter: blur(0.6px);
  pointer-events: none;
  z-index: 1;
}

/* (Filigrane retiré — propre et clean) */
.section-promesse::after { content: none; }

.section-promesse .container { position: relative; z-index: 1; }

.promesse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.promesse-card {
  background: var(--paper);
  padding: 2rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 30px 60px -22px rgba(0, 0, 0, 0.55),
    0 12px 28px -10px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* Fine ligne sage-soft en haut de chaque carte */
.promesse-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--sage-soft) 20%,
    var(--sage) 50%,
    var(--sage-soft) 80%,
    transparent);
  opacity: 0.7;
}

/* Filigrane romain à l'arrière-plan de chaque carte */
.promesse-card::after {
  content: attr(data-roman);
  position: absolute;
  bottom: -2rem;
  right: -0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 9rem;
  color: rgba(90, 107, 84, 0.07);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.promesse-card .num,
.promesse-card h3,
.promesse-card p { position: relative; z-index: 1; }

.promesse-card .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--sage-soft);
  padding-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.promesse-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.promesse-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ================== SERVICES ================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 2rem;
}
.service {
  background: var(--bg);
  padding: 1.8rem 1.6rem;
  transition: background .2s ease;
}
.service:hover { background: var(--paper); }
.service h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--sage-dark);
}
.service p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; }

/* ================== GALERIE — mosaic magazine ================== */
.section-galerie { background: var(--paper); }
.galerie-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.galerie-grid.mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-template-areas:
    "f1 f1 f2 f2"
    "f1 f1 f3 f4"
    "f5 f5 f6 f6"
    "f5 f5 f6 f6";
}
.galerie-grid.mosaic .m1 { grid-area: f1; }
.galerie-grid.mosaic .m2 { grid-area: f2; }
.galerie-grid.mosaic .m3 { grid-area: f3; }
.galerie-grid.mosaic .m4 { grid-area: f4; }
.galerie-grid.mosaic .m5 { grid-area: f5; }
.galerie-grid.mosaic .m6 { grid-area: f6; }

.galerie-hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--sage-soft);
}
.galerie-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  outline: none;
}
.galerie-grid figure:focus-visible {
  box-shadow: 0 0 0 3px var(--sage), 0 0 0 5px rgba(255,255,255,0.6);
}
.galerie-grid figure .g-after,
.galerie-grid figure .g-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .55s cubic-bezier(.2,.8,.2,1);
}
.galerie-grid figure .g-after { opacity: 1; z-index: 0; }
.galerie-grid figure .g-before { opacity: 0; z-index: 1; }
.galerie-grid figure:hover .g-after,
.galerie-grid figure.show-before .g-after { opacity: 0; }
.galerie-grid figure:hover .g-before,
.galerie-grid figure.show-before .g-before { opacity: 1; }

/* Badge "APRÈS / AVANT" qui se met à jour au hover */
.galerie-grid figure .g-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(43, 43, 43, 0.82);
  color: var(--paper);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem 0.32rem;
  border-radius: 999px;
  pointer-events: none;
  transition: background .35s ease, transform .25s ease;
}
.galerie-grid figure .g-flag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: 0 0 0 0 rgba(200,211,193,0.6);
  animation: flagPulse 2s ease-in-out infinite;
}
.galerie-grid figure .g-flag::after {
  content: "Après";
  letter-spacing: 0.18em;
  font-style: italic;
  font-weight: 500;
}
.galerie-grid figure:hover .g-flag,
.galerie-grid figure.show-before .g-flag {
  background: var(--sage-dark);
  transform: translateY(-1px);
}
.galerie-grid figure:hover .g-flag::after,
.galerie-grid figure.show-before .g-flag::after {
  content: "Avant";
}
@keyframes flagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,211,193,0.6); }
  60% { box-shadow: 0 0 0 5px rgba(200,211,193,0); }
}

.galerie-grid figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(43,43,43,0.82), transparent);
  z-index: 2;
}

@media (max-width: 880px) {
  .galerie-grid.mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    grid-template-areas:
      "f1 f1"
      "f2 f3"
      "f4 f4"
      "f5 f6";
  }
}
@media (max-width: 480px) {
  .galerie-grid.mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "f1"
      "f2"
      "f3"
      "f4"
      "f5"
      "f6";
  }
}

/* ================== AVANT / APRÈS — Le rouleau passe (auto-loop) ================== */
.section-ba { background: var(--paper); }
.ba-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 2rem;
  box-shadow: 0 30px 60px -40px rgba(43,43,43,0.35);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-before { z-index: 0; }
.ba-clip {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
}
.ba-clip .ba-img { width: 100%; height: 100%; }

/* The roller — drum vertical sage + frame métallique + manche bois */
.ba-roller {
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -8%;
  width: 60px;
  z-index: 4;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}
/* Wet edge — paint freshly applied behind/around the drum */
.ba-wet {
  position: absolute;
  top: 10px; bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  background: linear-gradient(90deg,
    rgba(90,107,84,0.0) 0%,
    rgba(200,211,193,0.45) 30%,
    rgba(90,107,84,0.7) 48%,
    rgba(58,74,57,0.85) 50%,
    rgba(90,107,84,0.7) 52%,
    rgba(200,211,193,0.45) 70%,
    rgba(90,107,84,0.0) 100%
  );
  filter: blur(2px);
  border-radius: 14px;
}
/* The drum — vertical paint-coated cylinder */
.ba-drum {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  background: linear-gradient(180deg,
    var(--sage-soft) 0%,
    var(--sage) 8%,
    var(--sage-dark) 50%,
    var(--sage) 92%,
    var(--sage-soft) 100%
  );
  border-radius: 7px;
  box-shadow:
    -3px 0 6px rgba(58,74,57,0.5),
     3px 0 6px rgba(58,74,57,0.5),
    inset 0 0 0 1px rgba(0,0,0,0.12);
}
/* Metal frame above the drum */
.ba-arm {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 16px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #b8b8b8 0%, #e6e6e6 35%, #909090 100%);
  border-radius: 4px 4px 1px 1px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18);
}
.ba-arm::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 4px;
  background: #888;
  border-radius: 2px;
}
/* Wooden handle */
.ba-handle-bar {
  position: absolute;
  top: -32px;
  left: 50%;
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, #6b4d2e 0%, #4a3520 50%, #6b4d2e 100%);
  border-radius: 3px;
  transform: translateX(-50%) rotate(-12deg);
  transform-origin: bottom center;
  box-shadow: inset -1px 0 0 rgba(0,0,0,0.25), inset 1px 0 0 rgba(255,255,255,0.06);
}

/* Sage flash — bande qui balaie horizontalement pour cacher le reset */
.ba-flash {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,211,193,0) 35%,
    rgba(90,107,84,0.55) 46%,
    rgba(58,74,57,0.85) 50%,
    rgba(90,107,84,0.55) 54%,
    rgba(200,211,193,0) 65%,
    transparent 100%
  );
  transform: translateX(-110%);
  opacity: 0;
}

/* Labels */
.ba-label {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(43,43,43,0.82);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 6;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ba-label-before { left: 1rem; opacity: 1; transition: opacity .3s ease; }
.ba-label-after { right: 1rem; opacity: 0; transition: opacity .3s ease; }

/* Tags */
.ba-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
  justify-content: center;
}
.ba-tags li {
  font-size: 0.85rem;
  color: var(--sage-dark);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
}

/* Animations — synchronized 9s loop */
.ba-wrap.is-playing .ba-clip { animation: baReveal 9s cubic-bezier(.55,.0,.45,1) infinite; }
.ba-wrap.is-playing .ba-roller { animation: baRoller 9s cubic-bezier(.55,.0,.45,1) infinite; }
.ba-wrap.is-playing .ba-flash { animation: baFlash 9s linear infinite; }
.ba-wrap.is-playing .ba-label-before { animation: labelBefore 9s linear infinite; }
.ba-wrap.is-playing .ba-label-after { animation: labelAfter 9s linear infinite; }

@keyframes baReveal {
  0%, 8%   { clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); }
  48%      { clip-path: inset(0 0% 0 0); -webkit-clip-path: inset(0 0% 0 0); }
  88%      { clip-path: inset(0 0% 0 0); -webkit-clip-path: inset(0 0% 0 0); }
  91.5%    { clip-path: inset(0 0% 0 0); -webkit-clip-path: inset(0 0% 0 0); }
  92%      { clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); }
  100%     { clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); }
}

@keyframes baRoller {
  0%, 8%   { left: -8%; opacity: 1; }
  48%      { left: 108%; opacity: 1; }
  85%      { left: 108%; opacity: 1; }
  88%      { left: 108%; opacity: 0; }
  91.5%    { left: 108%; opacity: 0; }
  92%      { left: -8%; opacity: 0; }
  96%      { left: -8%; opacity: 1; }
  100%     { left: -8%; opacity: 1; }
}

@keyframes baFlash {
  0%, 86%   { transform: translateX(-110%); opacity: 0; }
  87%       { transform: translateX(-110%); opacity: 1; }
  93%       { transform: translateX(110%); opacity: 1; }
  94%       { transform: translateX(110%); opacity: 0; }
  100%      { transform: translateX(110%); opacity: 0; }
}

@keyframes labelBefore {
  0%, 30%  { opacity: 1; }
  60%, 88% { opacity: 0; }
  92%, 100% { opacity: 1; }
}

@keyframes labelAfter {
  0%, 30%  { opacity: 0; }
  60%, 88% { opacity: 1; }
  92%, 100% { opacity: 0; }
}

@media (max-width: 540px) {
  .ba-wrap { aspect-ratio: 4 / 5; }
  .ba-roller { width: 44px; }
  .ba-drum { width: 11px; }
  .ba-arm { width: 14px; height: 12px; }
  .ba-handle-bar { height: 28px; top: -24px; }
  .ba-label { font-size: 0.82rem; padding: 0.3rem 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ba-wrap.is-playing .ba-clip,
  .ba-wrap.is-playing .ba-roller,
  .ba-wrap.is-playing .ba-flash,
  .ba-wrap.is-playing .ba-label-before,
  .ba-wrap.is-playing .ba-label-after {
    animation: none !important;
  }
  .ba-clip { clip-path: inset(0 50% 0 0); -webkit-clip-path: inset(0 50% 0 0); }
  .ba-roller { display: none; }
  .ba-flash { display: none; }
}

/* ================== PULL-QUOTE éditorial ================== */
.pullquote {
  position: relative;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}
.pullquote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pullquote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) saturate(0.7) brightness(1.04);
  transform: scale(1.08);
  opacity: 0.4;
}
.pullquote-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,240,232,0.55) 0%, rgba(245,240,232,0.92) 70%),
    linear-gradient(180deg, rgba(245,240,232,0.4) 0%, rgba(245,240,232,0.85) 100%);
  z-index: 1;
}
.pullquote .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.pullquote-stroke {
  width: 88px;
  height: auto;
  color: var(--sage);
  margin: 0 auto 1.8rem;
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease .2s, transform .8s ease .2s;
}
.pullquote.is-visible .pullquote-stroke { opacity: 1; transform: none; }
.pullquote blockquote { margin: 0; }
.pullquote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.32;
  color: var(--ink);
  margin: 0 0 1.6rem;
  letter-spacing: -0.005em;
}
.pullquote em {
  font-style: italic;
  color: var(--sage-dark);
}
.pullquote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
}

/* ================== SAGE BLOCKS — moments éditoriaux verts ================== */
/* Promesse, Approche et Témoignages partagent ce traitement sombre */
.section-approche,
.section-temoignages {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(200, 211, 193, 0.20) 0%, rgba(200, 211, 193, 0) 55%),
    radial-gradient(ellipse 90% 70% at 95% 95%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(165deg, #3d4a39 0%, #344038 55%, #2a3128 100%);
}
.section-approche .section-eyebrow,
.section-temoignages .section-eyebrow { color: var(--sage-soft); }
.section-approche .section-title,
.section-temoignages .section-title { color: var(--paper); }
.section-approche .section-title::after,
.section-temoignages .section-title::after { background: var(--sage-soft); }
.section-approche .section-lede,
.section-temoignages .section-lede { color: rgba(251, 248, 242, 0.78); }

/* Brush stroke crème en haut */
.section-approche::before,
.section-temoignages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 720px);
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(251,248,242,0) 8%,
    rgba(251,248,242,0.4) 32%,
    rgba(251,248,242,0.6) 50%,
    rgba(251,248,242,0.4) 68%,
    rgba(251,248,242,0) 92%,
    transparent 100%);
  filter: blur(0.6px);
  pointer-events: none;
  z-index: 1;
}

/* (Filigranes retirés) */
.section-approche::after,
.section-temoignages::after { content: none; }

.section-approche .container,
.section-temoignages .container { position: relative; z-index: 1; }

/* ================== APPROCHE ================== */
.approche-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 0;
  position: relative;
}
.approche-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-areas:
    "num title"
    "num text";
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
}
.approche-list li:last-child { border-bottom: 0; }

/* Subtle vertical timeline line connecting the badges */
.approche-list li::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(200, 211, 193, 0.30);
  z-index: 0;
}
.approche-list li:first-child::before { top: 1.7rem; }
.approche-list li:last-child::before { bottom: calc(100% - 1.7rem - 56px); }

.approche-list .num {
  grid-area: num;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--sage-soft);
  color: var(--sage-dark);
  box-shadow:
    0 0 0 6px #3d4a39,
    0 8px 22px -8px rgba(0, 0, 0, 0.5);
}
.approche-list .num svg {
  width: 26px;
  height: 26px;
  display: block;
}
.approche-list h3 {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.25;
  color: var(--paper);
  align-self: center;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.approche-list p {
  grid-area: text;
  margin: 0;
  color: rgba(251, 248, 242, 0.78);
  max-width: 62ch;
  line-height: 1.55;
}

@media (max-width: 540px) {
  .approche-list li {
    grid-template-columns: 56px 1fr;
    column-gap: 1.1rem;
  }
  .approche-list li::before { left: 21px; }
  .approche-list .num {
    width: 42px;
    height: 42px;
    box-shadow: 0 0 0 4px var(--bg);
  }
  .approche-list .num svg {
    width: 20px;
    height: 20px;
  }
  .approche-list h3 {
    font-size: 1.18rem;
    min-height: 42px;
  }
}

/* ================== ZONES — cards éditoriaux propres ================== */
.section-zones { background: var(--paper); }
.zones-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  padding: 0;
  margin: 1.8rem 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.zones-grid li {
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 1.4rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.zones-grid li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px var(--bg);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.zones-grid li:hover {
  background: var(--bg);
}
.zones-grid li:hover::before {
  background: var(--sage-dark);
  transform: scale(1.15);
}
.zones-note {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-family: var(--serif);
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid var(--sage-soft);
}

/* ================== TÉMOIGNAGES — éditorial Cormorant ================== */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.temoignages-grid blockquote {
  margin: 0;
  background: var(--paper);
  padding: 2.6rem 1.9rem 1.6rem;
  border-radius: 16px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 30px 60px -22px rgba(0, 0, 0, 0.5),
    0 12px 28px -10px rgba(0, 0, 0, 0.32);
}
/* Big serif quote mark — décoratif */
.temoignages-grid blockquote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 5.4rem;
  color: var(--sage);
  line-height: 1;
  text-shadow: 0 2px 0 var(--paper), 0 4px 0 var(--paper);
}
.temoignages-grid p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.45;
  margin: 0 0 1.3rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.temoignages-grid p em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 500;
}
.temoignages-grid cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 0.95rem;
}

/* ================== FAQ ================== */
.faq-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0.2rem;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--sage);
  transition: transform .25s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ================== SOUMISSION ================== */
.section-soumission { background: var(--paper); }
.soumission-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) { .soumission-grid { grid-template-columns: 1fr; } }
.soumission-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: grid;
  gap: 0.5rem;
}
.soumission-points li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}
.soumission-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.soumission-direct { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }

.soumission-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 18px;
  border: 1px solid var(--line);
}
.soumission-form label { display: grid; gap: 0.35rem; font-size: 0.92rem; }
.soumission-form label.full,
.soumission-form .full { grid-column: 1 / -1; }
.soumission-form span { color: var(--sage-dark); letter-spacing: 0.02em; }
.soumission-form input,
.soumission-form select,
.soumission-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.soumission-form input:focus,
.soumission-form select:focus,
.soumission-form textarea:focus {
  outline: 0;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90, 107, 84, 0.18);
}
.soumission-form textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0; grid-column: 1 / -1; }

/* ================== FOOTER ================== */
.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 242, 0.86);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--paper); }
.site-footer .brand em { color: var(--sage-soft); }
.footer-baseline { color: rgba(251,248,242,0.7); font-size: 0.95rem; max-width: 30ch; margin-top: 0.5rem; }
.site-footer h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--paper);
  font-size: 1.05rem;
  margin: 0 0 0.7rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 0.2rem 0; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--sage-soft); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(251,248,242,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(251,248,242,0.6);
}

/* ================== ANIMATIONS ================== */

/* Brush wipe à l'ouverture — bande sage qui balaie la page */
.brush-wipe {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, var(--sage) 30%, var(--sage-dark) 50%, var(--sage) 70%, transparent 100%);
  transform: translateX(-100%);
  animation: brushSweep 1.4s cubic-bezier(.7,.0,.3,1) forwards;
}
@keyframes brushSweep {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0%); }
  100% { transform: translateX(110%); }
}

/* Hero stagger entrance */
.hero-copy .eyebrow,
.hero h1 .line,
.hero .lede,
.hero-ctas,
.hero-trust {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-copy .eyebrow { animation-delay: .9s; }
.hero h1 .line:nth-child(1) { animation-delay: 1.05s; }
.hero h1 .line:nth-child(2) { animation-delay: 1.25s; }
.hero .lede { animation-delay: 1.5s; }
.hero-ctas { animation-delay: 1.7s; }
.hero-trust { animation-delay: 1.9s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}

/* Hero h1 mask reveal per ligne — chaque ligne sort de derrière un voile */
.hero h1 .line {
  display: inline-block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: inline-block;
}

/* Section-title underline qui se trace */
.section-title {
  position: relative;
  padding-bottom: 0.8rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.7,.0,.3,1);
}
.section-title.is-visible::after { transform: scaleX(1); }

/* Header se rétrécit au scroll */
.site-header {
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: rgba(245, 240, 232, 0.96);
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(43,43,43,0.25);
}

/* Ancien overlay sage + Ken-Burns retiré — remplacé par le crossfade avant/après */

/* Promesse cards — lift au hover sur fond sage-dark */
.promesse-card {
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.promesse-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 38px 70px -22px rgba(0, 0, 0, 0.65),
    0 18px 36px -10px rgba(0, 0, 0, 0.4);
  border-color: var(--sage-soft);
}

/* Service cards — flèche qui glisse au hover */
.service { position: relative; padding-right: 2.5rem; }
.service::after {
  content: "→";
  position: absolute;
  top: 1.8rem;
  right: 1.6rem;
  color: var(--sage);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.service:hover::after { opacity: 1; transform: none; }

/* FAQ — animation d'ouverture plus douce */
.faq-list details[open] p {
  animation: faqOpen .4s ease forwards;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* Timeline — la ligne verticale Approche se trace progressivement */
.section-approche .approche-list { position: relative; }
.section-approche .approche-list::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--sage-soft);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.6s cubic-bezier(.7,.0,.3,1);
  z-index: 0;
  opacity: 0.7;
}
.section-approche .approche-list.is-visible::after { transform: scaleY(1); }
@media (max-width: 540px) {
  .section-approche .approche-list::after { left: 21px; }
}

/* Cascade des items dans les grilles */
.cascade-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.cascade-item.is-visible { opacity: 1; transform: none; }

/* Buttons — micro lift + ombre sage */
.btn-primary { box-shadow: 0 0 0 rgba(58,74,57,0); }
.btn-primary:hover { box-shadow: 0 14px 30px -18px rgba(58,74,57,0.55); }

/* Compteur trust-strip */
.hero-trust strong[data-counter] { font-feature-settings: "tnum" 1; }

/* ================== UTILS ================== */
@media (prefers-reduced-motion: reduce) {
  .hero-image img,
  .brush-wipe { animation: none !important; }
  .brush-wipe { display: none; }
  * { transition: none !important; animation: none !important; }
}
