/* ═══════════════════════════════════════════════════════════════
   CABINET VAUCLAIR · Fiduciaire & expertise comptable · Genève
   DA · émeraude suisse + brass + ivory · Cormorant Garamond
   Mobile-first · 7 effets premium
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  min-width: 0;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.1; }

/* ─── Tokens ─── */
:root {
  --ink:           #0F1813;   /* Vert-noir foncé */
  --ink-2:         #1F2A22;   /* Vert-foncé softer */
  --ink-3:         #5C6B62;   /* Slate-vert */
  --ink-4:         #8F9A93;   /* Slate clair */
  --emerald:       #1F4F3F;   /* Émeraude suisse (banque privée) */
  --emerald-dark:  #163F32;
  --emerald-soft:  rgba(31, 79, 63, 0.10);
  --brass:         #B08D57;   /* Bronze/brass classique fiduciaire */
  --brass-light:   #C9A87A;
  --brass-soft:    rgba(176, 141, 87, 0.12);
  --bg:            #FFFFFF;
  --bg-ivory:      #F7F4EC;   /* Ivory parchment */
  --bg-soft:       #FBF8F0;
  --border:        #E8E2D2;
  --border-soft:   #F0EBDD;

  --r-pill:        999px;
  --r-card:        10px;
  --r-card-lg:     18px;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --spring:        cubic-bezier(0.34, 1.36, 0.64, 1);
  --t-fast:        180ms;
  --t-base:        320ms;
  --t-med:         540ms;
  --t-slow:        800ms;
}

/* ─── Utilities ─── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container--narrow { max-width: 920px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
.serif em { font-style: italic; font-weight: 500; color: var(--brass); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brass);
}
.tag::before { content: ''; width: 28px; height: 1px; background: var(--brass); flex-shrink: 0; }
.tag--brass { color: var(--brass); }
.tag--light { color: rgba(255,255,255,0.84); }
.tag--light::before { background: rgba(255,255,255,0.6); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--spring),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--emerald); color: white; }
.btn--primary:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31, 79, 63, 0.28); }
.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176, 141, 87, 0.32); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.btn__arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform var(--t-fast) var(--ease);
}
.btn--brass .btn__arrow { background: var(--ink); color: white; }
.btn--ghost .btn__arrow { background: var(--bg-ivory); }
.btn--ghost:hover .btn__arrow { background: white; }
.btn:hover .btn__arrow { transform: rotate(-45deg); }
.btn__arrow svg { width: 11px; height: 11px; }

/* ─── Header sticky ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.header.scrolled { background: rgba(247, 244, 236, 0.98); box-shadow: 0 4px 14px rgba(15, 24, 19, 0.06); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}
.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  flex-shrink: 0;
}
.header__nav { display: flex; gap: 32px; }
.header__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.header__nav a:hover::after, .header__nav a.is-current::after { transform: scaleX(1); }
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--emerald);
  color: white;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--spring);
}
.header__cta:hover { background: var(--brass); color: var(--ink); transform: translateY(-1px); }
.header__cta svg { width: 12px; height: 12px; transition: transform var(--t-fast) var(--ease); }
.header__cta:hover svg { transform: translate(2px, -2px); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  margin-right: 12px;
}
.lang-switch button {
  padding: 5px 11px;
  background: transparent;
  border: 0;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.lang-switch button.is-active { background: var(--emerald); color: white; }
.lang-switch button:not(.is-active):hover { color: var(--ink); }
@media (max-width: 760px) { .lang-switch { display: none; } }

.header__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--emerald);
  color: white;
  border: 0; cursor: pointer;
  position: relative; z-index: 110;
}
.header__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: white;
  border-radius: 1px;
  transition: transform 320ms var(--ease), top 240ms var(--ease) 120ms, opacity 200ms var(--ease);
}
.header__burger span:nth-child(1) { top: 16px; }
.header__burger span:nth-child(2) { top: 21px; }
.header__burger span:nth-child(3) { top: 26px; }
.header__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); transition: top 240ms var(--ease), transform 320ms var(--ease) 120ms; }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); transition: top 240ms var(--ease), transform 320ms var(--ease) 120ms; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 100;
  background: var(--emerald);
  color: white;
  display: flex; flex-direction: column;
  padding: 96px 28px 36px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.mobile-nav__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: white;
}
.mobile-nav__list a span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(176, 141, 87, 0.85);
  text-transform: uppercase;
}
.mobile-nav__list a.is-current { color: var(--brass-light); }
.mobile-nav__foot { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.mobile-nav__phone { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 18px; color: white; }
.mobile-nav__phone-label { display: block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px; }
.mobile-nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--brass); color: var(--ink); border-radius: 4px; font-size: 13.5px; font-weight: 600; }
body.no-scroll { overflow: hidden; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  background: var(--bg-ivory);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(31, 79, 63, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(176, 141, 87, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero__copy .tag { margin-bottom: 32px; }
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 92px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--brass); }
.hero__sub { font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-3); line-height: 1.65; margin-bottom: 36px; max-width: 520px; }
.hero__cta-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  background: var(--bg-ivory);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; animation: cinemagraphZoom 20s var(--ease) infinite alternate; will-change: transform; }
@keyframes cinemagraphZoom {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.06) translateX(-1.5%); }
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(255, 200, 100, 0.18) 0%, transparent 25%),
    radial-gradient(circle at 25% 70%, rgba(120, 180, 200, 0.12) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  animation: cinemagraphGlow 6s var(--ease) infinite alternate;
}
@keyframes cinemagraphGlow { from { opacity: 0.7; } to { opacity: 1; } }
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 24, 19, 0.35) 100%);
  pointer-events: none;
  z-index: 2;
  animation: cinemagraphPulse 5s var(--ease) infinite alternate;
}
@keyframes cinemagraphPulse { from { opacity: 0.8; } to { opacity: 1; } }
.hero__visual-meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(13px, 1.2vw, 15px);
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) { .hero__visual img, .hero__visual::before, .hero__visual::after { animation: none; } }

/* ─── Trust bar émeraude ─── */
.trust {
  padding: clamp(40px, 4vw, 64px) 0;
  background: var(--emerald);
  color: white;
}
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px); }
.trust__item { border-left: 1px solid rgba(255,255,255,0.16); padding-left: clamp(16px, 2vw, 28px); }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brass-light);
  margin-bottom: 8px;
}
.trust__value sup { font-size: 0.5em; vertical-align: super; }
.trust__label { font-size: 12.5px; color: rgba(255,255,255,0.72); line-height: 1.45; letter-spacing: 0.02em; }

/* ─── Section ─── */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--ivory { background: var(--bg-ivory); }
.section--emerald { background: var(--emerald); color: white; }
.section__head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 900px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head .tag { margin-bottom: 22px; }
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
.section--emerald .section__title { color: white; }
.section__title em { font-style: italic; color: var(--brass); }
.section__lead { font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-3); line-height: 1.65; margin-top: 20px; max-width: 640px; }
.section--emerald .section__lead { color: rgba(255,255,255,0.75); }

/* ─── About ─── */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.about__visual { aspect-ratio: 4/5; border-radius: var(--r-card-lg); overflow: hidden; background: var(--bg-ivory); }
.about__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.about__visual:hover img { transform: scale(1.04); }
.about__text p { font-size: 17px; color: var(--ink-2); line-height: 1.75; margin-bottom: 20px; }
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--ink); font-weight: 600; }
.about__quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.45;
}

/* ─── Expertises · rows numérotés 01-06 ─── */
.expertises__list { display: flex; flex-direction: column; }
.expertise-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) clamp(12px, 2vw, 20px);
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
  transition: background var(--t-base) var(--ease);
  cursor: pointer;
}
.expertise-row:first-child { border-top: 1px solid var(--border); }
.expertise-row:hover { background: var(--bg-ivory); }
.expertise-row__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.expertise-row__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.expertise-row__title em { font-style: italic; color: var(--brass); }
.expertise-row__tags { font-size: 12.5px; color: var(--ink-3); text-align: right; letter-spacing: 0.02em; }
.expertise-row__tag::before { content: '·'; margin: 0 4px; }
.expertise-row__tag:first-child::before { content: ''; margin: 0; }
.expertise-row__arrow {
  position: absolute;
  right: clamp(12px, 2vw, 20px);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--ink);
  display: grid; place-items: center;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.expertise-row__arrow svg { width: 13px; height: 13px; }
.expertise-row:hover .expertise-row__arrow { opacity: 1; transform: translateX(0); }
.expertise-row:hover .expertise-row__tags { opacity: 0; }

/* ─── Pinned scroll storytelling ─── */
.pinned-story { position: relative; background: var(--emerald); color: white; }
.pinned-story__container { position: relative; }
.pinned-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: 0 clamp(20px, 4vw, 64px);
  overflow: hidden;
}
.pinned-story__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 78vh;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  background: var(--emerald-dark);
  margin-left: auto;
}
.pinned-story__visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
}
.pinned-story__visual-img.is-active { opacity: 1; transform: scale(1); }
.pinned-story__copy { max-width: 520px; position: relative; z-index: 2; }
.pinned-story__step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  pointer-events: none;
}
.pinned-story__step.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pinned-story__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--brass-light);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.pinned-story__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: white;
  margin-bottom: 18px;
}
.pinned-story__title em { font-style: italic; color: var(--brass-light); }
.pinned-story__text { font-size: 16.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.72); }
.pinned-story__progress { position: absolute; top: 50%; left: clamp(12px, 2vw, 28px); transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; z-index: 3; }
.pinned-story__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); transition: background var(--t-base) var(--ease), transform var(--t-base) var(--spring); }
.pinned-story__dot.is-active { background: var(--brass); transform: scale(1.4); }
@media (max-width: 880px) {
  .pinned-story__stage { grid-template-columns: 1fr; padding: 80px 20px 40px; }
  .pinned-story__visual { display: none; }
  .pinned-story__progress { display: none; }
}

/* ─── Cas clients ─── */
.cases__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3.4vw, 48px); }
.case-card { display: block; transition: transform var(--t-base) var(--spring); }
.case-card:hover { transform: translateY(-6px); }
.case-card__media { aspect-ratio: 16/10; background: var(--bg-ivory); border-radius: var(--r-card); overflow: hidden; margin-bottom: 20px; position: relative; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.case-card:hover .case-card__media img { transform: scale(1.05); }
.case-card__tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}
.case-card__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.18; color: var(--ink); margin-bottom: 10px; }
.case-card__text { font-size: 14.5px; color: var(--ink-3); line-height: 1.65; max-width: 460px; }
.case-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--brass); letter-spacing: 0.04em; }
.case-card__link svg { width: 12px; height: 12px; transition: transform var(--t-fast) var(--ease); }
.case-card:hover .case-card__link svg { transform: translate(3px, -3px); }

/* ─── Équipe ─── */
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
.team-card { transition: transform var(--t-base) var(--spring); }
.team-card:hover { transform: translateY(-6px); }
.team-card__media { aspect-ratio: 3/4; background: var(--bg-ivory); border-radius: var(--r-card); overflow: hidden; margin-bottom: 16px; position: relative; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); transition: filter 600ms var(--ease), transform 1.2s var(--ease); }
.team-card:hover .team-card__media img { filter: grayscale(0); transform: scale(1.03); }
.team-card__name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; }
.team-card__role { font-size: 12.5px; color: var(--brass); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.team-card__bar { font-size: 12px; color: var(--ink-3); }

/* ─── Testimonials ─── */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 36px); }
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 36px);
  transition: transform var(--t-base) var(--spring), box-shadow var(--t-base) var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(31, 79, 63, 0.10); }
.section--ivory .testi-card { background: white; }
.testi-card__quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--brass); line-height: 0.6; margin-bottom: 12px; letter-spacing: -0.05em; }
.testi-card__quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 1.4vw, 19px); font-weight: 500; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 24px; }
.testi-card__author { padding-top: 18px; border-top: 1px solid var(--border); }
.testi-card__name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 500; color: var(--ink); }
.testi-card__role { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

/* ─── Calculateur honoraires ─── */
.fee-calc {
  background: linear-gradient(180deg, var(--bg-ivory) 0%, white 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  padding: clamp(32px, 4vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.fee-calc::before { content: ''; position: absolute; top: -40%; right: -10%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(176, 141, 87, 0.20) 0%, transparent 65%); pointer-events: none; filter: blur(35px); }
.fee-calc__head { position: relative; z-index: 1; margin-bottom: 28px; }
.fee-calc__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 8px; }
.fee-calc__sub { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.fee-calc__field { position: relative; z-index: 1; margin-bottom: 22px; }
.fee-calc__field-label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.fee-calc__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.fee-calc__chip {
  padding: 9px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.fee-calc__chip:hover { background: var(--bg-ivory); }
.fee-calc__chip.is-active { background: var(--emerald); color: white; border-color: var(--emerald); }
.fee-calc__slider-wrap { display: flex; align-items: center; gap: 18px; }
.fee-calc__slider {
  flex: 1;
  -webkit-appearance: none; appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: var(--r-pill);
  outline: none;
}
.fee-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brass);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(176, 141, 87, 0.45);
  transition: transform var(--t-fast) var(--spring);
}
.fee-calc__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.fee-calc__slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--brass); cursor: pointer; border: 3px solid white; }
.fee-calc__slider-value { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 500; color: var(--ink-2); font-variant-numeric: tabular-nums; min-width: 100px; text-align: right; }
.fee-calc__output { position: relative; z-index: 1; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 14px; }
.fee-calc__output-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.fee-calc__output-value { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 500; letter-spacing: -0.025em; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; transition: color var(--t-fast) var(--ease); }
.fee-calc__output-value em { font-style: italic; color: var(--brass); font-weight: 500; }
.fee-calc__note { width: 100%; font-size: 12.5px; color: var(--ink-3); line-height: 1.6; margin-top: 6px; }

/* ─── Final CTA ─── */
.cta-final {
  background: var(--emerald);
  color: white;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before { content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(176, 141, 87, 0.16) 0%, transparent 65%); pointer-events: none; filter: blur(40px); }
.cta-final__title { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 6vw, 84px); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 24px; color: white; position: relative; z-index: 1; }
.cta-final__title em { font-style: italic; color: var(--brass-light); }
.cta-final__sub { font-size: 16px; color: rgba(255, 255, 255, 0.75); max-width: 560px; margin: 0 auto 40px; line-height: 1.65; position: relative; z-index: 1; }
.cta-final .btn--brass { position: relative; z-index: 1; padding: 18px 32px; font-size: 15px; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(60px, 7vw, 100px) 0 clamp(36px, 4vw, 56px);
  font-size: 14px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.footer__brand-logo { display: inline-flex; align-items: center; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; letter-spacing: 0.04em; color: white; margin-bottom: 20px; }
.footer__brand-logo .header__logo-mark { color: var(--brass); border-color: var(--brass); }
.footer__brand-text { line-height: 1.7; max-width: 320px; margin-bottom: 22px; color: rgba(255, 255, 255, 0.68); }
.footer__addr { font-size: 13px; line-height: 1.65; color: rgba(255, 255, 255, 0.58); }
.footer__col h4 { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(255, 255, 255, 0.78); transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: white; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255, 255, 255, 0.50); }

/* ─── Sticky Khoma CTA ─── */
.khoma-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.35), 0 6px 14px rgba(10, 10, 10, 0.18);
  color: white;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  max-width: calc(100% - 28px);
}
.khoma-cta:hover { transform: translateX(-50%) translateY(-2px); }
.khoma-cta__dot { width: 8px; height: 8px; border-radius: 50%; background: #5B3DF5; flex-shrink: 0; box-shadow: 0 0 10px rgba(91, 61, 245, 0.7); animation: khomaDot 2.2s var(--ease) infinite; }
@keyframes khomaDot { 0%, 100% { box-shadow: 0 0 10px rgba(91, 61, 245, 0.7); transform: scale(1); } 50% { box-shadow: 0 0 16px rgba(91, 61, 245, 1); transform: scale(1.2); } }
.khoma-cta__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; min-width: 0; }
.khoma-cta__title { font-family: 'Inter Tight', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; }
.khoma-cta__sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.62); }
.khoma-cta__btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; background: #5B3DF5; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: white; transition: background var(--t-fast) var(--ease); flex-shrink: 0; }
.khoma-cta__btn:hover { background: #4530D6; }
.khoma-cta__btn svg { width: 11px; height: 11px; }
.khoma-cta.is-hidden { transform: translateX(-50%) translateY(140%); opacity: 0; pointer-events: none; }

/* ─── Reveals ─── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ─── Premium effects ─── */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--emerald);
  display: grid; place-items: center;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader__logo { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 32px); font-weight: 500; letter-spacing: 0.04em; color: white; display: inline-flex; align-items: center; gap: 14px; }
.preloader__logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-style: italic;
  font-size: 14px;
  opacity: 0;
  animation: preFade 600ms var(--ease) 200ms forwards;
}
@keyframes preFade { to { opacity: 1; } }
.preloader__logo-text { opacity: 0; transform: translateX(-12px); animation: preSlide 800ms var(--ease) 400ms forwards; }
@keyframes preSlide { to { opacity: 1; transform: translateX(0); } }
.preloader__bar-wrap { width: clamp(180px, 22vw, 260px); height: 1px; background: rgba(255, 255, 255, 0.10); overflow: hidden; }
.preloader__bar { position: absolute; inset: 0; background: var(--brass); transform-origin: left; transform: scaleX(0); animation: preBar 1400ms var(--ease) 600ms forwards; }
@keyframes preBar { to { transform: scaleX(1); } }
.preloader__bar-wrap { position: relative; }
.preloader__count { font-family: 'Cormorant Garamond', serif; font-size: 12px; font-style: italic; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.08em; font-variant-numeric: tabular-nums; }

.page-transition {
  position: fixed; inset: 0; z-index: 500;
  background: var(--emerald);
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 720ms cubic-bezier(0.86, 0, 0.07, 1);
}
.page-transition.is-out { transform: translateY(0); }
.page-transition.is-in { transform: translateY(100%); transition-duration: 800ms; }

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), var(--brass));
  background-size: 200% 100%;
  z-index: 200;
  pointer-events: none;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(176, 141, 87, 0.55);
  animation: progressShimmer 3s linear infinite;
}
@keyframes progressShimmer { to { background-position: -200% 0; } }

.cursor-orb {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: width 260ms var(--ease), height 260ms var(--ease), border-color 260ms var(--ease), opacity 260ms var(--ease), background 260ms var(--ease), border-radius 320ms var(--ease);
  mix-blend-mode: difference;
  opacity: 0;
  will-change: transform;
}
.cursor-orb.is-visible { opacity: 1; }
.cursor-orb.is-link { width: 8px; height: 8px; background: var(--brass); border-color: var(--brass); }
.cursor-orb.is-blob {
  width: 64px; height: 64px;
  border-radius: 38% 62% 60% 40% / 40% 50% 50% 60%;
  background: rgba(176, 141, 87, 0.16);
  border-color: var(--brass);
  animation: blobMorph 4s var(--ease) infinite alternate;
}
@keyframes blobMorph {
  0%   { border-radius: 38% 62% 60% 40% / 40% 50% 50% 60%; }
  50%  { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
  100% { border-radius: 50% 50% 70% 30% / 35% 60% 40% 65%; }
}
@media (hover: none), (max-width: 980px) { .cursor-orb { display: none; } }
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select { cursor: none; }
}

.magnetic { display: inline-flex; will-change: transform; transition: transform 300ms var(--ease); }

/* Awards marquee */
.awards { padding: clamp(40px, 5vw, 64px) 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.awards__label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 28px; }
.awards__track-wrap { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.awards__track { display: flex; gap: clamp(48px, 6vw, 96px); width: max-content; animation: awardsScroll 42s linear infinite; }
.awards__item { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.01em; color: var(--ink-2); white-space: nowrap; display: flex; align-items: center; gap: 16px; }
.awards__item::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }
@keyframes awardsScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .awards__track { animation: none; } }

.tilt-card { transform-style: preserve-3d; perspective: 1000px; transition: transform 480ms var(--ease); will-change: transform; }
.tilt-card__inner { transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 280ms var(--ease); transform-style: preserve-3d; }

.reveal-word { display: inline-block; opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal-word.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ═══════════════════════════════════════════════════════════════
   INTERNAL PAGES · components
   ═══════════════════════════════════════════════════════════════ */

/* PAGE HERO */
.page-hero {
  padding: clamp(120px, 18vh, 200px) 0 clamp(50px, 7vh, 90px);
  background:
    linear-gradient(180deg, var(--bg-ivory) 0%, var(--bg-page) 100%);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: rgba(15,24,19,0.08);
}
.page-hero__inner { max-width: 880px; }
.page-hero__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 22px;
}
.page-hero__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.page-hero__lead {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.65; color: rgba(15,24,19,0.74);
  max-width: 720px;
}

/* EXPERTISE BLOCK · alternating */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(50px, 7vh, 100px) 0;
  border-top: 1px solid rgba(15,24,19,0.08);
}
.exp-block:first-child { border-top: 0; padding-top: 0; }
.exp-block--reverse { direction: rtl; }
.exp-block--reverse > * { direction: ltr; }
.exp-block__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,24,19,0.12);
}
.exp-block__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease);
}
.exp-block:hover .exp-block__media img { transform: scale(1.04); }
.exp-block__num {
  position: absolute; top: 20px; left: 24px;
  font-family: var(--ff-serif); font-style: italic;
  font-size: 52px; line-height: 1; color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.exp-block__body { display: flex; flex-direction: column; gap: 18px; }
.exp-block__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08; letter-spacing: -0.018em;
  color: var(--ink);
  margin: 4px 0 0;
}
.exp-block__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.exp-block__lead {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7; color: rgba(15,24,19,0.78);
}
.exp-block__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.exp-block__list li {
  font-family: var(--ff-sans);
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
}
.exp-block__list li::before {
  content: ""; position: absolute;
  left: 0; top: 0.65em;
  width: 14px; height: 1px;
  background: var(--brass);
}
.exp-block__price {
  margin-top: 14px;
  padding: 16px 22px;
  border-left: 2px solid var(--brass);
  background: var(--bg-ivory);
  border-radius: 0 12px 12px 0;
  font-family: var(--ff-sans);
  font-size: 14px; color: rgba(15,24,19,0.78);
}
.exp-block__price strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-left: 4px;
}

/* BIO · associé */
.bio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
  padding: clamp(50px, 7vh, 90px) 0;
  border-top: 1px solid rgba(15,24,19,0.08);
}
.bio:first-of-type { border-top: 0; padding-top: 0; }
.bio--reverse { direction: rtl; }
.bio--reverse > * { direction: ltr; }
.bio__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,24,19,0.14);
  position: sticky;
  top: 100px;
}
.bio__media img { width: 100%; height: 100%; object-fit: cover; }
.bio__num {
  position: absolute; top: 20px; left: 24px;
  font-family: var(--ff-serif); font-style: italic;
  font-size: 48px; line-height: 1; color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.bio__body { display: flex; flex-direction: column; gap: 18px; }
.bio__name {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--ink);
  margin: 4px 0 0;
}
.bio__role {
  font-family: var(--ff-sans);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--brass);
  font-weight: 500;
}
.bio__credentials {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  color: rgba(15,24,19,0.65);
  padding: 10px 0;
  border-top: 1px solid rgba(15,24,19,0.1);
  border-bottom: 1px solid rgba(15,24,19,0.1);
}
.bio__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--emerald);
  border-left: 2px solid var(--brass);
  padding-left: 20px;
  margin: 4px 0;
}
.bio__text {
  font-family: var(--ff-sans);
  font-size: 15px; line-height: 1.7;
  color: rgba(15,24,19,0.78);
}
.bio__highlights {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.bio__highlights li {
  font-family: var(--ff-sans);
  font-size: 14px; line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.bio__highlights li::before {
  content: "·"; position: absolute;
  left: 6px; top: -2px;
  color: var(--brass); font-weight: 700;
  font-size: 18px;
}

/* CASE FULL */
.case-full {
  max-width: 920px; margin: 0 auto;
}
.case-full__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}
.case-full__year {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brass);
}
.case-full__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
}
.case-full__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.case-full__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(15,24,19,0.1);
  border-bottom: 1px solid rgba(15,24,19,0.1);
  margin-bottom: 32px;
}
.case-full__meta > div {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(15,24,19,0.7);
}
.case-full__meta strong {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 4px;
  font-weight: 600;
}
.case-full__body h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--emerald);
  margin: 28px 0 12px;
  letter-spacing: -0.005em;
}
.case-full__body h3:first-child { margin-top: 0; }
.case-full__body p {
  font-family: var(--ff-sans);
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(15,24,19,0.82);
  margin: 0 0 14px;
}
.case-full__body strong { color: var(--ink); font-weight: 600; }

/* MANIFESTE · approche */
.manifeste {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.manifeste__col { display: flex; flex-direction: column; gap: 18px; }
.manifeste__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 0;
}
.manifeste__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.manifeste__lead {
  font-family: var(--ff-sans);
  font-size: 17px; line-height: 1.65;
  color: rgba(15,24,19,0.74);
}
.manifeste__list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: manif;
}
.manifeste__list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(15,24,19,0.1);
}
.manifeste__list li:first-child { border-top: 0; padding-top: 0; }
.manifeste__num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--brass);
  line-height: 1;
}
.manifeste__list h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 4px 0 8px;
  letter-spacing: -0.005em;
}
.manifeste__list p {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15,24,19,0.74);
  margin: 0;
}

/* SECTION INK · dark */
.section--ink {
  background: var(--ink); color: white;
}
.section--ink .section__title { color: white; }
.section--ink .tag.tag--light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
  border-color: rgba(255,255,255,0.18);
}

/* METHODO · approche */
.methodo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.methodo__step {
  padding: 28px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  transition: all 400ms var(--ease);
}
.methodo__step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(176,141,87,0.35);
  transform: translateY(-3px);
}
.methodo__num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--brass);
  margin-bottom: 12px;
  line-height: 1;
}
.methodo__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 20px;
  color: white;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.methodo__text {
  font-family: var(--ff-sans);
  font-size: 14.5px; line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* CARD ACCENT · approche */
.card--accent {
  background: white;
  border: 1px solid rgba(15,24,19,0.08);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: all 400ms var(--ease);
}
.card--accent:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15,24,19,0.1);
}
.card--accent .card__num {
  display: inline-block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--brass);
  margin-bottom: 8px;
  line-height: 1;
}
.card--accent .card__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.card--accent .card__text {
  font-family: var(--ff-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15,24,19,0.72);
  margin: 0 0 18px;
}
.card--accent .card__price {
  padding-top: 16px;
  border-top: 1px solid rgba(15,24,19,0.08);
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(15,24,19,0.78);
}
.card--accent .card__price strong {
  color: var(--emerald); font-weight: 600;
}

/* CARD MINI · équipe */
.card--mini {
  text-align: center;
  padding: 36px 22px;
}
.card--mini .card__title {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: var(--emerald);
  margin: 0 0 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.card--mini .card__text {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(15,24,19,0.72);
  margin: 0;
}

/* CONFIDENCE block */
.confidence {
  max-width: 820px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}
.confidence__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 4px 0 12px;
}
.confidence__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.confidence__text {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15,24,19,0.78);
  margin: 0;
}

/* ARTICLES · actualités */
.articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.art-card {
  background: white;
  border: 1px solid rgba(15,24,19,0.08);
  border-radius: 18px;
  padding: 32px 30px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all 400ms var(--ease);
  cursor: pointer;
}
.art-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15,24,19,0.1);
}
.art-card__meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-sans);
  font-size: 12.5px;
}
.art-card__date {
  color: rgba(15,24,19,0.6);
  letter-spacing: 0.04em;
}
.art-card__cat {
  color: var(--brass);
  padding: 3px 10px;
  background: rgba(176,141,87,0.08);
  border-radius: 999px;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.art-card__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.25;
  color: var(--ink);
  margin: 4px 0 6px;
  letter-spacing: -0.005em;
}
.art-card__excerpt {
  font-family: var(--ff-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15,24,19,0.72);
  margin: 0;
}
.art-card__author {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,24,19,0.08);
  font-family: var(--ff-sans);
}
.art-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 2px;
}
.art-card__author span {
  font-size: 12px;
  color: rgba(15,24,19,0.55);
}

/* NEWSLETTER */
.newsletter {
  max-width: 820px; margin: 0 auto;
  background: var(--bg-ivory);
  border: 1px solid rgba(15,24,19,0.08);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.newsletter__head { margin-bottom: 28px; }
.newsletter__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 16px 0 12px;
}
.newsletter__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.newsletter__sub {
  font-family: var(--ff-sans);
  font-size: 15px; line-height: 1.6;
  color: rgba(15,24,19,0.7);
  margin: 0 auto;
  max-width: 540px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__input {
  flex: 1 1 240px;
  padding: 14px 18px;
  border: 1px solid rgba(15,24,19,0.16);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 200ms ease;
}
.newsletter__input:focus {
  outline: none;
  border-color: var(--brass);
}
.newsletter__ok {
  flex: 1 1 100%;
  margin-top: 12px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--emerald);
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 8px 0 0;
}
.contact-form__title em {
  font-style: italic; font-weight: 500; color: var(--brass);
  font-family: var(--ff-serif);
}
.contact-form__lead {
  font-family: var(--ff-sans);
  font-size: 16px; line-height: 1.65;
  color: rgba(15,24,19,0.74);
  margin-bottom: 8px;
}
.contact-form__el {
  display: flex; flex-direction: column;
  gap: 18px;
  background: white;
  border: 1px solid rgba(15,24,19,0.08);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__field {
  display: flex; flex-direction: column;
  gap: 7px;
}
.contact-form__field > span {
  font-family: var(--ff-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15,24,19,0.55);
  font-weight: 500;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 13px 16px;
  border: 1px solid rgba(15,24,19,0.14);
  border-radius: 12px;
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.12);
}
.contact-form__field textarea { resize: vertical; min-height: 110px; font-family: var(--ff-sans); }
.contact-form__check {
  display: flex; align-items: flex-start;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: rgba(15,24,19,0.7);
  line-height: 1.55;
  margin: 4px 0;
}
.contact-form__check input { margin-top: 3px; flex-shrink: 0; }
.contact-form__ok {
  padding: 18px 22px;
  background: rgba(31,79,63,0.06);
  border: 1px solid rgba(31,79,63,0.18);
  border-radius: 12px;
  color: var(--emerald);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 17px;
  text-align: center;
}

/* CONTACT INFO sidebar */
.contact-info {
  display: flex; flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
}
.contact-info__card {
  background: white;
  border: 1px solid rgba(15,24,19,0.08);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.contact-info__card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.contact-info__card--accent .contact-info__title { color: white; }
.contact-info__card--accent .contact-info__text { color: rgba(255,255,255,0.74); }
.contact-info__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.contact-info__addr {
  font-family: var(--ff-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15,24,19,0.78);
}
.contact-info__addr strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans);
  font-size: 14.5px;
  color: var(--emerald);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 200ms ease;
}
.contact-info__link:hover { color: var(--brass); }
.contact-info__link svg {
  width: 16px; height: 16px; flex-shrink: 0;
}
.contact-info__hours {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.contact-info__hours li {
  display: flex; justify-content: space-between;
  align-items: center;
  font-family: var(--ff-sans);
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15,24,19,0.06);
}
.contact-info__hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info__hours li span { color: rgba(15,24,19,0.6); }
.contact-info__hours li strong { color: var(--ink); font-weight: 600; }
.contact-info__text {
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(15,24,19,0.7);
  margin: 0;
}
.contact-info__wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: white;
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 6px;
  transition: all 200ms ease;
}
.contact-info__wa:hover {
  background: var(--brass); color: white;
}
.contact-info__wa svg { width: 18px; height: 18px; }

/* MAP wrap */
.map-wrap {
  margin-top: 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,24,19,0.1);
}

/* SECTION ink utility */
.section--ink .grid--3 .card--accent {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: white;
}
.section--ink .card--accent .card__title { color: white; }
.section--ink .card--accent .card__text { color: rgba(255,255,255,0.72); }

/* ═══════════ RESPONSIVE (Mobile-first overrides) ═══════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { aspect-ratio: 16/10; max-width: 100%; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust__item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); padding-left: 0; padding-top: 20px; }
  .trust__item:nth-child(-n+2) { border-top: 0; padding-top: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: inline-flex; align-items: center; justify-content: center; }
  .header__inner { height: 64px; padding: 0 18px; }
  .header__logo { font-size: 17px; }
  .hero { padding: 32px 0 64px; }
  .hero__title { font-size: clamp(34px, 9vw, 56px); }
  .hero__sub { font-size: 15px; }
  .hero__visual { aspect-ratio: 4/5; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust__value { font-size: clamp(28px, 9vw, 40px); }
  .expertise-row { grid-template-columns: 50px 1fr; gap: 14px; padding: 22px 0; }
  .expertise-row__tags { display: none; }
  .expertise-row__arrow { display: none; }
  .expertise-row__title { font-size: clamp(20px, 5.5vw, 28px); }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .khoma-cta {
    bottom: 14px; left: 50%; right: auto;
    transform: translateX(-50%);
    max-width: calc(100% - 20px); width: calc(100% - 20px);
    padding: 8px 8px 8px 18px;
    gap: 14px;
  }
  .khoma-cta:hover { transform: translateX(-50%) translateY(-1px); }
  .khoma-cta.is-hidden { transform: translateX(-50%) translateY(140%); }
  .khoma-cta__title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .khoma-cta__sub { font-size: 10.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .khoma-cta__btn { padding: 9px 14px; font-size: 12px; }
}
@media (max-width: 420px) {
  .team__grid { grid-template-columns: 1fr; gap: 22px; }
  .khoma-cta__sub { display: none; }
}

/* ═══════════ INTERNAL PAGES · RESPONSIVE ═══════════ */
@media (max-width: 980px) {
  .page-hero { padding: 110px 0 50px; }
  .exp-block,
  .exp-block--reverse,
  .bio,
  .bio--reverse,
  .manifeste,
  .contact-grid { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .exp-block { padding: 50px 0; }
  .exp-block:first-child { padding-top: 0; }
  .bio { padding: 48px 0; }
  .bio__media { position: static; aspect-ratio: 16/10; max-height: 480px; }
  .methodo { grid-template-columns: 1fr 1fr; gap: 20px; }
  .articles { grid-template-columns: 1fr; }
  .case-full__meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-info { position: static; }
}
@media (max-width: 760px) {
  .page-hero { padding: 100px 0 44px; }
  .page-hero__title { font-size: clamp(34px, 9vw, 56px); }
  .exp-block__title,
  .bio__name,
  .manifeste__title,
  .case-full__title,
  .contact-form__title { font-size: clamp(28px, 7.5vw, 42px); }
  .exp-block__media,
  .bio__media { aspect-ratio: 4/5; }
  .methodo { grid-template-columns: 1fr; }
  .methodo__step { padding: 24px 22px; }
  .case-full__meta { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
  .case-full__body h3 { font-size: 19px; margin: 22px 0 10px; }
  .case-full__body p { font-size: 14.5px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 14px; }
  .contact-form__el { padding: 22px 20px; }
  .newsletter { padding: 32px 22px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { flex: 1 1 100%; }
  .grid--3,
  .grid--4 { grid-template-columns: 1fr 1fr; gap: 18px; }
  .manifeste__list li { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 0; }
  .manifeste__num { font-size: 30px; }
  .map-wrap iframe { height: 360px !important; }
}
@media (max-width: 420px) {
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .case-full__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .art-card { padding: 26px 22px; }
  .art-card__meta { flex-wrap: wrap; }
  .contact-info__card { padding: 24px 22px; }
  .exp-block__num,
  .bio__num { font-size: 38px; top: 16px; left: 18px; }
  .map-wrap iframe { height: 300px !important; }
}
