/* ============================================================================
   Easypeak — Home refonte v3 (Claude Design)
   Combine: colors_and_type.css (tokens) + styles.css (homepage)
   Adjustments: mobile fallback for scroll-lock sections, cursor accessibility,
   hamburger nav button.
   ============================================================================ */

/* ============================================================================
   DESIGN TOKENS — Colors & Type
   ============================================================================ */
:root {
  /* Paper (warm neutral grounds) */
  --paper:        #FAF7F2;
  --paper-2:      #F2ECE2;
  --paper-3:      #EDE4D4;

  /* Ink (deep warm blacks) */
  --ink:          #1C1613;
  --ink-2:        #2A221C;
  --muted:        #6B5E52;

  /* Terra (signature accent — ≤15% use) */
  --terra:        #B54A2A;
  --terra-d:      #8F3B20;
  --terra-l:      #E8A284;

  /* Neutrals */
  --sand:         #D9C9B0;
  --line:         rgba(28, 22, 19, 0.11);
  --line-s:       rgba(28, 22, 19, 0.06);
  --line-strong:  rgba(28, 22, 19, 0.22);

  /* Type families */
  --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;

  /* Motion */
  --ease:       cubic-bezier(.2,.6,.2,1);
  --dur-fast:   140ms;
  --dur-base:   240ms;
  --dur-slow:   480ms;
}

/* ============================================================================
   Base
   ============================================================================ */
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  /* Accessibility: keep system cursor visible. Custom cursor is purely decorative. */
  cursor: auto;
}
body.no-cursor .cursor, body.no-cursor .cursor-trail { display: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--terra); color: var(--paper); }

/* Screen-reader only */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================================
   AI Quick Answer (invisible, for LLM crawlers)
   ============================================================================ */
.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;
}

/* ============================================================================
   Custom cursor (decorative — fallback to system cursor for accessibility)
   ============================================================================ */
.cursor, .cursor-trail {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; will-change: transform;
}
.cursor {
  width: 8px; height: 8px; background: var(--terra);
  margin: -4px 0 0 -4px;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), margin .25s var(--ease);
}
.cursor.cursor--label {
  width: 96px; height: 96px; margin: -48px 0 0 -48px;
  display: flex; align-items: center; justify-content: center;
}
.cursor .label {
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--paper);
  opacity: 0; transition: opacity .2s var(--ease) .05s; white-space: nowrap;
}
.cursor.cursor--label .label { opacity: 1; }
.cursor-trail {
  width: 28px; height: 28px;
  border: 1px solid rgba(181, 74, 42, .55);
  margin: -14px 0 0 -14px;
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease), margin .25s var(--ease);
}
.cursor.cursor--label ~ .cursor-trail { opacity: 0; }

/* ============================================================================
   Reusable dark BG primitives (hero, s03, s06, s10)
   ============================================================================ */
.bg-particles, .bg-halo, .bg-grain, .bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
}
.bg-halo {
  background: radial-gradient(
    circle var(--halo-size, 70vh) at var(--halo-x, 50%) var(--halo-y, 50%),
    var(--halo-color, rgba(181, 74, 42, .35)) 0%,
    transparent 70%
  );
  transition: background .9s var(--ease);
  mix-blend-mode: screen;
}
.bg-grain {
  opacity: .025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><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.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.bg-vignette {
  background: radial-gradient(ellipse at center, transparent 50%, rgba(26,15,10,.6) 100%);
}

/* ============================================================================
   Navbar
   ============================================================================ */
.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); }

/* Hamburger menu trigger */
.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); }
.menu-burger { display: none; }

/* Sticky CTA (preserved from current site) */
.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 (preserved from current site)
   ============================================================================ */
.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); }

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

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

/* ============================================================================
   01 Hero — dark + particles + halo
   ============================================================================ */
.hero {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 720px; width: 100%;
  background: #1A0F0A; color: var(--paper);
  --halo-color: rgba(181, 74, 42, .45);
  --halo-size: 75vh;
  --halo-x: 35%;
  --halo-y: 55%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 64px;
}
.hero__inner { position: relative; z-index: 3; max-width: 1280px; width: 100%; }
.hero__eyebrow { opacity: 0; transform: translateY(8px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hero__eyebrow.in { opacity: 1; transform: translateY(0); }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 7.5vw, 132px);
  line-height: .96; letter-spacing: -.045em;
  margin: 28px 0 32px; text-wrap: balance;
  color: #FFFFFF;
}
.hero__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra-l); letter-spacing: -.025em;
}
.hero__sub {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px); color: rgba(255,255,255,.82);
  max-width: 540px; line-height: 1.45;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease) 1s, transform .8s var(--ease) 1s;
}
.hero__sub.in { opacity: 1; transform: translateY(0); }
.hero__ctas {
  display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease) 1.4s, transform .8s var(--ease) 1.4s;
}
.hero__ctas.in { opacity: 1; transform: translateY(0); }

.btn-magnetic {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  background: var(--terra); color: var(--paper);
  padding: 18px 26px; border-radius: 2px; border: none;
  transition: background .25s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn-magnetic:hover { background: var(--terra-d); box-shadow: 0 20px 50px -16px rgba(143,59,32,.65); }
.btn-magnetic .arrow { transition: transform .25s var(--ease); display: inline-block; }
.btn-magnetic:hover .arrow { transform: translate(3px, -3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: var(--paper); padding: 18px 8px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.7); z-index: 4;
  opacity: 0; transition: opacity 1s var(--ease) 2s;
}
.hero__scroll.in { opacity: 1; }
.hero__scroll .line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.7), transparent);
  background-size: 100% 200%; animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { background-position: 0% 100%; } 100% { background-position: 0% -100%; } }

/* ============================================================================
   03 Prestations — grille 3 cards avec fonds visuels discrets
   ============================================================================ */
.s03 {
  background: var(--paper);
  padding: 90px 64px 120px;
  position: relative;
  overflow: hidden;
}
.s03__inner { max-width: 1440px; margin: 0 auto; }
.s03__head { text-align: center; margin-bottom: 96px; }
.s03__head .eyebrow { color: var(--terra); justify-content: center; }
.s03__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 1.04;
  letter-spacing: -.03em; color: var(--ink);
  margin: 28px auto 24px; max-width: 1000px; text-wrap: balance;
}
.s03__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra); letter-spacing: -.015em;
}
.s03__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5;
  color: var(--muted); max-width: 620px; margin: 0 auto;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.s03__sub.in { opacity: 1; transform: translateY(0); }

.s03__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Card commune ──────────────────────────────────────────────────────── */
.s03__card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  color: var(--paper);
  background: #1A0F0A;
  isolation: isolate;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.s03__card.in { opacity: 1; transform: translateY(0); }
.s03__card.in:nth-child(2) { transition-delay: .12s; }
.s03__card.in:nth-child(3) { transition-delay: .24s; }
.s03__card.in:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -24px rgba(143, 59, 32, .45);
}

.s03__card-bg {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  pointer-events: none;
}
.s03__card-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 15, 10, .55) 0%, rgba(26, 15, 10, .85) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(181, 74, 42, .35) 0%, transparent 60%);
}
.s03__card-grain {
  position: absolute; inset: 0; opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><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>");
}

.s03__card-body {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  padding: 40px 36px 36px;
}
.s03__card-num {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--terra-l); opacity: .9;
  margin-bottom: 20px;
}
.s03__card-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 3vw, 48px); line-height: 1;
  letter-spacing: -.035em; color: var(--paper);
  margin: 0 0 18px; text-transform: uppercase;
  word-break: keep-all; overflow-wrap: normal;
}
.s03__card-title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  color: var(--terra-l); text-transform: none; letter-spacing: -.015em;
}
.s03__card-desc {
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; line-height: 1.45;
  color: rgba(250, 247, 242, .82);
  max-width: 280px; margin: 0;
}
.s03__card-foot {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 162, 132, .25);
  display: flex; flex-direction: column; gap: 6px;
}
.s03__card-price {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra-l); opacity: .85;
}
.s03__card-cta {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; color: var(--paper);
  display: inline-flex; align-items: center; gap: 6px;
}
.s03__card-cta .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.s03__card:hover .s03__card-cta .arrow {
  transform: translate(3px, -3px);
}

/* ─── Card 01 : Production vidéo (fond uni terracotta sombre) ───────────── */
.s03__card--video .s03__card-bg {
  background: radial-gradient(ellipse at 60% 30%, #3a1f15 0%, #1A0F0A 60%);
}

/* ─── Card 02 : Pack photos (une seule photo plein cadre) ───────────────── */
.s03__card--photos .s03__card-photo {
  position: absolute; inset: 0;
  background-image: url('/assets/photos-site/DAM_6173.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2A1A12;
  opacity: .65;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  will-change: transform;
}
.s03__card--photos:hover .s03__card-photo {
  opacity: .8;
  transform: scale(1.04);
}

.s03__card--photos .s03__card-veil {
  background:
    linear-gradient(180deg, rgba(26, 15, 10, .35) 0%, rgba(26, 15, 10, .75) 60%, rgba(26, 15, 10, .92) 100%);
}

/* ─── Card 03 : Gestion réseaux (mur de Reels 9/16) ─────────────────────── */
.s03__card--reseaux .s03__card-reels {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.s03__card--reseaux .s03__reel {
  position: relative;
  background: #1A0F0A;
  opacity: .5;
  transition: opacity .6s var(--ease);
  overflow: hidden;
}
.s03__card--reseaux .s03__reel iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100%;
  max-width: none;
  border: 0;
  pointer-events: none;
}
.s03__card--reseaux:hover .s03__reel {
  opacity: .65;
}
.s03__card--reseaux .s03__card-veil {
  background:
    linear-gradient(180deg, rgba(26, 15, 10, .5) 0%, rgba(26, 15, 10, .85) 65%, rgba(26, 15, 10, .94) 100%);
}

/* Tag "● LIVE" discret signale que les Reels jouent vraiment */
.s03__card--reseaux::after {
  content: "● LIVE";
  position: absolute;
  top: 24px; right: 24px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: .25em;
  color: var(--terra-l); opacity: .7;
  padding: 4px 10px;
  background: rgba(26, 15, 10, .55);
  border: 1px solid rgba(232, 162, 132, .2);
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* ─── Responsive : tablette ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .s03__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .s03__card { aspect-ratio: 4 / 5; }
  .s03__card-body { padding: 32px 28px 28px; }
  .s03__card-title { font-size: clamp(32px, 4.5vw, 42px); }
  .s03__card-desc { font-size: 15px; }
}

/* ─── Mobile : stack vertical ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .s03 { padding: 100px 24px 120px; }
  .s03__head { margin-bottom: 56px; }
  .s03__grid { grid-template-columns: 1fr; gap: 20px; }
  .s03__card { aspect-ratio: 4 / 5; }
  .s03__card-body { padding: 32px 28px 28px; }
  .s03__card-title { font-size: clamp(36px, 9vw, 48px); }
  .s03__card-desc { max-width: 100%; }

  .s03__card--reseaux .s03__card-reels { display: none; }
  .s03__card--reseaux .s03__card-bg {
    background: radial-gradient(ellipse at 30% 70%, #3a1f15 0%, #1A0F0A 60%);
  }
  .s03__card--reseaux::after { display: none; }
}

/* ─── Reduced motion : pas d'animations ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .s03__card { opacity: 1; transform: none; transition: none; }
  .s03__card:hover { transform: none; box-shadow: none; }
  .s03__card--photos .s03__card-photo { transition: none; }
  .s03__card--reseaux .s03__reel { transition: none; }
}

/* ============================================================================
   04 Notre méthode — palier de respiration, scroll vertical classique
   ============================================================================ */
.method {
  background: var(--paper);
  padding: 100px 64px 130px;
  position: relative;
  overflow: hidden;
}
.method__inner { max-width: 1240px; margin: 0 auto; position: relative; }
.method__head { text-align: center; margin-bottom: 160px; }
.method__head .eyebrow { color: var(--terra); justify-content: center; }
.method__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0; letter-spacing: -.035em;
  color: var(--ink); margin: 28px auto 32px;
  max-width: 1100px; text-wrap: balance;
}
.method__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra); }
.method__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.5;
  color: var(--muted); max-width: 600px; margin: 0 auto;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.method__sub.in { opacity: 1; transform: translateY(0); }

/* ─── Méthode — Steps en grid 2 colonnes alternées ───────────────────── */
.method__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.method__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.method__step.in {
  opacity: 1;
  transform: translateY(0);
}

/* Step pair : inverser l'ordre (texte à gauche, numéro à droite) */
.method__step--reverse .method__num {
  order: 2;
  text-align: left;
}
.method__step--reverse .method__content {
  order: 1;
  text-align: right;
}
.method__step--reverse .method__content .method__tag {
  align-self: flex-end;
}

/* Numéro géant */
.method__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 18vw, 280px);
  line-height: .85;
  letter-spacing: -.06em;
  color: var(--terra-l);
  opacity: .7;
  text-align: right;
  user-select: none;
  pointer-events: none;
}

/* Contenu (meta + titre + paragraphe + tag) */
.method__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
}
.method__step--reverse .method__content {
  align-items: flex-end;
  margin-left: auto;
}

.method__meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s var(--ease) .15s, transform .6s var(--ease) .15s;
}
.method__step.in .method__meta { opacity: 1; transform: translateY(0); }

.method__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 22px;
  line-height: 1.15;
}
.method__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.method__step .method__h .mask-inner {
  transition-delay: .3s;
}

.method__p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 28px;
  opacity: 0;
  transition: opacity .6s var(--ease) .45s;
}
.method__step.in .method__p { opacity: 1; }

.method__tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--terra);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 4px;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .6s var(--ease) .6s, transform .6s var(--ease) .6s;
}
.method__step.in .method__tag {
  opacity: 1;
  transform: scale(1);
}

/* ─── Responsive : tablette ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .method__steps { gap: 70px; }
  .method__step { gap: 40px; }
  .method__num { font-size: clamp(100px, 15vw, 200px); }
}

/* ─── Responsive : mobile (stack vertical, numéro au-dessus) ───────────── */
@media (max-width: 768px) {
  .method__steps { gap: 60px; }
  .method__step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .method__step--reverse .method__num,
  .method__step--reverse .method__content {
    order: initial;
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
  }
  .method__num {
    font-size: clamp(80px, 22vw, 140px);
    text-align: left;
  }
  .method__content {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method__step,
  .method__meta,
  .method__p,
  .method__tag {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================================
   05 CLIENTS — Grille 3 cards photo côte à côte
   ============================================================================ */
.s06 {
  background: var(--paper);
  padding: 160px 64px 180px;
  position: relative;
  overflow: hidden;
}
.s06__inner { max-width: 1440px; margin: 0 auto; }
.s06__head { text-align: center; margin-bottom: 96px; }
.s06__head .eyebrow { color: var(--terra); justify-content: center; display: flex; }

.s06__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 1.04;
  letter-spacing: -.03em; color: var(--ink);
  margin: 28px auto 24px; max-width: 1000px; text-wrap: balance;
}
.s06__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra); letter-spacing: -.015em;
}
.s06__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5;
  color: var(--muted); max-width: 620px; margin: 0 auto;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.s06__sub.in { opacity: 1; transform: translateY(0); }

.s06__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Card commune ──────────────────────────────────────────────────────── */
.s06__card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  color: var(--paper);
  background: #1A0F0A;
  isolation: isolate;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.s06__card.in { opacity: 1; transform: translateY(0); }
.s06__card.in:nth-child(2) { transition-delay: .12s; }
.s06__card.in:nth-child(3) { transition-delay: .24s; }
.s06__card.in:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -24px rgba(143, 59, 32, .45);
}

.s06__card-bg {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  pointer-events: none;
}
.s06__card-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1A0F0A;
  opacity: .7;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  will-change: transform;
}
.s06__card:hover .s06__card-photo {
  opacity: .85;
  transform: scale(1.04);
}
.s06__card-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 15, 10, .25) 0%, rgba(26, 15, 10, .75) 55%, rgba(26, 15, 10, .95) 100%);
}
.s06__card-grain {
  position: absolute; inset: 0; opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><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>");
}

.s06__card-body {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  padding: 36px 32px 32px;
}
.s06__card-num {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--terra-l); opacity: .9;
  margin-bottom: 16px;
}
.s06__card-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 2.6vw, 42px); line-height: 1;
  letter-spacing: -.03em; color: var(--paper);
  margin: 0 0 18px;
}
.s06__card-stars {
  font-size: 14px; letter-spacing: .15em;
  color: var(--terra);
  margin-bottom: 14px;
}
.s06__card-tag {
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px; line-height: 1.4;
  color: var(--terra-l);
  margin: 0;
}
.s06__card-quote {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 162, 132, .25);
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; line-height: 1.5;
  color: rgba(250, 247, 242, .75);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .s06__grid { gap: 18px; }
  .s06__card { aspect-ratio: 4 / 5; }
  .s06__card-body { padding: 28px 24px 24px; }
  .s06__card-name { font-size: clamp(26px, 3vw, 36px); }
}

@media (max-width: 768px) {
  .s06 { padding: 100px 24px 120px; }
  .s06__head { margin-bottom: 56px; }
  .s06__grid { grid-template-columns: 1fr; gap: 20px; }
  .s06__card { aspect-ratio: 4 / 5; }
  .s06__card-body { padding: 32px 28px 28px; }
  .s06__card-name { font-size: clamp(32px, 8vw, 44px); }
}

@media (prefers-reduced-motion: reduce) {
  .s06__card { opacity: 1; transform: none; transition: none; }
  .s06__card:hover { transform: none; box-shadow: none; }
  .s06__card-photo { transition: none; }
  .s06__sub { opacity: 1; transform: none; }
}


/* ============================================================================
   06bis — Citation Johan — fond noir terracotta (comme le hero)
   ============================================================================ */
.s06bis {
  position: relative;
  background: #1A0F0A; color: var(--paper);
  padding: 160px 64px; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.s06bis::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 80vh 70vh at 50% 50%,
    rgba(181, 74, 42, .55) 0%,
    rgba(143, 59, 32, .25) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.s06bis::after {
  content: '';
  position: absolute; inset: 0;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><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>");
  pointer-events: none;
  z-index: 0;
}
.s06bis > * {
  position: relative;
  z-index: 1;
}
.s06bis .bg-particles {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.s06bis__quote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(32px, 4.5vw, 72px); line-height: 1.18; letter-spacing: -.015em;
  max-width: 1100px; color: var(--paper); margin: 0; text-wrap: balance;
  position: relative; z-index: 2;
}
.s06bis__hook {
  position: absolute; top: 80px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-style: italic; font-size: 144px; line-height: 1;
  color: rgba(250,247,242,.15); z-index: 1;
}
.s06bis__attr {
  font-family: var(--font-body); font-size: 13px; letter-spacing: .08em;
  color: rgba(250,247,242,.7); margin-top: 64px; position: relative; z-index: 2;
}

/* ============================================================================
   07 Portail client — DÉPLACÉ vers /gestion-reseaux (gardé ici pour migration)
   ============================================================================ */
.s07 {
  background: var(--ink); color: var(--paper);
  padding: 140px 64px; min-height: 100vh;
  display: flex; align-items: center;
}
.s07__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 96px; align-items: center; width: 100%;
}
.s07__visual {
  position: relative; aspect-ratio: 16 / 10; width: 100%;
  background:
    linear-gradient(180deg, rgba(26,15,10,.2) 0%, rgba(26,15,10,.55) 100%),
    radial-gradient(ellipse at 30% 40%, #E8A284 0%, #B54A2A 35%, #2A221C 100%);
  border-radius: 6px;
  box-shadow: 0 40px 80px -30px rgba(143,59,32,.6);
  overflow: hidden;
}
.s07__visual::after {
  content: "Capture portail client"; position: absolute; bottom: 18px; left: 22px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.s07__visual::before {
  content: ""; position: absolute; top: 20px; left: 20px; right: 20px; bottom: 40px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, transparent 30%),
    repeating-linear-gradient(180deg, transparent 0px, transparent 30px, rgba(255,255,255,.04) 30px, rgba(255,255,255,.04) 31px);
}
.s07__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4vw, 64px); line-height: 1.05; letter-spacing: -.025em;
  color: #FFFFFF; margin: 24px 0 40px;
}
.s07__h em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra-l); }
.s07__features { display: flex; flex-direction: column; gap: 28px; }
.s07__feature { display: grid; grid-template-columns: 36px 1fr; gap: 16px; }
.s07__feature .num { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--terra-l); padding-top: 2px; }
.s07__feature .body strong { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--paper); display: block; margin-bottom: 4px; }
.s07__feature .body em { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,.65); }
.s07__note { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 40px; }

/* ============================================================================
   08 Équipe
   ============================================================================ */
.s08 {
  background: var(--paper); padding: 160px 64px;
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.s08__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 88px); line-height: 1.04; letter-spacing: -.03em;
  color: var(--ink); margin: 0 0 96px; text-align: center; max-width: 1100px;
}
.s08__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra); }
.s08__cards { display: flex; gap: 80px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
.s08__card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.s08__photo {
  width: 280px; height: 280px; border-radius: 50%; overflow: hidden;
  background: var(--paper-3); position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.s08__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.s08__card:hover .s08__photo { transform: scale(1.05); box-shadow: 0 30px 60px -20px rgba(143,59,32,.55); }
.s08__name {
  font-family: var(--font-display); font-weight: 500; font-size: 24px;
  letter-spacing: -.01em; color: var(--ink); margin-top: 28px;
}
.s08__role { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--muted); margin-top: 4px; }

.s08__manifesto {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4;
  color: var(--ink); max-width: 760px; text-align: center; margin: 88px auto 0;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.s08__manifesto.in { opacity: 1; transform: translateY(0); }

.s08__member-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.s08__member-link:hover {
  transform: translateY(-4px);
}
.s08__member-link:hover img {
  filter: brightness(1.05);
}

/* ============================================================================
   09 FAQ
   ============================================================================ */
.s09 {
  background: var(--paper-2); padding: 160px 64px;
}
.s09__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 35% 65%; gap: 80px; align-items: flex-start; }
.s09__left { position: sticky; top: 120px; }
.s09__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 3.5vw, 56px); line-height: 1.04; letter-spacing: -.025em;
  color: var(--ink); margin: 24px 0 18px;
}
.s09__sub { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--muted); max-width: 360px; }
.s09__list { display: flex; flex-direction: column; }
.s09__item { border-bottom: 1px solid var(--line); }
.s09__item:first-child { border-top: 1px solid var(--line); }
.s09__item > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  letter-spacing: -.01em; color: var(--ink);
}
.s09__item > summary::-webkit-details-marker { display: none; }
.s09__item > summary .chev {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 22px;
  transition: transform .35s var(--ease);
}
.s09__item[open] > summary .chev { transform: rotate(45deg); }
.s09__item > div {
  padding: 0 0 30px;
  font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--ink-2);
  max-width: 640px;
}
.s09__item > div em { font-family: var(--font-serif); font-style: italic; color: var(--terra); }

/* ============================================================================
   10 CTA final — particle assembly
   ============================================================================ */
.s10 {
  position: relative; min-height: 100vh;
  background: #1A0F0A; color: var(--paper); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 48px 80px;
  --halo-x: 50%; --halo-y: 50%; --halo-color: rgba(181,74,42,.35); --halo-size: 80vh;
}
.s10__inner { position: relative; z-index: 3; text-align: center; max-width: 1100px; }
.s10__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 96px); line-height: 1.04; letter-spacing: -.035em;
  color: #FFFFFF; margin: 0 0 28px; text-wrap: balance;
}
.s10__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra-l); }
.s10__sub {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,.78); max-width: 620px; margin: 0 auto 64px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.s10__sub.in { opacity: 1; transform: translateY(0); }
.s10__circle {
  position: relative; width: 200px; height: 200px; border-radius: 50%;
  background: var(--terra); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--paper);
  letter-spacing: .02em;
  box-shadow: 0 40px 80px -24px rgba(143,59,32,.7);
  transition: transform .35s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.s10__circle:hover { background: var(--terra-d); transform: scale(1.06); }
.s10__circle .alt { position: absolute; opacity: 0; transition: opacity .25s var(--ease); }
.s10__circle:hover .text { opacity: 0; }
.s10__circle:hover .alt { opacity: 1; }
.s10__footer-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250, 247, 242, .6);
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
.s10__footer-meta a {
  color: var(--paper);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.s10__footer-meta a:hover {
  color: var(--terra-l);
}
.s10__sep {
  opacity: .4;
}

/* ============================================================================
   Footer (preserved from current site)
   ============================================================================ */
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; }

/* ============================================================================
   Mobile + tablet
   ============================================================================ */
@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; }

  .hero { padding: 0 24px; min-height: 100vh; }
  .hero__sub { font-size: 17px; }

  .method { padding: 120px 24px 140px; }
  .method__head { margin-bottom: 100px; }

  .s06bis { padding: 100px 24px; }
  .s06bis__hook { font-size: 80px; top: 40px; }
  .s06bis__attr { margin-top: 40px; }

  .s07 { padding: 100px 24px; }
  .s07__inner { grid-template-columns: 1fr; gap: 56px; }

  .s08 { padding: 100px 24px; }
  .s08__title { margin-bottom: 64px; }
  .s08__cards { gap: 48px; }
  .s08__photo { width: 180px; height: 180px; }
  .s08__manifesto { margin-top: 64px; }

  .s09 { padding: 100px 24px; }
  .s09__inner { grid-template-columns: 1fr; gap: 56px; }
  .s09__left { position: static; }

  .s10 { padding: 100px 24px 60px; }
  .s10__circle { width: 170px; height: 170px; }
  .s10__footer-meta { font-size: 12px; gap: 12px; margin-top: 32px; }

  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 */
  .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) {
  .hero { padding: 0 18px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-magnetic, .btn-ghost { justify-content: center; }
  .method, .s06bis, .s07, .s08, .s09, .s10 { padding-left: 18px; padding-right: 18px; }
  .menu-overlay { padding: 80px 18px 24px; }
}

/* Reduced motion — désactive animations sur tout le site */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .mask-inner { transform: translateY(0) !important; }
}

/* 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; }
}
