/* ============================================================================
   Easypeak — Pack photos · v4
   Hero sombre → Mosaïque collée → Pourquoi → Cas Amicitia → FAQ → CTA
   ============================================================================ */

:root {
  --paper:    #FAF7F2;
  --paper-2:  #F2ECE2;
  --paper-3:  #EDE4D4;
  --ink:      #1C1613;
  --ink-2:    #2A221C;
  --muted:    #6B5D52;
  --terra:    #B54A2A;
  --terra-d:  #8F3B20;
  --terra-l:  #E8A284;
  --sand:     #D9C9B0;
  --ink-deep: #1A0F0A;

  --line:        rgba(28, 22, 19, 0.11);
  --line-s:      rgba(28, 22, 19, 0.06);
  --line-paper:  rgba(232, 162, 132, 0.18);

  --font-display: "Unbounded", "Helvetica Neue", Arial, sans-serif;
  --font-serif:   "Fraunces", "Times New Roman", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "SF Mono", ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ============================================================================
   Primitives partagées
   ============================================================================ */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.09  0 0 0 0 0.07  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.halo {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(
    circle var(--halo-size, 75vh) at var(--halo-x, 50%) var(--halo-y, 50%),
    var(--halo-color, rgba(181, 74, 42, .42)) 0%,
    transparent 70%
  );
  mix-blend-mode: screen;
}
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,6,3,.55) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow .dash { width: 28px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow--paper { color: rgba(250, 247, 242, .68); }
.eyebrow--terra { color: var(--terra); }
.eyebrow--terra-l { color: var(--terra-l); }

.mask-line { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.mask-inner { display: block; transform: translateY(110%); transition: transform 1.05s cubic-bezier(.2,.8,.2,1); }
.mask-line.in .mask-inner { transform: translateY(0); }
.mask-line.d1 .mask-inner { transition-delay: .12s; }
.mask-line.d2 .mask-inner { transition-delay: .24s; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra);
  letter-spacing: -.005em;
}
.on-dark em { color: var(--terra-l); }

::selection { background: var(--terra); color: var(--paper); }

/* ============================================================================
   Boutons
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 18px 26px; border-radius: 2px; border: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              box-shadow .35s var(--ease), transform .25s var(--ease),
              border-color .25s var(--ease);
}
.btn .arrow { transition: transform .25s var(--ease); display: inline-flex; }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn--terra {
  background: var(--terra); color: var(--paper);
  box-shadow: 0 18px 40px -18px rgba(143,59,32,.55);
}
.btn--terra:hover { background: var(--terra-d); box-shadow: 0 22px 50px -16px rgba(143,59,32,.7); transform: translateY(-2px); }
.btn--lg {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; padding: 22px 36px; letter-spacing: -.005em;
}
.btn--ghost-dark {
  background: transparent; color: var(--paper);
  padding: 18px 8px;
  border-bottom: 1px solid rgba(232,162,132,.45);
  border-radius: 0;
}
.btn--ghost-dark:hover { border-color: var(--terra-l); }

/* ============================================================================
   Photo placeholder "ph" — gradient mood + grain + hover crédit
   ============================================================================ */
.ph {
  position: relative; overflow: hidden;
  background: var(--paper-2);
  border-radius: 0;
  cursor: zoom-in;
  isolation: isolate;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.ph__layer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(var(--ph-deg, 135deg), var(--ph-c1, #6B5D52) 0%, var(--ph-c2, #2A221C) 100%);
  transition: transform .8s var(--ease);
}
.ph__subject {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--ph-fx, 50%) var(--ph-fy, 45%),
    var(--ph-c3, rgba(255,220,180,.55)) 0%, transparent 55%);
  mix-blend-mode: screen;
  transition: transform .8s var(--ease);
}
.ph__stripes {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, transparent 0 26px, rgba(255,255,255,.04) 26px 27px);
  mix-blend-mode: overlay;
}
.ph__grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.ph__shade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%; z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(10,6,3,.65) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.ph__credit {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; letter-spacing: .02em;
  color: var(--paper);
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.ph__credit em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra-l); }
.ph__credit .meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  color: rgba(250, 247, 242, .7);
  text-transform: uppercase;
}
.ph:hover .ph__layer    { transform: scale(1.03); }
.ph:hover .ph__subject  { transform: scale(1.03); }
.ph:hover .ph__shade    { opacity: 1; }
.ph:hover .ph__credit   { opacity: 1; transform: translateY(0); }

/* Vraie photo : placer un <img class="ph__img" loading="lazy" src="..." alt="...">
   dans le .ph (après les calques gradient) — elle recouvre le placeholder.
   Le fond var(--paper-2) du .ph sert de couleur d'attente pendant le chargement. */
.ph__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.ph:hover .ph__img { transform: scale(1.03); }

.gallery__grid .ph, .case__gal .ph {
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.gallery__grid.in .ph, .case__gal.in .ph { opacity: 1; transform: translateY(0); }

/* Moods */
.ph--room-warm    { --ph-c1: #6E4633; --ph-c2: #1F1410; --ph-c3: rgba(255,210,165,.55); --ph-deg: 160deg; --ph-fx: 38%; --ph-fy: 42%; }
.ph--room-linen   { --ph-c1: #E8D9C0; --ph-c2: #8A7560; --ph-c3: rgba(255,245,228,.40); --ph-deg: 200deg; --ph-fx: 55%; --ph-fy: 48%; }
.ph--bath-pearl   { --ph-c1: #D7C9B5; --ph-c2: #6B5747; --ph-c3: rgba(255,242,222,.45); --ph-deg: 175deg; --ph-fx: 40%; --ph-fy: 55%; }
.ph--suite-amber  { --ph-c1: #7E4D33; --ph-c2: #2E1D14; --ph-c3: rgba(232,162,132,.55); --ph-deg: 195deg; --ph-fx: 65%; --ph-fy: 40%; }
.ph--suite-dusk   { --ph-c1: #3E2A20; --ph-c2: #0E0805; --ph-c3: rgba(232,162,132,.45); --ph-deg: 180deg; --ph-fx: 30%; --ph-fy: 45%; }
.ph--resto-wine   { --ph-c1: #5D2D1D; --ph-c2: #170A06; --ph-c3: rgba(232,160,115,.65); --ph-deg: 170deg; --ph-fx: 45%; --ph-fy: 60%; }
.ph--resto-amber  { --ph-c1: #8C5234; --ph-c2: #2A150C; --ph-c3: rgba(255,193,140,.65); --ph-deg: 190deg; --ph-fx: 60%; --ph-fy: 50%; }
.ph--resto-candle { --ph-c1: #28150E; --ph-c2: #0A0503; --ph-c3: rgba(255,170,100,.75); --ph-deg: 180deg; --ph-fx: 35%; --ph-fy: 65%; }
.ph--resto-table  { --ph-c1: #6E4128; --ph-c2: #1A0E08; --ph-c3: rgba(232,180,140,.50); --ph-deg: 165deg; --ph-fx: 50%; --ph-fy: 55%; }
.ph--resto-glass  { --ph-c1: #2C1810; --ph-c2: #0A0503; --ph-c3: rgba(232,160,110,.55); --ph-deg: 200deg; --ph-fx: 70%; --ph-fy: 40%; }
.ph--resto-kitchen{ --ph-c1: #45261A; --ph-c2: #150A06; --ph-c3: rgba(255,180,130,.60); --ph-deg: 195deg; --ph-fx: 25%; --ph-fy: 35%; }
.ph--resto-bar    { --ph-c1: #3A1C12; --ph-c2: #0D0503; --ph-c3: rgba(255,180,120,.6);  --ph-deg: 185deg; --ph-fx: 55%; --ph-fy: 45%; }
.ph--arch-stone   { --ph-c1: #C8B597; --ph-c2: #5A4634; --ph-c3: rgba(255,238,210,.50); --ph-deg: 195deg; --ph-fx: 55%; --ph-fy: 30%; }
.ph--arch-shadow  { --ph-c1: #3A2D24; --ph-c2: #0D0805; --ph-c3: rgba(255,200,160,.40); --ph-deg: 170deg; --ph-fx: 60%; --ph-fy: 50%; }
.ph--arch-hall    { --ph-c1: #6A553E; --ph-c2: #1F1610; --ph-c3: rgba(255,228,190,.50); --ph-deg: 185deg; --ph-fx: 45%; --ph-fy: 65%; }
.ph--arch-pale    { --ph-c1: #DCCCB0; --ph-c2: #8F7758; --ph-c3: rgba(255,245,225,.50); --ph-deg: 210deg; --ph-fx: 38%; --ph-fy: 32%; }
.ph--detail-rust  { --ph-c1: #8E4226; --ph-c2: #2E1308; --ph-c3: rgba(255,170,120,.55); --ph-deg: 160deg; --ph-fx: 55%; --ph-fy: 50%; }
.ph--detail-fabric{ --ph-c1: #C8B395; --ph-c2: #5C4633; --ph-c3: rgba(255,234,210,.45); --ph-deg: 145deg; --ph-fx: 50%; --ph-fy: 50%; }
.ph--detail-brass { --ph-c1: #7B5A2E; --ph-c2: #25180A; --ph-c3: rgba(255,210,135,.60); --ph-deg: 175deg; --ph-fx: 60%; --ph-fy: 45%; }
.ph--detail-wood  { --ph-c1: #5C3C28; --ph-c2: #1C0F08; --ph-c3: rgba(232,170,120,.45); --ph-deg: 180deg; --ph-fx: 40%; --ph-fy: 55%; }
.ph--detail-stone { --ph-c1: #B0A088; --ph-c2: #54453A; --ph-c3: rgba(255,238,212,.45); --ph-deg: 160deg; --ph-fx: 50%; --ph-fy: 60%; }
.ph--detail-petal { --ph-c1: #C4847B; --ph-c2: #4A2520; --ph-c3: rgba(255,196,178,.55); --ph-deg: 165deg; --ph-fx: 55%; --ph-fy: 50%; }
.ph--garden-leaf  { --ph-c1: #4A4A2A; --ph-c2: #14160A; --ph-c3: rgba(196,210,140,.40); --ph-deg: 200deg; --ph-fx: 50%; --ph-fy: 35%; }
.ph--garden-dusk  { --ph-c1: #5C3E2A; --ph-c2: #14080B; --ph-c3: rgba(232,162,132,.50); --ph-deg: 195deg; --ph-fx: 70%; --ph-fy: 30%; }
.ph--garden-stone { --ph-c1: #948160; --ph-c2: #2E2415; --ph-c3: rgba(255,228,180,.40); --ph-deg: 180deg; --ph-fx: 45%; --ph-fy: 45%; }
.ph--garden-mist  { --ph-c1: #98987C; --ph-c2: #3A3528; --ph-c3: rgba(255,250,228,.55); --ph-deg: 200deg; --ph-fx: 55%; --ph-fy: 40%; }
.ph--garden-warm  { --ph-c1: #7E5A38; --ph-c2: #1E1208; --ph-c3: rgba(255,196,135,.50); --ph-deg: 175deg; --ph-fx: 40%; --ph-fy: 50%; }

/* ============================================================================
   01 — HERO sombre (style Pack vidéo)
   ============================================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 78vh; width: 100%;
  background: var(--ink-deep);
  color: var(--paper);
  padding: 180px 64px 80px;
  display: flex; flex-direction: column;
}
.hero .halo {
  --halo-color: rgba(181, 74, 42, .55);
  --halo-size: 95vh;
  --halo-x: 72%; --halo-y: 32%;
}
.hero__particles {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(232,162,132,.45) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(232,162,132,.22) 1px, transparent 1.5px);
  background-size: 240px 220px, 380px 340px;
  background-position: 0 0, 90px 110px;
  opacity: .35; mix-blend-mode: screen;
  animation: drift 60s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0, 90px 110px; }
  to   { background-position: 240px 220px, 470px 450px; }
}
.hero__timestamp {
  position: absolute; top: 110px; right: 64px; z-index: 4;
  display: flex; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: rgba(232,162,132,.6);
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: 1320px; margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__eye { margin-bottom: 32px; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(44px, 6.2vw, 104px);
  line-height: 1.02; letter-spacing: -.038em;
  color: #FFFFFF;
  margin: 0 0 44px;
  text-wrap: balance;
  max-width: 1100px;
}
.hero__title em { color: var(--terra-l); }
.hero__sub {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.5vw, 24px); line-height: 1.45;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 56px;
  max-width: 660px;
}
.hero__sub em { color: var(--terra-l); }
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center;
}
.hero__meta {
  position: relative; z-index: 3;
  max-width: 1320px; margin: 0 auto;
  width: 100%;
  margin-top: 80px; padding-top: 28px;
  border-top: 1px solid rgba(232,162,132,.18);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(232,162,132,.6);
}
.hero__meta .left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__meta .src {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 14px; color: var(--terra-l);
  letter-spacing: 0; text-transform: none;
}
.hero__meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--terra); opacity: .7; }

/* ============================================================================
   02 — MOSAÏQUE (gap 0, photos collées)
   ============================================================================ */
.gallery {
  background: var(--paper);
  padding: 120px 0 0;
}
.gallery__head {
  max-width: 1480px; margin: 0 auto 48px;
  padding: 0 64px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.gallery__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 5vw, 80px); line-height: 1.02;
  letter-spacing: -.035em; color: var(--ink);
  margin: 16px 0 0; text-wrap: balance;
}
.gallery__title em { color: var(--terra); }
.gallery__count {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 10px;
}
.gallery__count .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; letter-spacing: -.01em; color: var(--terra);
}

/* Grid dense 4 colonnes, gap: 0 PARTOUT — mur de photos */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 0;
  width: 100%;
}
.gallery__grid .ph { grid-column: span 1; grid-row: span 1; }
.gallery__grid .ph--tall     { grid-row: span 2; }
.gallery__grid .ph--wide     { grid-column: span 2; }
.gallery__grid .ph--big      { grid-column: span 2; grid-row: span 2; }

/* ============================================================================
   03 — POURQUOI ÇA COMPTE (article éditorial)
   ============================================================================ */
.why {
  background: var(--paper-2);
  padding: 180px 64px;
}
.why__inner { max-width: 1180px; margin: 0 auto; }
.why__head {
  margin-bottom: 80px; max-width: 920px;
}
.why__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 4.8vw, 76px); line-height: 1.04;
  letter-spacing: -.035em; color: var(--ink);
  margin: 28px 0 28px; text-wrap: balance;
}
.why__title em { color: var(--terra); }
.why__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.4vw, 24px); line-height: 1.5;
  color: var(--muted); max-width: 640px; margin: 0;
}
.why__sub em { color: var(--terra-d); }
.why__body {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 64px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.why__stat {
  position: sticky; top: 120px;
  align-self: start;
}
.why__stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(54px, 6vw, 96px); line-height: 1;
  letter-spacing: -.04em; color: var(--terra);
}
.why__stat-num em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra); font-size: .55em;
}
.why__stat-label {
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  max-width: 180px; line-height: 1.5;
}
.why__copy { max-width: 700px; }
.why__copy p {
  font-family: var(--font-body); font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.7; color: var(--ink-2);
  margin: 0 0 28px;
}
.why__copy p:last-child { margin-bottom: 0; }
.why__copy p:first-child {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(20px, 1.55vw, 26px); line-height: 1.45;
  color: var(--ink);
}
.why__copy em { color: var(--terra-d); }
.why__article {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.why__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: var(--terra);
  border-bottom: 1px solid var(--terra-l);
  padding: 4px 0;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.why__link:hover { color: var(--terra-d); border-color: var(--terra-d); }
.why__link .lbl {
  font-family: var(--font-mono); font-style: normal;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding-right: 12px; margin-right: 12px;
  border-right: 1px solid var(--line);
}

/* ============================================================================
   04 — CAS CLIENT AMICITIA (sombre)
   ============================================================================ */
.case {
  position: relative; overflow: hidden;
  background: var(--ink-deep); color: var(--paper);
  padding: 180px 64px 160px;
}
.case .halo {
  --halo-color: rgba(181, 74, 42, .42);
  --halo-size: 110vh;
  --halo-x: 82%; --halo-y: 22%;
}
.case__inner {
  position: relative; z-index: 3;
  max-width: 1380px; margin: 0 auto;
}
.case__head { margin-bottom: 72px; max-width: 1080px; }
.case__head .eyebrow { color: var(--terra-l); }
.case__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 92px); line-height: 1.02;
  letter-spacing: -.035em; color: #FFFFFF;
  margin: 28px 0 0; text-wrap: balance;
}
.case__title em { color: var(--terra-l); }
.case__split {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 0;
}
.case__photo-main {
  position: relative; overflow: hidden;
  min-height: 540px;
}
.case__copy {
  background: rgba(250, 247, 242, .02);
  border-left: 1px solid rgba(232,162,132,.18);
  padding: 56px 56px 48px;
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center;
}
.case__copy p {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.25vw, 21px); line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0;
}
.case__copy p em { color: var(--terra-l); font-weight: 500; }
.case__meta {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,162,132,.18);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case__meta-item .lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(232,162,132,.65);
  display: block; margin-bottom: 6px;
}
.case__meta-item .val {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; color: var(--paper);
}
.case__meta-item .val em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra-l);
}
.case__gal {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px; grid-auto-flow: dense;
  gap: 0;
}
.case__gal .ph { grid-column: span 2; grid-row: span 1; }
.case__gal .ph--tall { grid-column: span 2; grid-row: span 2; }
.case__gal .ph--wide { grid-column: span 3; }
.case__gal .ph--big  { grid-column: span 3; grid-row: span 2; }

/* ============================================================================
   05 — FAQ (accordion)
   ============================================================================ */
.faq {
  background: var(--paper);
  padding: 180px 64px;
}
.faq__inner { max-width: 1100px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 80px; }
.faq__head .eyebrow { color: var(--terra); justify-content: center; }
.faq__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 5vw, 80px); line-height: 1.02;
  letter-spacing: -.035em; color: var(--ink);
  margin: 28px auto 22px;
}
.faq__title em { color: var(--terra); }
.faq__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.35vw, 21px); line-height: 1.5;
  color: var(--muted); max-width: 560px; margin: 0 auto;
}
.faq__sub em { color: var(--terra-d); }
.faq__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--sand); }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__details { width: 100%; }
.faq__details > summary {
  list-style: none;
  display: grid; grid-template-columns: 56px 1fr 40px;
  align-items: baseline; gap: 16px;
  padding: 32px 8px;
  cursor: pointer; color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__details > summary::-webkit-details-marker { display: none; }
.faq__details > summary:hover { color: var(--terra); }
.faq__details > summary:hover .faq__icon { color: var(--terra-d); }
.faq__num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  color: var(--terra); padding-top: 6px;
}
.faq__q {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.55vw, 24px); line-height: 1.28;
  letter-spacing: -.015em; text-wrap: balance;
}
.faq__icon {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 300;
  font-size: 26px; line-height: 1; color: var(--terra);
  transition: transform .45s cubic-bezier(.32,0,.24,1), color .25s var(--ease);
  user-select: none;
}
.faq__details[open] .faq__icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; min-height: 0; }
.faq__a p {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 32px;
  padding-left: 72px; padding-right: 48px; max-width: 880px;
}
.faq__a p em { color: var(--terra); }

/* ============================================================================
   06 — CTA final (sombre, rappel hero)
   ============================================================================ */
.cta {
  position: relative; overflow: hidden;
  background: var(--ink-deep); color: var(--paper);
  padding: 160px 64px 140px;
}
.cta .halo {
  --halo-color: rgba(181, 74, 42, .55);
  --halo-size: 100vh;
  --halo-x: 50%; --halo-y: 50%;
}
.cta__particles {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(232,162,132,.35) 1px, transparent 1.5px);
  background-size: 320px 280px;
  opacity: .28; mix-blend-mode: screen;
}
.cta__inner {
  position: relative; z-index: 3;
  max-width: 1100px; width: 100%; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.cta__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(44px, 6.4vw, 104px); line-height: 1;
  letter-spacing: -.04em; color: #FFFFFF;
  margin: 32px 0 28px; text-wrap: balance;
}
.cta__title em { color: var(--terra-l); }
.cta__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.5vw, 23px); line-height: 1.5;
  color: rgba(255,255,255,.78);
  max-width: 620px; margin: 0 0 56px;
}
.cta__sub em { color: var(--terra-l); }
.cta__sig {
  margin-top: 80px;
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(232,162,132,.62);
}
.cta__sig .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--terra-l); opacity: .8; }

/* ============================================================================
   Lightbox
   ============================================================================ */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 6, 3, 0);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; visibility: hidden;
  transition: background .35s var(--ease), opacity .35s var(--ease), visibility 0s linear .35s;
  cursor: zoom-out;
}
.lb.open {
  background: rgba(10, 6, 3, .96);
  pointer-events: auto; opacity: 1; visibility: visible;
  transition: background .35s var(--ease), opacity .35s var(--ease), visibility 0s linear 0s;
}
.lb__stage {
  position: relative;
  width: min(92vw, 1480px);
  height: min(86vh, 920px);
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 60px 140px -40px rgba(0,0,0,.8);
  background: var(--ink-deep);
  opacity: 0; transform: scale(.96);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.lb.open .lb__stage { opacity: 1; transform: scale(1); }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(250,247,242,.08);
  border: 1px solid rgba(250,247,242,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); cursor: pointer;
  font-family: var(--font-display); font-weight: 400; font-size: 24px;
  z-index: 3;
}
.lb__nav:hover { background: rgba(250,247,242,.16); border-color: var(--terra-l); }
.lb__nav--prev { left: max(32px, calc(50vw - 740px - 80px)); }
.lb__nav--next { right: max(32px, calc(50vw - 740px - 80px)); }
.lb__close {
  position: absolute; top: 32px; right: 32px; z-index: 3;
  width: 44px; height: 44px;
  background: rgba(250,247,242,.06);
  border: 1px solid rgba(250,247,242,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); cursor: pointer;
  font-family: var(--font-display); font-weight: 300; font-size: 22px;
  line-height: 1;
}
.lb__close::before { content: "×"; transform: translateY(-2px); }
.lb__caption {
  position: absolute; left: 32px; right: 32px; bottom: 32px; z-index: 4;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: rgba(250,247,242,.92);
}
.lb__caption em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra-l); }
.lb__caption .meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: rgba(232,162,132,.7); text-transform: uppercase;
}

/* ============================================================================
   Reduced motion
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .mask-inner { transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .gallery__grid .ph, .case__gal .ph { opacity: 1 !important; transform: none !important; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1180px) {
  .hero { padding: 160px 40px 72px; }
  .hero__timestamp { display: none; }
  .why, .case, .faq, .cta { padding-left: 40px; padding-right: 40px; }
  .gallery__head { padding: 0 40px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery__grid .ph--big { grid-column: span 2; grid-row: span 2; }
  .why__body { grid-template-columns: 1fr; gap: 40px; }
  .why__stat { position: static; }
  .case__split { grid-template-columns: 1fr; }
  .case__photo-main { min-height: 460px; }
  .case__copy { border-left: none; border-top: 1px solid rgba(232,162,132,.18); padding: 48px 32px; }
  .case__gal { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .hero { padding: 130px 20px 64px; min-height: auto; }
  .hero__title { font-size: clamp(38px, 11vw, 64px); }
  .hero__meta { font-size: 10px; }
  .gallery { padding-top: 80px; }
  .gallery__head { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__grid .ph--big  { grid-column: span 2; grid-row: span 2; }
  .gallery__grid .ph--wide { grid-column: span 2; grid-row: span 1; }
  .gallery__grid .ph--tall { grid-column: span 1; grid-row: span 2; }
  .why, .case, .faq, .cta { padding-left: 20px; padding-right: 20px; padding-top: 120px; padding-bottom: 120px; }
  .case__gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .case__gal .ph--big, .case__gal .ph--wide { grid-column: span 2; }
  .case__gal .ph { grid-column: span 1; }
  .case__gal .ph--tall { grid-column: span 1; grid-row: span 2; }
  .faq__details > summary { grid-template-columns: 40px 1fr 28px; padding: 24px 4px; gap: 12px; }
  .faq__a p { padding-left: 52px; padding-right: 12px; }
  .lb__nav { width: 44px; height: 44px; font-size: 20px; }
  .lb__nav--prev { left: 10px; }
  .lb__nav--next { right: 10px; }
  .lb__caption { left: 16px; right: 16px; bottom: 16px; flex-direction: column; align-items: flex-start; }
}
/* ============================================================================
   Header — repris à l'identique de index.html (home.css)
   ============================================================================ */
.ai-quick-answer {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 22px 48px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background .4s var(--ease), color .4s var(--ease), padding .3s var(--ease);
  color: var(--paper);
}
.nav--paper { background: rgba(250, 247, 242, .75); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); color: var(--ink); padding: 16px 48px; border-bottom: 1px solid var(--line-s); }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .4s var(--ease); }
.nav--paper .nav__logo-img { filter: none; }
.nav__logo-text { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; line-height: 1; }
.nav__logo-text em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra-l); }
.nav--paper .nav__logo-text em { color: var(--terra); }

.nav__links { display: flex; gap: 36px; justify-content: center; }
.nav__link {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; bottom: 0; left: 50%; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease), left .3s var(--ease);
}
.nav__link:hover::after { width: 100%; left: 0; }
.nav__link.is-active::after { width: 100%; left: 0; }
.nav__link.is-active { color: var(--terra-l); }
.nav--paper .nav__link.is-active { color: var(--terra); }

.nav__right { justify-self: end; display: inline-flex; align-items: center; gap: 14px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  background: var(--terra); color: var(--paper);
  padding: 11px 18px; border-radius: 2px;
  transition: background .2s var(--ease);
}
.nav__cta:hover { background: var(--terra-d); }
.nav__cta .arrow { transition: transform .25s var(--ease); display: inline-block; }
.nav__cta:hover .arrow { transform: translate(2px, -2px); }

.menu-trigger {
  background: transparent; border: 1px solid rgba(250,247,242,.35);
  border-radius: 2px; padding: 9px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--paper);
  cursor: pointer; transition: all .35s var(--ease);
}
.nav--paper .menu-trigger { color: var(--ink); border-color: var(--line); }
.menu-trigger:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav--paper .menu-trigger:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu-trigger-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra-l); transition: transform .35s var(--ease); }
.nav--paper .menu-trigger-dot { background: var(--terra); }
.menu-trigger:hover .menu-trigger-dot { transform: scale(1.3); }

/* ============================================================================
   Sticky CTA — repris à l'identique de index.html (home.css)
   ============================================================================ */
.sticky-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terra); color: var(--paper);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 14px 22px; border-radius: 2px;
  box-shadow: 0 20px 40px -16px rgba(143, 59, 32, .55);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .2s var(--ease);
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--terra-d); }
.sticky-cta .arrow { display: inline-block; transition: transform .25s var(--ease); }
.sticky-cta:hover .arrow { transform: translate(2px, -2px); }

/* ============================================================================
   Menu fullscreen overlay — repris à l'identique de index.html (home.css)
   ============================================================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 180;
  background: var(--ink); color: var(--paper);
  background-image: radial-gradient(circle at 50% 50%, rgba(181,74,42,.08) 0%, transparent 60%);
  padding: 120px 60px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.menu-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
}
.menu-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; max-width: 1440px; margin: 0 auto; width: 100%; flex: 1; align-items: start; }
.menu-eyebrow { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(250,247,242,.5); margin-bottom: 36px; opacity: 0; transform: translateY(8px); transition: all .4s var(--ease) .1s; }
.menu-overlay.is-open .menu-eyebrow { opacity: 1; transform: translateY(0); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { opacity: 0; transform: translateY(20px); transition: all .5s var(--ease); }
.menu-overlay.is-open .menu-list li { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-list li:nth-child(1) { transition-delay: .20s; }
.menu-overlay.is-open .menu-list li:nth-child(2) { transition-delay: .26s; }
.menu-overlay.is-open .menu-list li:nth-child(3) { transition-delay: .32s; }
.menu-overlay.is-open .menu-list li:nth-child(4) { transition-delay: .38s; }
.menu-overlay.is-open .menu-list li:nth-child(5) { transition-delay: .44s; }
.menu-overlay.is-open .menu-list li:nth-child(6) { transition-delay: .50s; }
.menu-list a {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.1; letter-spacing: -.02em;
  color: var(--paper); display: inline-flex; align-items: baseline; gap: 12px;
  padding: 14px 0; transition: color .3s var(--ease);
}
.menu-list a:hover { color: var(--terra-l); }
.menu-list .menu-arrow { font-size: .5em; opacity: .5; transition: transform .35s var(--ease); }
.menu-list a:hover .menu-arrow { transform: translate(3px, -3px); opacity: 1; }
.menu-list-sub a { font-size: clamp(20px, 2vw, 28px); font-weight: 400; padding: 8px 0; }

.menu-footer {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding-top: 60px; border-top: 1px solid rgba(250,247,242,.1);
  opacity: 0; transform: translateY(20px);
  transition: all .5s var(--ease) .5s;
}
.menu-overlay.is-open .menu-footer { opacity: 1; transform: translateY(0); }
.menu-footer-label { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 22px; color: rgba(250,247,242,.75); margin-bottom: 16px; }
.menu-footer-meta { font-family: var(--font-body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,247,242,.5); line-height: 2; }
.menu-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--terra); color: var(--paper); padding: 14px 22px; border-radius: 2px; font-family: var(--font-body); font-weight: 500; font-size: 13px; transition: background .25s var(--ease); }
.menu-cta:hover { background: var(--terra-d); }
.menu-cta .arr { font-size: 14px; transition: transform .25s var(--ease); }
.menu-cta:hover .arr { transform: translate(2px, -2px); }
.menu-footer .footer-social { display: flex; gap: 16px; margin-top: 18px; }
.menu-footer .footer-social a { color: rgba(250,247,242,.6); transition: color .25s var(--ease); }
.menu-footer .footer-social a:hover { color: var(--terra-l); }

/* ============================================================================
   Footer — repris à l'identique de index.html (home.css)
   ============================================================================ */
footer.site-footer {
  background: var(--ink); color: rgba(250,247,242,.3);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer.site-footer .wrap { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
footer.site-footer .seo-footer { max-width: 900px; margin: 0 auto; padding: 0 20px 40px; border-bottom: 1px solid rgba(250,247,242,.08); margin-bottom: 30px; }
footer.site-footer .seo-footer p { font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 1.7; color: rgba(250,247,242,.35); letter-spacing: .01em; text-align: center; max-width: 72ch; margin: 0 auto; }
footer.site-footer .footer-social { display: flex; gap: 18px; align-items: center; margin: 16px 0; }
footer.site-footer .social-icon { color: rgba(250,247,242,.5); transition: color .25s var(--ease); }
footer.site-footer .social-icon:hover { color: var(--terra-l); }
footer.site-footer .row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-family: var(--font-body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
footer.site-footer .row em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--terra-l); opacity: .55; }
footer.site-footer .row a { color: inherit; opacity: .7; transition: opacity .25s; }
footer.site-footer .row a:hover { opacity: 1; }

/* ============================================================================
   Header / menu / footer — responsive (repris de home.css)
   ============================================================================ */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__logo-img { height: 24px; }
  .nav__logo-text { font-size: 15px; }
  .nav__right { gap: 10px; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .menu-trigger { padding: 8px 12px; font-size: 11px; }
  .menu-trigger-label { display: none; }

  footer.site-footer .wrap { padding: 0 24px; }
  footer.site-footer .row { flex-direction: column; align-items: flex-start; gap: 12px; }

  .sticky-cta { bottom: 18px; right: 18px; padding: 12px 18px; font-size: 12px; }

  .menu-overlay { padding: 100px 24px 32px; }
  .menu-inner { grid-template-columns: 1fr; gap: 48px; }
  .menu-footer { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
}

@media (max-width: 480px) {
  .menu-overlay { padding: 80px 18px 24px; }
}


/* Logo wordmark caché (icône seule) */
.nav__logo-text { display: none !important; }


/* ─── Fix navbar : espace entre liens centraux et boutons droite ─── */
.nav { column-gap: 32px; }
.nav__links { gap: 28px !important; }
.nav__right { padding-left: 8px; }

/* ─── Bouton fermer (X) défensif dans le menu plein écran ─── */
.menu-close-x {
  position: absolute; top: 24px; right: 24px;
  background: transparent;
  border: 1px solid rgba(250, 247, 242, .4);
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper, #FAF7F2); cursor: pointer;
  z-index: 50;
  transition: background .25s, border-color .25s, transform .25s;
}
.menu-close-x:hover {
  background: rgba(232, 162, 132, .12);
  border-color: var(--terra-l, #E8A284);
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .menu-close-x { top: 14px; right: 14px; width: 40px; height: 40px; }
}
