/* ============================================================
   Gabriel Werlen — Conférencier Mentaliste
   Design language: éditorial luxe · Didone + grotesque · or sur encre
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  /* Neutrals */
  --ink: #0b0b0c;
  --ink-2: #131316;
  --ink-3: #1c1c20;
  --paper: #f4f0e7;        /* warm ivory page */
  --paper-2: #ece6da;
  --cream: #faf7f0;
  --white: #ffffff;

  /* Text */
  --text: #18181a;          /* on paper */
  --text-soft: #56524b;
  --muted: #837e74;
  --on-ink: #efece4;        /* on dark */
  --on-ink-soft: #b0aba0;
  --on-ink-muted: #79756c;

  /* Accent (overridable by Tweaks) */
  --gold: #c8a24b;
  --gold-bright: #e0bd66;
  --gold-deep: #9c7a2c;
  --accent: var(--gold);
  --accent-bright: var(--gold-bright);
  --accent-deep: var(--gold-deep);
  --accent-tint: rgba(200, 162, 75, 0.12);

  /* Lines */
  --line: rgba(20, 18, 14, 0.14);
  --line-soft: rgba(20, 18, 14, 0.08);
  --line-dark: rgba(239, 236, 228, 0.16);
  --line-dark-soft: rgba(239, 236, 228, 0.08);

  /* Type */
  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --display-alt: "Cormorant Garamond", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  /* Metrics */
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1240px;
  --maxw-wide: 1480px;
  --radius: 2px;
  --radius-pill: 100px;
  --section-y: clamp(5rem, 11vw, 10rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 34px 70px -42px rgba(20, 16, 8, 0.42);
  --shadow-photo: 0 40px 90px -50px rgba(0, 0, 0, 0.8);
}

/* ---------- Skip link ---------- */
.skip-link { position: absolute; top: -999px; left: 1rem; z-index: 9999; padding: 0.6em 1.2em; background: var(--ink); color: var(--on-ink); font-size: 0.9rem; font-weight: 600; border-radius: var(--radius); text-decoration: none; white-space: nowrap; }
.skip-link:focus { top: 1rem; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section-index {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Headings ---------- */
.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
}
h1, h2, h3 { font-family: var(--display); font-weight: 500; margin: 0; }
.h-section {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0;
}
.serif-italic { font-style: italic; }
.accent-text { color: var(--accent-deep); }
.accent-text-bright { color: var(--accent-bright); }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-soft);
  font-weight: 400;
  max-width: 40ch;
  text-wrap: pretty;
}
p { text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  padding: 1.05em 1.7em;
  border-radius: var(--radius);
  transition: all 0.45s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--on-ink);
}
.btn--primary:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.btn--accent {
  background: var(--accent);
  color: var(--ink);
}
.btn--accent:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 14px 34px -16px var(--accent-deep); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.btn--on-dark.btn--ghost { color: var(--on-ink); box-shadow: inset 0 0 0 1px var(--line-dark); }
.btn--on-dark.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--accent); color: var(--accent-bright); }
.btn .arrow { transition: transform 0.45s var(--ease); display: inline-flex; align-items: center; position: relative; top: 1px; }
.btn:hover .arrow { transform: translateX(4px); }

/* Text link with underline reveal */
.link-underline {
  position: relative;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 2px;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline .arrow { transition: transform 0.45s var(--ease); }
.link-underline:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s;
}
.nav__inner {
  max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter);
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 0.55rem;
}
.nav__logo .gw-mark {
  font-style: italic;
  color: var(--accent);
}
.nav__links { display: flex; align-items: center; gap: 2.1rem; flex-wrap: nowrap; }
.nav__link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  position: relative; padding: 0.3em 0;
  transition: color 0.3s;
  opacity: 0.85;
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav__item-drop { position: relative; }
.nav__link--drop { display: inline-flex; align-items: center; gap: 0.4em; cursor: pointer; }
.nav__caret { transition: transform 0.35s var(--ease); opacity: 0.7; }
.nav__item-drop.open .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 290px; background: var(--ink-2); color: var(--on-ink);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 0.7rem; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 120;
}
.nav__item-drop.open .nav__dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav__dropdown::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav__dropdown-label { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-ink-muted); padding: 0.5rem 0.8rem 0.7rem; }
.nav__drop-link {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.75rem 0.8rem; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 500; opacity: 1;
  transition: background 0.3s, color 0.3s;
}
.nav__drop-link:hover { background: var(--ink-3); color: var(--accent-bright); }
.nav__drop-n { font-family: var(--display); font-style: italic; color: var(--accent); font-size: 0.85rem; }
.nav__drop-arrow { margin-left: auto; opacity: 0; transform: translateX(-4px); transition: 0.3s; color: var(--accent-bright); }
.nav__drop-link:hover .nav__drop-arrow { opacity: 1; transform: none; }
.nav__drop-all {
  display: block; margin-top: 0.4rem; padding: 0.8rem; text-align: center;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--accent-bright);
  border-top: 1px solid var(--line-dark-soft);
}
.nav__drop-all:hover { color: var(--accent); }

.nav__cta {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.78em 1.35em; border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

/* nav over dark hero */
.nav--transparent { color: var(--on-ink); }
.nav--transparent .nav__cta { background: var(--accent); color: var(--ink); }
.nav--transparent .nav__cta:hover { filter: brightness(1.08); }
/* nav scrolled */
.nav--solid {
  background: rgba(244, 240, 231, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-soft);
  color: var(--text);
}
.nav--solid .nav__cta { background: var(--ink); color: var(--on-ink); }
.nav--solid .nav__cta:hover { background: var(--accent); color: var(--ink); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 1.5px; background: currentColor; transition: 0.3s; }

.nav__lang-switch { display: flex; align-items: center; gap: 0.15em; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; }
.nav__lang-btn { background: none; border: none; padding: 0.2em 0.3em; color: currentColor; opacity: 0.38; font-size: inherit; font-weight: inherit; letter-spacing: inherit; cursor: pointer; transition: opacity 0.2s; line-height: 1; }
.nav__lang-btn:hover { opacity: 0.7; }
.nav__lang-btn.is-active { opacity: 1; cursor: default; pointer-events: none; }
.nav__lang-sep { opacity: 0.22; font-size: 0.65rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink); }

/* Full-bleed stage photo */
.hero__photo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: var(--ink) url("assets/gabriel-hero.jpg") no-repeat;
  background-size: cover;
  background-position: 68% 26%;
  animation: heroZoom 20s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }

/* Scrim — title legibility on the left, melt into the page below */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, var(--ink) 0%, rgba(11,11,12,0.94) 24%, rgba(11,11,12,0.62) 43%, rgba(11,11,12,0.14) 62%, rgba(11,11,12,0) 78%),
    linear-gradient(to bottom, rgba(11,11,12,0.5) 0%, transparent 15%, transparent 52%, var(--ink) 99%);
}
.hero--light .hero__scrim {
  background:
    linear-gradient(96deg, var(--ink) 0%, rgba(11,11,12,0.8) 20%, rgba(11,11,12,0.4) 39%, rgba(11,11,12,0.06) 60%, rgba(11,11,12,0) 74%),
    linear-gradient(to bottom, rgba(11,11,12,0.4) 0%, transparent 16%, transparent 56%, var(--ink) 99%);
}
.grain {
  position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: overlay; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
@media (max-width: 860px) {
  .grain { display: none; }
  .hero__photo { animation: none; }
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter);
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: stretch;
  padding-top: 120px; padding-bottom: 3.4rem;
}
.hero__copy { position: relative; max-width: 600px; margin-top: auto; margin-bottom: 3rem; }
.hero__eyebrow { margin-bottom: 1.9rem; }
.hero--dark .eyebrow, .hero--light .eyebrow { color: var(--accent-bright); }
.hero__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.3rem, 8.4vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero__role {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 1.6rem;
  opacity: 0.72;
}
.hero__tagline {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: normal;
  color: var(--accent-bright);
  margin: 1.5rem 0 0;
}
.hero--light .hero__tagline { color: var(--accent-bright); }
.hero__accroche {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
  max-width: 36ch;
  text-wrap: balance;
  margin: 1.4rem 0 0;
  color: var(--on-ink);
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 0 40px rgba(0,0,0,0.6);
}
.hero--light .hero__accroche { color: var(--ink); }
.hero__sub {
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 1.9rem 0 0;
  color: var(--on-ink-soft);
  text-shadow: 0 1px 10px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
}
.hero--light .hero__sub { color: var(--on-ink-soft); }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; align-items: center; }

.hero__credibility {
  margin-top: auto;
  display: flex; flex-wrap: nowrap; align-items: flex-start;
  gap: 2rem; justify-content: space-between;
  padding-top: 1.8rem; margin-bottom: 0;
  border-top: 1px solid var(--line-dark);
}
.hero--light .hero__credibility { border-top-color: var(--line-dark); }
.cred {
  display: flex; flex-direction: column; gap: 0.3rem;
  flex: 1 1 0; min-width: 0;
}
.cred__num {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.65rem); font-weight: 500; line-height: 1.05;
  color: var(--accent-bright);
  white-space: nowrap;
}
.hero--light .cred__num { color: var(--accent-bright); }
.cred__label { font-size: 0.76rem; letter-spacing: 0.03em; line-height: 1.3; color: var(--on-ink-muted); }
.hero--light .cred__label { color: var(--on-ink-muted); }

/* discreet photo credit */
.hero__credit {
  position: absolute; right: var(--gutter); bottom: 1.4rem; z-index: 3;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(239, 236, 228, 0.38);
}



/* ============================================================
   CLIENTS BAND
   ============================================================ */
.clients {
  background: var(--ink-2); color: var(--on-ink);
  padding-block: clamp(2.6rem, 4.5vw, 4rem);
  border-top: 1px solid var(--line-dark-soft);
}
.clients__label {
  text-align: center; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--on-ink-muted); margin-bottom: 2.2rem;
}
.marquee { overflow: hidden; position: relative; padding-block: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: clamp(2.5rem, 5vw, 4.5rem); width: max-content; animation: marquee 38s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--grab { cursor: grab; touch-action: pan-y; }
.marquee--grab:active { cursor: grabbing; }
@keyframes marquee { to { transform: translateX(-50%); } }
.client-logo {
  display: grid; place-items: center;
  height: 70px;
  width: auto;
  flex: none;
  opacity: 0.66;
  transition: opacity 0.4s var(--ease);
}
.client-logo img {
  max-height: 40px; max-width: 132px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
.client-logo:hover { opacity: 1; }
.client-logo.is-mono img { filter: none; }
.testi__logos { align-items: center; }
.testi__logos .client-logo { height: 62px; opacity: 0.55; }
.testi__logos .client-logo:hover { opacity: 1; }
.testi__logos .client-logo img { max-height: 36px; max-width: 118px; }

/* Mur de logos sur deux lignes fixes, défilable horizontalement au glisser */
.testi__clients {
  position: relative; z-index: 2;
  margin-top: 3rem; padding-top: 2.6rem;
  border-top: 1px solid var(--line-dark-soft);
}
.testi-logos2 {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testi-logos2.is-dragging { cursor: grabbing; }
.testi-logos2__row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.6rem);
  width: max-content;
  will-change: transform;
}
.testi-logos2 .client-logo { height: 52px; opacity: 0.5; flex: none; display: flex; align-items: center; transition: opacity 0.4s var(--ease); }
.testi-logos2 .client-logo:hover { opacity: 1; }
.testi-logos2 .client-logo img { max-height: 32px; max-width: 110px; -webkit-user-drag: none; user-select: none; pointer-events: none; }

/* ============================================================
   OFFRES — poupée russe
   ============================================================ */
.offres { background: var(--paper); padding-bottom: clamp(2.5rem, 4.5vw, 4rem); }
.offres__head { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }
.offres__head-l { display: flex; flex-direction: column; }
.offres__lead-text { margin-top: 1.7rem; max-width: 42ch; }
.offres__head-photo {
  aspect-ratio: 5 / 4; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 44px 84px -52px rgba(20,16,8,0.5);
}
.offres__head-photo image-slot { display: block; width: 100%; height: 100%; transition: transform 1s var(--ease); }
.offres__head-photo:hover image-slot { transform: scale(1.03); }

.doll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.offer-card {
  --c: var(--paper);
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2.4rem;
  display: flex; flex-direction: column;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s, background 0.55s;
  cursor: pointer;
  overflow: hidden;
  min-height: 460px;
}
.offer-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.offer-card:hover, .offer-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px -40px rgba(20,16,8,0.4);
  border-color: var(--accent);
  background: var(--white);
}
.offer-card:hover::before, .offer-card.is-active::before { transform: scaleX(1); }

.offer-card__num {
  font-family: var(--display); font-style: italic;
  font-size: 0.95rem; color: var(--accent-deep); letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}
.offer-card__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem); line-height: 1.04;
  letter-spacing: -0.01em; margin: 0 0 0.5rem;
}
.offer-card__duration {
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.offer-card__desc { font-size: 0.96rem; line-height: 1.6; color: var(--text-soft); margin: 0 0 1.6rem; }
.offer-card__context {
  font-size: 0.84rem; color: var(--muted); margin-top: auto; padding-top: 1.3rem;
  border-top: 1px solid var(--line-soft);
}
.offer-card__context b { color: var(--text); font-weight: 600; }
.offer-card__cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-top: 1.3rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--accent-deep);
  transition: gap 0.4s var(--ease), color 0.3s;
}
.offer-card:hover .offer-card__cta, .offer-card.is-active .offer-card__cta { gap: 0.9em; }
.offer-card__cta .arrow { transition: transform 0.4s var(--ease); }
.offer-card:hover .offer-card__cta .arrow { transform: translateX(4px); }

/* bricks */
.bricks { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.brick {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.86rem; font-weight: 500;
  transition: opacity 0.4s, color 0.4s;
}
.brick__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--accent); flex: none;
  transition: background 0.4s;
}
.brick.on { color: var(--text); }
.brick.on .brick__dot { background: var(--accent); }
.brick.off { color: var(--muted); opacity: 0.55; }

/* Atouts des interventions */
.atouts {
  margin-top: clamp(2.6rem, 4.5vw, 4rem);
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
  border-top: 1px solid var(--line);
}
.atouts__head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.atouts__kicker {
  font-family: var(--body); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-deep);
}
.atouts__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.9rem) clamp(2rem, 5vw, 4rem);
}
.atout { display: flex; gap: 0.9rem; align-items: baseline; }
.atout__dot {
  flex: none; width: 7px; height: 7px; margin-top: 0.55em;
  border-radius: 50%; background: var(--accent);
}
.atout__text {
  margin: 0; font-size: 0.98rem; line-height: 1.55; color: var(--text-soft);
  max-width: 46ch;
}
.atout__text b { color: var(--text); font-weight: 600; }

.offres__note {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
  align-items: center; justify-content: space-between;
}
.offres__specs { display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; }
.spec { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--text-soft); }
.spec b { font-family: var(--display); font-weight: 500; color: var(--text); font-size: 1.05rem; }

/* ============================================================
   À PROPOS — double expertise
   ============================================================ */
.about { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.about .grain { opacity: 0.4; }
.about__bg { position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 0%, rgba(200,162,75,0.1), transparent 60%); z-index: 0; }
.about__head { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.about__head-l { margin-bottom: clamp(1rem, 3vw, 2.5rem); }
.about__head-r { display: flex; flex-direction: column; gap: 1.05rem; }
.about__head .eyebrow { white-space: nowrap; }

.about__bandeau {
  position: relative; z-index: 2;
  width: 100%;
  margin-block: clamp(3rem, 6vw, 5.5rem);
  aspect-ratio: 21 / 9;
  box-shadow: 0 60px 120px -60px rgba(0,0,0,0.9);
}
.about__bandeau image-slot { display: block; width: 100%; height: 100%; }
.about__bandeau::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.9), transparent 13%, transparent 87%, rgba(11,11,12,0.9)),
    linear-gradient(0deg, rgba(11,11,12,0.78), transparent 34%);
}
.about__heading { display: flex; flex-direction: column; align-items: flex-start; }
.about__eyebrow { color: var(--accent-bright); margin-bottom: 1.8rem; }
.about__title { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.04; margin-bottom: 1.6rem; }
.about__title em { color: var(--accent-bright); font-style: italic; }
.about__text { color: var(--on-ink-soft); font-size: 1.04rem; line-height: 1.68; max-width: 52ch; }
.about__text + .about__text { margin-top: 1.1rem; }

.about__press { position: relative; z-index: 2; margin-top: clamp(2rem, 4vw, 3rem); }
.about__press .link-underline { color: var(--on-ink); font-size: 0.92rem; }

.duality { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr auto; gap: 0 1px; margin-top: 2.4rem; background: var(--line-dark); border: 1px solid var(--line-dark); }
.duality__col { background: var(--ink); padding: 2rem 1.8rem; display: grid; grid-row: 1 / span 3; grid-template-rows: subgrid; }
.duality__col h4 { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-bright); margin: 0 0 1rem; font-weight: 600; }
.duality__lead { font-size: 0.96rem; line-height: 1.62; color: var(--on-ink); margin: 0 0 1.5rem; text-wrap: pretty; }
.duality__col ul { list-style: none; margin: 0; padding: 1.3rem 0 0; display: flex; flex-direction: column; gap: 0.6rem; border-top: 1px solid var(--line-dark); }
.duality__col li { font-size: 0.9rem; color: var(--on-ink-soft); padding-left: 1.1rem; position: relative; line-height: 1.4; }
.duality__col li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

/* ============================================================
   INTERLUDE — transition (encadré léger sur fond clair)
   ============================================================ */
.interlude {
  background: var(--paper);
  padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.interlude__card {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(1.6rem, 4vw, 3rem);
}
.interlude__card::before {
  content: ""; display: block;
  width: 44px; height: 2px; margin: 0 auto 1.2rem;
  background: var(--accent);
}
.interlude__line {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.3rem, 2.7vw, 2.05rem); line-height: 1.3;
  letter-spacing: -0.005em; margin: 0; color: var(--text);
  text-wrap: balance;
}
.interlude__line .accent-text { color: var(--accent-deep); }

/* ============================================================
   BANDEAU SCÈNE — photo pleine largeur
   ============================================================ */
.stage-banner {
  position: relative; width: 100%;
  height: clamp(340px, 46vw, 600px);
  overflow: hidden; background: var(--ink);
}
.stage-banner image-slot { display: block; width: 100%; height: 100%; }
.stage-banner__photo { display: block; width: 100%; height: 100%; background: var(--ink) center 38% / cover no-repeat; }
.stage-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,12,0.45) 0%, rgba(11,11,12,0) 22%, rgba(11,11,12,0) 72%, rgba(11,11,12,0.5) 100%);
}

/* ============================================================
   THÈMES — blocs (section claire, crème)
   ============================================================ */
.themes { background: var(--cream); border-top: 1px solid var(--line-soft); }
.themes__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 52ch; }

/* Énoncé de méthode — charnière entre les thèmes et les atouts */
.themes-statement {
  margin: clamp(3.4rem, 6vw, 5.5rem) auto clamp(1rem, 2.5vw, 2.4rem);
  max-width: 60rem; text-align: center; position: relative;
}
.themes-statement__rule {
  display: block; width: 46px; height: 1px;
  background: var(--accent); opacity: 0.85;
  margin: 0 auto clamp(1.5rem, 2.6vw, 2.1rem);
}
.themes-statement__text {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem); line-height: 1.46;
  letter-spacing: -0.01em; color: var(--ink); text-wrap: pretty;
  margin: 0;
}
.themes-statement__text em { font-style: italic; color: var(--accent-deep); }

/* Thèmes — blocs */
.themes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.theme-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.5s, background 0.5s;
}
.theme-card__media {
  position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--ink);
}
.theme-card__media image-slot {
  display: block; width: 100%; height: 100%;
  transition: transform 0.8s var(--ease);
}
.theme-card:hover .theme-card__media image-slot { transform: scale(1.05); }
.theme-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.theme-card:hover .theme-card__media img { transform: scale(1.05); }
.theme-card__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,12,0.18), transparent 32%, transparent 78%, rgba(11,11,12,0.28));
}
.theme-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.9rem 2.2rem 2.2rem; }
.theme-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; height: 100%;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.theme-card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -42px rgba(20,16,8,0.42); border-color: var(--accent); background: var(--white); }
.theme-card:hover::before { transform: scaleY(1); }
.theme-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.theme-card__n { font-family: var(--display); font-style: italic; font-size: 2.2rem; font-weight: 500; color: var(--accent-deep); line-height: 1; }
.theme-card__tag { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 0.4em 0.9em; transition: 0.4s; }
.theme-card:hover .theme-card__tag { color: var(--accent-deep); border-color: var(--accent); }
.theme-card__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.45rem, 2.2vw, 1.85rem); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 0.9rem; }
.theme-card__desc { font-size: 0.96rem; line-height: 1.6; color: var(--text-soft); margin: 0 0 1.5rem; }
.theme-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--accent-deep); }
.theme-card:hover .theme-card__cta { gap: 0.9em; }
.theme-card__cta .arrow { transition: transform 0.4s var(--ease); }
.theme-card:hover .theme-card__cta .arrow { transform: translateX(4px); }

/* (accordion conservé pour les pages format — FAQ) */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; text-align: left; display: grid;
  grid-template-columns: auto 1fr auto; align-items: center; gap: 1.6rem;
  padding: 1.9rem 0.5rem 1.9rem 0;
  transition: padding 0.4s var(--ease);
}
.acc-num { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--accent-deep); }
.acc-title { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.08; letter-spacing: -0.01em; transition: color 0.4s, transform 0.5s var(--ease); }
.acc-item:hover .acc-title, .acc-item.open .acc-title { color: var(--accent-deep); }
.acc-icon { width: 30px; height: 30px; position: relative; flex: none; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--text); transition: 0.4s var(--ease); }
.acc-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.acc-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.acc-item.open .acc-icon::after { transform: translateX(-50%) scaleY(0); }
.acc-item.open .acc-icon::before { background: var(--accent-deep); }
.acc-body { overflow: hidden; height: 0; transition: height 0.5s var(--ease); }
.acc-body__inner { padding: 0 0 2.2rem 0; display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; }
@media (min-width: 760px) { .acc-body__inner { padding-left: calc(1.05rem + 1.6rem); } }
.acc-desc { font-size: 1.05rem; line-height: 1.6; color: var(--text-soft); max-width: 60ch; }


/* ============================================================
   RÉFÉRENCES / TÉMOIGNAGE
   ============================================================ */
.testi { background: var(--ink); color: var(--on-ink); position: relative; overflow: clip; text-align: center; }
.testi__photo { position: absolute; inset: 0; z-index: 0; }
.testi__photo image-slot { display: block; width: 100%; height: 100%; }
.testi__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(82% 92% at 50% 42%, rgba(11,11,12,0.5), rgba(11,11,12,0.84) 72%),
    linear-gradient(180deg, rgba(11,11,12,0.72), rgba(11,11,12,0.5) 38%, rgba(11,11,12,0.93));
}
.testi__quote-zone { position: relative; }
.testi__bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(70% 55% at 50% 26%, rgba(200,162,75,0.10), transparent 62%),
    linear-gradient(180deg, rgba(11,11,12,0.65) 0%, rgba(11,11,12,0.50) 45%, rgba(11,11,12,0.88) 82%, #0b0b0c 100%),
    url("assets/quotes-fond.jpg") center 30% / cover no-repeat;
}
.testi__inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; text-align: center; }
.testi__mark { font-family: var(--display); font-size: 6rem; line-height: 0.6; color: var(--accent); opacity: 0.6; height: 0.55em; display: block; }
.testi__quote { font-family: var(--display); font-weight: 500; font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.8rem); line-height: 1.28; letter-spacing: -0.01em; margin: 1.5rem auto 1.4rem; max-width: 22ch; }
.testi__quote span { color: var(--accent-bright); }
.testi__full { font-family: var(--body); font-size: clamp(0.98rem, 1.4vw, 1.12rem); line-height: 1.6; color: var(--on-ink-soft); max-width: 56ch; margin: 0 auto 2rem; text-wrap: pretty; }
.testi__by { font-size: 0.86rem; letter-spacing: 0.05em; color: var(--on-ink-soft); }
.testi__by b { color: var(--on-ink); font-weight: 600; display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.testi .eyebrow--center { color: var(--accent-bright); justify-content: center; }

/* Bandeau déroulant de témoignages */
.testi-marquee {
  position: relative; z-index: 2;
  margin: 3.6rem 0 0;
  width: 100%;
  overflow: hidden;
}
.testi-marquee::before, .testi-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 7%; z-index: 1; pointer-events: none;
}
.testi-marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.testi-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.testi-inner {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  padding: 0.5rem 0;
  animation: testiScroll 30s linear infinite;
}
.testi-inner.is-paused { animation-play-state: paused; }
.testi-set {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
@keyframes testiScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.t-card {
  flex: 0 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .testi-inner { animation-play-state: paused; }
}
.t-card {
  width: clamp(280px, 30vw, 380px);
  flex: 0 0 clamp(280px, 30vw, 380px);
  flex-shrink: 0 !important;
  margin: 0;
  padding: 1.7rem 1.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark-soft);
  border-radius: 14px;
  display: flex; flex-direction: column;
  text-align: left;
  transition: border-color 0.4s, background 0.4s;
}
.t-card:hover {
  border-color: rgba(200, 162, 75, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.t-card__mark {
  font-family: var(--display); font-size: 2.6rem; line-height: 0.5;
  color: var(--accent); opacity: 0.55; display: block; height: 0.5em; margin-bottom: 0.5rem;
}
.t-card__quote {
  font-family: var(--body); font-size: 0.96rem; line-height: 1.55;
  color: var(--on-ink); margin: 0 0 1.1rem; text-wrap: pretty; flex: 1 0 auto;
}
.t-card__by { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--on-ink-soft); line-height: 1.4; }
.t-card__by b { display: block; color: var(--accent-bright); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.02em; margin-bottom: 0.12rem; }

.testi__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.6rem 3rem; margin-top: 3.4rem; padding-top: 2.6rem; border-top: 1px solid var(--line-dark-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper); }
.contact__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.contact__heading { display: flex; flex-direction: column; }
.contact__title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.02; margin-bottom: 1.4rem; }
.contact__title em { font-style: italic; color: var(--accent-deep); }
.contact__lead { font-size: 1.05rem; color: var(--text-soft); max-width: 38ch; margin-bottom: 1.2rem; }
.contact__reassurance { font-size: 0.93rem; font-style: italic; color: var(--text-soft); opacity: 0.75; max-width: 38ch; margin-bottom: 2.6rem; line-height: 1.6; }
.contact__coords { display: flex; flex-direction: column; gap: 1.3rem; }
.coord { display: flex; align-items: center; gap: 0.9rem; }
.coord__ic { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-deep); flex: none; transition: 0.4s; }
.coord:hover .coord__ic { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.coord__label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.coord__val { font-size: 1rem; font-weight: 500; }
.contact__visual {
  margin-top: 2.6rem; width: 100%; aspect-ratio: 3 / 2;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 36px 70px -44px rgba(20,16,8,0.5);
}
.contact__visual image-slot {
  display: block; width: 100%; height: 100%;
  transition: transform 0.8s var(--ease);
}
.contact__visual:hover image-slot { transform: scale(1.04); }

/* form */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
.field label .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95em 1em;
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23837e74' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; padding-right: 2.5em; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px var(--accent-tint); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3402f; box-shadow: 0 0 0 3px rgba(179,64,47,0.1); }
.field__err { font-size: 0.74rem; color: #b3402f; font-weight: 500; opacity: 0; transform: translateY(-3px); transition: 0.3s; height: 0; }
.field.invalid .field__err { opacity: 1; transform: none; height: auto; }
.form__foot { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.4rem; }
.form__note { font-size: 0.78rem; color: var(--muted); max-width: 32ch; }

.form-success {
  grid-column: 1/-1;
  background: var(--white); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 2.6rem 2.2rem; text-align: center;
  animation: popIn 0.6s var(--ease);
}
@keyframes popIn { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: none; } }
.form-success__ic { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; margin: 0 auto 1.3rem; }
.form-success h3 { font-family: var(--display); font-size: 1.7rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--text-soft); max-width: 40ch; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--on-ink); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark-soft); }
.footer__brand { font-family: var(--display); font-size: 1.8rem; font-weight: 500; }
.footer__brand .gw-mark { font-style: italic; color: var(--accent); }
.footer__tag { font-family: var(--display); font-style: italic; color: var(--accent-bright); font-size: 1.1rem; margin-top: 0.5rem; }
.footer__desc { color: var(--on-ink-muted); font-size: 0.9rem; max-width: 34ch; margin-top: 1.2rem; line-height: 1.6; }
.footer__col h5 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-ink-muted); margin: 0 0 1.1rem; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: 0.92rem; color: var(--on-ink-soft); transition: color 0.3s; }
.footer__col a:hover { color: var(--accent-bright); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.78rem; color: var(--on-ink-muted); }
.footer__bottom a { color: var(--on-ink-soft); text-decoration: none; transition: color 0.3s; }
.footer__bottom a:hover { color: var(--accent-bright); }
.footer__credits { margin-top: 1rem; font-size: 0.72rem; line-height: 1.6; color: var(--on-ink-muted); opacity: 0.78; text-wrap: pretty; }

/* ============================================================
   Section header pattern
   ============================================================ */
.sec-head { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 1.4rem; }
.sec-head .section-index { flex: none; }

/* ============================================================
   Scroll reveal — visible by default; hide only once JS arms it
   (so frozen-render contexts / no-JS / print never go blank)
   ============================================================ */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
/* Hide instantly when armed — no fade-out flash and, crucially, NO stagger
   delay on the hide. (If the hide inherited reveal-dN's delay, a band like the
   hero credibility row would stay at opacity:1 through the whole delay window,
   get .in added a frame later, and never actually animate.) */
.reveal-armed .reveal:not(.in) { opacity: 0; transform: translateY(26px); transition-duration: 0s; transition-delay: 0s; }
/* Reveal honours the per-element stagger delay on the way IN. */
.reveal-armed .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-armed .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.001ms !important; scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__inner { min-height: 92vh; padding-top: 130px; padding-bottom: 6rem; }
  .hero__copy { max-width: 540px; }
  .hero__photo { background-position: 74% 24%; }
  .about__head { grid-template-columns: 1fr; gap: 1.6rem; }
  .about__head-l { margin-bottom: 0; }
  .about__bandeau { aspect-ratio: 16 / 10; }
  .contact__inner { grid-template-columns: 1fr; }

}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { flex-direction: column; align-items: flex-start; justify-content: center; }
  .hero__credibility {
    position: static; left: auto; right: auto; bottom: auto;
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 1.8rem; margin-top: 2.6rem;
  }
  .cred { flex: initial; }
  .doll { grid-template-columns: 1fr; }
  .themes-grid { grid-template-columns: 1fr; }
  .offres__head { grid-template-columns: 1fr; }
  .atouts__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .duality { grid-template-columns: 1fr; grid-template-rows: none; gap: 1px 0; }
  .duality__col { grid-row: auto; grid-template-rows: none; display: flex; flex-direction: column; }
  .duality__col ul { margin-top: auto; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav__cta { display: none; }
  .form { grid-template-columns: 1fr; }
  .hero__credibility { grid-template-columns: 1fr 1fr; gap: 1.2rem 1.6rem; }
  .hero__inner { min-height: 88vh; padding-bottom: 5rem; }
  .hero__photo { background-position: 54% 20%; }
  .stage-banner__photo { background-position: 70% 38%; }
  .hero__scrim { background:
    linear-gradient(95deg, var(--ink) 0%, var(--ink) 48%, rgba(11,11,12,0.55) 60%, rgba(11,11,12,0.05) 72%, rgba(11,11,12,0) 82%),
    linear-gradient(to bottom, rgba(11,11,12,0.4) 0%, transparent 12%, transparent 52%, var(--ink) 99%); }
  .acc-head { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .offres__note { flex-direction: column; align-items: flex-start; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--on-ink);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 1.4rem;
  padding: var(--gutter); padding-top: 4.5rem; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--display); font-size: 2rem; }
.mobile-menu a:hover { color: var(--accent-bright); }
.mobile-menu__formats { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.4rem 0; padding: 1.2rem 0; border-block: 1px solid var(--line-dark-soft); }
.mobile-menu__format { font-family: var(--body) !important; font-size: 1.05rem !important; display: flex; align-items: baseline; gap: 0.7rem; color: var(--on-ink-soft); }
.mobile-menu__format span { font-family: var(--display); font-style: italic; color: var(--accent); font-size: 0.9rem; }
.mobile-menu__close { position: absolute; top: 1.5rem; right: var(--gutter); font-size: 2rem; }

/* ============================================================
   LA RÉFÉRENCE — signatures (home, grille 3×2)
   ============================================================ */
.references { background: var(--cream); }
.ref__heading { display: flex; flex-direction: column; }
.references__head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.references__head .eyebrow--center { margin-bottom: 1.2rem; }
.references__head .h-section { margin: 0 auto; }
.references__lead { margin: 1.1rem auto 0; max-width: 56ch; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.ref-card { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); box-shadow: var(--shadow-card); }
.ref-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink-2); }
.ref-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.ref-card:hover .ref-card__media img { transform: scale(1.05); }
.ref-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,12,0.82) 2%, rgba(11,11,12,0.1) 46%, transparent 70%); pointer-events: none; }
.ref-card__cap { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.05rem; z-index: 2; display: flex; flex-direction: column; gap: 0.25rem; }
.ref-card__label { font-family: var(--display); font-style: italic; font-size: 1.16rem; font-weight: 500; color: #fff; line-height: 1.1; }
.ref-card__note { font-size: 0.78rem; letter-spacing: 0.02em; color: rgba(255,255,255,0.78); text-wrap: pretty; }
@media (max-width: 860px) {
  .ref-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ref-grid { grid-template-columns: 1fr; }
}

/* Citations de pairs — sous la grille « Une signature reconnue » */
.peer-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3.2vw, 3.4rem);
  margin-top: clamp(2.8rem, 5vw, 4.4rem);
  padding-top: clamp(2.6rem, 4.5vw, 3.6rem);
  border-top: 1px solid var(--line);
}
.peer-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.peer-quote__mark {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.4;
  color: var(--accent);
  opacity: 0.55;
  height: 0.5em;
  margin-bottom: 0.7rem;
}
.peer-quote__text {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 24ch;
}
.peer-quote__who {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
@media (max-width: 860px) {
  .peer-quotes { grid-template-columns: 1fr; gap: 2.2rem; max-width: 32rem; margin-inline: auto; }
  .peer-quote { padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
  .peer-quote:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal { background: var(--cream); color: var(--ink); }
.legal__wrap { max-width: 880px; padding-top: clamp(7rem, 12vw, 9.5rem); padding-bottom: clamp(4rem, 8vw, 6rem); }
.legal__bread { margin-bottom: clamp(2rem, 4vw, 3rem); display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-soft); }
.legal__bread a { color: var(--text-soft); text-decoration: none; transition: color 0.3s; }
.legal__bread a:hover { color: var(--accent-deep); }
.legal__bread .sep { opacity: 0.5; }
.legal__bread .current { color: var(--ink); }
.legal__head { margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.legal__head .eyebrow { margin-bottom: 1rem; }
.legal__title { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; }
.legal__id {
  display: grid; grid-template-columns: 2fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem);
  padding: clamp(1.6rem, 3vw, 2.2rem) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.legal__id-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 0.7rem; }
.legal__id-block p { font-size: 0.98rem; line-height: 1.65; color: var(--text-soft); }
.legal__id-block a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.legal__id-block a:hover { color: var(--accent-deep); }
.legal__section { margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.legal__h { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.18; margin-bottom: 0.9rem; }
.legal__p { font-family: var(--body); font-size: clamp(0.95rem, 1.3vw, 1.04rem); line-height: 1.72; color: var(--text-soft); margin-bottom: 1rem; text-wrap: pretty; }
.legal__p:last-child { margin-bottom: 0; }
.legal__p a { color: var(--ink); }
@media (max-width: 620px) {
  .legal__id { grid-template-columns: 1fr; }
}

/* « Autres thèmes » — grille 2×2 à positions fixes : le thème courant laisse
   une case vide (invisible) pour que les 3 autres ne changent pas de place. */
