/* ============================================================
   CHOUSHOOTING — choushooting.css
   CSS complet du thème enfant (styles.css + pages.css fusionnés)
   À charger via functions.php : wp_enqueue_style('choushooting-main', ...)
   ============================================================ */

/* ============================================================
   CHOUSHOOTING — DESIGN SYSTEM v2  ·  "Atelier"
   Langage visuel global, partagé par toutes les pages.
   Modulaire & commenté pour découpage en thème enfant WP.
   ============================================================ */

/* ---------- 0. TOKENS ---------- */
:root {
  --plum:        #6b3b52;
  --plum-deep:   #45253550;  /* placeholder remplacé plus bas */
  --plum-deep:   #3f2233;
  --plum-700:    #56304a;
  --mauve:       #c18ea6;
  --mauve-200:   #e3c6d3;
  --cream:       #f7e7d6;
  --peach:       #e0a08a;
  --rose:        #e1aeab;
  --rose-light:  #e8bdbb;

  --paper:       #faf2ea;
  --paper-2:     #f3e6da;
  --ink:         #33212c;
  --ink-soft:    #6c5560;
  --white:       #fffdfb;
  --line:        rgba(63,34,51,.13);

  --serif: "Libre Baskerville", Georgia, serif;
  --sans:  "Poppins", system-ui, sans-serif;

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 72px);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 400; line-height: 1.04; color: var(--plum); letter-spacing: -.01em; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
::selection { background: var(--mauve); color: var(--white); }

/* ---------- 2. GRAIN + DÉCOR GLOBAL ---------- */
/* Grain photographique léger (overlay fixe) */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Blobs flous animés (ambiance pastel) */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .55; pointer-events: none; z-index: 0;
  animation: float 16s var(--ease-soft) infinite alternate;
}
@keyframes float {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(28px,-34px) scale(1.12); }
}
/* Étincelle 4 branches (motif brand board) */
.sparkle {
  position: absolute; width: var(--s, 26px); aspect-ratio: 1; pointer-events: none; z-index: 1;
  background: var(--spk, var(--rose-light));
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  opacity: .8; animation: twinkle 4s var(--ease-soft) infinite;
}
@keyframes twinkle {
  0%, 100% { transform: scale(.5) rotate(0deg); opacity: .25; }
  50%      { transform: scale(1) rotate(40deg); opacity: .9; }
}

/* ---------- 3. CURSEUR PERSONNALISÉ ---------- */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button, body.has-cursor [data-tilt], body.has-cursor input, body.has-cursor textarea, body.has-cursor select { cursor: none; }
  .cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; border-radius: 50%; }
  .cursor-dot { width: 8px; height: 8px; background: var(--plum); transform: translate(-50%,-50%); transition: opacity .3s, background .3s; }
  .cursor-ring {
    width: 40px; height: 40px; border: 1.5px solid var(--mauve);
    transform: translate(-50%,-50%);
    transition: width .35s var(--ease), height .35s var(--ease), border-color .35s, background .35s, opacity .3s;
    display: grid; place-items: center;
    color: var(--white); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  }
  .cursor-ring .lbl { opacity: 0; transition: opacity .25s; }
  body.cur-link .cursor-ring { width: 58px; height: 58px; border-color: var(--plum); }
  body.cur-link .cursor-dot { opacity: 0; }
  body.cur-media .cursor-ring { width: 84px; height: 84px; background: var(--plum); border-color: var(--plum); }
  body.cur-media .cursor-ring .lbl { opacity: 1; }
  body.cur-media .cursor-dot { opacity: 0; }
}

/* ---------- 4. LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); position: relative; }
.section { padding-block: clamp(80px, 11vw, 170px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 100px); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.measure { max-width: 56ch; }

.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: .76rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--mauve);
  display: inline-flex; align-items: center; gap: .8em;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: currentColor; display: inline-block; }
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--rose-light); }

/* Titres "split" (révélés ligne par ligne) */
.display { font-size: clamp(2.8rem, 8.5vw, 7rem); line-height: .96; text-transform: uppercase; }
.display .it { font-style: italic; text-transform: none; color: var(--mauve); }
.h-xl, .h-lg { font-size: clamp(2.2rem, 5vw, 4rem); } /* titre de section unifié — .h-lg gardée en alias pour compat markup existant */

/* Masque de révélation pour le texte splitté */
.split .ln { display: block; overflow: hidden; }
.split .ln > span { display: block; transform: translateY(110%); transition: transform .9s var(--ease); transition-delay: var(--d, 0ms); }
.split.in .ln > span { transform: translateY(0); }
.split .wd { display: inline-block; overflow: hidden; vertical-align: top; }
.split .wd > span { display: inline-block; transform: translateY(110%); transition: transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.split.in .wd > span { transform: translateY(0); }

/* ---------- 5. BOUTONS ---------- */
.btn {
  --bg: var(--plum); --fg: var(--white); --sweep: var(--mauve);
  position: relative; display: inline-flex; align-items: center; gap: .65em;
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg); padding: 1.1em 2.2em; border-radius: 999px; background: var(--bg);
  overflow: hidden; isolation: isolate; will-change: transform;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .45s var(--ease);
  box-shadow: 0 12px 30px -16px rgba(63,34,51,.6);
}
.btn::before { content:""; position:absolute; inset:0; background: var(--sweep); transform: translateY(101%); transition: transform .55s var(--ease); z-index:-1; }
.btn:hover { box-shadow: 0 20px 40px -18px rgba(63,34,51,.6); }
.btn:hover::before { transform: translateY(0); }
.btn .arr { transition: transform .5s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn--outline { --bg: transparent; --fg: var(--plum); border: 1.5px solid var(--plum); box-shadow: none; }
.btn--outline::before { background: var(--plum); }
.btn--outline:hover { color: var(--white); }
.btn--light { --bg: var(--white); --fg: var(--plum); --sweep: var(--cream); }
.btn--light:hover { color: var(--plum-deep); }
.btn--lg { padding: 1.25em 2.6em; font-size: .85rem; }

/* ---------- 6. PLACEHOLDERS IMAGE ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 14px, transparent 14px 28px),
    var(--tint, var(--rose-light));
  display: grid; place-items: center; isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--sans); font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(51,33,44,.55); padding: .5em .85em; border: 1px solid rgba(51,33,44,.2);
  border-radius: 999px; background: rgba(255,255,255,.4); backdrop-filter: blur(2px); white-space: nowrap;
}
.ph .cam { position: absolute; top: 14px; left: 14px; width: 26px; height: 26px; opacity: .3; color: rgba(51,33,44,.7); }

/* Tuile portfolio générique */
.tile { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.tile .ph { position: absolute; inset: 0; transition: transform 1.1s var(--ease); }
.tile:hover .ph { transform: scale(1.08); }
.tile .tile-cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.2rem 1.1rem;
  background: linear-gradient(to top, rgba(63,34,51,.82), transparent);
  color: var(--white); transform: translateY(10px); opacity: 0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }
.tile-cap b { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.tile-cap span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-light); }

/* Révélation clip pour images */
[data-reveal="clip"] { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); transition-delay: var(--delay,0ms); }
[data-reveal="clip"].in { clip-path: inset(0 0 0 0); }

/* Galerie featured — toujours visible (observer pas fiable sur mobile) */
.featured [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

/* ============================================================
   HEADER / NAV (partagé)
   ============================================================ */
.site-header { position: fixed !important; inset: 0 0 auto 0; z-index: 9999 !important; padding-block: 20px; background: rgba(250,242,234,.88); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3); box-shadow: 0 1px 0 var(--line); transition: padding .4s var(--ease), box-shadow .4s var(--ease); }
.site-header.scrolled { padding-block: 11px; box-shadow: 0 1px 0 var(--line), 0 20px 40px -36px rgba(63,34,51,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand .brand-logo { height: 44px; width: auto; display: block; transition: transform .6s var(--ease-back); }
.brand:hover .brand-logo { transform: translateY(-3px); }
.nav-links { display: flex; align-items: center; gap: clamp(.9rem, 1.9vw, 2.1rem); }
.nav-links a { position: relative; font-weight: 500; font-size: .96rem; color: var(--ink); padding: .3em 0; white-space: nowrap; transition: color .3s var(--ease); }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:100%; height:2px; background: var(--mauve); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--plum); }
.nav-cta { flex-shrink: 0; padding: .9em 1.55em; font-size: .74rem; }
.nav-toggle { display: none; }

/* Dropdown "Prestations" */
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown > a { display: inline-flex; align-items: center; gap: .35em; }
.nav-caret { transition: transform .3s var(--ease); flex-shrink: 0; }
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown:focus-within .nav-caret { transform: rotate(-180deg); }
.dropdown-panel { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px); margin-top: 14px; width: 190px; background: var(--white); border-radius: var(--radius); box-shadow: 0 1px 0 var(--line), 0 24px 48px -24px rgba(63,34,51,.45); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s; z-index: 300; }
.dropdown-panel::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item.has-dropdown:hover .dropdown-panel,
.nav-item.has-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s 0s; }
.dropdown-item { display: block; padding: 9px 12px; border-radius: 10px; font-family: var(--serif); font-size: .92rem; color: var(--plum); transition: background .2s var(--ease); white-space: nowrap; }
.dropdown-item:hover, .dropdown-item:focus-visible { background: var(--paper-2); }
.dropdown-item::after { content: none; }

/* Menu mobile */
.mobile-menu { position: fixed; inset: 0; z-index: 199; background: var(--paper); padding: 100px var(--gut) 40px; display: flex; flex-direction: column; gap: .2rem; overflow-y: auto; transform: translateY(-101%); visibility: hidden; transition: transform .6s var(--ease), visibility 0s .6s; }
.mobile-menu.open { transform: translateY(0); visibility: visible; transition: transform .6s var(--ease), visibility 0s 0s; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(1.7rem,7vw,2.3rem); color: var(--plum); padding: .55rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.sub-link { font-family: var(--sans); font-size: 1.05rem; font-weight: 500; padding: .4rem 0 .4rem 1.2rem; border-bottom: none; color: var(--ink-soft); }
.mobile-menu .btn { margin-top: 1.8rem; align-self: flex-start; }
.mobile-menu a.btn { color: var(--fg); border-bottom: none; }

/* ============================================================
   MARQUEE (ticker)
   ============================================================ */
.marquee { background: var(--plum-deep); color: var(--cream); padding-block: 22px; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 2.4rem; align-items: center; will-change: transform; animation: scrollX 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2rem); display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee-track .star { width: 16px; height: 16px; background: var(--mauve); clip-path: polygon(50% 0,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0 50%,40% 40%); display: inline-block; }
.marquee-track em { font-style: italic; color: var(--mauve-200); }
@keyframes scrollX { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ============================================================
   SECTIONS SOMBRES (contraste)
   ============================================================ */
.on-dark { background: var(--plum-deep); color: rgba(255,253,251,.82); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark .lead { color: rgba(255,253,251,.7); }

/* ============================================================
   FOOTER (partagé)
   ============================================================ */
.site-footer { position: relative; background: var(--plum-deep); color: rgba(255,253,251,.7); padding-block: clamp(64px,8vw,110px) 40px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,60px); position: relative; z-index: 1; }
.site-footer .brand .brand-logo { filter: brightness(0) invert(1); }
.footer-about { margin-top: 1.2rem; max-width: 34ch; font-size: .96rem; line-height: 1.7; }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-weight: 600; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: .35em 0; font-size: .98rem; transition: color .3s var(--ease), transform .3s var(--ease); }
.footer-col a:hover { color: var(--cream); transform: translateX(5px); }
.socials { display: flex; gap: .65rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,253,251,.22); color: var(--cream); transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s; }
.socials a:hover { background: var(--mauve); border-color: var(--mauve); transform: translateY(-4px); }
.socials svg { width: 19px; }
.footer-bottom { margin-top: clamp(40px,5vw,68px); padding-top: 26px; border-top: 1px solid rgba(255,253,251,.14); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; position: relative; z-index: 1; }

/* ============================================================
   REVEAL (fade-up générique)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--delay,0ms); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="zoom"] { transform: scale(.93); }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], .split .ln > span, .split .wd > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .blob, .sparkle { display: none; }
  body.has-cursor { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 930px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--plum); }
  .nav-toggle svg { width: 26px; }
  body.has-cursor { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }


/* ============================================================
   PAGES — SECTIONS SPÉCIFIQUES
   ============================================================ */

/* ============================================================
   CHOUSHOOTING — pages.css
   Styles spécifiques : accueil (sections) + pages internes.
   Dépend de styles.css (tokens & composants partagés).
   ============================================================ */

/* ============================================================
   ACCUEIL — HERO v2
   ============================================================ */
.hero-v2 { min-height: 96vh; display: grid; place-items: center; text-align: center; padding: 130px var(--gut) 70px; position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 6; max-width: 1040px; margin-inline: auto; }
.hero-inner .eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.hero-inner .display { margin-bottom: 0; }
.hero-sub { font-family: var(--sans); max-width: 600px; margin: 1.6rem auto 0; font-size: clamp(1.02rem,1.5vw,1.2rem); color: var(--ink-soft); }
.hero-cta { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Cartes flottantes (tilt + parallaxe) */
.hero-floats { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.float-card {
  position: absolute; width: clamp(132px, 13vw, 208px); aspect-ratio: 3/4;
  border-radius: 20px; overflow: hidden; pointer-events: auto;
  box-shadow: 0 36px 60px -32px rgba(63,34,51,.55);
  animation: bob 7s var(--ease-soft) infinite alternate;
}
.float-card .ph { position: absolute; inset: 0; }
.float-card.fc1 { top: 12%;  left: 4%;  transform: rotate(-7deg); animation-delay: 0s; }
.float-card.fc2 { bottom: 9%; left: 9%;  transform: rotate(6deg);  animation-delay: .8s; }
.float-card.fc3 { top: 14%;  right: 5%; transform: rotate(8deg);  animation-delay: .4s; }
.float-card.fc4 { bottom: 8%; right: 8%; transform: rotate(-6deg); animation-delay: 1.2s; }
@keyframes bob { from { translate: 0 0; } to { translate: 0 -18px; } }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 6; display: grid; justify-items: center; gap: .6rem; color: var(--ink-soft); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--mauve), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--plum); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%{top:-50%;} 100%{top:100%;} }

@media (max-width: 960px) {
  .hero-floats { display: none; }
  .hero-v2 { min-height: auto; padding-top: 120px; }
  .hero-strip-m { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 2.6rem; }
  .hero-strip-m .ph { aspect-ratio: 3/4; border-radius: 16px; }
}
@media (min-width: 961px) { .hero-strip-m { display: none; } }

/* ============================================================
   ACCUEIL — MANIFESTO
   ============================================================ */
.manifesto-inner { text-align: center; max-width: 920px; margin-inline: auto; }
.manifesto-inner .eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.manifesto-inner p { font-size: clamp(1.4rem, 3vw, 2.3rem); font-family: var(--serif); line-height: 1.4; color: var(--ink); }
.manifesto-inner p .hl { color: var(--mauve); font-style: italic; }
.manifesto-inner .btn { margin-top: 2.6rem; }

/* ============================================================
   ACCUEIL — SERVICES (cartes tilt)
   ============================================================ */
.services .section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(40px,5vw,68px); }
.services .section-head h2 { margin-top: .8rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 26px); }
.service-card {
  position: relative; padding: clamp(22px,2vw,30px); border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transform-style: preserve-3d; transition: box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.service-card:hover { box-shadow: 0 40px 70px -38px rgba(63,34,51,.5); border-color: transparent; }
.service-card > * { transform: translateZ(0); }
.service-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--cream); color: var(--mauve); margin-bottom: 1.3rem; transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease-back); }
.service-ico svg { width: 28px; height: 28px; }
.service-card:hover .service-ico { background: var(--plum); color: var(--white); transform: rotate(-8deg) translateZ(40px); }
.service-card h3 { color: var(--mauve); font-size: clamp(1.3rem, 1.6vw, 1.5rem); margin-bottom: .6rem; }
.service-card p { color: var(--ink-soft); font-size: .97rem; }
.service-card .ph { aspect-ratio: 1/1; border-radius: 16px; margin: 1.4rem 0; }
.service-card .more { margin-top: auto; display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--plum); }
.service-card .more svg { width: 16px; transition: transform .45s var(--ease); }
.service-card:hover .more svg { transform: translateX(5px); }

/* ============================================================
   ACCUEIL — PROCESS (4 étapes)
   ============================================================ */
.process .section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px,5vw,72px); }
.process .section-head .eyebrow { justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,2.4vw,40px); }
.step { position: relative; }
.step .num { font-family: var(--serif); font-size: clamp(3rem,5vw,4.6rem); color: var(--mauve); line-height: 1; opacity: .55; }
.step h3 { font-size: clamp(1.3rem, 1.6vw, 1.5rem); margin: .6rem 0 .7rem; color: var(--white); }
.on-dark .step p { color: rgba(255,253,251,.66); font-size: .97rem; }
.step .bar { width: 46px; height: 3px; background: var(--peach); margin-bottom: 1.1rem; border-radius: 2px; }

/* ============================================================
   ACCUEIL — FEATURED GALLERY (asymétrique)
   ============================================================ */
.featured .section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(36px,4vw,56px); }
.section-head p { margin-top: 1rem; }
.gal-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(120px,14vw,200px); gap: clamp(12px,1.4vw,20px); }
.gal-grid .tile.g-a { grid-column: span 5; grid-row: span 2; }
.gal-grid .tile.g-b { grid-column: span 4; grid-row: span 2; }
.gal-grid .tile.g-c { grid-column: span 3; grid-row: span 2; }
.gal-grid .tile.g-d { grid-column: span 4; grid-row: span 2; }
.gal-grid .tile.g-e { grid-column: span 4; grid-row: span 2; }
.gal-grid .tile.g-f { grid-column: span 4; grid-row: span 2; }
@media (max-width: 760px) { .gal-grid { grid-template-columns: repeat(2,1fr); } .gal-grid .tile { grid-column: span 1 !important; } }

/* ============================================================
   ACCUEIL — ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px,6vw,90px); align-items: center; }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: 150px 150px 30px 30px; overflow: hidden; --tint: var(--rose); }
.about-photo .ph { position: absolute; inset: 0; border-radius: inherit; }
.about-photo .badge { position: absolute; right: -14px; bottom: 30px; width: 138px; height: 138px; border-radius: 50%; background: var(--plum); color: var(--cream); display: grid; place-items: center; text-align: center; font-family: var(--serif); font-size: .9rem; line-height: 1.3; padding: 14px; animation: spinB 24s linear infinite; box-shadow: 0 24px 48px -22px rgba(63,34,51,.7); }
@keyframes spinB { to { transform: rotate(360deg); } }
.about-photo .badge b { font-family: var(--sans); font-weight: 600; font-size: 1.5rem; display: block; }
.about-copy h2 .sub { display: block; font-size: clamp(1.1rem,2vw,1.5rem); color: var(--ink); margin-top: .5rem; line-height: 1.3; }
.about-copy p { margin-top: 1.5rem; color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.8; max-width: 50ch; }
.about-copy p u { text-decoration-color: var(--mauve); text-underline-offset: 3px; color: var(--plum); }
.about-copy .btn { margin-top: 2rem; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 420px; margin-inline: auto; } }

/* ============================================================
   CTA FINAL (partagé toutes pages)
   ============================================================ */
.cta-final { padding-block: clamp(72px,10vw,140px); }
.cta-card { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: radial-gradient(120% 150% at 100% 0%, var(--peach) 0%, transparent 46%), radial-gradient(120% 150% at 0% 100%, var(--mauve) 0%, transparent 52%), var(--plum); color: var(--cream); text-align: center; padding: clamp(52px,8vw,110px) var(--gut); }
.cta-card h2 { color: var(--white); }
.cta-card p { color: rgba(255,253,251,.84); max-width: 540px; margin: 1.2rem auto 0; font-size: 1.1rem; }
.cta-card .btn { margin-top: 2.4rem; }
.cta-card .sparkle { z-index: 2; }

/* ============================================================
   PAGES INTERNES — HERO générique
   ============================================================ */
.page-hero { position: relative; padding: clamp(150px,18vh,220px) 0 clamp(56px,7vw,90px); overflow: hidden; text-align: center; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 1.3rem; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); text-transform: uppercase; }
.wp-block-post-title { font-size: clamp(2.6rem, 7vw, 5.6rem); }
.page-hero h1 .it { font-style: italic; text-transform: none; color: var(--mauve); }
.page-hero p { max-width: 580px; margin: 1.5rem auto 0; color: var(--ink-soft); font-size: clamp(1.02rem,1.5vw,1.18rem); }
.breadcrumb { display: inline-flex; gap: .5em; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 1.8rem; }
.breadcrumb a:hover { color: var(--plum); }

/* ============================================================
   PRESTATIONS — offres alternées
   ============================================================ */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; padding-block: clamp(48px,6vw,84px); }
.offer:nth-child(even) .offer-media { order: 2; }
.offer-media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; }
.offer-media .ph { position: absolute; inset: 0; }
.offer-media .tag { position: absolute; top: 18px; left: 18px; z-index: 2; background: var(--white); color: var(--plum); font-weight: 600; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; padding: .6em 1.1em; border-radius: 999px; }
.offer-body .idx { font-family: var(--serif); font-size: 1rem; color: var(--mauve); letter-spacing: .1em; }
.offer-body h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: .3rem 0 1rem; }
.offer-body p { color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.8; max-width: 46ch; margin-top: 1rem; }
.offer-list { margin: 1.5rem 0 1.8rem; display: grid; gap: .7rem; }
.offer-list li { display: flex; gap: .8em; align-items: flex-start; color: var(--ink); font-size: 1rem; }
.offer-list svg { width: 20px; height: 20px; color: var(--mauve); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 820px) { .offer { grid-template-columns: 1fr; } .offer:nth-child(even) .offer-media { order: 0; } }

/* ============================================================
   PORTFOLIO — filtres + galerie + lightbox
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: clamp(36px,4vw,56px); }
.filter-btn { padding: .7em 1.4em; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 500; font-size: .9rem; color: var(--ink); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s; }
.filter-btn:hover { border-color: var(--plum); }
.filter-btn.active { background: var(--plum); color: var(--white); border-color: var(--plum); }
.pf-grid { columns: 3; column-gap: clamp(12px,1.4vw,20px); }
.pf-grid .tile { break-inside: avoid; margin-bottom: clamp(12px,1.4vw,20px); width: 100%; cursor: pointer; }
.pf-grid .tile .ph { position: relative; inset: auto; }
.pf-grid .tile.hide { display: none; }
.pf-grid .tile:nth-child(3n) .ph { aspect-ratio: 3/4; }
.pf-grid .tile:nth-child(3n+1) .ph { aspect-ratio: 1/1; }
.pf-grid .tile:nth-child(3n+2) .ph { aspect-ratio: 4/5; }
@media (max-width: 880px) { .pf-grid { columns: 2; } }
@media (max-width: 520px) { .pf-grid { columns: 1; } }
/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9700; background: rgba(45,22,33,.92); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 5vw; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox .lb-inner { width: min(720px, 90vw); aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; transform: scale(.94); transition: transform .5s var(--ease); }
.lightbox.open .lb-inner { transform: scale(1); }
.lightbox .lb-close { position: absolute; top: 26px; right: 30px; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255,253,251,.4); color: var(--cream); display: grid; place-items: center; }
.lightbox .lb-close:hover { background: var(--mauve); border-color: var(--mauve); }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(255,253,251,.4); color: var(--cream); display: grid; place-items: center; }
.lightbox .lb-nav:hover { background: var(--mauve); border-color: var(--mauve); }
.lightbox .lb-prev { left: 3vw; } .lightbox .lb-next { right: 3vw; }

/* ============================================================
   À PROPOS
   ============================================================ */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; }
.about-hero-grid .portrait { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; --tint: var(--rose); }
.about-hero-grid .portrait .ph { position: absolute; inset: 0; }
.about-hero-grid h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); text-transform: none; }
.about-hero-grid .sub { display:block; font-family: var(--serif); font-style: italic; color: var(--mauve); font-size: clamp(1.2rem,2.2vw,1.7rem); margin-top: .4rem; }
.about-hero-grid p { color: var(--ink-soft); margin-top: 1.4rem; font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.8; }
@media (max-width: 820px) { .about-hero-grid { grid-template-columns: 1fr; } }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.4vw,36px); }
.value { padding: clamp(24px,2.4vw,36px); border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.value .vico { width: 52px; height: 52px; border-radius: 14px; background: var(--cream); color: var(--mauve); display: grid; place-items: center; margin-bottom: 1.2rem; }
.value .vico svg { width: 26px; height: 26px; }
.value h3 { font-size: clamp(1.3rem, 1.6vw, 1.5rem); color: var(--plum); margin-bottom: .6rem; }
.value p { color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }
.timeline { max-width: 760px; margin-inline: auto; display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.tl-item .yr { font-family: var(--serif); font-size: 1.5rem; color: var(--mauve); }
.tl-item h3 { font-size: clamp(1.3rem, 1.6vw, 1.5rem); margin-bottom: .4rem; }
.tl-item p { color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 600px) { .tl-item { grid-template-columns: 1fr; gap: .4rem; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; margin-bottom: clamp(48px,6vw,80px); }
.blog-feature .ph { aspect-ratio: 16/11; border-radius: var(--radius-lg); }
.post-meta { display: inline-flex; gap: .8em; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mauve); font-weight: 600; }
.blog-feature h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 1rem 0; }
.blog-feature p { color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 48ch; }
.blog-feature .btn { margin-top: 1.8rem; }
@media (max-width: 820px) { .blog-feature { grid-template-columns: 1fr; } }
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px,2.6vw,40px); }
.post { display: flex; flex-direction: column; }
.post .ph { aspect-ratio: 4/3; border-radius: var(--radius); margin-bottom: 1.2rem; overflow: hidden; }
.post .ph .img { position:absolute; inset:0; transition: transform 1s var(--ease); }
.post:hover .ph .img { transform: scale(1.07); }
.post h3 { font-size: clamp(1.3rem, 1.6vw, 1.5rem); margin: .5rem 0 .6rem; transition: color .3s var(--ease); }
.post:hover h3 { color: var(--mauve); }
.post p { color: var(--ink-soft); font-size: .97rem; }
.post .rd { margin-top: .9rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--plum); display: inline-flex; gap: .5em; align-items: center; }
.post .rd svg { width: 15px; transition: transform .4s var(--ease); }
.post:hover .rd svg { transform: translateX(4px); }
@media (max-width: 880px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .posts { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px,5vw,72px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 1.3rem; }
.field { display: grid; gap: .5rem; }
.field label { font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--plum); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); border-radius: 14px; padding: .95em 1.1em; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--mauve); box-shadow: 0 0 0 4px rgba(193,142,166,.18); }
.field textarea { min-height: 150px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.form .btn { justify-self: start; margin-top: .4rem; }
.contact-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }
@media (max-width: 780px) { .contact-hero-grid { grid-template-columns: 1fr; } }
.contact-title { font-size: clamp(2.6rem, 7vw, 5.6rem); text-transform: uppercase; line-height: 1.25; margin: 0; }
.contact-intro-text { color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.7; margin: 1.5rem 0 0; }
.contact-side h3 { font-family: var(--serif); font-size: clamp(1.3rem, 1.6vw, 1.5rem); line-height: 1.3; margin: 0 0 .8rem; }
.contact-side > p { color: var(--ink-soft); font-size: .96rem; line-height: 1.6; margin: 0 0 1.6rem; max-width: 32ch; }
.contact-photo { max-width: 280px; border-radius: var(--radius-xl); overflow: hidden; }
.contact-photo img { width: 100%; height: auto; display: block; }
.contact-form-wrap .wpcf7-form p { margin: 0 0 1.5rem; }
.contact-form-wrap .wpcf7-form input[type=text],
.contact-form-wrap .wpcf7-form input[type=email],
.contact-form-wrap .wpcf7-form input[type=tel],
.contact-form-wrap .wpcf7-form textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent;
  padding: .75em 0; font-family: var(--sans); font-size: 1rem; color: var(--ink); transition: border-color .3s var(--ease);
}
.contact-form-wrap .wpcf7-form input[type=text]:focus,
.contact-form-wrap .wpcf7-form input[type=email]:focus,
.contact-form-wrap .wpcf7-form input[type=tel]:focus,
.contact-form-wrap .wpcf7-form textarea:focus { outline: none; border-color: var(--plum); }
.contact-form-wrap .wpcf7-form textarea { min-height: 90px; resize: vertical; }
.contact-form-wrap .wpcf7-form input[type=submit] {
  background: transparent; border: 1.5px solid var(--ink); border-radius: 2px; color: var(--ink);
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .95em 2.2em; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease);
}
.contact-form-wrap .wpcf7-form input[type=submit]:hover { background: var(--ink); color: var(--white); }
.contact-form-wrap .consent-text { margin-top: 1.4rem; font-size: .78rem; line-height: 1.6; color: var(--ink-soft); max-width: 60ch; }
.contact-form-wrap .consent-text a { color: var(--plum); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   IMAGES RÉELLES — .shot (remplace les placeholders)
   ============================================================ */
.shot { position: relative; overflow: hidden; background: var(--paper-2); display: block; }
.shot.fill { position: absolute; inset: 0; }
.shot > img, .shot > a > img, .shot > video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease); }
.tile .shot { z-index: 0; }
.tile .tile-cap { z-index: 2; }
.tile:hover .shot > img, .post:hover .shot > img, .blog-feature a:hover .shot > img,
.tile:hover .shot > a > img { transform: scale(1.08); }

/* aspect-ratios portfolio masonry (sur .shot) */
.pf-grid .tile .shot { position: relative; inset: auto; }
.pf-grid .tile:nth-child(3n) .shot { aspect-ratio: 3/4; }
.pf-grid .tile:nth-child(3n+1) .shot { aspect-ratio: 1/1; }
.pf-grid .tile:nth-child(3n+2) .shot { aspect-ratio: 4/5; }
.post .shot { aspect-ratio: 4/3; border-radius: var(--radius); margin-bottom: 1.2rem; }
.blog-feature .shot { aspect-ratio: 16/11; border-radius: var(--radius-lg); display: block; }

/* ============================================================
   SLIDER VISUEL (accueil)
   ============================================================ */
.showcase { padding-block: clamp(24px,3vw,48px); }
.showcase .container { max-width: 1500px; }
.slider { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 50px 90px -50px rgba(63,34,51,.5); }
.slides { display: flex; transition: transform .8s var(--ease); will-change: transform; }
.slide { position: relative; min-width: 100%; height: clamp(420px, 66vh, 720px); }
.slide .shot { position: absolute; inset: 0; }
.slide .shot > img { transform: scale(1.05); }
.slide.active .shot > img { animation: slideKb 6.5s ease-out forwards; }
@keyframes slideKb { to { transform: scale(1.14); } }
.slide-cap { position: absolute; left: 0; bottom: 0; padding: clamp(26px,4vw,60px); color: var(--white); z-index: 2; max-width: 660px; }
.slide-cap::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(63,34,51,.85), transparent 72%); z-index: -1; }
.slide-cap .k { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-light); font-weight: 600; }
.slide-cap h3 { color: var(--white); font-size: clamp(1.9rem,4.2vw,3.4rem); margin: .4rem 0 .6rem; }
.slide-cap p { color: rgba(255,253,251,.86); max-width: 46ch; }
.slider-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,253,251,.92); color: var(--plum); display: grid; place-items: center; z-index: 3; transition: background .3s var(--ease), color .3s; }
.slider-arr:hover { background: var(--mauve); color: var(--white); }
.slider-arr.prev { left: 20px; } .slider-arr.next { right: 20px; }
.slider-arr svg { width: 24px; }
.slider-dots { position: absolute; bottom: 24px; right: 26px; display: flex; gap: .5rem; z-index: 3; }
.slider-dots button { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,253,251,.5); transition: width .35s var(--ease), background .3s; }
.slider-dots button.active { width: 32px; background: var(--white); }
@media (max-width: 600px) { .slider-arr { display: none; } .slide { height: 64vh; } }

/* ============================================================
   STOP MOTION (cycle d'images)
   ============================================================ */
.stopmotion { position: relative; overflow: hidden; }
.stopmotion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: smCycle 3.2s steps(1,end) infinite; }
.stopmotion img:nth-child(1) { animation-delay: 0s; }
.stopmotion img:nth-child(2) { animation-delay: .8s; }
.stopmotion img:nth-child(3) { animation-delay: 1.6s; }
.stopmotion img:nth-child(4) { animation-delay: 2.4s; }
@keyframes smCycle { 0%,22% { opacity: 1; } 25%,100% { opacity: 0; } }

/* KEN BURNS + bouton play (vidéo) */
.kenburns > img { animation: kb 13s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.16) translate(-2%,-2%); } }
.play-wrap { position: relative; }
.play-wrap::after { content: ""; position: absolute; inset: 0; background: rgba(63,34,51,.2); z-index: 1; }
.play-btn { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%; background: rgba(255,253,251,.94); color: var(--plum); display: grid; place-items: center; z-index: 3; transition: transform .4s var(--ease-back), background .3s, color .3s; }
.play-btn:hover { transform: scale(1.08); background: var(--mauve); color: #fff; }
.play-btn svg { width: 30px; margin-left: 4px; }

/* ============================================================
   AVANT / APRÈS (comparateur retouche)
   ============================================================ */
.ba { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 16/10; user-select: none; touch-action: none; }
.ba .ba-img { position: absolute; inset: 0; }
.ba .ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba .ba-after { clip-path: inset(0 0 0 var(--p,50%)); }
.ba .ba-line { position: absolute; top: 0; bottom: 0; left: var(--p,50%); width: 2px; background: var(--white); z-index: 3; box-shadow: 0 0 12px rgba(0,0,0,.3); }
.ba .ba-handle { position: absolute; top: 50%; left: var(--p,50%); transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: var(--white); color: var(--plum); display: grid; place-items: center; z-index: 4; box-shadow: 0 8px 24px rgba(0,0,0,.3); pointer-events: none; }
.ba .ba-handle svg { width: 22px; }
.ba .ba-tag { position: absolute; top: 16px; z-index: 3; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: #fff; background: rgba(63,34,51,.62); padding: .45em .9em; border-radius: 999px; }
.ba .ba-tag.l { left: 16px; } .ba .ba-tag.r { right: 16px; }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; }

/* ============================================================
   PAGE ARTICLE (blog single)
   ============================================================ */
.article-hero { padding-top: clamp(140px,16vh,210px); text-align: center; }
.article-hero .post-meta { justify-content: center; }
.article-hero h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); max-width: 16ch; margin: 1rem auto 0; text-transform: none; }
.article-cover { aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(28px,4vw,48px); }
.article-body { max-width: 720px; margin: clamp(40px,6vw,72px) auto 0; }
.article-body > * + * { margin-top: 1.5rem; }
.article-body p { font-size: 1.12rem; line-height: 1.85; color: var(--ink); }
.article-body p .drop::first-letter, .article-body p.lede { }
.article-body p.lede { font-size: 1.3rem; color: var(--plum); font-family: var(--serif); line-height: 1.6; }
.article-body h2 { font-size: clamp(1.6rem,3vw,2.3rem); margin-top: 2.6rem; }
.article-body figure { margin: 2.6rem 0; }
.article-body figcaption { font-size: .85rem; color: var(--ink-soft); text-align: center; margin-top: .8rem; }
.pullquote { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.3rem); line-height: 1.45; color: var(--plum); border-left: 3px solid var(--mauve); padding-left: 1.5rem; font-style: italic; margin: 2.6rem 0; }
.article-body ul.dotted { display: grid; gap: .8rem; }
.article-body ul.dotted li { display: flex; gap: .8em; font-size: 1.08rem; }
.article-body ul.dotted li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--mauve); margin-top: .55em; flex-shrink: 0; }
.author { display: flex; gap: 1rem; align-items: center; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.author .av { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author .au-n { font-family: var(--serif); font-size: 1.2rem; color: var(--plum); }
.author .au-r { font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   ÉTUDE DE CAS
   ============================================================ */
.cs-hero { padding-top: clamp(140px,16vh,210px); text-align: center; }
.cs-hero h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); text-transform: none; max-width: 18ch; margin-inline: auto; }
.cs-hero h1 .it { font-style: italic; color: var(--mauve); }
.cs-meta { display: flex; flex-wrap: wrap; gap: clamp(1.8rem,4vw,3.2rem); justify-content: center; margin-top: 2.4rem; }
.cs-meta .m .k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mauve); font-weight: 600; }
.cs-meta .m .v { font-family: var(--serif); font-size: 1.25rem; color: var(--plum); margin-top: .2rem; }
.cs-cover { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(30px,4vw,56px); }
.cs-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,48px); text-align: center; }
.cs-stat .n { font-family: var(--serif); font-size: clamp(2.6rem,5vw,4.2rem); color: var(--mauve); line-height: 1; }
.cs-stat .l { color: rgba(255,253,251,.7); margin-top: .6rem; font-size: .98rem; }
.cs-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.cs-split:nth-of-type(even) .cs-media { order: 2; }
.cs-split .cs-media.order-right { order: 2; }
.cs-split .cs-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.cs-split h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1rem; }
.cs-split p { color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.8; margin-top: 1rem; }
.cs-split .idx { font-family: var(--serif); color: var(--mauve); font-size: 1rem; margin-bottom: .4rem; }
.cs-gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: clamp(180px,20vw,280px); gap: clamp(12px,1.4vw,18px); }
.cs-gallery .shot { border-radius: var(--radius); }
.cs-gallery .shot.w2 { grid-column: span 2; }
.cs-gallery .shot.h2 { grid-row: span 2; }
@media (max-width: 760px) { .cs-stats { grid-template-columns: 1fr; gap: 2rem; } .cs-split { grid-template-columns: 1fr; } .cs-split:nth-of-type(even) .cs-media { order: 0; } .cs-split .cs-media.order-right { order: 0; } .cs-gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: clamp(150px,32vw,220px); } .cs-gallery .shot.w2 { grid-column: span 2; } }

/* ============================================================
   BLOC IMAGE STYLÉ — .img-frame
   Usage universel : remplace .cs-media, .offer-media, .portrait
   dans toute grille deux-colonnes texte + image.
   ============================================================ */
.img-frame {
  position: relative;
  z-index: 0;
  /* padding laisse de l'espace pour le bloc accent décalé */
  padding: 0 clamp(14px, 2.5vw, 28px) clamp(14px, 2.5vw, 28px) 0;
}
/* Bloc accent décalé bas-droit */
.img-frame::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 54%; height: 48%;
  border-radius: var(--radius);
  background: var(--mauve-200);
  z-index: 0;
  transition: transform .65s var(--ease), opacity .4s;
}
.img-frame.if--peach::after { background: oklch(91% .06 52); }
.img-frame.if--rose::after  { background: var(--rose-light); }
.img-frame.if--cream::after { background: var(--cream); }
.img-frame:hover::after     { transform: translate(8px, 8px); }

/* Conteneur image */
.img-frame .if-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 62px -30px rgba(63,34,51,.46);
  transition: transform .65s var(--ease), box-shadow .65s var(--ease);
  display: block;
}
.img-frame:hover .if-img {
  transform: translate(-5px, -6px);
  box-shadow: 0 44px 80px -40px rgba(63,34,51,.54);
}
.img-frame .if-img > img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.2s var(--ease);
}
.img-frame:hover .if-img > img { transform: scale(1.055); }

/* Ratios contextuels */
.cs-split     .img-frame .if-img    { aspect-ratio: 4 / 5; }
.offer        .img-frame .if-img    { aspect-ratio: 4 / 3; }
.about-hero-grid .img-frame .if-img { aspect-ratio: 4 / 5; border-radius: var(--radius-xl); }
.blog-feature    .img-frame .if-img { aspect-ratio: 16 / 11; border-radius: var(--radius-lg); }

/* Badge flottant (remplace .tag) */
.if-badge {
  position: absolute;
  z-index: 5;
  top: 18px; left: 18px;
  background: rgba(255,253,251,.92);
  color: var(--plum);
  font-family: var(--sans); font-weight: 600;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .5em 1.1em; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(63,34,51,.13);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Libère overflow / aspect-ratio sur les wrappers hérités */
.cs-split .cs-media  { overflow: visible !important; aspect-ratio: auto !important; border-radius: 0 !important; }
.offer-media         { overflow: visible !important; }

/* ============================================================
   PORTFOLIO — featured preview (au-dessus de la grille masonry)
   ============================================================ */
.pf-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: clamp(168px, 21vw, 292px) clamp(168px, 21vw, 292px);
  gap: clamp(10px, 1.3vw, 16px);
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.pf-featured .tile { border-radius: var(--radius); height: 100%; }
.pf-feat-a          { grid-row: span 2; }

@media (max-width: 760px) {
  .pf-featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: clamp(200px, 52vw, 310px) clamp(140px, 36vw, 200px);
  }
  .pf-feat-a  { grid-column: span 2; grid-row: span 1; }
  .pf-feat-d, .pf-feat-e { display: none; }
}
@media (max-width: 480px) {
  .pf-featured { grid-template-columns: 1fr; }
  .pf-feat-a   { grid-column: 1; height: clamp(220px, 65vw, 320px); }
  .pf-feat-b, .pf-feat-c, .pf-feat-d, .pf-feat-e { display: none; }
}

/* ============================================================
   MOBILE — COMPLÉMENTS RESPONSIVES
   ============================================================ */

/* img-frame mobile */
@media (max-width: 600px) {
  .img-frame { padding: 0 10px 10px 0; }
  .img-frame::after { width: 48%; height: 44%; }
}
@media (max-width: 380px) {
  .img-frame { padding: 0; }
  .img-frame::after { display: none; }
}

/* cs-cover ratio mobile */
@media (max-width: 600px) { .cs-cover { aspect-ratio: 4 / 3 !important; } }

/* Services grid (accueil) */
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* Étapes process */
@media (max-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); gap: clamp(20px,4vw,32px); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* Section-head responsive */
@media (max-width: 640px) {
  .section-head { flex-direction: column !important; align-items: flex-start !important; gap: 1.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .cta-card { border-radius: var(--radius); }
  .manifesto-inner p { font-size: clamp(1.2rem,5.5vw,1.6rem); }
}

/* ============================================================
   BANDES D'IMAGES — HÉROS PAGES INTERNES
   ============================================================ */
.page-hero-imgs {
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 800px;
  margin-inline: auto;
}
.page-hero-imgs.cols-4 { grid-template-columns: repeat(4, 1fr); }
.page-hero-imgs.cols-3 { grid-template-columns: 1fr 1.5fr 1fr; align-items: end; }
.page-hero-imgs .phi { display: flex; flex-direction: column; }
.page-hero-imgs .shot { border-radius: clamp(10px, 1.4vw, 16px); }
.phi-label {
  display: block; text-align: center; margin-top: .65rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mauve);
}
@media (max-width: 600px) {
  .page-hero-imgs.cols-4 {
    display: flex; overflow-x: auto; scroll-snap-type: x proximity; gap: 10px;
    padding-bottom: 10px; max-width: 100%; scrollbar-width: none; -ms-overflow-style: none;
  }
  .page-hero-imgs.cols-4::-webkit-scrollbar { display: none; }
  .page-hero-imgs.cols-4 .phi { flex: 0 0 46vw; scroll-snap-align: start; }
  .page-hero-imgs.cols-3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* ============================================================
   VALUE CARDS AVEC IMAGE (À propos)
   ============================================================ */
.value .value-img {
  aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden;
  margin-bottom: 1.2rem; position: relative;
}
.value .value-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.value:hover .value-img img { transform: scale(1.06); }

/* ============================================================
   GALERIE STUDIO (À propos — En coulisses)
   ============================================================ */
.studio-gallery {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-auto-rows: clamp(150px, 16vw, 250px);
  gap: clamp(10px, 1.2vw, 16px);
}
.studio-gallery > * { min-height: 0; min-width: 0; }
.studio-gallery .shot {
  border-radius: var(--radius); overflow: hidden;
  width: 100%; height: 100%;
}
.studio-gallery .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.studio-gallery .shot:hover img { transform: scale(1.06); }
.studio-gallery .span2 { grid-row: span 2; }
@media (max-width: 820px) {
  .studio-gallery { grid-template-columns: repeat(2, 1fr); }
  .studio-gallery .span2 { grid-row: span 2; }
}
@media (max-width: 480px) {
  .studio-gallery { grid-template-columns: 1fr; grid-auto-rows: clamp(200px, 55vw, 280px); }
  .studio-gallery .span2 { grid-row: span 1; }
}

/* ============================================================
   TÉMOIGNAGE AVEC PORTRAIT (Étude de cas)
   ============================================================ */
.cs-testimonial-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
  text-align: left;
}
.cs-testimonial-inner .ct-portrait {
  aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; width: 100%;
}
.cs-testimonial-inner .ct-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-testimonial-inner .pullquote {
  border-left: 3px solid var(--mauve); padding-left: 1.4rem;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}
.cs-testimonial-inner cite {
  display: block; margin-top: 1rem; font-style: normal;
  color: var(--ink-soft); font-size: .95rem;
}
@media (max-width: 600px) {
  .cs-testimonial-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .cs-testimonial-inner .ct-portrait { width: min(150px, 42vw); }
  .cs-testimonial-inner .pullquote { border-left: 0; padding-left: 0; border-top: 3px solid var(--mauve); padding-top: 1.2rem; }
}

/* ============================================================
   HERO CINÉMATIQUE v3 — Swiper plein-écran
   ============================================================ */
.hero-cinematic {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 130px var(--gut) 80px;
  position: relative; overflow: hidden;
}
.hero-bg-swiper {
  position: absolute !important; inset: 0; z-index: 0;
  width: 100% !important; height: 100% !important;
}
.hero-bg-swiper .swiper-wrapper,
.hero-bg-swiper .swiper-slide { height: 100%; }
.hero-bg-swiper .shot { position: absolute; inset: 0; }
.hero-bg-swiper img {
  transform: scale(1.06);
  transition: transform 8s ease-out !important;
}
.hero-bg-swiper .swiper-slide-active img { transform: scale(1.14) !important; }
.hero-cin-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(38,12,26,.65) 0%, rgba(38,12,26,.24) 52%, rgba(38,12,26,.76) 100%);
}
.hero-cinematic .hero-inner { z-index: 5; }
.hero-cinematic .hero-floats { z-index: 3; }
.hero-cinematic .eyebrow         { color: var(--rose-light); }
.hero-cinematic .eyebrow::before { background: var(--rose-light); }
.hero-cinematic h1.display       { color: var(--white); }
.hero-cinematic h1.display .it   { color: var(--mauve-200); }
.hero-cinematic .hero-sub        { color: rgba(255,253,251,.88); }

.btn--ghost {
  --bg: transparent; --fg: var(--white);
  border: 1.5px solid rgba(255,253,251,.52); box-shadow: none;
}
.btn--ghost::before { background: rgba(255,253,251,.14); }
.btn--ghost:hover   { color: var(--white); box-shadow: none; }

.hero-swiper-dots {
  display: flex; justify-content: center; gap: .5rem; margin-top: 2.4rem;
}
.hero-swiper-dots .swiper-pagination-bullet {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,253,251,.4); opacity: 1; margin: 0 !important;
  transition: width .4s var(--ease), background .3s;
}
.hero-swiper-dots .swiper-pagination-bullet-active { width: 38px; background: var(--white); }

@media (max-width: 960px) {
  .hero-cinematic { min-height: 88vh; padding-top: 100px; padding-bottom: 64px; }
}

/* ============================================================
   SECTION EXPERTISE
   ============================================================ */
.exp-section-head { margin-bottom: clamp(40px, 5vw, 68px); }
.exp-section-head .eyebrow { margin-bottom: 1rem; }
.exp-section-head h2 { margin-top: .8rem; }

.expertise-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 110px); align-items: center;
  padding-block: clamp(44px, 5.5vw, 80px);
  border-top: 1px solid var(--line);
}
.expertise-row--rev .expertise-media { order: -1; }
.expertise-media.img-frame .if-img  { aspect-ratio: 4 / 5; }

.exp-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mauve); background: var(--cream);
  padding: .42em 1.1em; border-radius: 999px; margin-bottom: 1.3rem;
}
.expertise-text p  { color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.82; max-width: 46ch; margin-top: 1.1rem; }
.exp-list { margin-top: 1.7rem; display: grid; gap: .82rem; }
.exp-list li { display: flex; align-items: flex-start; gap: .75em; font-size: .97rem; color: var(--ink); }
.exp-list li::before { content: "✦"; color: var(--mauve); font-size: .64em; margin-top: .45em; flex-shrink: 0; }

@media (max-width: 860px) {
  .expertise-row { grid-template-columns: 1fr; gap: 2.6rem; }
  .expertise-row--rev .expertise-media { order: 0; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--plum-deep);
  padding-block: clamp(36px, 5vw, 68px);
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(193,142,166,.11) 0%, transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px); position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: clamp(16px, 2vw, 30px) 8px;
  border-right: 1px solid rgba(255,253,251,.09);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 4rem); line-height: 1;
  color: var(--mauve-200); margin-bottom: .55rem;
}
.stat-lbl { color: rgba(255,253,251,.52); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; }

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,253,251,.09); padding-bottom: clamp(20px,3vw,36px); margin-bottom: clamp(20px,3vw,36px); }
}

/* ============================================================
   CATÉGORIES — 3 panneaux plein-écran
   ============================================================ */
.cat-section { padding-block: 0; position: relative; }
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: clamp(420px, 56vh, 700px);
  gap: 3px;
}
.cat-card {
  position: relative; overflow: hidden; display: block;
  background: oklch(20% .06 310);   /* fallback sombre pendant le chargement */
}
.cat-card .shot { position: absolute; inset: 0; }
.cat-card img   { transition: transform .95s var(--ease); }
.cat-card:hover img { transform: scale(1.08); }

/* Dégradé overlay */
.cat-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(38,12,26,.9)  0%,
    rgba(38,12,26,.32) 45%,
    rgba(38,12,26,.06) 100%
  );
  transition: opacity .5s var(--ease);
}
.cat-card:hover .cat-overlay { opacity: 1.15; }

/* Corps texte */
.cat-body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 3.6vw, 56px);
}

/* Numéro — visible au hover */
.cat-num {
  display: block; font-family: var(--serif);
  font-size: .84rem; color: var(--mauve-200); letter-spacing: .22em;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease) .08s, transform .45s var(--ease) .08s;
  margin-bottom: .65rem;
}
.cat-card:hover .cat-num { opacity: 1; transform: translateY(0); }

/* Titre */
.cat-title {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  color: var(--white); line-height: 1.06; letter-spacing: -.01em;
  transition: transform .5s var(--ease);
}
.cat-card:hover .cat-title { transform: translateY(-10px); }

/* Description — visible au hover */
.cat-desc {
  margin-top: .8rem; max-width: 28ch;
  color: rgba(255,253,251,.72); font-size: .9rem; line-height: 1.55;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s var(--ease) .04s, transform .45s var(--ease) .04s;
}
.cat-card:hover .cat-desc { opacity: 1; transform: translateY(-10px); }

/* CTA */
.cat-cta {
  display: inline-flex; align-items: center; gap: .5em;
  margin-top: 1.3rem;
  font-size: .73rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rose-light);
  opacity: 0; transform: translateY(18px);
  transition: opacity .4s var(--ease) .12s, transform .45s var(--ease) .12s;
}
.cat-cta svg { width: 13px; transition: transform .4s var(--ease); }
.cat-card:hover .cat-cta          { opacity: 1; transform: translateY(-10px); }
.cat-card:hover .cat-cta svg      { transform: translateX(5px); }

/* Ligne accent en bas au hover */
.cat-card::after {
  content: ""; position: absolute;
  left: clamp(24px, 3.6vw, 56px); bottom: clamp(24px, 3.6vw, 56px);
  width: 0; height: 2px; border-radius: 2px;
  background: var(--mauve); z-index: 3;
  transition: width .5s var(--ease);
}
.cat-card:hover::after { width: 56px; }

@media (max-width: 680px) {
  .cat-grid { grid-template-columns: 1fr; height: auto; gap: 2px; }
  .cat-card { height: clamp(280px, 68vw, 420px); }
  /* Sur mobile les infos sont toujours visibles */
  .cat-num, .cat-desc, .cat-cta {
    opacity: 1; transform: none;
    transition: none;
  }
  .cat-title { font-size: clamp(2rem, 7vw, 2.6rem); }
}

/* Catégories : toujours visibles (section critique, pas de dépendance JS) */
.cat-section [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   GALLERY — tuiles supplémentaires g-g / g-h / g-i
   ============================================================ */
.gal-grid .tile.g-g { grid-column: span 4; grid-row: span 2; }
.gal-grid .tile.g-h { grid-column: span 5; grid-row: span 2; }
.gal-grid .tile.g-i { grid-column: span 3; grid-row: span 2; }

/* ============================================================
   SECTION AVIS
   ============================================================ */
.avis-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.avis-section-head .eyebrow { margin-bottom: 1rem; }
.avis-section-head h2 { margin-top: .6rem; }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 32px); width: 100%; }
.avis-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 38px);
  display: flex; flex-direction: column; gap: 1.3rem;
  min-width: 0;
  transition: box-shadow .5s var(--ease), transform .5s var(--ease), border-color .5s;
}
.avis-card:hover { box-shadow: 0 32px 64px -36px rgba(63,34,51,.28); transform: translateY(-7px); border-color: transparent; }
.avis-stars { color: var(--peach); font-size: 1.2rem; letter-spacing: .08em; }
.avis-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.67;
  color: var(--ink); font-style: italic;
  flex: 1; position: relative; padding-left: 1.5rem;
  overflow-wrap: break-word; word-break: break-word;
}
.avis-quote::before {
  content: "\201C"; position: absolute; left: 0; top: -.12em;
  font-size: 3.2rem; line-height: 1; color: var(--mauve);
  font-family: var(--serif); opacity: .45;
}
.avis-footer { display: flex; align-items: center; gap: .9rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.avis-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0; position: relative; background: var(--paper-2); }
.avis-footer strong { display: block; font-family: var(--serif); font-size: 1.02rem; color: var(--plum); }
.avis-footer span { display: block; font-size: .83rem; color: var(--ink-soft); margin-top: .1rem; }

@media (max-width: 900px) { .avis-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .avis-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px)  { .avis-section-head { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) {
  .avis-card { padding: 18px; }
  .avis-quote::before { font-size: 2.4rem; }
}

/* ============================================================
   SECTION FAQ
   ============================================================ */
.faq-section { overflow: hidden; }
.faq-inner {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px); align-items: start;
}
.faq-head .eyebrow { margin-bottom: 1.1rem; }
.faq-head h2 { margin-top: .8rem; font-size: clamp(1.9rem, 3.6vw, 3rem); }
.faq-head-p { margin-top: 1.6rem; color: rgba(255,253,251,.62); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.76; max-width: 30ch; }
.faq-head-p a { color: var(--mauve-200); text-decoration: underline; text-underline-offset: 3px; }
.faq-head-p a:hover { color: var(--white); }

.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,253,251,.1); }
.faq-q {
  width: 100%; text-align: left;
  padding: 1.4rem 0;
  font-family: var(--serif); font-size: clamp(.92rem, 1.1vw, 1.02rem);
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 1.2rem;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--mauve-200); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,253,251,.26);
  display: grid; place-items: center; color: var(--mauve-200);
  transition: transform .45s var(--ease-back), background .3s, border-color .3s, color .3s;
}
.faq-icon svg { width: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--mauve); border-color: var(--mauve); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.faq-a-inner { padding-bottom: 1.5rem; color: rgba(255,253,251,.66); font-size: .86rem; line-height: 1.48; max-width: 600px; }

@media (max-width: 820px) {
  .faq-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .faq-head { text-align: center; }
  .faq-head .eyebrow { justify-content: center; }
  .faq-head-p { max-width: 100%; }
  .faq-a-inner { max-width: 100%; }
  .faq-list .wp-block-details p { max-width: 100%; }
}

/* ============================================================
   PAGE AVIS — rating badges
   ============================================================ */
.rating-badges {
  display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 2.8rem);
  justify-content: center; margin-top: 2.4rem; flex-wrap: wrap;
}
.rb { text-align: center; }
.rb-score { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; color: var(--plum); }
.rb-stars { color: var(--peach); font-size: 1.1rem; margin: .35rem 0 .3rem; letter-spacing: .1em; }
.rb-src { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.rb-sep { width: 1px; height: 62px; background: var(--line); flex-shrink: 0; }
@media (max-width: 440px) { .rb-sep { display: none; } }

/* ============================================================
   HERO MAGNÉTIQUE
   ============================================================ */
.hero-mag {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 110px clamp(16px,4vw,60px) 50px;
  position: relative; overflow: hidden;
}
.hero-mag .hero-eye { position: relative; z-index: 10; margin-bottom: 18px; }
.hero-mag .hero-title {
  position: relative; z-index: 10;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  line-height: .92; color: var(--plum);
  text-transform: uppercase; letter-spacing: -.02em;
  text-align: center; hyphens: none;
  margin-bottom: clamp(22px, 3.2vw, 42px);
  width: 100%; max-width: 100%;
}

/* Rangée magnétique */
.mag-row {
  position: relative; z-index: 20;
  display: flex; justify-content: center; align-items: flex-end;
}
.mag-card {
  position: relative; flex-shrink: 0; width: 190px;
  margin-left: -6px; cursor: none; will-change: transform;
}
.mag-card:first-child { margin-left: 0; }
.mag-card:nth-child(1) { z-index: 1; }
.mag-card:nth-child(2) { z-index: 3; }
.mag-card:nth-child(3) { z-index: 5; }
.mag-card:nth-child(4) { z-index: 3; }
.mag-card:nth-child(5) { z-index: 1; }
.mag-card:hover         { z-index: 10; }
.mag-tilt { will-change: transform; transform-style: preserve-3d; }
/* Rotations initiales CSS (avant JS, évite le flash "à plat") */
.mag-card:nth-child(1) .mag-tilt { transform: perspective(700px) rotate(-7deg); }
.mag-card:nth-child(2) .mag-tilt { transform: perspective(700px) rotate(4deg); }
.mag-card:nth-child(3) .mag-tilt { transform: perspective(700px) rotate(-2deg); }
.mag-card:nth-child(4) .mag-tilt { transform: perspective(700px) rotate(6deg); }
.mag-card:nth-child(5) .mag-tilt { transform: perspective(700px) rotate(-5deg); }
.mag-img {
  position: relative; overflow: hidden; border-radius: 16px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 2px 6px rgba(63,34,51,.1), 0 10px 28px rgba(63,34,51,.14), 0 20px 52px rgba(63,34,51,.1);
  cursor: pointer;
}
.mag-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.mag-card:hover .mag-img img { transform: scale(1.06); }
.mag-shine {
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 55%);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mag-card:hover .mag-shine { opacity: 1; }
.mag-view {
  position: absolute; inset: 0; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(63,34,51,0); transition: background .3s;
}
.mag-view svg {
  width: 36px; height: 36px; stroke: var(--white);
  opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s var(--ease-back);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.mag-card:hover .mag-view     { background: rgba(63,34,51,.22); }
.mag-card:hover .mag-view svg { opacity: 1; transform: scale(1); }


/* Bas du hero */
.hero-mag-foot {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-top: clamp(20px,3vw,38px); text-align: center;
}
.hero-mag-sub {
  font-size: clamp(.88rem, 1.15vw, 1rem);
  color: var(--ink-soft); max-width: 72ch; line-height: 1.7;
}
.hero-mag-cta { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* Curseur personnalisé dans le hero */
.mag-cursor {
  position: fixed; z-index: 8999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--plum); translate: -50% -50%;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border .3s;
  mix-blend-mode: multiply;
}
.mag-cursor.hover {
  width: 62px; height: 62px; background: transparent;
  border: 1.5px solid rgba(107,59,82,.45);
  mix-blend-mode: normal;
}

/* Modal lightbox magnétique */
.mag-modal-backdrop {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(33,10,22,.82);
  backdrop-filter: blur(10px) saturate(1.2);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mag-modal-backdrop.open { opacity: 1; visibility: visible; }
.mag-modal-box {
  position: relative; max-width: min(680px,90vw); width: 100%;
  transform: scale(.92) translateY(20px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.mag-modal-backdrop.open .mag-modal-box { transform: scale(1) translateY(0); }
.mag-modal-img { width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.mag-modal-img img { width: 100%; max-height: 72vh; object-fit: contain; display: block; }
.mag-modal-info {
  margin-top: 16px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 4px;
}
.mag-modal-cat { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--mauve-200); }
.mag-modal-num { font-size: .65rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.mag-modal-close {
  position: absolute; top: -14px; right: -14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--plum);
  display: grid; place-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: background .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
  z-index: 2; cursor: pointer; border: 0;
}
.mag-modal-close:hover { background: var(--cream); transform: scale(1.08) rotate(90deg); }
.mag-modal-close svg { width: 16px; height: 16px; }
.mag-modal-arrow {
  position: fixed; top: 50%; z-index: 9101;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  color: white; display: none; place-items: center;
  transform: translateY(-50%); transition: background .2s;
  cursor: pointer;
}
.mag-modal-arrow:hover { background: rgba(255,255,255,.22); }
.mag-modal-arrow svg { width: 20px; height: 20px; }
#magModalPrev { left: clamp(12px,3vw,40px); }
#magModalNext { right: clamp(12px,3vw,40px); }
.mag-modal-backdrop.open ~ .mag-modal-arrow { display: grid; }

@media (max-width: 960px) {
  .mag-card { width: 150px; margin-left: -5px; }
}
/* ── Portrait mobile : carousel plein-écran ──
   Principe : hero-mag garde son padding (le titre reste indenté).
   mag-row en width:100vw + hero-mag align-items:center + overflow:visible
   = la row se centre sur le viewport → bords gauche/droite exacts.
   Cards en calc(100vw - 48px) + padding 24px sur la row = peek de 24px
   des cartes adjacentes de chaque côté. Toutes les 5 images défilables. */
@media (max-width: 860px) and (orientation: portrait) {
  .hero-mag {
    min-height: auto !important;
    padding-top: 88px; padding-bottom: 40px;
    overflow: visible !important;
  }

  .mag-row {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
    /* 100vw centré dans le flex-column = s'aligne exactement sur les bords viewport */
    width: 100vw !important;
    margin-inline: 0 !important;
    /* padding = zone peek (24px de la carte suivante visible de chaque côté) */
    padding: 0 24px !important;
    gap: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
    justify-content: flex-start;
  }
  .mag-row::-webkit-scrollbar { display: none; }

  .mag-card {
    /* 100vw - 2×24px padding = carte qui remplit l'espace entre les deux peeks */
    display: block !important; /* surcharge l'ancien cache LiteSpeed qui cache nth-child(1) et (5) */
    flex: 0 0 calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    min-width: 0;
    margin-left: 0 !important;
    scroll-snap-align: center;
    transform: scale(.97) translateZ(0) !important;
    opacity: .82;
    transition: transform .38s var(--ease), opacity .38s var(--ease);
    cursor: pointer;
  }
  .mag-card.mag-active {
    opacity: 1 !important;
    transform: scale(1) translateZ(0) !important;
  }
  .mag-tilt { transform: none !important; }
  /* Image haute et très visible : forcer min 55% de la hauteur écran */
  .mag-img { min-height: max(300px, 55svh) !important; }
  .mag-shine { display: none; }
  .hero-m-slider, .hero-m-nav { display: none !important; }
  .hero-mag .hero-title { font-size: clamp(2.1rem, 9vw, 3rem); }
}

/* ── Paysage mobile : fanout style desktop, taille réduite ── */
@media (max-width: 860px) and (orientation: landscape) {
  .hero-mag { min-height: auto !important; padding-top: 60px; padding-bottom: 20px; }
  .hero-mag .hero-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
}
/* Très petit paysage (iPhone SE ~568px) */
@media (max-width: 680px) and (orientation: landscape) {
  .mag-card { width: 110px !important; }
}

/* Portrait très étroit */
@media (max-width: 380px) and (orientation: portrait) {
  .hero-mag .hero-title { font-size: clamp(1.85rem, 9vw, 2.4rem); }
}

/* ============================================================
   HERO SPLIT — texte fond clair + mosaïque photos animée
   ============================================================ */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Colonne texte */
.hero-split-text {
  display: flex; align-items: center;
  padding: 130px var(--gut) 100px;
  background: var(--paper);
  position: relative;
}
.hero-split .hero-inner {
  position: relative; z-index: 2;
  max-width: 560px; margin-inline: 0; text-align: left;
}
.hero-split .hero-inner .eyebrow { justify-content: flex-start; }
.hero-split .hero-sub            { margin-left: 0; }
.hero-split .hero-cta            { justify-content: flex-start; }
.hero-split .display             { font-size: clamp(2.4rem, 4vw, 4.6rem); }

/* Scroll cue repositionné dans la colonne texte */
.hero-split .scroll-cue {
  position: absolute; left: var(--gut); bottom: 32px; transform: none;
}

/* Colonne photos */
.hero-split-photos {
  position: relative; overflow: hidden;
  background: var(--paper-2);
}

/* Mosaïque : 1 tall à gauche + 2×2 à droite */
.hsp-grid {
  position: absolute; inset: 18px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.hsp-a { grid-row: span 2; }
.hsp-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: hspIn .7s var(--ease-back) forwards;
}
.hsp-a { animation-delay: .10s; }
.hsp-b { animation-delay: .22s; }
.hsp-c { animation-delay: .34s; }
.hsp-d { animation-delay: .46s; }
.hsp-e { animation-delay: .58s; }
.hsp-img .shot { position: absolute; inset: 0; }

@keyframes hspIn {
  from { opacity: 0; transform: translateY(22px) scale(.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Ken Burns asynchrone — chaque photo se déplace différemment */
.hsp-img img { animation: hspKb1 15s ease-in-out infinite alternate; }
.hsp-b img   { animation-name: hspKb2; animation-duration: 11s; }
.hsp-c img   { animation-name: hspKb3; animation-duration: 17s; animation-delay: -5s; }
.hsp-d img   { animation-name: hspKb1; animation-duration: 13s; animation-delay: -8s; }
.hsp-e img   { animation-name: hspKb2; animation-duration: 14s; animation-delay: -3s; }

@keyframes hspKb1 {
  from { transform: scale(1)    translate(0,    0);    }
  to   { transform: scale(1.07) translate(-1.2%,-1%); }
}
@keyframes hspKb2 {
  from { transform: scale(1.05) translate(1%,   0);    }
  to   { transform: scale(1)    translate(0,    1.2%); }
}
@keyframes hspKb3 {
  from { transform: scale(1)    translate(-1%,  .8%);  }
  to   { transform: scale(1.06) translate(1.2%, -1.2%);}
}

@media (prefers-reduced-motion: reduce) {
  .hsp-img img { animation: none; }
  .hsp-img     { animation: none; opacity: 1; }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-text {
    padding-top: 110px; padding-bottom: 64px;
    min-height: 72vh;
  }
  .hero-split .display { font-size: clamp(2.2rem, 7.5vw, 3.6rem); }
  .hero-split-photos   { height: clamp(280px, 58vw, 440px); }
  .hsp-grid            { gap: 8px; inset: 12px; }
  .hero-split .scroll-cue { display: none; }
}



/* ============================================================
   GUTENBERG BLOCKS → CHOUSHOOTING BRIDGE
   Blocs natifs wp: branchés sur le design system existant.
   ============================================================ */

/* ── wp:button → .btn ──────────────────────────────────── */
.wp-element-button {
  --bg: var(--plum); --fg: var(--white); --sweep: var(--mauve);
  position: relative; display: inline-flex; align-items: center; gap: .65em;
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg) !important; padding: 1.1em 2.2em; border-radius: 999px;
  background: var(--bg); overflow: hidden; isolation: isolate; will-change: transform;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .45s var(--ease);
  box-shadow: 0 12px 30px -16px rgba(63,34,51,.6);
  text-decoration: none !important;
}
.wp-element-button:hover { box-shadow: 0 20px 40px -18px rgba(63,34,51,.6); }
.wp-element-button::before {
  content: ""; position: absolute; inset: 0;
  background: var(--sweep); transform: translateY(101%);
  transition: transform .55s var(--ease); z-index: -1;
}
.wp-element-button:hover::before { transform: translateY(0); }

/* Outline (manifesto, about) */
.wp-block-button.btn--outline .wp-element-button {
  --bg: transparent; --fg: var(--plum);
  border: 1.5px solid var(--plum); box-shadow: none;
}
.wp-block-button.btn--outline .wp-element-button::before { background: var(--plum); }
.wp-block-button.btn--outline .wp-element-button:hover { color: var(--white) !important; }

/* Light (CTA dark section) */
.wp-block-button.btn--light .wp-element-button {
  --bg: var(--white); --fg: var(--plum); --sweep: var(--cream);
}
.wp-block-button.btn--light .wp-element-button:hover { color: var(--plum-deep) !important; }

/* Évite le border-radius WP par défaut */
.wp-block-button__link { border-radius: 999px !important; }

/* Espacements boutons dans les sections converties */
.manifesto-inner .wp-block-buttons { margin-top: 2.6rem; }
.about-copy .wp-block-buttons      { margin-top: 2rem; }
.cta-card .wp-block-buttons        { margin-top: 2.4rem; }

/* ── Suppression interférence is-layout-flow ─────────────── */
/* wp:group ajoute is-layout-flow qui force max-width:content sur les enfants */
.stats-grid.is-layout-flow > *,
.steps.is-layout-flow > *,
.faq-inner.is-layout-flow > *,
.container.is-layout-flow > *,
.manifesto-inner.is-layout-flow > *,
.section-head.is-layout-flow > *,
.process-head.is-layout-flow > *,
.faq-head.is-layout-flow > *,
.faq-list.is-layout-flow > *,
.cta-card.is-layout-flow > *,
.about-copy.is-layout-flow > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Process (section sombre) ────────────────────────────── */
.process .wp-block-heading,
.step .wp-block-heading { color: var(--white) !important; }
.process-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px,5vw,72px); }
.process-head .eyebrow { justify-content: center; }

/* ── Stats heading reset ─────────────────────────────────── */
.stat-num.wp-block-heading { margin: 0 0 .55rem; color: var(--mauve-200); }

/* ── About columns ───────────────────────────────────────── */
.wp-block-columns.about-grid {
  display: grid !important;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px,6vw,90px);
  align-items: center;
  flex-wrap: unset !important;
}
@media (max-width: 820px) {
  .wp-block-columns.about-grid { grid-template-columns: 1fr !important; }
  .wp-block-column.about-photo  { max-width: 420px; margin-inline: auto; }
}
.wp-block-column.about-photo {
  position: relative !important; aspect-ratio: 4/5;
  overflow: hidden; border-radius: 150px 150px 30px 30px;
  flex-basis: auto !important; max-width: none !important;
}
.wp-block-column.about-photo .wp-block-image { position: absolute; inset: 0; margin: 0; }
.wp-block-column.about-photo .wp-block-image figure { margin: 0; height: 100%; }
.wp-block-column.about-photo .wp-block-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── FAQ — wp:details comme accordéon natif ──────────────── */
.faq-list { display: block; }
.faq-list .wp-block-details { border-bottom: 1px solid rgba(255,253,251,.1); }
.faq-list .wp-block-details > summary {
  list-style: none; cursor: pointer; padding: .7rem 0;
  font-family: var(--serif); font-size: clamp(.92rem,1.1vw,1.02rem); color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 1.2rem;
  transition: color .3s var(--ease);
}
.faq-list .wp-block-details > summary::-webkit-details-marker { display: none; }
.faq-list .wp-block-details > summary::after {
  content: "+"; min-width: 22px; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(255,253,251,.26);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--mauve-200); font-size: .88rem; font-family: var(--sans); line-height: 1;
  transition: transform .45s var(--ease-back), background .3s, border-color .3s, color .3s;
}
.faq-list .wp-block-details > summary:hover { color: var(--mauve-200); }
.faq-list .wp-block-details[open] > summary::after {
  transform: rotate(45deg); background: var(--mauve); border-color: var(--mauve); color: var(--white);
}
.faq-list .wp-block-details .wp-block-paragraph,
.faq-list .wp-block-details p {
  padding-bottom: .8rem; margin: 0;
  color: rgba(255,253,251,.66); font-size: .86rem; line-height: 1.48; max-width: 600px;
}

/* ============================================================
   MOBILE — corrections spécifiques
   ============================================================ */

/* Curseur masqué sur appareils tactiles */
@media (hover: none), (pointer: coarse) {
  .mag-cursor { display: none !important; }
}

/* ── Slider hero mobile ── */
.hero-m-slider {
  display: none; /* visible via @media max-width:600px */
  position: relative;
  overflow: hidden;
  width: calc(100% + 2 * clamp(16px, 4vw, 60px));
  margin-inline: calc(-1 * clamp(16px, 4vw, 60px));
  height: 64vw;
  max-height: 290px;
  border-radius: var(--radius-lg);
  margin-bottom: 0;
}
.hero-m-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s var(--ease);
  cursor: pointer;
}
.hero-m-slide.active { opacity: 1; }
.hero-m-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-m-cat {
  position: absolute; bottom: 12px; left: 14px;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); background: rgba(38,12,26,.5); backdrop-filter: blur(4px);
  padding: 3px 10px; border-radius: 99px; pointer-events: none;
}
.hero-m-nav {
  display: none; /* visible via @media max-width:600px */
  align-items: center; justify-content: center;
  gap: 1.2rem; margin-top: 14px;
}
.hero-m-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--white);
  display: grid; place-items: center; cursor: pointer; flex-shrink: 0;
  color: var(--plum);
  transition: background .3s, border-color .3s, color .3s;
}
.hero-m-btn:hover, .hero-m-btn:active { background: var(--plum); border-color: var(--plum); color: var(--white); }
.hero-m-btn svg { width: 18px; height: 18px; }
.hero-m-dots { display: flex; gap: 6px; align-items: center; }
.hero-m-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line); transition: width .35s var(--ease), background .3s, border-radius .35s;
}
.hero-m-dots span.active { width: 20px; border-radius: 3px; background: var(--plum); }

/* Paysage (landscape) : cartes magnétiques, masquer slider */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-eye { display: none; }
  .hero-mag { min-height: auto; padding-top: 72px; padding-bottom: 20px; gap: 8px; }
  .hero-mag .hero-title { font-size: clamp(1.4rem, 4.5vh, 2rem); margin-bottom: 10px; }
  .hero-mag-sub { display: none; }
  .hero-mag-cta { gap: 8px; }
  .hero-mag-cta .btn { padding: 8px 14px; font-size: .82rem; }
  .hero-m-slider, .hero-m-nav { display: none !important; }
  .mag-row { display: flex !important; margin-block: 6px; }
  .mag-card { width: clamp(70px, 11vw, 100px); margin-left: -4px; }
  .mag-card:nth-child(1) .mag-img,
  .mag-card:nth-child(5) .mag-img { height: clamp(88px, 14vh, 110px); }
  .mag-card:nth-child(2) .mag-img { height: clamp(96px, 16vh, 120px); }
  .mag-card:nth-child(3) .mag-img { height: clamp(104px, 18vh, 130px); }
  .mag-card:nth-child(4) .mag-img { height: clamp(96px, 16vh, 120px); }
  .mag-card:nth-child(1), .mag-card:nth-child(5) { display: block; }
}
