/* =============================================
   VistaNova — palette originale (vert forêt + crème pêche)
   Police titre : Cinzel (comme le site Wix d'origine)
   ============================================= */

:root {
  /* Palette EXACTE extraite du site Wix */
  --green-deep:  #0c221c;      /* header / fond principal */
  --green-soft:  #14302a;      /* zones sombres secondaires */
  --green-mid:   #244d43;      /* accent vert moyen */
  --green-glow:  #3a7a6a;      /* lueur / hover */
  --cream:       #fdebd6;      /* texte clair (sur vert) */
  --cream-warm:  #f4d8b8;      /* fond crème pêche (bandeau) */
  --cream-soft:  #faf3e6;      /* fond clair */
  --gold:        #e0b480;      /* accent doré principal */
  --gold-light:  #ecc89e;      /* doré clair (hover, highlights) */
  --gold-deep:   #c69968;      /* doré profond (titres, accents forts) */
  --beige:       #d4b896;      /* beige doré (variations subtiles) */
  --ink-mute:    #858779;      /* gris vert subtil */
  --ink-dark:    #14201c;      /* texte sombre sur crème */
  --line:        rgba(224, 180, 128, 0.18);  /* lignes en doré subtil */
  --line-strong: rgba(224, 180, 128, 0.4);   /* lignes en doré marqué */

  --serif:   'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --serif-2: 'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;

  --max:  1480px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);

  --ease: cubic-bezier(0.65, 0, 0.05, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--green-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--green-deep); }

/* ---------- Focus visible (accessibilité clavier) ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
.btn-pill:focus-visible,
.shop-add:focus-visible,
.big-cta:focus-visible,
.chip:focus-visible,
.cart-btn:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.field input:focus-visible {
  outline: none;
  border-bottom-color: var(--gold);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  padding: 0.8rem 1.4rem;
  background: var(--cream);
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: top .25s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-deep);
  display: grid;
  place-items: center;
  flex-direction: column;
  gap: 2.4rem;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
  /* CSS fail-safe : si JS bloque, le loader disparaît tout seul après 5s */
  animation: loaderFadeSafety 5s ease 4s forwards;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes loaderFadeSafety {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.loader-logo {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(224, 180, 128, 0.25));
  animation: logoBreath 3s ease-in-out infinite;
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50%      { transform: scale(1.02); opacity: 1; }
}
.loader-bar {
  width: min(40vw, 280px);
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.loader-bar span {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--cream);
  animation: load 1.4s var(--ease) forwards;
}
@keyframes load { 0% { right: 100%; } 100% { right: 0%; } }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Custom cursor (pas de mix-blend-mode pour bien matcher la palette chaude) ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 998;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: auto; }
  a, button, [data-cursor] { cursor: pointer; }
}
.cursor-dot {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease, background .25s ease;
}
.cursor-ring {
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .25s ease, border-color .25s ease;
}
.cursor-label {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-family: var(--serif);
  font-weight: 600;
  opacity: 0;
  white-space: nowrap;
  transition: opacity .25s ease;
  pointer-events: none;
}
.cursor.is-link .cursor-ring { width: 50px; height: 50px; }
.cursor.is-cta  .cursor-ring { width: 76px; height: 76px; background: var(--cream); border-color: var(--cream); }
.cursor.is-cta  .cursor-dot  { opacity: 0; }
.cursor.is-view .cursor-ring { width: 96px; height: 96px; background: var(--cream); border-color: var(--cream); }
.cursor.is-view .cursor-dot  { opacity: 0; }
.cursor.is-view .cursor-label,
.cursor.is-cta  .cursor-label { opacity: 1; }

/* ---------- Grain (très léger) ---------- */
.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 0.92   0 0 0 0 0.84   0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 8s steps(8) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem var(--pad-x);
  transition: padding .3s var(--ease), background .3s ease, backdrop-filter .3s ease;
  background: linear-gradient(180deg, rgba(12, 34, 28, 0.7) 0%, transparent 100%);
}
.site-header.scrolled {
  padding: 0.75rem var(--pad-x);
  background: rgba(12, 34, 28, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  transition: opacity .3s ease, transform .4s var(--ease-out);
}
.brand:hover { opacity: 0.92; transform: scale(1.03); }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height .3s var(--ease);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}
.site-header.scrolled .brand-logo { height: 42px; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(1.4rem, 2.6vw, 2.8rem); }
.nav a {
  position: relative;
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.4rem 0;
  opacity: 0.78;
  transition: opacity .25s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav a:hover, .nav a.active { opacity: 1; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Pill button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.btn-pill {
  padding: 0.7em 1.6em;
  border: 1px solid var(--cream);
  border-radius: 999px;
  color: var(--cream);
}
.btn-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn-pill:hover { color: var(--green-deep); }
.btn-pill:hover::before { transform: scaleX(1); }
.btn-line {
  padding: 0.95em 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--cream);
  border-radius: 0;
  letter-spacing: 0.18em;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  transition: border-color .25s ease, background .25s ease;
}
.cart-btn:hover { border-color: var(--cream); background: rgba(253, 235, 214, 0.08); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 600;
  border-radius: 999px;
  font-family: var(--sans);
}

.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  padding: clamp(5rem, 10vh, 7rem) var(--pad-x) clamp(2rem, 5vh, 3.5rem);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.95) contrast(1.05);
  transform: scale(1.08);
  animation: heroIn 1.6s var(--ease) 0.6s forwards;
  opacity: 0;
}
@keyframes heroIn { to { opacity: 1; transform: scale(1); } }
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(12, 34, 28, 0.7) 0%, transparent 60%),
    linear-gradient(180deg, rgba(12, 34, 28, 0.55) 0%, transparent 30%, rgba(12, 34, 28, 0.85) 100%);
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: clamp(1.2rem, 4vh, 2rem);
  animation: fadeUp 1s var(--ease) 0.9s both;
}
.hero-overline .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(224, 180, 128, 0.22);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224, 180, 128, 0.22); }
  50%      { box-shadow: 0 0 0 9px rgba(224, 180, 128, 0); }
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  opacity: 0;
  animation: heroLogoIn 1.4s var(--ease) 1s forwards;
}
.hero-logo {
  width: clamp(190px, 28vw, 360px);
  height: auto;
  filter:
    drop-shadow(0 8px 30px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 50px rgba(224, 180, 128, 0.35));
  transform: scale(0.94);
  animation: heroLogoBreath 6s ease-in-out infinite 2.4s;
  image-rendering: -webkit-optimize-contrast;
}
@keyframes heroLogoIn {
  to { opacity: 1; }
}
@keyframes heroLogoBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

.hero-tag {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  color: var(--cream);
  opacity: 0.9;
  letter-spacing: 0.04em;
  margin: 0.8rem auto 0;
  max-width: 30ch;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.7s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 0.92; transform: translateY(0); }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
  width: min(100%, 600px);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 2s forwards;
}
.hero-meta-col { display: flex; flex-direction: column; gap: 0.3rem; align-items: center; text-align: center; }
.kicker {
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-meta-col span:last-child {
  font-family: var(--serif-2);
  font-size: 0.95rem;
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(2rem, 6vh, 4rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 2.2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ---------- Marquee : crème pêche ! ---------- */
.marquee {
  background: var(--cream-warm);
  color: var(--green-deep);
  border-top: 1px solid rgba(12, 34, 28, 0.08);
  border-bottom: 1px solid rgba(12, 34, 28, 0.08);
  overflow: hidden;
  padding: 1.5rem 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: scrollX 45s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--green-deep);
}
.marquee-track i {
  color: var(--green-mid);
  font-style: normal;
  font-size: 1.3rem;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats {
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
  background: var(--green-soft);
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--green-soft);
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
}
.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section-title.big {
  font-size: clamp(2rem, 5.5vw, 4.4rem);
}
.section-title [data-line] {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.section-lede {
  margin: 1rem 0 0;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.78;
  max-width: 56ch;
}

/* ============================================
   01 — WORK : "NIGHT MOOD"
   Ambiance nocturne : fond très sombre, halos
   chauds (lampes, lune), lumières d'or aux bords
   ============================================ */
.work {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #050d0b;
  overflow: hidden;
  isolation: isolate;
}
.work .section-head { padding: 0 var(--pad-x); position: relative; z-index: 2; }

/* halos colorés (lampadaires / lune) */
.work-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.work-glow-1 {
  top: -10%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(224, 180, 128, 0.6) 0%, transparent 70%);
  animation: float1 18s ease-in-out infinite;
}
.work-glow-2 {
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 122, 106, 0.5) 0%, transparent 70%);
  animation: float2 22s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, 60px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-50px, -30px); }
}

/* étoiles subtiles */
.work-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(253, 235, 214, 0.85), transparent 60%),
    radial-gradient(1px 1px at 28% 72%, rgba(253, 235, 214, 0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 47% 38%, rgba(253, 235, 214, 0.7), transparent 60%),
    radial-gradient(1px 1px at 64% 12%, rgba(253, 235, 214, 0.55), transparent 60%),
    radial-gradient(1px 1px at 78% 65%, rgba(253, 235, 214, 0.85), transparent 60%),
    radial-gradient(1.5px 1.5px at 88% 28%, rgba(253, 235, 214, 0.7), transparent 60%),
    radial-gradient(1px 1px at 5% 88%, rgba(253, 235, 214, 0.5), transparent 60%),
    radial-gradient(1px 1px at 92% 80%, rgba(253, 235, 214, 0.6), transparent 60%);
  opacity: 0.5;
  animation: twinkle 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.7; }
}

.work-scroll { position: relative; z-index: 2; }
.work-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 0 var(--pad-x) 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.work-track::-webkit-scrollbar { display: none; }

.work-item {
  flex: 0 0 clamp(280px, 32vw, 460px);
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.work-item-tall .work-img { aspect-ratio: 3 / 4.6; }
.work-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: #0a1612;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.work-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  transition: opacity .8s var(--ease-out);
}
.work-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter .8s ease;
  filter: saturate(0.9) brightness(0.78);
}
.work-item:hover .work-img img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}
.work-item:hover .work-img::after { opacity: 0.6; }

/* warm glow on hover (lampadaire) */
.work-item::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(224, 180, 128, 0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  z-index: -1;
}
.work-item:hover::before { opacity: 1; }

.work-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0 0.4rem;
}
.work-num {
  font-family: var(--serif);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.work-meta h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  color: var(--cream);
  flex: 1;
  letter-spacing: 0.02em;
}
.work-meta p {
  margin: 0;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.6;
}

.work-progress {
  height: 1px;
  background: var(--line);
  margin: 1.5rem var(--pad-x) 0;
  position: relative;
}
.work-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8%;
  background: var(--gold);
}
.work-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem var(--pad-x) 0;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}

/* ---------- SERVICES (hover preview) ---------- */
/* ---------- SERVICES — 2 colonnes, image sticky avec crossfade ---------- */
.services {
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad-x);
  background: var(--green-deep);
  border-top: 1px solid var(--line);
}
.services-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.srv {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding .35s var(--ease), background .25s ease;
}
.srv:last-of-type { border-bottom: 1px solid var(--line); }

.srv-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity .3s ease;
}
.srv-content { display: flex; flex-direction: column; gap: 0.35rem; }
.srv-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  margin: 0;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color .35s ease, transform .5s var(--ease-out);
}
.srv-desc {
  margin: 0;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--cream);
  opacity: 0.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s ease, margin-top .4s ease;
}
.srv-arrow {
  font-size: 1.3rem;
  color: var(--cream);
  opacity: 0.3;
  text-align: right;
  transition: transform .35s var(--ease), color .25s ease, opacity .25s ease;
}
.srv:hover .srv-num,
.srv.is-active .srv-num { opacity: 1; }
.srv:hover .srv-title,
.srv.is-active .srv-title {
  color: var(--gold);
  transform: translateX(0.4rem);
}
.srv:hover .srv-arrow,
.srv.is-active .srv-arrow {
  color: var(--gold);
  opacity: 1;
  transform: translateX(-4px);
}
.srv:hover .srv-desc,
.srv.is-active .srv-desc {
  max-height: 80px;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* Image sticky à droite */
.services-visual {
  position: sticky;
  top: 100px;
  height: calc(100vh - 200px);
  max-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
}
.srv-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s var(--ease), transform 1.4s var(--ease-out);
}
.srv-bg-img.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; gap: 2rem; }
  .services-visual {
    position: relative;
    top: 0;
    height: auto;
    max-height: 60vh;
    order: -1;
  }
  .services-visual-frame { aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
  .srv { grid-template-columns: 40px 1fr 24px; gap: 1rem; padding: 1.4rem 0; }
}

/* ---------- ABOUT — portrait discret + avis clients ---------- */
.about {
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad-x);
  background: var(--cream-warm);
  color: var(--ink-dark);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.about-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-head .eyebrow { color: var(--green-mid); margin-bottom: 1.2rem; }
.about-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 auto;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.about-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
}
.about-portrait {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}
.about-portrait img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(12, 34, 28, 0.18);
}
.about-portrait figcaption {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.about-bio { display: flex; flex-direction: column; gap: 1rem; }
.about-lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--green-deep);
  line-height: 1.4;
  margin: 0;
}
.about-bio p {
  color: var(--ink-dark);
  opacity: 0.82;
  margin: 0;
  max-width: 56ch;
}
.about-bio .btn-line {
  align-self: flex-start;
  margin-top: 0.8rem;
  color: var(--green-deep);
  border-bottom-color: var(--green-deep);
}
.about-bio .btn-line:hover { color: var(--green-mid); border-bottom-color: var(--green-mid); }

/* Avis */
.about-testimonials {
  border-top: 1px solid rgba(12, 34, 28, 0.15);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.eyebrow-center { display: inline-block; color: var(--green-mid); margin: 0 auto 2rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-bottom: clamp(3rem, 5vw, 4rem);
  text-align: left;
}
.testimonial {
  margin: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(12, 34, 28, 0.08);
  border-radius: 6px;
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform .4s var(--ease-out), box-shadow .35s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 34, 28, 0.12);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-dark);
}
.testimonial figcaption {
  font-size: 0.82rem;
  color: var(--green-mid);
  letter-spacing: 0.04em;
  margin-top: auto;
}
.testimonial figcaption strong {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

.about-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 8px;
  text-align: center;
}
.about-cta-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 0.02em;
}
.btn-pill-dark {
  border-color: var(--cream);
  color: var(--cream);
}
.btn-pill-dark::before { background: var(--cream); }
.btn-pill-dark:hover { color: var(--green-deep); border-color: var(--cream); }

@media (max-width: 720px) {
  .about-row { grid-template-columns: 1fr; text-align: center; }
  .about-bio { align-items: center; text-align: center; }
  .about-bio p { text-align: center; }
  .about-bio .btn-line { align-self: center; }
  .about-cta-band { padding: 1.5rem 1.2rem; }
}

/* ---------- SHOP ---------- */
.shop {
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad-x);
  background: var(--green-deep);
  border-top: 1px solid var(--line);
}
.shop-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.shop-card {
  background: var(--green-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .4s var(--ease-out);
}
.shop-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.shop-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.shop-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.shop-card:hover .shop-card-media img { transform: scale(1.06); }
.shop-add {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, calc(100% + 2rem));
  background: var(--cream);
  color: var(--green-deep);
  padding: 0.65em 1.4em;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .4s var(--ease);
  white-space: nowrap;
}
.shop-card:hover .shop-add { transform: translate(-50%, 0); }
.shop-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.shop-num {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold);
}
.shop-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin: 0; color: var(--cream); letter-spacing: 0.02em; }
.shop-meta { font-size: 0.82rem; color: var(--cream); opacity: 0.55; margin: 0; font-family: var(--serif-2); font-style: italic; }
.shop-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0.6rem 0 0;
  letter-spacing: 0.02em;
}
.was-tag {
  font-size: 0.78em;
  color: var(--ink-mute);
  text-decoration: line-through;
  opacity: 0.7;
  margin-left: 0.5em;
  font-weight: 400;
}
.shop-cta-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.shop-cta-row .btn-pill {
  border-color: var(--cream);
  color: var(--cream);
  padding: 1em 2.4em;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}
.shop-cta-row .btn-pill::before { background: var(--cream); }
.shop-cta-row .btn-pill:hover { color: var(--green-deep); }

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
  background: var(--green-mid);
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.contact-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.1;
  margin: 0 0 3rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}
.contact-info .kicker { color: var(--cream); opacity: 0.7; }
.contact-info p {
  margin: 0.4rem 0 0;
  font-family: var(--serif-2);
  font-size: 1.1rem;
  color: var(--cream);
}
.contact-info a {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .25s ease, color .25s ease;
}
.contact-info a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}
.field {
  position: relative;
  padding-top: 1.4rem;
}
.field-full { grid-column: 1 / -1; }
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  color: var(--cream);
  font-size: 1.1rem;
  font-family: var(--serif-2);
  letter-spacing: 0.01em;
}
.field input:focus { outline: none; }
.field input::placeholder { color: transparent; }
.field label {
  position: absolute;
  left: 0;
  top: 2.1rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  pointer-events: none;
  transition: transform .35s var(--ease), color .25s ease, opacity .25s ease;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  transform: translateY(-1.6rem) scale(0.85);
  color: var(--gold);
  opacity: 1;
}
.field-line {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.field input:focus ~ .field-line { transform: scaleX(1); }

.contact-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.chip {
  padding: 0.55em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.78;
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}
.chip:hover, .chip.is-active {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
  opacity: 1;
}

.big-cta {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.4rem;
  background: var(--cream);
  color: var(--green-deep);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: transform .4s var(--ease-out), background .25s ease;
}
.big-cta:hover { background: var(--gold); transform: scale(1.03); }
.big-cta svg { transition: transform .35s var(--ease); }
.big-cta:hover svg { transform: translateX(6px); }

.form-status {
  grid-column: 1 / -1;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  min-height: 1.2em;
  margin: 0;
}

@media (max-width: 700px) {
  .contact-form { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding-top: 0;
}
.footer-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.8rem 0;
  background: var(--green-soft);
}
.footer-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: scrollX 35s linear infinite;
}
.footer-track span {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  color: var(--cream);
  opacity: 0.8;
  letter-spacing: 0.01em;
}
.footer-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 1.2rem;
  opacity: 0.7;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2rem;
}
.footer-logo {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.4));
}
.footer-claim {
  margin: 1.2rem 0 0;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  opacity: 0.7;
  max-width: 28ch;
}
.footer-kicker {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.footer-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-list a, .footer-list span {
  font-family: var(--serif-2);
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.78;
  transition: color .25s ease, opacity .25s ease;
}
.footer-list a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x) 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-line] {
  display: block;
  overflow: hidden;
}
.section-title [data-line] {
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.section-title.is-visible [data-line] { transform: translateY(0); }
.section-title [data-line]:nth-child(2) { transition-delay: 0.12s; }

/* ---------- Magnetic ---------- */
.magnetic { display: inline-flex; will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: var(--green-soft);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform .5s var(--ease);
    padding: 6rem 2rem 2rem;
    margin: 0;
  }
  .nav.is-open { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 1.4rem; }
  .nav a { font-size: 0.95rem; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.2rem; }
  .hero-scroll { display: none; }
  .btn-pill { font-size: 0.7rem; padding: 0.6em 1.2em; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-line > span, .section-title [data-line] { transform: none !important; }
}

/* ============================================
   MOBILE OPTIMIZATIONS (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hero — logo et padding plus serrés */
  .hero {
    min-height: 92vh;
    padding: 6rem 1.25rem 2.5rem;
  }
  .hero-logo { width: clamp(220px, 70vw, 360px); }
  .hero-overline { font-size: 0.7rem; letter-spacing: 0.18em; margin-bottom: 1.5rem; }
  .hero-overline .dot { width: 6px; height: 6px; }
  .hero-tag { font-size: 1rem; max-width: 28ch; }
  .hero-meta {
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    align-items: center;
  }
  .hero-meta-col { flex-direction: row; gap: 0.6rem; }
  .hero-meta-col span:last-child { font-size: 0.95rem; }
  .kicker { font-size: 0.6rem; letter-spacing: 0.2em; }

  /* Header compact */
  .site-header { padding: 0.7rem 1rem; }
  .site-header.scrolled { padding: 0.55rem 1rem; }
  .brand-logo { height: 38px; }
  .site-header.scrolled .brand-logo { height: 34px; }

  /* Menu mobile : full screen smooth */
  .nav { padding: 5rem 1.6rem 2rem; }
  .nav ul { gap: 1rem; }
  .nav a { font-size: 0.88rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }

  /* Marquee */
  .marquee-track span { font-size: 1.4rem; }
  .marquee { padding: 1rem 0; }

  /* Stats */
  .stats { padding: 2.5rem 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.6rem 1rem; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.66rem; letter-spacing: 0.14em; }

  /* Section heads */
  .section-head { margin-bottom: 2rem; }
  .section-title.big { font-size: clamp(2.2rem, 9vw, 3.5rem); line-height: 1; }
  .section-lede { font-size: 0.98rem; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.22em; }

  /* Work / Selected */
  .work { padding: 3rem 0; }
  .work-track { padding: 0 1rem 1.5rem; gap: 0.8rem; }
  .work-item { flex: 0 0 78vw; }
  .work-item-tall .work-img { aspect-ratio: 3 / 4; }
  .work-meta { padding: 0; }
  .work-meta h3 { font-size: 1.1rem; }
  .work-meta p { font-size: 0.85rem; }
  .work-glow { filter: blur(60px); }
  .work-glow-1 { width: 280px; height: 280px; }
  .work-glow-2 { width: 320px; height: 320px; }

  /* Services : sur mobile pas de hover, on affiche image au-dessus */
  .services { padding: 3rem 1.25rem; }
  .services-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-visual {
    position: relative;
    top: 0;
    height: 240px;
    max-height: 260px;
    order: -1;
    margin-bottom: 0.5rem;
  }
  .services-visual-frame { aspect-ratio: 16/9; }
  .srv { padding: 1.2rem 0; gap: 0.8rem; }
  .srv-num { font-size: 0.78rem; }
  .srv-title { font-size: 1.25rem; }
  /* Sur mobile, on affiche TOUJOURS la description (pas de hover) */
  .srv-desc {
    max-height: 80px !important;
    opacity: 0.8 !important;
    margin-top: 0.2rem !important;
    font-size: 0.88rem;
  }
  .srv-arrow { font-size: 1.1rem; opacity: 0.6 !important; }

  /* About */
  .about { padding: 3rem 1.25rem; }
  .about-head { margin-bottom: 2rem; }
  .about-title { font-size: clamp(1.7rem, 6.5vw, 2.5rem); }
  .about-row { gap: 1.5rem; margin-bottom: 2.5rem; }
  .about-portrait img { width: 160px; height: 160px; border-width: 3px; }
  .about-lede { font-size: 1.05rem; }
  .about-bio p { font-size: 0.95rem; }
  .testimonials-grid { gap: 1rem; }
  .testimonial { padding: 1.4rem 1.2rem; }
  .testimonial blockquote { font-size: 0.92rem; }

  /* Shop teaser */
  .shop { padding: 3rem 1.25rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .shop-card-media { aspect-ratio: 4/5; }
  .shop-card h3 { font-size: 1rem; }
  .shop-card-body { padding: 1rem 0.8rem 1.2rem; gap: 0.2rem; }
  .shop-num { font-size: 0.66rem; letter-spacing: 0.16em; }
  .shop-meta { font-size: 0.74rem; }
  .shop-price { font-size: 1.1rem; }
  .was-tag { font-size: 0.72em; }

  /* Contact */
  .contact { padding: 3rem 1.25rem; }
  .contact-title { font-size: clamp(1.8rem, 7vw, 2.8rem); margin-bottom: 1.8rem; }
  .contact-info { gap: 1rem; padding: 1.4rem 0; margin-bottom: 1.8rem; }
  .contact-info p { font-size: 1rem; }
  .contact-form { gap: 1.4rem; }
  .field input { font-size: 1rem; }
  .field label { font-size: 0.95rem; }
}
/* FIX v8 : la déclaration ci-dessus était tronquée (corruption fichier) et
   laissait le bloc @media (max-width:768px) ouvert — ce qui avalait TOUTES
   les règles suivantes (hero, titres, CTA…). Accolades refermées. */

/* ============================================
   PALETTE GOLD/BEIGE — overrides ciblés
   ============================================ */

/* Logo brand-name si jamais affiché → doré */
.brand-name { color: var(--gold-light); }

/* Nav links : hover doré au lieu de cream */
.nav a:hover, .nav a.active { color: var(--gold-light); }
.nav a::after { background: var(--gold); height: 1.5px; }

/* Eyebrow accents en gold-deep */
.eyebrow { color: var(--gold-deep); font-weight: 600; }
.eyebrow-center { color: var(--gold-deep); }

/* Bouton Devis pill : gold subtle */
.btn-pill { border-color: var(--gold); color: var(--gold-light); }
.btn-pill::before { background: var(--gold-light); }
.btn-pill:hover { color: var(--green-deep); border-color: var(--gold-light); }

/* CTA principal : gold gradient subtle au hover */
.big-cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 100%);
  color: var(--green-deep);
}
.big-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Cart count en gold */
.cart-count { background: var(--gold-light); color: var(--green-deep); }

/* Marquee dorés */
.marquee-track i { color: var(--gold-deep); }
.footer-track i { color: var(--gold); }

/* Work : numéros en gold-light */
.work-num { color: var(--gold-light) !important; }

/* Services hover : titres en gold-light au lieu de gold pur */
.srv:hover .srv-title,
.srv.is-active .srv-title { color: var(--gold-light); }
.srv-num { color: var(--gold-deep); }

/* Shop : noms catégorie en gold-deep */
.shop-num { color: var(--gold-deep); font-weight: 500; }

/* Footer kicker en gold */
.footer-kicker { color: var(--gold); }
.footer-list a:hover { color: var(--gold-light); }

/* Testimonials étoiles + nom en gold */
.testimonial-stars { color: var(--gold-deep); }
.testimonial figcaption strong { color: var(--green-deep); }

/* About lede + signature gold-deep */
.about-lede { color: var(--green-deep); }
.about-signature { color: var(--gold-deep); }

/* Form : gold gradient sur focus */
.field input:focus { border-bottom-color: var(--gold-light); }
.field-line { background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); }

/* Contact info kicker en gold */
.contact-info .kicker { color: var(--gold-light); }
.contact-info a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* Hero scroll : ligne dorée plus marquée */
.hero-scroll-line {
  background: linear-gradient(180deg, var(--gold-light) 0%, transparent 100%);
}

/* Hero kicker (Spécialité, Zone…) en gold-deep */
.kicker { color: var(--gold-deep); font-weight: 600; }

/* Footer claim italic en beige */
.footer-claim { color: var(--beige); }

/* ============================================
   ÉCHELLE GLOBALE — encore un cran plus compact
   ============================================ */

/* Body line-height plus serré → moins de scroll */
body { line-height: 1.55; }

/* Header plus compact */
.site-header { padding: 0.9rem var(--pad-x); gap: 1.2rem; }
.brand-logo { height: 44px; }
.site-header.scrolled { padding: 0.5rem var(--pad-x); }
.site-header.scrolled .brand-logo { height: 36px; }
.nav a { font-size: 0.74rem; letter-spacing: 0.16em; }

/* Marquee plus discret */
.marquee { padding: 1rem 0; }
.marquee-track span { font-size: clamp(1.2rem, 3vw, 2rem); }

/* Stats plus compact */
.stat { padding: 1.6rem 1.2rem; gap: 0.4rem; }
.stat-label { font-size: 0.66rem; letter-spacing: 0.16em; }

/* Work items un cran plus petits */
.work-item { flex: 0 0 clamp(260px, 28vw, 380px); }
.work-meta h3 { font-size: 1.2rem; }
.work-meta p { font-size: 0.85rem; }

/* Services : plus serré */
.srv { padding: 1.4rem 0; }
.srv-title { font-size: clamp(1.3rem, 2.1vw, 1.7rem); }

/* Shop card plus petit */
.shop-card-body { padding: 1rem 1rem 1.2rem; }
.shop-card h3 { font-size: 1.15rem; }

/* About title réduit */
.about-title { font-size: clamp(1.7rem, 3.6vw, 2.8rem); margin-bottom: 1.2rem; }
.about-row { gap: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.about-portrait img { width: 180px; height: 180px; }

/* Contact title réduit */
.contact-title { font-size: clamp(1.8rem, 4.2vw, 3.2rem); margin-bottom: 1.8rem; }

/* Mobile : encore plus compact */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 5rem 1.25rem 2rem; }
  .hero-logo { width: clamp(150px, 50vw, 240px) !important; }
  .hero-overline { margin-bottom: 0.9rem; font-size: 0.66rem; }
  .hero-tag { font-size: 0.92rem; margin-top: 0.6rem; }
  .hero-meta { margin-top: 1.2rem; padding-top: 0.9rem; gap: 0.8rem; }
  .hero-meta-col span:last-child { font-size: 0.85rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.2rem 0.8rem; }
  .stat-num { font-size: 1.7rem; }

  .section-title.big { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .work { padding: 2rem 0; }
  .services, .shop, .contact { padding: 2.2rem 1.25rem; }
  .about { padding: 2.2rem 1.25rem; }
}

/* ============================================
   v3 — refonte navigation + fonds clairs + or brillant
   ============================================ */

/* ---------- Marquee plus discrète ---------- */
.marquee {
  padding: 0.6rem 0 !important;
  background: var(--cream-warm);
}
.marquee-track span {
  font-size: clamp(0.85rem, 1.6vw, 1.15rem) !important;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.1em;
}
.marquee-track i { font-size: 0.85rem; color: var(--gold-deep); }
.marquee-track { gap: 1.6rem; }

/* ---------- Hero encore plus petit ---------- */
.hero { min-height: 78vh !important; padding: 4.5rem var(--pad-x) 2.5rem !important; }
.hero-logo { width: clamp(160px, 22vw, 280px) !important; }
.hero-tag { font-size: clamp(0.88rem, 1.1vw, 1.05rem) !important; max-width: 28ch !important; }

@media (max-width: 768px) {
  .hero { min-height: 70vh !important; padding: 4rem 1.25rem 1.8rem !important; }
  .hero-logo { width: clamp(130px, 42vw, 200px) !important; }
}

/* ---------- WORK : grille verticale (plus intuitive) ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.work-grid .work-item {
  flex: unset !important;
  scroll-snap-align: unset;
}
.work-grid .work-img {
  aspect-ratio: 4 / 5 !important;
}
.work-grid .work-item-tall .work-img { aspect-ratio: 4 / 5 !important; }
.work-cta-row {
  display: flex;
  justify-content: center;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0 var(--pad-x);
}
.work-cta-row .btn-pill {
  border-color: var(--gold);
  color: var(--gold-light);
  padding: 0.85em 2rem;
  font-size: 0.78rem;
}
.work-cta-row .btn-pill::before { background: var(--gold-light); }
.work-cta-row .btn-pill:hover { color: var(--green-deep); }

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}

/* ---------- STATS : fond clair beige (inversé) ---------- */
.stats {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-soft) 50%, var(--cream-warm) 100%) !important;
  color: var(--green-deep);
  padding: clamp(2.2rem, 4vw, 3.2rem) var(--pad-x) !important;
}
.stats-grid {
  background: rgba(12, 34, 28, 0.08) !important;
  border-top: 1px solid rgba(12, 34, 28, 0.12) !important;
  border-bottom: 1px solid rgba(12, 34, 28, 0.12) !important;
}
.stat {
  background: var(--cream-soft) !important;
  padding: 1.4rem 1rem !important;
}
.stat-num {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-deep) 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem) !important;
}
.stat-label {
  color: var(--green-mid) !important;
  opacity: 0.85;
}

/* ---------- OR BRILLANT (shimmer + relief) ---------- */
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Section title em : doré brillant animé */
.section-title em {
  background: linear-gradient(110deg,
    var(--gold-deep) 0%,
    var(--gold) 25%,
    var(--gold-light) 50%,
    var(--gold) 75%,
    var(--gold-deep) 100%) !important;
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: goldShimmer 6s ease-in-out infinite;
}

/* About title em : même effet brillant */
.about-title em {
  background: linear-gradient(110deg,
    var(--gold-deep) 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    var(--gold-deep) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
}

/* Boutons CTA : effet doré brillant en relief */
.big-cta {
  background: linear-gradient(135deg,
    var(--gold-light) 0%,
    var(--cream) 35%,
    var(--gold-light) 65%,
    var(--gold) 100%) !important;
  background-size: 200% 200%;
  box-shadow:
    0 4px 14px rgba(224, 180, 128, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(198, 153, 104, 0.2);
  transition: background-position .6s var(--ease-out), box-shadow .35s ease, transform .35s var(--ease-out);
}
.big-cta:hover {
  background-position: 100% 100%;
  box-shadow:
    0 6px 22px rgba(224, 180, 128, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 0 rgba(198, 153, 104, 0.3);
  transform: translateY(-2px);
}

/* Pill button doré avec léger relief */
.btn-pill {
  box-shadow: inset 0 1px 0 rgba(236, 200, 158, 0.15);
}
.btn-pill:hover {
  box-shadow:
    0 4px 14px rgba(224, 180, 128, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Stat-num : effet doré brillant subtle */
.stat-num {
  background-size: 200% 200% !important;
  animation: goldShimmer 5s ease-in-out infinite;
}

/* Hero overline dot en gradient doré */
.hero-overline .dot {
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  box-shadow:
    0 0 0 4px rgba(224, 180, 128, 0.18),
    0 0 8px rgba(224, 180, 128, 0.5);
}

/* Eyebrow underline animé doré (plus interactif) */
.eyebrow {
  position: relative;
  padding-left: 2.4rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-light) 100%);
}

/* Cards et bouton hover : glow doré subtle */
.shop-card:hover,
.work-item:hover,
.testimonial:hover {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(224, 180, 128, 0.3);
}

/* Cart count : avec relief */
.cart-count {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Footer : footer-marquee plus discret aussi */
.footer-marquee { padding: 1.2rem 0 !important; }
.footer-track span { font-size: clamp(1.2rem, 3vw, 2.2rem) !important; }

/* ============================================
   v4 — work horizontal compact + contact beige
   ============================================ */

/* ---------- WORK : retour en horizontal scroll mais COMPACT ---------- */
.work-grid { display: none !important; }  /* on désactive la grille */

.work-scroll { position: relative; padding: 0; }
.work-track {
  display: flex !important;
  gap: clamp(0.7rem, 1.4vw, 1rem);
  padding: 0 var(--pad-x) 1rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* IMPORTANT : pas de wheel hijack, le scroll vertical de la page passe normalement */
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
.work-track::-webkit-scrollbar { display: none; }

.work-track .work-item {
  flex: 0 0 clamp(220px, 22vw, 300px) !important;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.work-track .work-item .work-img {
  aspect-ratio: 4 / 5 !important;
  border-radius: 4px;
}
.work-track .work-item-tall .work-img { aspect-ratio: 4 / 5 !important; }
.work-meta { padding: 0 0.2rem; gap: 0.6rem; }
.work-meta h3 { font-size: 1rem !important; }
.work-meta p { font-size: 0.78rem !important; }
.work-num { font-size: 0.8rem !important; }

/* Flèches navigation : clean et discrètes */
.work-nav {
  position: absolute;
  top: 38%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 34, 28, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, opacity .25s ease, transform .25s ease;
}
.work-nav:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.work-nav-prev { left: clamp(0.5rem, 1.5vw, 1.5rem); }
.work-nav-next { right: clamp(0.5rem, 1.5vw, 1.5rem); }
.work-nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Barre progression dorée */
.work-progress {
  height: 1px;
  background: rgba(224, 180, 128, 0.18);
  margin: 0.8rem var(--pad-x) 0;
  position: relative;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.work-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8%;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-light) 100%);
  transition: width .25s ease;
}

@media (max-width: 768px) {
  .work-track .work-item { flex: 0 0 75vw !important; }
  .work-nav { display: none; }
}

/* ---------- CONTACT : fond doré/beige (inversé) ---------- */
.contact {
  background: linear-gradient(160deg,
    var(--cream-warm) 0%,
    var(--cream-soft) 35%,
    #f0d9b5 70%,
    var(--cream-warm) 100%) !important;
  color: var(--green-deep) !important;
  border-top: 1px solid rgba(12, 34, 28, 0.12) !important;
}
.contact-title { color: var(--green-deep) !important; }
.contact-title em {
  background: linear-gradient(110deg, var(--gold-deep) 0%, #a87a3a 50%, var(--gold-deep) 100%) !important;
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
}
.contact .eyebrow { color: var(--green-mid) !important; }
.contact-info { border-color: rgba(12, 34, 28, 0.18) !important; }
.contact-info .kicker { color: var(--green-mid) !important; }
.contact-info p, .contact-info p a { color: var(--green-deep) !important; opacity: 1 !important; }
.contact-info a { border-bottom-color: rgba(12, 34, 28, 0.3) !important; }
.contact-info a:hover { color: var(--gold-deep) !important; border-bottom-color: var(--gold-deep) !important; }
.contact-form label { color: var(--green-mid) !important; opacity: 0.85; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(12, 34, 28, 0.05) !important;
  border-color: rgba(12, 34, 28, 0.18) !important;
  color: var(--green-deep) !important;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(12, 34, 28, 0.08) !important;
  border-color: var(--gold-deep) !important;
}
.field input { color: var(--green-deep) !important; border-bottom-color: rgba(12, 34, 28, 0.18) !important; }
.field label { color: var(--green-mid) !important; opacity: 0.7; }
.contact-tags .chip {
  border-color: rgba(12, 34, 28, 0.25);
  color: var(--green-mid);
}
.contact-tags .chip:hover, .contact-tags .chip.is-active {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.contact .big-cta {
  background: linear-gradient(135deg,
    var(--green-deep) 0%,
    var(--green-mid) 50%,
    var(--green-deep) 100%) !important;
  color: var(--cream) !important;
  background-size: 200% 200%;
  box-shadow:
    0 4px 14px rgba(12, 34, 28, 0.3),
    inset 0 1px 0 rgba(236, 200, 158, 0.15);
}
.contact .big-cta:hover {
  background-position: 100% 100%;
  background: linear-gradient(135deg,
    var(--gold-deep) 0%,
    var(--green-deep) 100%) !important;
}
.form-status { color: var(--gold-deep) !important; }

/* ---------- BOUTIQUE (section index) : dégradé moins sombre ---------- */
.shop {
  background: linear-gradient(180deg,
    var(--green-deep) 0%,
    var(--green-soft) 30%,
    rgba(36, 77, 67, 0.9) 70%,
    rgba(212, 184, 150, 0.15) 100%) !important;
}
.shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 20%, rgba(224, 180, 128, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 80%, rgba(224, 180, 128, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.shop { position: relative; isolation: isolate; }
.shop > * { position: relative; z-index: 1; }

/* ---------- WORK section : dégradé doré subtil ---------- */
.work {
  background: linear-gradient(180deg,
    #050d0b 0%,
    #0a1a16 60%,
    rgba(36, 77, 67, 0.4) 100%) !important;
}

/* ---------- Page Portfolio : dégradé moins sombre (override boutique.css n'affecte pas portfolio) ---------- */
body:has(.portfolio-hero), body:has(.portfolio-grid) {
  background: linear-gradient(180deg,
    var(--green-deep) 0%,
    var(--green-soft) 40%,
    rgba(36, 77, 67, 0.7) 100%) !important;
}

/* ---------- Page Boutique : dégradé moins sombre ---------- */
body:has(.boutique-hero) {
  background: linear-gradient(180deg,
    var(--green-deep) 0%,
    var(--green-soft) 30%,
    rgba(212, 184, 150, 0.1) 100%) !important;
}

/* ============================================
   v5 — BOUTIQUE en beige doré + cadres verts
        PORTFOLIO en dégradé doré marqué
   ============================================ */

/* ---------- BOUTIQUE complète : fond beige doré ---------- */
body.page-boutique {
  background: linear-gradient(180deg,
    #f5e2c4 0%,
    #ecd5af 25%,
    #e0c499 50%,
    #ecd5af 75%,
    #f5e2c4 100%) !important;
  color: var(--green-deep) !important;
}
body.page-boutique .site-header {
  background: rgba(245, 226, 196, 0.92) !important;
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(12, 34, 28, 0.15);
}
body.page-boutique .site-header.scrolled {
  background: rgba(245, 226, 196, 0.96) !important;
}
body.page-boutique .brand-logo { filter: drop-shadow(0 2px 8px rgba(12, 34, 28, 0.2)); }
body.page-boutique .nav a { color: var(--green-deep); opacity: 0.85; }
body.page-boutique .nav a:hover, body.page-boutique .nav a.active { color: var(--green-mid); opacity: 1; }
body.page-boutique .btn-pill { border-color: var(--green-deep); color: var(--green-deep); }
body.page-boutique .btn-pill::before { background: var(--green-deep); }
body.page-boutique .btn-pill:hover { color: var(--cream); }
body.page-boutique .cart-btn { border-color: rgba(12, 34, 28, 0.25); color: var(--green-deep); }
body.page-boutique .cart-btn:hover { background: rgba(12, 34, 28, 0.08); }

/* Hero boutique sur fond clair */
body.page-boutique .boutique-hero { padding-top: 5rem; }
body.page-boutique .boutique-title { color: var(--green-deep); }
body.page-boutique .boutique-title em {
  background: linear-gradient(110deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page-boutique .boutique-lede { color: var(--green-mid); opacity: 1; }
body.page-boutique .boutique-meta { border-color: rgba(12, 34, 28, 0.18); }
body.page-boutique .boutique-meta span { color: var(--green-mid); }
body.page-boutique .boutique-meta strong { color: var(--green-deep); }
body.page-boutique .eyebrow { color: var(--green-mid); }

/* Filtres adaptés au fond clair */
body.page-boutique .filter-chip {
  border-color: rgba(12, 34, 28, 0.2);
  color: var(--green-deep);
  opacity: 0.7;
}
body.page-boutique .filter-chip:hover {
  border-color: var(--green-deep);
  background: rgba(12, 34, 28, 0.05);
  opacity: 1;
}
body.page-boutique .filter-chip.is-active {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}
body.page-boutique .filter-chip .chip-count { color: var(--green-mid); }
body.page-boutique .filter-chip.is-active .chip-count { color: var(--gold-light); }

/* CADRES VERT PROFOND sur chaque tableau */
body.page-boutique .shop-item {
  position: relative;
  background: var(--green-deep);
  padding: 14px 14px 0;
  border-radius: 6px;
  box-shadow:
    0 12px 30px rgba(12, 34, 28, 0.18),
    inset 0 0 0 1px rgba(224, 180, 128, 0.15);
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
body.page-boutique .shop-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(12, 34, 28, 0.32),
    inset 0 0 0 1px rgba(224, 180, 128, 0.4);
}
body.page-boutique .shop-item-media {
  border-radius: 3px;
  background: var(--green-soft);
}
body.page-boutique .shop-item-body {
  padding: 1rem 0.4rem 1.1rem;
}
body.page-boutique .shop-item-body h3 { color: var(--cream); }
body.page-boutique .shop-cat { color: var(--gold-light); }
body.page-boutique .shop-price .now { color: var(--cream); }
body.page-boutique .shop-price .was { color: var(--ink-mute); }
body.page-boutique .shop-ribbon {
  background: var(--gold);
  color: var(--green-deep);
}

/* Empty state */
body.page-boutique .shop-empty { color: var(--green-mid); opacity: 0.7; }

/* Modal détail conserve son look sombre (bonne lisibilité) */
body.page-boutique .modal-inner { background: var(--green-soft); }

/* ---------- PORTFOLIO : dégradé doré + vert plus marqué ---------- */
body.page-portfolio {
  background: linear-gradient(165deg,
    #14302a 0%,
    #1f4238 18%,
    #2d5749 35%,
    #c69968 65%,
    #ecc89e 85%,
    #f5e2c4 100%) !important;
  background-attachment: fixed;
}
body.page-portfolio main { padding-top: 100px; }

/* Hero du portfolio reste sur fond foncé en haut, blanc lumineux à mesure qu'on descend */
body.page-portfolio .portfolio-title { color: var(--cream); }
body.page-portfolio .portfolio-lede { color: var(--cream); opacity: 0.9; }
body.page-portfolio .eyebrow { color: var(--gold-light); }

/* Filter chips bien lisibles sur le dégradé */
body.page-portfolio .filter-chip {
  background: rgba(12, 34, 28, 0.5);
  backdrop-filter: blur(8px);
  border-color: rgba(236, 200, 158, 0.3);
}

/* Cards portfolio avec léger cadre doré */
body.page-portfolio .pf-item {
  background: rgba(12, 34, 28, 0.4);
  border-radius: 6px;
  padding: 10px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(224, 180, 128, 0.2);
  transition: transform .4s var(--ease-out), box-shadow .35s ease;
}
body.page-portfolio .pf-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(224, 180, 128, 0.5);
}
body.page-portfolio .pf-link { border-radius: 3px; }
body.page-portfolio .pf-link img { border-radius: 3px; }

/* CTA portfolio cohérent */
body.page-portfolio .portfolio-cta {
  background: linear-gradient(180deg,
    rgba(12, 34, 28, 0.7) 0%,
    rgba(12, 34, 28, 0.95) 100%);
  border-top: 1px solid rgba(224, 180, 128, 0.3);
}
body.page-portfolio .portfolio-cta h2 { color: var(--cream); }

/* Footer (même sur boutique/portfolio) reste sombre pour ancrer */
body.page-boutique .site-footer,
body.page-portfolio .site-footer {
  background: var(--green-deep);
  position: relative;
  z-index: 2;
}

/* ============================================
   v6 — fix curseur custom sur tactile/hybride
   ============================================ */
/* Force cursor hidden on any device that has touch capability */
@media (pointer: coarse), (hover: none) {
  .cursor { display: none !important; }
  body { cursor: auto !important; }
  a, button, [data-cursor] { cursor: pointer !important; }
}

/* ============================================
   v7 — fix curseur fantôme + textes superposés
   ============================================ */

/* Curseur custom : ne s'affiche QUE si JS l'a activé (.is-ready) */
.cursor { display: none !important; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: none !important; }
  .cursor.is-ready { display: block !important; }
}
/* Hybride détecté via JS (.has-touch sur <html>) → cursor jamais affiché */
.has-touch .cursor,
.has-touch .cursor.is-ready { display: none !important; }
.has-touch body { cursor: auto !important; }
.has-touch a, .has-touch button, .has-touch [data-cursor] { cursor: pointer !important; }

/* ---------- Fix superpositions hero ---------- */
.hero { gap: 0.6rem; }
.hero-overline,
.hero-logo-wrap,
.hero-tag,
.hero-meta,
.hero-scroll { z-index: 2; }

/* Éviter chevauchement entre tagline et meta */
.hero-tag { margin-bottom: 0.4rem; }

/* Section title (Du sol au ciel etc.) : si l'animation ne se déclenche pas, garde quand même le texte visible */
.section-title [data-line] {
  display: block;
  overflow: visible !important;  /* on n'a plus besoin de masquer */
  line-height: 1.05;
}
.section-title [data-line] {
  transform: none !important;  /* annule le translate initial */
}
.section-title.is-visible [data-line] { transform: none !important; }

/* Hero-line : pareil, force visible */
.hero-line { overflow: visible !important; }
.hero-line > span {
  transform: none !important;
  animation: heroLineFade 1s var(--ease) 1s forwards !important;
  opacity: 0;
}
@keyframes heroLineFade { to { opacity: 1; } }

/* Section head : éviter chevauchement entre eyebrow / title / lede */
.section-head { display: flex; flex-direction: column; gap: 0.6rem; }
.section-head .eyebrow { display: inline-block; align-self: flex-start; }
.section-head .section-title { margin: 0; }
.section-head .section-lede { margin: 0.6rem 0 0; }

/* Services : la description ne déborde plus quand active */
.srv {
  align-items: start !important;
}
.srv-content { min-width: 0; overflow: hidden; }
.srv-title { word-break: normal; }
.srv-desc {
  white-space: normal;
  word-wrap: break-word;
}

/* Work meta : titre et paragraphe ne se collent plus */
.work-meta { flex-direction: column !important; align-items: flex-start !important; gap: 0.2rem !important; }
.work-meta h3 { margin: 0 0 0.15rem; }
.work-meta p { margin: 0; }
.work-num { display: block; margin-bottom: 0.2rem; }

/* Shop card : éléments espacés */
.shop-item-body, .shop-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ============================================
   v8 — bouton scroll-top
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--green-deep);
  border: 1px solid rgba(12, 34, 28, 0.15);
  box-shadow:
    0 8px 24px rgba(12, 34, 28, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.85);
  transition: opacity .35s ease, transform .35s var(--ease-out), box-shadow .25s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow:
    0 12px 30px rgba(224, 180, 128, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-3px) scale(1);
}
@media (max-width: 540px) {
  .scroll-top { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
}

/* Petite touche : pulse léger sur le scroll-top à l'apparition */
@keyframes scrollTopPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(12, 34, 28, 0.3), 0 0 0 0 rgba(224, 180, 128, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(12, 34, 28, 0.3), 0 0 0 8px rgba(224, 180, 128, 0); }
}
.scroll-top.is-visible { animation: scrollTopPulse 2.5s ease-in-out infinite; }

/* ============================================
   v11 — DORÉ MÉTALLIQUE (gradient brossé + reflets)
   ============================================ */

/* Gradient métallique réutilisable */
:root {
  --gold-metallic: linear-gradient(135deg,
    #c69968 0%,
    #d4a875 12%,
    #ecc89e 25%,
    #f5e2c4 40%,
    #ecc89e 50%,
    #c69968 62%,
    #b08855 75%,
    #d4a875 88%,
    #ecc89e 100%);
  --gold-metallic-bright: linear-gradient(135deg,
    #d4a875 0%,
    #ecc89e 18%,
    #fbf3e6 35%,
    #ecc89e 50%,
    #d4a875 65%,
    #b08855 80%,
    #ecc89e 100%);
}

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

/* Texte métallique — pour titres em, prix, accents */
.section-title em,
.about-title em,
.contact-title em,
.boutique-title em,
.portfolio-title em {
  background: var(--gold-metallic) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: metallicShine 7s ease-in-out infinite !important;
  filter: drop-shadow(0 1px 0 rgba(198, 153, 104, 0.3));
}

/* Stat numbers métalliques */
.stat-num {
  background: var(--gold-metallic) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: metallicShine 6s ease-in-out infinite !important;
}

/* CTA principal : surface métallique brillante */
.big-cta {
  background: var(--gold-metallic-bright) !important;
  background-size: 300% 300% !important;
  color: var(--green-deep) !important;
  border: 1px solid rgba(198, 153, 104, 0.4) !important;
  box-shadow:
    0 6px 20px rgba(198, 153, 104, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 4px rgba(176, 136, 85, 0.3) !important;
  animation: metallicShine 8s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}
.big-cta:hover {
  background-position: 100% 100% !important;
  box-shadow:
    0 10px 28px rgba(198, 153, 104, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(176, 136, 85, 0.4) !important;
  transform: translateY(-2px);
}

/* Boutons pill avec reflet doré */
.btn-pill::before {
  background: var(--gold-metallic-bright) !important;
  background-size: 200% 200% !important;
  animation: metallicShine 5s ease-in-out infinite;
}

/* Cart count en doré métallique */
.cart-count {
  background: var(--gold-metallic-bright) !important;
  background-size: 200% 200%;
  animation: metallicShine 4s ease-in-out infinite;
  color: var(--green-deep) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero overline dot — métallique brillant */
.hero-overline .dot {
  background: radial-gradient(circle at 30% 30%,
    #fbf3e6 0%,
    #ecc89e 40%,
    #c69968 70%,
    #b08855 100%) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    0 0 0 4px rgba(224, 180, 128, 0.18),
    0 0 10px rgba(224, 180, 128, 0.5) !important;
}

/* Lignes dorées métalliques (séparateurs) */
.field-line,
.work-progress span {
  background: var(--gold-metallic-bright) !important;
  background-size: 200% 200%;
}

/* Marquee : ✦ en doré métallique */
.marquee-track i,
.footer-track i {
  background: var(--gold-metallic);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: metallicShine 5s ease-in-out infinite;
}

/* Boutique : ribbon Nouveauté en doré métallique */
body.page-boutique .shop-ribbon {
  background: var(--gold-metallic-bright) !important;
  background-size: 200% 200%;
  color: var(--green-deep) !important;
  animation: metallicShine 4s ease-in-out infinite;
  border: 1px solid rgba(198, 153, 104, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 2px 6px rgba(176, 136, 85, 0.3);
}

/* Boutique : prix doré métallique sur cards (visible sur fond vert) */
body.page-boutique .shop-cat {
  color: #ecc89e !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

/* Hover sur cards : liseré doré métallique */
body.page-boutique .shop-item:hover {
  border-image: var(--gold-metallic) 1;
}

/* Footer kicker doré métallique */
.footer-kicker {
  background: var(--gold-metallic);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: metallicShine 8s ease-in-out infinite;
}

/* ============================================
   v11 — Effet métallique doré + fix curseur
   ============================================ */

/* Curseur : règles simplifiées, JS ajoute is-ready, CSS l'affiche */
.cursor { display: none; }
.cursor.is-ready { display: block !important; }
.has-touch .cursor { display: none !important; }
.has-touch body { cursor: auto !important; }

/* DÉGRADÉ DORÉ MÉTALLIQUE — gradient à plusieurs stops simulant le reflet */
:root {
  --gold-metal: linear-gradient(
    135deg,
    #8c6a3d 0%,      /* bronze profond (ombre) */
    #c69968 12%,     /* doré profond */
    #f0d9b5 28%,     /* highlight blanc-doré */
    #ecc89e 42%,     /* doré clair */
    #e0b480 56%,     /* doré principal */
    #ecc89e 70%,     /* doré clair (reflet) */
    #fff4d6 82%,     /* éclat */
    #c69968 92%,     /* doré profond */
    #8c6a3d 100%     /* bronze (ombre) */
  );
  --gold-metal-anim: linear-gradient(
    110deg,
    #8c6a3d 0%,
    #c69968 18%,
    #f0d9b5 32%,
    #ecc89e 45%,
    #fff4d6 50%,
    #ecc89e 55%,
    #e0b480 65%,
    #c69968 82%,
    #8c6a3d 100%
  );
}

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

/* Application sur les <em> des titres */
.section-title em,
.about-title em,
.contact-title em,
.boutique-title em {
  background: var(--gold-metal-anim) !important;
  background-size: 250% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: metalShimmer 5s ease-in-out infinite !important;
  text-shadow: none;
  filter: drop-shadow(0 1px 2px rgba(140, 106, 61, 0.3));
}

/* Stats numbers métalliques */
.stat-num {
  background: var(--gold-metal-anim) !important;
  background-size: 250% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: metalShimmer 6s ease-in-out infinite !important;
  filter: drop-shadow(0 2px 3px rgba(140, 106, 61, 0.25));
}

/* Boutons CTA principal — relief métal */
.big-cta {
  background: var(--gold-metal) !important;
  background-size: 200% 200% !important;
  color: var(--green-deep) !important;
  box-shadow:
    0 4px 12px rgba(140, 106, 61, 0.4),
    inset 0 1px 0 rgba(255, 244, 214, 0.7),
    inset 0 -2px 0 rgba(140, 106, 61, 0.3) !important;
  transition: background-position .8s ease, transform .35s ease, box-shadow .35s ease !important;
}
.big-cta:hover {
  background-position: 100% 100% !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 8px 24px rgba(224, 180, 128, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 0 rgba(140, 106, 61, 0.4) !important;
}

/* Bouton Devis pill — métal subtle */
.btn-pill::before { background: var(--gold-metal) !important; background-size: 200% 100% !important; }
.btn-pill:hover {
  color: var(--green-deep) !important;
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.6);
}

/* Cart count — métal */
.cart-count {
  background: var(--gold-metal) !important;
  background-size: 200% 100% !important;
  color: var(--green-deep) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(140, 106, 61, 0.3) !important;
  animation: metalShimmer 4s ease-in-out infinite !important;
}

/* Ribbon "Nouveauté" sur les cards — métal */
.shop-ribbon {
  background: var(--gold-metal) !important;
  background-size: 200% 100% !important;
  color: var(--green-deep) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 214, 0.6),
    0 2px 6px rgba(140, 106, 61, 0.3) !important;
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.5);
}

/* Scroll-top button métal */
.scroll-top {
  background: var(--gold-metal) !important;
  background-size: 200% 100% !important;
  box-shadow:
    0 8px 24px rgba(140, 106, 61, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.scroll-top:hover {
  background-position: 100% 100% !important;
  box-shadow:
    0 12px 30px rgba(224, 180, 128, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

/* Hero overline dot — métal radial */
.hero-overline .dot {
  background: radial-gradient(circle at 30% 30%,
    #fff4d6 0%,
    #ecc89e 35%,
    #e0b480 60%,
    #8c6a3d 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 4px rgba(224, 180, 128, 0.2),
    0 0 12px rgba(224, 180, 128, 0.6) !important;
}

/* Eyebrow underline — métal subtil */
.eyebrow::before {
  background: var(--gold-metal) !important;
  background-size: 200% 100% !important;
  height: 1.5px !important;
}

/* Cadres dorés autour des cards (selected work, portfolio, shop) */
.shop-card:hover,
.work-item:hover,
.testimonial:hover,
.pf-item:hover {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(224, 180, 128, 0.5),
    0 0 18px rgba(224, 180, 128, 0.15) !important;
}

/* Nav active link — sous-trait métal */
.nav a::after {
  background: var(--gold-metal) !important;
  background-size: 200% 100% !important;
  height: 2px !important;
}

/* Filter chip actif — métal subtle */
body.page-boutique .cat-chip.is-active {
  background: linear-gradient(135deg, #0c221c 0%, #1a3a2f 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(224, 180, 128, 0.15),
    0 4px 12px rgba(12, 34, 28, 0.3) !important;
}

/* Toolbar shop search/sort - bordure dorée subtile */
.shop-toolbar-row .search-input:focus-within,
.shop-toolbar-row .shop-sort select:focus {
  border-color: var(--gold-deep) !important;
  box-shadow: 0 0 0 3px rgba(224, 180, 128, 0.2) !important;
}

/* ============================================================
   v12 — Process, FAQ, WhatsApp FAB, Cookie banner
   Sections ajoutées pour la conversion + le RGPD
   ============================================================ */

/* ---------- PROCESS : "Comment ça se passe" ---------- */
.process {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  position: relative;
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-soft) 100%);
}
.process-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.process-step {
  position: relative;
  padding: 2rem 1.6rem 2.2rem;
  background: rgba(20, 48, 42, 0.55);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .5s var(--ease-out), border-color .35s ease, box-shadow .4s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(224,180,128,0.25);
}
.process-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.process-step p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.78;
  margin: 0;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--green-deep);
}
.faq-inner {
  max-width: 920px;
  margin: 0 auto;
}
.faq-list {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(20, 48, 42, 0.35);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] {
  border-color: var(--line-strong);
  background: rgba(20, 48, 42, 0.55);
}
.faq-item summary {
  list-style: none;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform .35s var(--ease-out);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item-body {
  padding: 0 1.4rem 1.3rem;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.85;
}
.faq-item-body p:first-child { margin-top: 0; }
.faq-item-body p:last-child { margin-bottom: 0; }

/* ---------- WhatsApp FAB (bouton flottant) ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0,0,0,0.2);
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0,0,0,0.25);
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 600px) {
  .whatsapp-fab { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* Éviter conflit avec le scroll-top : on le décale à gauche */
.scroll-top { right: auto !important; left: 1.5rem !important; }
@media (max-width: 600px) {
  .scroll-top { left: 1rem !important; }
}

/* ---------- Cookie banner (RGPD) ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.2rem;
  background: rgba(12, 34, 28, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.92;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.6em 1.2em;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.cookie-btn-refuse {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.cookie-btn-refuse:hover { border-color: var(--gold); color: var(--gold-light); }
.cookie-btn-accept {
  background: var(--gold);
  color: var(--green-deep);
  border: 1px solid var(--gold);
  font-weight: 500;
}
.cookie-btn-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: center; }
}

/* ---------- v12 — Dosage du shimmer doré ----------
   On retire le shimmer animé là où il était trop présent
   (cart-count, scroll-top), on le garde uniquement sur les
   vrais points focaux : titres <em>, .stat-num, .big-cta
   ============================================================ */
.cart-count { animation: none !important; }
.shop-ribbon { animation: none !important; }
/* Le scroll-top garde son dégradé mais pas l'animation */
.scroll-top {
  animation: none !important;
}

/* ============================================================
   v12 — Pages légales (Mentions, Confidentialité, CGU)
   ============================================================ */
.page-legal main {
  padding: clamp(7rem, 12vw, 9rem) var(--pad-x) clamp(4rem, 8vw, 6rem);
  max-width: 880px;
  margin: 0 auto;
}
.page-legal .legal-eyebrow {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.page-legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1.4rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.page-legal .legal-lede {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  opacity: 0.78;
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.page-legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin: 2.5rem 0 0.8rem;
}
.page-legal h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.92;
  margin: 1.8rem 0 0.5rem;
}
.page-legal p,
.page-legal li {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.88;
}
.page-legal ul {
  padding-left: 1.2rem;
  margin: 0.6rem 0 1.2rem;
}
.page-legal ul li { list-style: disc; margin: 0.3rem 0; }
.page-legal a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.page-legal a:hover { color: var(--gold); }
.page-legal .legal-placeholder {
  display: inline-block;
  padding: 0.05em 0.5em;
  background: rgba(224, 180, 128, 0.12);
  border: 1px dashed var(--gold);
  border-radius: 3px;
  color: var(--gold-light);
  font-style: italic;
  font-size: 0.9em;
}
.page-legal .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.page-legal .legal-back:hover { color: var(--gold-light); }

/* ============================================================
   v13 — Refonte façon 910academy : Hero vidéo + typo massive
   ============================================================ */

/* ---------- HERO v13 ---------- */
.hero-v13 {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(7rem, 12vh, 10rem) var(--pad-x) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  isolation: isolate;
}

/* Vidéo fond — object-fit cover, mute, loop */
.hero-v13 .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
/* Ancienne règle .hero-video : limitée au cas legacy d'une vidéo unique dans .hero-bg.
   Ne s'applique PLUS aux vidéos du triptyque (qui sont dans .hero-triptych .clip). */
.hero-v13 .hero-bg > .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.06);
  filter: brightness(0.72) saturate(1.05);
  transition: transform 8s var(--ease-out);
}
.hero-v13.is-loaded .hero-bg > .hero-video {
  transform: translate(-50%, -50%) scale(1.02);
}

/* Overlay sombre dégradé + vignette pour la lisibilité du texte */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(12, 34, 28, 0.55) 0%,
      rgba(12, 34, 28, 0.4) 40%,
      rgba(12, 34, 28, 0.65) 75%,
      rgba(12, 34, 28, 0.92) 100%);
}
.hero-v13 .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(12, 34, 28, 0.55) 100%);
  pointer-events: none;
}

/* Petit overline en haut */
.hero-v13 .hero-overline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.92;
}
.hero-v13 .hero-overline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Titre MASSIF en majuscules */
.hero-title-big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 9.5vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  max-width: 14ch;
}
.hero-title-big span {
  display: block;
  position: relative;
}
.hero-title-big em {
  font-style: italic;
  font-weight: 400;
}
/* Le shimmer doré du bloc v11 va s'appliquer naturellement sur ces <em> */

/* Sous-titre court */
.hero-sub {
  margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
  max-width: 56ch;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Rangée de CTA hero */
.hero-cta-row {
  margin-top: clamp(2rem, 4.5vh, 3rem);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
/* Le big-cta hérite déjà du shimmer doré métallique du bloc v11 */
/* Bouton secondaire "ghost" */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(224, 180, 128, 0.08);
  transform: translateY(-2px);
}

/* Scroll indicator (positionné en bas absolu) */
.hero-v13 .hero-scroll {
  position: absolute;
  bottom: clamp(1.4rem, 4vh, 2.2rem);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
  transition: opacity .3s ease;
}
.hero-v13 .hero-scroll:hover { opacity: 1; }
.hero-v13 .hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 1px 200%;
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}

/* Réduction de motion : on désactive l'autoplay vidéo via JS,
   mais on garde le fallback poster */
@media (prefers-reduced-motion: reduce) {
  .hero-video { transform: translate(-50%, -50%) scale(1) !important; transition: none; }
  .hero-v13 .hero-scroll-line { animation: none; }
}

/* Mobile : la vidéo verticale s'affiche naturellement bien */
@media (max-width: 700px) {
  .hero-title-big { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-sub { font-size: 0.98rem; }
  .hero-cta-row { gap: 0.7rem; }
  .btn-ghost { padding: 0.8rem 1.3rem; font-size: 0.78rem; }
}

/* ---------- AUDIENCE — "Ce site est pour vous si..." ---------- */
.audience {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--green-deep);
  position: relative;
}
.audience-inner { max-width: var(--max); margin: 0 auto; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.audience-card {
  position: relative;
  padding: 2.5rem 1.8rem 2.2rem;
  background: rgba(20, 48, 42, 0.4);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .5s var(--ease-out), border-color .35s ease, background .35s ease, box-shadow .4s ease;
}
.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(20, 48, 42, 0.65);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(224,180,128,0.2);
}
.audience-num {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.audience-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.2;
  margin: 0 0 0.9rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.audience-card p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.82;
  margin: 0;
}

/* ============================================================
   v13 — Page Offre (offre.html)
   ============================================================ */
.page-offre main { padding-top: 100px; background: var(--green-deep); }

.offre-hero {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}
.offre-hero .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.offre-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.offre-title em { font-style: italic; }
.offre-lede {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.78;
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}

.offre-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offre-meta > div {
  display: flex; flex-direction: column; gap: 0.3rem; align-items: center;
}
.offre-meta span {
  font-family: var(--serif); font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.offre-meta strong {
  font-family: var(--serif-2); font-size: 1rem; font-weight: 500; color: var(--cream);
}

/* Grille des 6 packs */
.offre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
}

.offre-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.8rem 2rem;
  background: rgba(20, 48, 42, 0.4);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .5s var(--ease-out), border-color .35s ease, background .35s ease, box-shadow .4s ease;
}
.offre-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(20, 48, 42, 0.65);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(224,180,128,0.2);
}

/* Pack mis en avant (Prestige Intégral) */
.offre-card-feature {
  border-color: var(--line-strong);
  background: rgba(20, 48, 42, 0.6);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 0 1px rgba(224,180,128,0.18);
}
.offre-card-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(224, 180, 128, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.offre-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.offre-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  border-radius: 999px;
}
.offre-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: var(--cream);
}
.offre-pitch {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 1.4rem;
}
.offre-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.offre-includes li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.88;
}
.offre-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.offre-price {
  margin: 0 0 1.2rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.offre-price-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(224, 180, 128, 0.1);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.offre-card .big-cta,
.offre-card .btn-line {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Band CTA en bas de page */
.offre-cta-band {
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  max-width: 880px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 48, 42, 0.7) 0%, rgba(36, 77, 67, 0.5) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}
.offre-cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.8rem;
  color: var(--cream);
}
.offre-cta-band p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 auto 2rem;
  max-width: 50ch;
}
.offre-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   v13 — Lead Magnet (Guide PDF gratuit)
   ============================================================ */
.lead-magnet {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-soft) 100%);
  position: relative;
}
.lead-magnet-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .lead-magnet-inner { grid-template-columns: 1fr; }
}
.lead-magnet-text .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.lead-magnet-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 1.4rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.lead-magnet-title em { font-style: italic; }
.lead-magnet-lede {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.88;
  margin: 0 0 1.5rem;
}
.lead-magnet-lede strong { font-style: normal; color: var(--gold-light); }
.lead-magnet-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lead-magnet-bullets li {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.88;
}
.lead-magnet-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Form encadré sur fond doré subtil */
.lead-magnet-form-inner {
  padding: clamp(2rem, 4vw, 2.8rem);
  background: rgba(20, 48, 42, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  position: relative;
}
.lead-magnet-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.lead-magnet-form-inner h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0.8rem 0 0.4rem;
  color: var(--cream);
  text-align: center;
}
.lead-magnet-form-inner > p {
  text-align: center;
  font-family: var(--serif-2);
  font-style: italic;
  color: var(--cream);
  opacity: 0.78;
  font-size: 0.95rem;
  margin: 0 0 1.8rem;
}
.lead-magnet-form-inner .big-cta { width: 100%; justify-content: center; margin-top: 0.6rem; }
.lead-magnet-mention {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-align: center;
  color: var(--cream);
  opacity: 0.65;
}
.lead-magnet-mention a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   v14 — PALETTE DORÉE DOMINANTE
   Le doré devient la couleur principale du site.
   Vert profond = accents, encadrements, détails.
   ============================================================ */

:root {
  --cream-50:  #fdf6e9;     /* crème très clair pour fonds vastes */
  --cream-100: #faf0d9;     /* crème clair pour fonds de section */
  --gold-50:   #f5e2c4;     /* doré clair (fonds principaux) */
  --gold-100:  #ecd5af;     /* doré moyen */
  --gold-200:  #e0c499;     /* doré soutenu */
  --green-ink: #14302a;     /* vert profond pour texte */
  --green-acc: #244d43;     /* vert moyen pour accents */
}

/* ---------- Sections home : palette claire à partir de l'audience ---------- */
.audience,
.faq,
.lead-magnet,
.contact {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--gold-50) 100%) !important;
  color: var(--green-ink) !important;
}
.process {
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--gold-100) 100%) !important;
  color: var(--green-ink) !important;
}

/* Titres et eyebrows sur fond clair */
.audience .eyebrow,
.process .eyebrow,
.faq .eyebrow,
.lead-magnet-text .eyebrow,
.contact .eyebrow {
  color: var(--green-acc) !important;
}
.audience .section-title,
.process .section-title,
.faq .section-title,
.lead-magnet-title,
.contact-title {
  color: var(--green-ink) !important;
}

/* Le shimmer doré sur les <em> reste actif et brille superbement sur fond clair */

.audience .section-lede,
.process .section-lede,
.faq .section-lede,
.lead-magnet-lede,
.contact .contact-info p {
  color: var(--green-acc) !important;
  opacity: 1 !important;
}

/* ---------- AUDIENCE : refonte plus visuelle ---------- */
.audience-card {
  background: rgba(253, 235, 214, 0.45) !important;
  border: 1px solid rgba(20, 48, 42, 0.18) !important;
  padding: 2.8rem 2rem 2.4rem !important;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-light) 50%, var(--gold-deep) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.audience-card:hover {
  background: rgba(253, 235, 214, 0.75) !important;
  border-color: var(--gold-deep) !important;
  box-shadow: 0 22px 50px rgba(36, 77, 67, 0.18), 0 0 0 1px rgba(224,180,128,0.4) !important;
}
.audience-card:hover::after { transform: scaleX(1); }

.audience-num {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0 !important;
  margin-bottom: 1.6rem !important;
  background: var(--gold-metal) !important;
  background-size: 200% 200% !important;
  color: var(--green-ink) !important;
  border: none !important;
  border-radius: 50%;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  box-shadow:
    0 6px 16px rgba(140, 106, 61, 0.35),
    inset 0 1px 0 rgba(255, 244, 214, 0.7);
}

.audience-card h3 { color: var(--green-ink) !important; }
.audience-card p { color: var(--green-acc) !important; opacity: 0.9 !important; }

/* ---------- PROCESS : timeline horizontale avec watermark numéro ---------- */
.process-grid {
  position: relative;
  gap: clamp(1.8rem, 3vw, 2.6rem) !important;
}
/* Ligne pointillée horizontale entre les étapes (desktop) */
@media (min-width: 800px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg,
      var(--gold-deep) 0,
      var(--gold-deep) 6px,
      transparent 6px,
      transparent 14px);
    z-index: 0;
  }
}
.process-step {
  position: relative;
  background: rgba(253, 235, 214, 0.55) !important;
  border: 1px solid rgba(20, 48, 42, 0.18) !important;
  padding: 3rem 1.8rem 2rem !important;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.process-step::before { display: none; }
.process-step:hover {
  background: rgba(253, 235, 214, 0.85) !important;
  border-color: var(--gold-deep) !important;
  box-shadow: 0 22px 50px rgba(36,77,67,0.2), 0 0 0 1px rgba(224,180,128,0.4) !important;
  transform: translateY(-6px);
}
/* Watermark numéro géant en arrière-plan */
.process-step .process-num {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: clamp(7rem, 12vw, 11rem) !important;
  font-weight: 700;
  color: transparent !important;
  background: var(--gold-metal-anim);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.18;
  letter-spacing: 0;
  pointer-events: none;
  z-index: 0;
  margin: 0;
  line-height: 1;
}
.process-step h3 {
  position: relative;
  z-index: 1;
  color: var(--green-ink) !important;
  font-size: 1.3rem !important;
  margin-top: 1rem;
}
.process-step p {
  position: relative;
  z-index: 1;
  color: var(--green-acc) !important;
  opacity: 0.9;
  font-style: italic;
}
/* Icônes des étapes (injectées via CSS pseudo) */
.process-step::after {
  content: '';
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 1;
}
.process-step:nth-child(1)::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c69968' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M21 4h14a4 4 0 0 1 4 4v32a4 4 0 0 1-4 4H13a4 4 0 0 1-4-4V16z'/><path d='M21 4v12h12'/><path d='M16 28h16M16 34h10'/></svg>");
}
.process-step:nth-child(2)::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c69968' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='24' cy='24' r='8'/><path d='M24 4v6M24 38v6M4 24h6M38 24h6M10 10l4 4M34 34l4 4M38 10l-4 4M14 34l-4 4'/></svg>");
}
.process-step:nth-child(3)::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c69968' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 14l18 8 18-8M6 14v20l18 8 18-8V14M6 14l18-8 18 8M24 22v20'/></svg>");
}

/* ---------- FAQ : 2 colonnes desktop + icônes + animation richer ---------- */
.faq-inner { max-width: 1100px !important; }
.faq-list {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.85rem !important;
}
@media (min-width: 880px) {
  .faq-list { grid-template-columns: 1fr 1fr; gap: 1rem !important; }
}
.faq-item {
  background: rgba(253, 235, 214, 0.55) !important;
  border: 1px solid rgba(20, 48, 42, 0.18) !important;
  border-left: 3px solid transparent !important;
  transition: border-color .35s ease, background .35s ease, transform .35s ease, box-shadow .4s ease !important;
}
.faq-item[open] {
  background: rgba(253, 235, 214, 0.85) !important;
  border-left-color: var(--gold-deep) !important;
  box-shadow: 0 14px 36px rgba(36,77,67,0.18) !important;
}
.faq-item summary {
  color: var(--green-ink) !important;
  padding: 1.3rem 1.4rem !important;
  font-size: 1rem !important;
}
.faq-item summary:hover { color: var(--gold-deep) !important; }
.faq-item summary::after {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  font-size: 1.1rem !important;
  color: var(--gold-deep) !important;
}
.faq-item[open] summary::after {
  background: var(--gold-metal);
  background-size: 200% 200%;
  color: var(--green-ink) !important;
  border-color: var(--gold-deep);
}
.faq-item-body {
  color: var(--green-acc) !important;
  opacity: 1 !important;
  font-size: 1rem !important;
  padding: 0 1.4rem 1.4rem !important;
}

/* ---------- LEAD MAGNET : mockup PDF + form premium ---------- */
.lead-magnet { padding: clamp(5rem, 9vw, 8rem) var(--pad-x) !important; }
.lead-magnet-inner { align-items: center !important; }
.lead-magnet-text h2 { color: var(--green-ink) !important; }
.lead-magnet-lede {
  color: var(--green-acc) !important;
  opacity: 1 !important;
}
.lead-magnet-lede strong { color: var(--gold-deep) !important; }
.lead-magnet-bullets li { color: var(--green-acc) !important; opacity: 0.95 !important; }
.lead-magnet-bullets li::before {
  background: var(--gold-metal);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Mockup PDF à gauche, form à droite */
.lead-magnet-text {
  position: relative;
}
.lead-magnet-mockup {
  position: relative;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1.41;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-50) 100%);
  border: 1px solid var(--gold-deep);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  box-shadow:
    0 30px 60px rgba(20, 48, 42, 0.25),
    0 0 0 1px rgba(224, 180, 128, 0.5);
  transform: rotate(-3deg);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.lead-magnet-mockup:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow: 0 40px 70px rgba(20, 48, 42, 0.32), 0 0 0 1px rgba(224,180,128,0.7);
}
.lead-magnet-mockup .mockup-eyebrow {
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}
.lead-magnet-mockup h4 {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.15;
  color: var(--green-ink);
  margin: 0 0 1.2rem;
  letter-spacing: 0.01em;
}
.lead-magnet-mockup h4 em { font-style: italic; }
.lead-magnet-mockup .mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lead-magnet-mockup .mockup-line {
  height: 6px;
  background: rgba(20, 48, 42, 0.18);
  border-radius: 2px;
}
.lead-magnet-mockup .mockup-line:nth-child(2) { width: 80%; }
.lead-magnet-mockup .mockup-line:nth-child(3) { width: 65%; }
.lead-magnet-mockup .mockup-line:nth-child(4) { width: 90%; }
.lead-magnet-mockup .mockup-stamp {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  background: var(--green-ink);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transform: rotate(8deg);
}
.lead-magnet-mockup::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  background: var(--green-ink);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.95;
}

.lead-magnet-form-inner {
  background: rgba(253, 235, 214, 0.85) !important;
  border: 1px solid var(--gold-deep) !important;
  box-shadow: 0 22px 50px rgba(20, 48, 42, 0.18) !important;
}
.lead-magnet-form-inner h3 { color: var(--green-ink) !important; }
.lead-magnet-form-inner > p { color: var(--green-acc) !important; opacity: 0.9 !important; }
.lead-magnet-form-inner .field input {
  color: var(--green-ink) !important;
  border-color: rgba(20, 48, 42, 0.4) !important;
}
.lead-magnet-form-inner .field label { color: var(--green-acc) !important; }
.lead-magnet-mention { color: var(--green-acc) !important; opacity: 0.8 !important; }

/* ---------- CONTACT : aussi en palette claire ---------- */
.contact .contact-title { color: var(--green-ink) !important; }
.contact .kicker { color: var(--gold-deep) !important; }
.contact .contact-info p,
.contact .contact-info a { color: var(--green-ink) !important; }
.contact .field input { color: var(--green-ink) !important; border-color: rgba(20, 48, 42, 0.4) !important; }
.contact .field label { color: var(--green-acc) !important; }
.contact .chip { color: var(--green-ink) !important; border-color: rgba(20, 48, 42, 0.3) !important; }
.contact .chip.is-active { background: var(--green-ink) !important; color: var(--gold-light) !important; }
.contact .form-status { color: var(--green-acc) !important; }

/* ---------- WORK / SHOP : alléger leur fond aussi ---------- */
.work, .shop, .stats {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-soft) 100%);
}
/* On garde le travail en sombre pour valoriser les photos */

/* ---------- ABOUT : transition douce ---------- */
.about {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--cream-100) 100%);
}
.about .about-title { color: var(--cream); }
.about .about-bio p:not(.about-lede) { color: var(--cream); opacity: 0.88; }

/* ---------- PAGE OFFRE : version claire à fond doré ---------- */
.page-offre main {
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--cream-100) 50%, var(--gold-50) 100%) !important;
}
.page-offre .offre-title { color: var(--green-ink); }
.page-offre .offre-lede { color: var(--green-acc); opacity: 1; }
.page-offre .offre-meta span { color: var(--gold-deep); }
.page-offre .offre-meta strong { color: var(--green-ink); }
.page-offre .offre-meta {
  border-top-color: rgba(20, 48, 42, 0.18);
  border-bottom-color: rgba(20, 48, 42, 0.18);
}
.page-offre .offre-card {
  background: rgba(253, 235, 214, 0.7) !important;
  border-color: rgba(20, 48, 42, 0.18) !important;
}
.page-offre .offre-card:hover {
  background: rgba(253, 235, 214, 0.95) !important;
  border-color: var(--gold-deep) !important;
  box-shadow: 0 22px 50px rgba(20,48,42,0.2), 0 0 0 1px rgba(224,180,128,0.4) !important;
}
.page-offre .offre-card-feature {
  background: linear-gradient(135deg, rgba(245, 226, 196, 0.95) 0%, rgba(253, 246, 233, 0.95) 100%) !important;
  border: 1px solid var(--gold-deep) !important;
  box-shadow: 0 16px 40px rgba(20,48,42,0.18), 0 0 0 2px rgba(224,180,128,0.3) !important;
}
.page-offre .offre-card h2 { color: var(--green-ink); }
.page-offre .offre-pitch { color: var(--green-acc); opacity: 1; }
.page-offre .offre-includes li { color: var(--green-acc); opacity: 0.95; }
.page-offre .offre-includes li::before { color: var(--gold-deep); }
.page-offre .offre-price { border-top-color: rgba(20, 48, 42, 0.2); }
.page-offre .offre-price-tag {
  background: var(--green-ink) !important;
  color: var(--gold-light) !important;
  border-color: var(--green-ink) !important;
}
.page-offre .offre-cta-band {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-50) 100%) !important;
  border: 1px solid var(--gold-deep) !important;
}
.page-offre .offre-cta-band h2 { color: var(--green-ink); }
.page-offre .offre-cta-band p { color: var(--green-acc); opacity: 1; }
.page-offre .btn-ghost {
  color: var(--green-ink) !important;
  border-color: var(--green-ink) !important;
}
.page-offre .btn-ghost:hover {
  background: var(--green-ink) !important;
  color: var(--gold-light) !important;
}
/* Header de page offre adapté */
.page-offre .site-header {
  background: rgba(253, 235, 214, 0.92) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 48, 42, 0.15) !important;
}
.page-offre .nav a { color: var(--green-ink) !important; opacity: 0.78; }
.page-offre .nav a:hover, .page-offre .nav a.active { opacity: 1; }
.page-offre .brand-logo { filter: drop-shadow(0 2px 8px rgba(20, 48, 42, 0.2)); }

/* ---------- BOUTIQUE : force le fond doré clair + cadres verts ---------- */
body.page-boutique {
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--cream-100) 30%, var(--gold-100) 70%, var(--gold-50) 100%) !important;
  color: var(--green-ink) !important;
}
body.page-boutique .site-header {
  background: rgba(245, 226, 196, 0.94) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 48, 42, 0.18) !important;
}
body.page-boutique .nav a { color: var(--green-ink) !important; opacity: 0.78; }
body.page-boutique .nav a:hover, body.page-boutique .nav a.active { opacity: 1; }
body.page-boutique .brand-logo { filter: drop-shadow(0 2px 8px rgba(20, 48, 42, 0.2)); }
body.page-boutique .boutique-title { color: var(--green-ink) !important; }
body.page-boutique .boutique-title em { font-style: italic; }
body.page-boutique .boutique-lede { color: var(--green-acc) !important; opacity: 1 !important; }
body.page-boutique .boutique-meta span { color: var(--gold-deep) !important; }
body.page-boutique .boutique-meta strong { color: var(--green-ink) !important; }
body.page-boutique .boutique-meta {
  border-top-color: rgba(20, 48, 42, 0.18) !important;
  border-bottom-color: rgba(20, 48, 42, 0.18) !important;
}
/* Cards boutique : cadres vert profond bien lisibles */
body.page-boutique .shop-item {
  background: var(--green-deep) !important;
  border: 1px solid var(--gold-deep) !important;
  padding: 14px !important;
  border-radius: 4px !important;
  box-shadow:
    0 12px 30px rgba(20, 48, 42, 0.25),
    inset 0 0 0 1px rgba(224, 180, 128, 0.25) !important;
}
body.page-boutique .shop-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 50px rgba(20, 48, 42, 0.35),
    inset 0 0 0 1px rgba(224, 180, 128, 0.6) !important;
}
body.page-boutique .shop-item-body h3 { color: var(--cream) !important; }
body.page-boutique .shop-cat { color: var(--gold-light) !important; }
body.page-boutique .shop-price .now { color: var(--cream) !important; }
body.page-boutique .shop-price .was { color: rgba(253, 235, 214, 0.55) !important; }
/* Chips de filtres */
body.page-boutique .cat-chip {
  color: var(--green-ink) !important;
  background: transparent !important;
  border: 1px solid rgba(20, 48, 42, 0.3) !important;
}
body.page-boutique .cat-chip span { color: var(--gold-deep) !important; }
body.page-boutique .cat-chip:hover {
  background: rgba(20, 48, 42, 0.06) !important;
  border-color: var(--green-ink) !important;
}
body.page-boutique .cat-chip.is-active {
  background: var(--green-ink) !important;
  color: var(--gold-light) !important;
  border-color: var(--green-ink) !important;
}
body.page-boutique .cat-chip.is-active span { color: var(--gold-light) !important; }
body.page-boutique .shop-toolbar-row {
  border-top-color: rgba(20, 48, 42, 0.18) !important;
  border-bottom-color: rgba(20, 48, 42, 0.18) !important;
}
body.page-boutique .shop-toolbar-row .shop-count,
body.page-boutique .shop-toolbar-row .shop-count strong,
body.page-boutique .shop-toolbar-row .shop-sort label {
  color: var(--green-ink) !important;
}
body.page-boutique .shop-toolbar-row .search-input,
body.page-boutique .shop-toolbar-row .shop-sort select {
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(20, 48, 42, 0.25) !important;
  color: var(--green-ink) !important;
}
body.page-boutique .shop-toolbar-row .search-input input { color: var(--green-ink) !important; }
body.page-boutique .shop-toolbar-row .search-input svg { color: var(--green-acc) !important; }
body.page-boutique .shop-empty p { color: var(--green-ink) !important; }
body.page-boutique main { padding-top: 100px; }

/* ---------- PAGES LÉGALES : passage en fond crème lisible ---------- */
body.page-legal {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--gold-50) 100%) !important;
  color: var(--green-ink);
}
body.page-legal .site-header {
  background: rgba(253, 246, 233, 0.92) !important;
  border-bottom: 1px solid rgba(20, 48, 42, 0.18) !important;
}
body.page-legal .nav a { color: var(--green-ink) !important; opacity: 0.78; }
body.page-legal .brand-logo { filter: drop-shadow(0 2px 8px rgba(20, 48, 42, 0.2)); }
body.page-legal h1 { color: var(--green-ink); }
body.page-legal h2 { color: var(--gold-deep); }
body.page-legal h3 { color: var(--green-acc); }
body.page-legal p,
body.page-legal li,
body.page-legal strong { color: var(--green-ink) !important; opacity: 1; }
body.page-legal .legal-lede {
  color: var(--green-acc) !important;
  opacity: 1;
  border-bottom-color: rgba(20, 48, 42, 0.2) !important;
}
body.page-legal a { color: var(--gold-deep); }
body.page-legal .legal-back {
  border-top-color: rgba(20, 48, 42, 0.2);
  color: var(--gold-deep);
}

/* ---------- HERO TRIPTYQUE (ancien bloc v14 — désactivé, conservé pour mémoire) ---------- */
/* Les styles définitifs sont dans le bloc v16 en bas du fichier. */

/* ---------- SERVICES (exemple v14) — grille de 6 cards visuelles ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--green-deep);
  border: 1px solid var(--gold-deep);
  box-shadow: 0 12px 30px rgba(20, 48, 42, 0.25);
  cursor: pointer;
  transition: transform .5s var(--ease-out), box-shadow .5s ease, border-color .35s ease;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 24px 50px rgba(20, 48, 42, 0.4), 0 0 0 1px rgba(224,180,128,0.4);
}
.svc-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.svc-card:hover .svc-card-media img { transform: scale(1.06); }
.svc-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 34, 28, 0.55) 100%);
  pointer-events: none;
}
.svc-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.3rem 0.7rem;
  background: var(--gold-metal);
  background-size: 200% 200%;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
}
.svc-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.svc-card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.02em;
}
.svc-card-body p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--cream);
  opacity: 0.78;
  margin: 0;
  flex: 1;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.8rem;
}
.svc-card-link svg { transition: transform .3s var(--ease-out); }
.svc-card:hover .svc-card-link svg { transform: translateX(4px); }

/* ============================================================
   v15 — Corrections palette dorée (forcer la boutique + audience)
   + nouveau triptyque horizontal 16:9
   ============================================================ */

/* ---------- BOUTIQUE : force le fond doré avec ultra-spécificité ---------- */
html body.page-boutique,
html body.page-boutique main {
  background: linear-gradient(180deg,
    #f5e2c4 0%,
    #ecd5af 25%,
    #e0c499 50%,
    #ecd5af 75%,
    #f5e2c4 100%) !important;
  color: #14302a !important;
}
html body.page-boutique main { padding-top: 110px; }
html body.page-boutique .site-header {
  background: rgba(245, 226, 196, 0.94) !important;
  border-bottom: 1px solid rgba(20, 48, 42, 0.2) !important;
}
html body.page-boutique .site-header .nav a { color: #14302a !important; opacity: 0.85; }
html body.page-boutique .site-header .nav a:hover,
html body.page-boutique .site-header .nav a.active { opacity: 1; color: #c69968 !important; }
html body.page-boutique .brand-logo { filter: drop-shadow(0 2px 8px rgba(20, 48, 42, 0.25)); }
html body.page-boutique .boutique-title { color: #14302a !important; }
html body.page-boutique .boutique-lede { color: #244d43 !important; opacity: 1 !important; }
html body.page-boutique .boutique-meta { border-color: rgba(20, 48, 42, 0.22) !important; }
html body.page-boutique .boutique-meta span { color: #c69968 !important; letter-spacing: 0.24em; }
html body.page-boutique .boutique-meta strong { color: #14302a !important; }
html body.page-boutique .cat-chip {
  background: transparent !important;
  border: 1px solid rgba(20, 48, 42, 0.3) !important;
  color: #14302a !important;
}
html body.page-boutique .cat-chip span { color: #c69968 !important; }
html body.page-boutique .cat-chip:hover {
  background: rgba(20, 48, 42, 0.06) !important;
  border-color: #14302a !important;
}
html body.page-boutique .cat-chip.is-active {
  background: #14302a !important;
  color: #fdebd6 !important;
  border-color: #14302a !important;
}
html body.page-boutique .cat-chip.is-active span { color: #ecc89e !important; }
html body.page-boutique .shop-toolbar-row { border-color: rgba(20, 48, 42, 0.2) !important; }
html body.page-boutique .shop-count,
html body.page-boutique .shop-count strong { color: #14302a !important; }
html body.page-boutique .shop-sort label { color: #244d43 !important; }
html body.page-boutique .search-input,
html body.page-boutique .shop-sort select {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(20, 48, 42, 0.28) !important;
  color: #14302a !important;
}
html body.page-boutique .search-input input { color: #14302a !important; }
html body.page-boutique .search-input svg { color: #244d43 !important; }

/* Cards boutique : fond vert profond, cadre doré, texte crème = lisible */
html body.page-boutique .shop-item {
  background: #0c221c !important;
  border: 1px solid rgba(224, 180, 128, 0.45) !important;
  padding: 14px !important;
  border-radius: 4px !important;
  box-shadow: 0 14px 32px rgba(20, 48, 42, 0.28) !important;
  position: relative;
  cursor: pointer;
}
html body.page-boutique .shop-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 50px rgba(20, 48, 42, 0.4),
    inset 0 0 0 1px rgba(224, 180, 128, 0.7) !important;
  border-color: #ecc89e !important;
}
html body.page-boutique .shop-item-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
  background: #14302a;
}
html body.page-boutique .shop-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
html body.page-boutique .shop-item:hover .shop-item-media img { transform: scale(1.04); }
html body.page-boutique .shop-item-body {
  padding: 1rem 0.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
html body.page-boutique .shop-item-body h3 {
  color: #fdebd6 !important;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.02em;
}
html body.page-boutique .shop-cat {
  color: #ecc89e !important;
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.92;
  margin: 0;
}
html body.page-boutique .shop-price .now { color: #fdebd6 !important; font-size: 1.1rem; }
html body.page-boutique .shop-price .was {
  color: rgba(253, 235, 214, 0.5) !important;
  font-size: 0.85rem;
  text-decoration: line-through;
}
html body.page-boutique .shop-ribbon {
  background: var(--gold-metal) !important;
  background-size: 200% 200% !important;
  color: #14302a !important;
}

/* ---------- AUDIENCE refonte v15 — mise en page zigzag + image décorative ---------- */
.audience {
  background: linear-gradient(180deg, #fdf6e9 0%, #f5e2c4 50%, #ecd5af 100%) !important;
  position: relative;
  overflow: hidden;
}
.audience::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 180, 128, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.audience::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(36, 77, 67, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.audience .section-head { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.audience .eyebrow { color: #c69968 !important; }
.audience .section-title,
.audience .section-title span { color: #14302a !important; }

.audience-grid {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: clamp(2rem, 4vw, 3rem) !important;
  max-width: 1100px;
  margin: 0 auto;
}
.audience-card {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.5rem) !important;
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(20, 48, 42, 0.2) !important;
  border-left: 4px solid #c69968 !important;
  border-radius: 6px !important;
  text-align: left !important;
  position: relative;
}
.audience-card:nth-child(2) {
  margin-left: clamp(0px, 5vw, 60px);
  margin-right: 0;
}
.audience-card:nth-child(3) {
  margin-left: clamp(0px, 10vw, 120px);
}
.audience-card:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  border-left-color: #e0b480 !important;
  box-shadow: 0 22px 50px rgba(20, 48, 42, 0.15), 0 0 0 1px rgba(224, 180, 128, 0.5) !important;
  transform: translateX(8px) !important;
}
.audience-card::after { display: none; }

.audience-num {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 8vw, 96px) !important;
  height: clamp(72px, 8vw, 96px) !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--gold-metal) !important;
  background-size: 200% 200% !important;
  color: #14302a !important;
  border: none !important;
  border-radius: 50% !important;
  font-family: var(--serif) !important;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  box-shadow:
    0 10px 22px rgba(140, 106, 61, 0.45),
    inset 0 1px 0 rgba(255, 244, 214, 0.8),
    inset 0 -2px 0 rgba(140, 106, 61, 0.3);
  flex-shrink: 0;
}
.audience-card h3 {
  font-family: var(--serif) !important;
  font-weight: 500 !important;
  font-size: clamp(1.3rem, 2vw, 1.7rem) !important;
  margin: 0 0 0.5rem !important;
  color: #14302a !important;
  letter-spacing: 0.01em;
}
.audience-card p {
  font-family: var(--serif-2) !important;
  font-style: italic !important;
  font-size: clamp(1rem, 1.15vw, 1.1rem) !important;
  line-height: 1.55 !important;
  color: #244d43 !important;
  opacity: 0.92 !important;
  margin: 0 !important;
}
@media (max-width: 600px) {
  .audience-card { grid-template-columns: 1fr !important; text-align: center !important; }
  .audience-card:nth-child(2),
  .audience-card:nth-child(3) { margin-left: 0 !important; }
  .audience-num { margin: 0 auto 1rem !important; }
}

/* ---------- HERO TRIPTYQUE v17 — bloc 16:9 horizontal en flex (plus robuste) ---------- */
.hero-triptych {
  position: absolute !important;
  inset: auto !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 100% !important;
  z-index: 0 !important;            /* placé en arrière dans son propre stacking context */
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  gap: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
/* Chaque cellule = 1/3 de la largeur, hauteur 100% du container */
.hero-triptych > .clip {
  position: relative !important;
  display: block !important;
  flex: 1 1 0 !important;
  width: 33.3333% !important;
  min-width: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  background: #0c221c !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
}
/* Vidéos confinées dans leur cellule .clip parente */
.hero-v13 .hero-triptych > .clip > video,
.hero-v13 .hero-triptych > .clip > img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  transform: none !important;
  filter: brightness(0.62) saturate(1.08) !important;  /* assombri pour lisibilité du texte */
  transition: filter .8s ease !important;
}
/* Séparateur doré subtil entre les clips */
.hero-triptych > .clip:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 6%;
  right: 0;
  bottom: 6%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(224, 180, 128, 0.55) 50%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Mobile : on garde 3 clips côte à côte mais plus compacts */
@media (max-width: 700px) {
  .hero-triptych {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* TEXTE du hero : forcer DEVANT le triptyque avec z-index fort */
.hero-v13 .hero-overline,
.hero-v13 .hero-title-big,
.hero-v13 .hero-sub,
.hero-v13 .hero-cta-row,
.hero-v13 .hero-scroll {
  position: relative !important;
  z-index: 10 !important;
}
/* Overlay du hero : passe au-dessus du triptyque mais sous le texte */
.hero-v13 .hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none;
}
.hero-v13 .hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(180deg,
    rgba(12, 34, 28, 0.3) 0%,
    rgba(12, 34, 28, 0.1) 40%,
    rgba(12, 34, 28, 0.35) 80%,
    rgba(12, 34, 28, 0.7) 100%) !important;
  pointer-events: none;
}
.hero-v13 .hero-vignette {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none;
}
