/* ─────────────────────────────────────────
   RESET & VARIABLES
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #f6f3e8;
  --sage: #1a5c52;
  --gold: #f5a623;
  --text: #1a1a1a;
  --text-light: #5f5f58;
  --white: #ffffff;
  --font-display: 'Space Grotesk', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-hero: 'Space Grotesk', 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: #ffffff; color: var(--text); overflow-x: clip; max-width: 100vw; }
html { overflow-x: clip; }
/* Note: body.style.background est piloté par JS pour le fondu scroll */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 10px; }

/* ─────────────────────────────────────────
   REVEAL (subtle fade + blur)
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ─────────────────────────────────────────
   SKIP LINK
───────────────────────────────────────── */
.skip-link {
  position: absolute; left: 12px; top: 12px;
  padding: 10px 12px; background: var(--white);
  border: 1px solid rgba(0,0,0,0.12); border-radius: 12px;
  text-decoration: none; color: var(--text);
  transform: translateY(-140%); transition: transform 0.2s ease; z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ── NAV LOGO ── */
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; opacity: 0.9; transition: opacity 0.2s; width: 130px; max-width: 130px; overflow: hidden; }
.nav-logo:hover { opacity: 1; }
.nav-logo img { display: block; width: 130px; height: auto; pointer-events: none; }

/* ── NAV RIGHT : LinkedIn + burger groupés à droite ── */
.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; letter-spacing: 0.05em; color: var(--text); text-decoration: none; opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }

.hamburger-btn {
  display: inline-flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px;
  border: 1px solid rgba(0,0,0,0.10); border-radius: 14px;
  background: rgba(255,255,255,0.55);
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 501;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.16); }
.hamburger-btn span { width: 22px; height: 1.6px; background: var(--text); display: block; }

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
/* Backdrop : assombrit + floute la page derrière le drawer */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 599;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

.menu-overlay {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%;
  /* Dégradé subtil + grain pour éviter l'aplat plat */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    var(--sage);
  border-left: 1px solid rgba(255,255,255,0.10);
  z-index: 600;
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
  display: flex; flex-direction: column; justify-content: center; padding: 80px;
}
.menu-overlay.open { transform: translateX(0); }

/* Desktop : drawer 460px depuis la droite */
@media (min-width: 769px) {
  .menu-overlay {
    width: 460px;
    box-shadow: -12px 0 48px rgba(0,0,0,0.18);
    padding: 80px 56px;
  }
}

.menu-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 28px; color: white; cursor: pointer;
  background: transparent; border: none;
  border-radius: 14px; padding: 10px 14px; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.menu-close:hover { opacity: 1; }

.menu-links a {
  font-family: var(--font-display); font-size: clamp(32px,4.5vw,46px);
  font-weight: 400; color: white; text-decoration: none;
  display: block; margin-bottom: 24px;
  transform: translateY(18px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: relative;
  isolation: isolate;
}
/* Highlight blanc derrière les lettres */
.menu-links a::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em;
  bottom: 0.1em;
  height: 0.28em;
  background: white;
  opacity: 0;
  border-radius: 999px;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.menu-links a:hover::after { opacity: 0.15; }
.menu-overlay.open .menu-links a              { transform: translateY(0); opacity: 1; }
.menu-overlay.open .menu-links a:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.open .menu-links a:nth-child(2) { transition-delay: 0.16s; }
.menu-overlay.open .menu-links a:nth-child(3) { transition-delay: 0.24s; }
.menu-overlay.open .menu-links a:nth-child(4) { transition-delay: 0.32s; }
.menu-overlay.open .menu-links a:nth-child(5) { transition-delay: 0.40s; }

.menu-signature {
  position: absolute;
  bottom: 110px;
  left: 80px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  .menu-signature { left: 28px; bottom: 90px; }
}

.menu-social { position: absolute; bottom: 48px; left: 80px; display: flex; gap: 20px; flex-wrap: wrap; }
.menu-social a { font-size: 13px; font-family: var(--font-body); color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.menu-social a:hover { color: white; }

body.no-scroll { overflow: hidden; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: transparent;
  position: relative; display: flex; align-items: center;
  padding: 120px 80px 80px; overflow: hidden;
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(48px,6vw,88px);
  font-weight: 700;
  color: var(--sage);
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 64%;
  text-wrap: balance;
  position: relative; z-index: 3;
  animation: heroIn 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-accent {
  position: relative;
  color: var(--gold);
  white-space: nowrap;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.12em;
  height: 0.38em;
  background: var(--gold);
  opacity: 0.18;
  border-radius: 999px;
  z-index: -1;
}
.hero-dot { color: var(--sage); }

@keyframes heroIn { from { opacity:0; transform:translateY(60px); } to { opacity:1; transform:translateY(0); } }

.blob-beige {
  position: absolute; right: 13%; top: 50%; transform: translateY(-55%);
  width: 304px; height: 272px; background: #e3dfd2;
  border-radius: 78% 22% 61% 39% / 48% 63% 37% 52%;
  animation: morphBlob1 16s ease-in-out infinite; z-index: 0;
  filter: blur(1px);
}
.blob-gold {
  position: absolute; right: 7%; top: 52%; transform: translateY(-32%);
  width: 208px; height: 240px;
  background: linear-gradient(145deg, #f5a623, #e8911a);
  border-radius: 42% 58% 33% 67% / 61% 38% 62% 39%;
  animation: morphBlob2 18s ease-in-out infinite; z-index: 0;
}
@keyframes morphBlob1 {
  0%,100% { border-radius: 78% 22% 61% 39% / 48% 63% 37% 52%; }
  35%     { border-radius: 52% 48% 72% 28% / 64% 36% 58% 42%; }
  70%     { border-radius: 66% 34% 43% 57% / 40% 70% 30% 60%; }
}
@keyframes morphBlob2 {
  0%,100% { border-radius: 42% 58% 33% 67% / 61% 38% 62% 39%; }
  35%     { border-radius: 63% 37% 48% 52% / 45% 58% 42% 55%; }
  70%     { border-radius: 38% 62% 59% 41% / 66% 34% 64% 36%; }
}

.star-deco {
  position: absolute; right: 5%; top: 20%; z-index: 3;
  opacity: 0.65; pointer-events: none; color: rgba(26,92,82,0.45);
  transform-origin: 50% 50%;
  animation: starBreath 6.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes starBreath {
  0%, 100% { transform: rotate(-2deg) scale(1);    opacity: .55; }
  50%      { transform: rotate( 2deg) scale(1.04); opacity: .8;  }
}

@media (prefers-reduced-motion: reduce) {
  .blob-beige, .blob-gold, .star-deco, .hero-title { animation: none !important; }
}

.hero-cta {
  position: absolute; bottom: 80px; left: 80px;
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); text-decoration: none; font-weight: 600; z-index: 5;
  transition: gap 0.3s;
}
.hero-cta:hover { gap: 24px; }
.cta-circle {
  width: 36px; height: 36px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */

#about.about {
  background: transparent;
  padding: clamp(96px, 8vw, 140px) clamp(24px, 6vw, 120px);
}

#about.about .container {
  width: min(1280px, 92%);
  margin: 0 auto;
}


/* ── KICKER ── */

#about .about-kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px 0;
  display: inline-block;
  position: relative;
}

#about .about-kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
  border-radius: 2px;
}


/* ── HEADLINE ── */

#about .about-head{
  font-family: var(--font-hero);
  margin: 0 0 48px 0;
  line-height: 1.06;
}

/* Ligne 1 : introductive, retenue */
#about .about-line-1{
  display: block;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--sage);
}

/* Ligne 2 : le mot qui compte — contraste brutal et intentionnel */
#about .about-line-2{
  display: block;
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: var(--text);
}

/* ── CONTENT GRID ── */

#about .about-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 56px;
  align-items: start;
}

#about .about-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0;
  max-width: 58ch;                  /* un peu plus large qu’avant */
}

#about .about-text--right {
  color: var(--text);
}


/* ── CONNECTOR ── */

#about .about-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

#about .about-connector svg {
  width: 76px;
  height: auto;
  opacity: 0.95;
}

#about .connector-path {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: drawFlow 2.8s ease-in-out infinite;
}

@keyframes drawFlow {
  0%   { stroke-dashoffset: 160; opacity: .35; }
  35%  { opacity: .95; }
  60%  { stroke-dashoffset: 0;   opacity: .95; }
  100% { stroke-dashoffset: -160; opacity: .35; }
}

@media (prefers-reduced-motion: reduce) {
  #about .connector-path {
    animation: none !important;
  }
}

/* ── ABOUT CTA ROW (→ about.html) ── */
#about .about-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}

#about .about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: gap 0.3s;
}
#about .about-cta-link:hover { gap: 20px; }

#about .about-cta-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.2s;
}
#about .about-cta-link:hover .about-cta-circle {
  background: var(--gold);
}

#about .about-cta-hint {
  font-size: 12px;
  color: rgba(0,0,0,0.32);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ─────────────────────────────────────────
   CARD STACK — 4 colonnes de 25% chacune

   [FROM STRATEGY][  Go Global  ][Strat.to Field][Make it Matter]
   [  0% → 25%   ][ 25% → 50%  ][  50% → 75%   ][  75% → 100%  ]
───────────────────────────────────────── */
#services.cards-wrapper {
  background: var(--cream);
  position: relative;
  /* height calculée dynamiquement par JS : (cards.length + 0.5) * 100vh */
}

.stack-card {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#card-1 { z-index: 10; }
#card-3 { z-index: 30; }
#card-4 { z-index: 40; }

.card-inner {
  border-radius: 28px 28px 0 0;
  width: calc(100% - 96px);
  height: calc(100vh - 48px);
  position: relative;
  overflow: visible;
  transform-origin: top center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ── CARD 1 : FROM STRATEGY (0→25%) + photo (25→100%) ──
   Le texte est ancré ici, les cards suivantes ne le couvrent jamais */
.c1 { background: transparent; overflow: visible; }
.c1-left {
  position: absolute;
  left: 0; top: 0;
  width: 25%; height: 100%;
  background: var(--cream);
  display: flex; align-items: center;
  padding: 0 20px 0 40px;
  z-index: 50; /* au-dessus de toutes les stack-cards (max z-index: 40) */
}
.c1-mid   { position: absolute; left: 25%; top: 0; width: 25%; height: 100%; background: var(--cream); }
.c1-right { position: absolute; left: 50%; top: 0; width: 50%; height: 100%; overflow: hidden; }
.c1-right img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; }


/* ── CARD 3 : fond beige couvre la photo (25→100%) + services ── */
.c3 { background: transparent; overflow: visible; pointer-events: none; }
/* Zone fond beige qui couvre la photo dès l'arrivée de card 3 */
.c3::before {
  content: "";
  position: absolute;
  left: 25%; top: 0;
  width: 75%; height: 100%;
  background: var(--cream);
  pointer-events: none;
  z-index: 0;
}
.c3-goglobal, .c3-matter { z-index: 1; }
.c3 * { pointer-events: auto; }
.c3-goglobal {
  position: absolute;
  left: 25%; top: 0;
  width: 25%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
  background: var(--cream);
}
.c3-matter {
  position: absolute;
  left: 75%; top: 0;
  width: 25%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
  background: var(--cream);
}

/* ── CARD 4 : Strategy to Field (50→75%) ── */
.c4 { background: transparent; overflow: visible; pointer-events: none; }
.c4 * { pointer-events: auto; }
.c4-center {
  position: absolute;
  left: 50%; top: 0;
  width: 25%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
  background: var(--cream);
}

/* ── TYPOGRAPHIE ── */
.stack-kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 40px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 800;
  margin: 0;
}
.stack-kicker .light { font-weight: 400; }
/* Home only: make MARKET gold in the homepage stack title */
.home-gold { color: var(--gold) !important; }

.svc-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.25; }
.svc-desc  { font-size: 12.5px; color: var(--text-light); line-height: 1.75; }

.field-title { font-family: var(--font-display); font-size: clamp(18px, 2vw, 32px); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.field-desc  { font-size: 12.5px; color: var(--text-light); max-width: 220px; margin: 0 auto 18px; line-height: 1.8; }
.link-gold   { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.link-gold:hover { border-bottom-color: var(--gold); }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
#testimonials {
  background: var(--sage);
  padding: clamp(84px, 7vw, 120px) clamp(24px, 6vw, 100px);
}

.test-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 12px 0;
}

.test-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin: 0 0 56px 0;
  max-width: 60ch;
}

.test-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* Cards: more "quiet luxury" (soft glass + border) */
.test-card  {
  border-radius: 22px;
  padding: 46px 40px;
  min-height: 260px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Reveal is now generic (.reveal) */
.test-text   {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.86);
  font-style: italic;
  margin: 0 0 28px 0;
}

.test-author {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(245,166,35,0.92); /* gold */
  text-align: right;
  font-style: italic;
  margin: 0;
}


/* ─────────────────────────────────────────
   FOOTER / CONTACT
───────────────────────────────────────── */
footer#contact { background: var(--sage); padding: 80px; border-top: 1px solid rgba(255,255,255,0.1); }

/* TOP : 2 colonnes centrées verticalement — tagline | contact */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: center;
}

/* Tagline + signature */
.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.footer-tagline em { font-style: normal; color: var(--gold); }
.footer-sig {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* Contact */
.footer-contact a {
  display: inline-block;
  font-size: 15px;
  color: white;
  text-decoration: none;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: border-bottom-color 0.2s;
}
.footer-contact a:hover { border-bottom-color: white; }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 52px 0 44px;
}

/* BOTTOM : 4 colonnes — Pages / Legal / Social / Logo */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 40px;
  align-items: start;
}
.footer-col p  { font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 10px; line-height: 1.6; }
.footer-col a  { color: rgba(255,255,255,0.92); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-col a:hover { border-bottom-color: rgba(255,255,255,0.6); }
/* Logo : pas de soulignement */
.footer-logo, .footer-logo:hover { border-bottom: none !important; }
/* Liens nav footer : en colonne, sans soulignement */
.fnav a { display: block !important; border-bottom: none !important; }
.fnav a:hover { border-bottom: none !important; color: white; }
.footer-logo   { display: inline-flex; text-decoration: none; opacity: 0.88; transition: opacity 0.2s; border-bottom: none !important; }
.footer-logo:hover { opacity: 1; border-bottom: none !important; }
.footer-logo img { display: block; }
.footer-brand  { font-size: clamp(40px,5.5vw,64px); font-weight: 700; letter-spacing: -0.02em; color: white; line-height: 0.9; margin-bottom: 20px; }
.footer-tag    { font-family: var(--font-display); font-style: italic; font-size: 22px; color: rgba(255,255,255,0.75); line-height: 1.4; }
/* .footer-contact styles remplacés par .footer-col */
/* footer-divider retiré — séparation gérée par border-top sur footer-bottom */
.fnav-title    { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.fnav a        { display: block; font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.fnav a:hover  { color: white; }
.fnav--right   { text-align: right; }
.fnav--right a, .fnav--right .fnav-title { text-align: right; }
.footer-copy   { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 16px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 980px) {
  #about.about { padding: 100px 24px; }
  #about .about-content { grid-template-columns: 1fr; gap: 26px; }
  #about .about-connector { display: none; }
  #about .about-text { max-width: 68ch; }
}

@media (max-width: 768px) {
  /* ── NAV ── */
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .menu-overlay { padding: 64px 28px; }
  .menu-social  { left: 28px; }

  /* ── HERO ── */
  #hero { padding: 100px 28px 80px; }
  .hero-title { max-width: 100%; font-size: clamp(36px, 8vw, 56px); }
  .blob-beige { width: 180px; height: 180px; right: 0; }
  .blob-gold  { width: 150px; height: 160px; right: -20px; }
  .hero-cta   { left: 28px; bottom: 40px; }

  /* ════════════════════════════════════════════
     SERVICES MOBILE — layout complètement séparé
     On cache toutes les stack-cards desktop
     et on affiche une section mobile dédiée
  ════════════════════════════════════════════ */

  /* 1. Désactiver le système sticky desktop */
  #services.cards-wrapper {
    height: auto !important;
  }
  .stack-card {
    display: none !important; /* cachées sur mobile */
  }

  /* 2. Afficher la section mobile */
  #services-mobile {
    display: block !important;
  }

  /* ── TESTIMONIALS ── */
  #testimonials { padding: 60px 28px; }
  .test-grid { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  footer#contact { padding: 60px 28px; }
  .footer-top    { grid-template-columns: 1fr; row-gap: 40px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .fnav--right   { text-align: left; }
  .footer-copy   { text-align: left; margin-top: 20px; }
}

/* ════════════════════════════════════════════
   #services-mobile — section dédiée mobile
   Cachée sur desktop, visible uniquement <768px
════════════════════════════════════════════ */
#services-mobile {
  display: none; /* caché sur desktop */
  background: var(--cream);
}

/* Titre */
.mob-title {
  padding: 60px 28px 40px;
}
.mob-title .stack-kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: clamp(32px, 8vw, 52px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.mob-title .stack-kicker .light { font-weight: 400; }

/* Photo B&W */
.mob-photo {
  width: 100%;
  height: 55vw;
  overflow: hidden;
}
.mob-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

/* Grille des 3 services */
.mob-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mob-svc {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Strategy to Field prend toute la largeur */
.mob-svc--full {
  grid-column: 1 / -1;
  border-left: none;
  background: var(--cream);
  padding: 48px 28px;
}

.mob-svc:nth-child(2) {
  border-left: 1px solid rgba(0,0,0,0.06);
}
/* ─────────────────────────────────────────
   SERVICES ICONS (Gold, premium, stable)
───────────────────────────────────────── */

/* 1) Base: toutes les icônes prennent la couleur accent */
.svc-icon,
.starburst {
  color: var(--gold);              /* clé: currentColor = gold */
  width: 44px;
  height: 44px;
  display: block;                  /* évite les line-height surprises */
  margin: 0 auto 14px;             /* centre + spacing sous l’icône */
}

/* 2) Stroke premium (un peu plus épais) */
.svc-icon .s,
.starburst .s {
  stroke: currentColor;
  stroke-width: 2.2;               /* accentué mais clean */
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* 3) Petits points (si utilisés) */
.svc-icon .f,
.starburst .f {
  fill: currentColor;
  stroke: none;
}


/* Option si tu veux encore plus d'impact: augmente très légèrement */
@media (min-width: 900px){
  .svc-icon, .starburst { width: 46px; height: 46px; }
  .svc-icon .s, .starburst .s { stroke-width: 2.4; }
}

/* ─────────────────────────────────────────
   LEGAL PAGE
───────────────────────────────────────── */
.legal-page {
      background: var(--cream);
      min-height: 100vh;
    }

    /* ── HEADER ── */
    .legal-header {
      padding: 140px 80px 60px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .legal-header-kicker {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 16px;
    }
    .legal-header h1 {
      font-family: var(--font-hero);
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--text);
      margin: 0 0 32px 0;
    }

    /* ── NAV INTERNE ── */
    .legal-nav {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .legal-nav a {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      padding: 8px 16px;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 999px;
      transition: all 0.2s;
    }
    .legal-nav a:hover {
      color: var(--text);
      border-color: var(--text);
      background: white;
    }

    /* ── BODY ── */
    .legal-body {
      max-width: 780px;
      margin: 0 auto;
      padding: 80px 80px 120px;
    }

    /* ── SECTION ── */
    .legal-section {
      padding-top: 80px;
      border-top: 1px solid rgba(0,0,0,0.07);
      margin-top: 80px;
    }
    .legal-section:first-child {
      border-top: none;
      margin-top: 0;
      padding-top: 0;
    }

    .legal-section-num {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
    }
    .legal-section > h2 {
      font-family: var(--font-hero);
      font-size: clamp(26px, 2.8vw, 38px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 0 0 40px 0;
      line-height: 1.1;
    }

    /* ── BLOCS INTERNES ── */
    .legal-block {
      margin-bottom: 40px;
    }
    .legal-block h3 {
      font-family: var(--font-hero);
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 12px 0;
      letter-spacing: -0.01em;
    }
    .legal-block p,
    .legal-block li {
      font-size: 15px;
      line-height: 1.85;
      color: var(--text-light);
      margin: 0 0 8px 0;
    }
    .legal-block ul {
      padding-left: 0;
      list-style: none;
      margin: 8px 0;
    }
    .legal-block ul li {
      padding-left: 16px;
      position: relative;
    }
    .legal-block ul li::before {
      content: "";
      position: absolute;
      left: 0; top: 11px;
      width: 5px; height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }

    /* ── PLACEHOLDER ── */
    .placeholder {
      background: rgba(245,166,35,0.12);
      border: 1px dashed rgba(245,166,35,0.5);
      border-radius: 6px;
      padding: 2px 8px;
      font-size: 13px;
      color: #b87d10;
      font-style: italic;
      white-space: nowrap;
    }

    /* ── INFO BOX ── */
    .legal-info-box {
      background: white;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      padding: 32px 36px;
      margin-bottom: 48px;
    }
    .legal-info-box p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-light);
      margin: 0 0 6px 0;
    }
    .legal-info-box p:last-child { margin: 0; }
    .legal-info-box strong {
      color: var(--text);
      font-weight: 600;
    }

    /* ── BACK ── */
    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s, gap 0.3s;
      margin-bottom: 0;
    }
    .legal-back:hover { color: var(--text); gap: 16px; }

    @media (max-width: 768px) {
      .legal-header { padding: 120px 24px 48px; }
      .legal-body { padding: 60px 24px 80px; }
    }
    .visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
