/* ============================================================
   GOUPIL STUDIO — « Atelier Goupil » design system
   Direction : éditorial chaleureux français, papier + encre
   ============================================================ */

/* ── 1. Design tokens ── */
:root {
  /* Couleurs */
  --ink:           #0D0D0D;
  --ink-soft:      #1E1E1E;
  --ink-quiet:     #2A2A2A;
  --paper:         #F5E8D0;
  --paper-light:   #FBF6EC;
  --paper-dark:    #EDDFC4;
  --ivory:         #FFFCF5;
  --amber:         #F0A020;
  --amber-ink:     #C07B10;
  --amber-deep:    #8B4513;
  --amber-soft:    rgba(192,123,16,0.10);
  --hair:          rgba(13,13,13,0.10);
  --hair-strong:   rgba(13,13,13,0.18);
  --text:          #2D2A24;
  --text-muted:    #6B6358;
  --text-quiet:    #948B7E;

  /* Typo */
  --font-display:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-editorial:'Fraunces', 'Georgia', serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Échelle typo fluide */
  --fs-xs:  0.78rem;
  --fs-sm:  0.875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.375rem;
  --fs-2xl: clamp(1.75rem, 3vw, 2.5rem);
  --fs-3xl: clamp(2.4rem, 5vw, 4rem);
  --fs-4xl: clamp(3.2rem, 7vw, 6rem);
  --fs-5xl: clamp(4.5rem, 11vw, 10rem);

  /* Spacing */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  24px;
  --gap-lg:  40px;
  --gap-xl:  64px;
  --gap-2xl: 96px;
  --gap-3xl: 144px;
  --section: clamp(80px, 11vw, 144px);
  --container: 1480px;
  --container-narrow: 1080px;
  --gutter: clamp(24px, 5vw, 80px);

  /* Forme — arrondis prononcés (style soft modular) */
  --radius-xs: 8px;
  --radius:   16px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  /* Mouvement */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.55, 0, 0.45, 1);
  --t-fast:    220ms;
  --t-base:    400ms;
  --t-slow:    700ms;

  /* Grain papier — SVG inline */
  --grain: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.38  0 0 0 0 0.12  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ── 2. Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 220px;
  opacity: 0.4;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Custom cursor retiré */
.cursor, .cursor__dot { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

/* ── 3. Container ── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.wrap--wide { max-width: 1640px; }
.wrap--narrow { max-width: 900px; }
.wrap--full { max-width: none; padding: 0; }
/* Asymmetric layout helper */
.wrap--offset-right { max-width: var(--container); padding-right: clamp(80px, 12vw, 220px); }
.wrap--offset-left { max-width: var(--container); padding-left: clamp(80px, 12vw, 220px); }

/* ── 4. Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: var(--fs-4xl); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p  { line-height: 1.7; color: var(--text); }
p + p { margin-top: 0.9em; }
strong { font-weight: 600; color: var(--ink); }
em, .ed {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  color: var(--amber-ink);
  position: relative;
  display: inline-block;
}
em::after, .ed::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: var(--amber);
  opacity: 0.35;
  z-index: -1;
  border-radius: 1px;
}
.ed--soft { color: var(--amber-ink); font-weight: 900; }
.mark-amber {
  background: linear-gradient(180deg, transparent 60%, rgba(240,160,32,0.35) 60%);
  padding: 0 4px;
  color: var(--ink);
  font-weight: 700;
}

/* Kicker / surtitre */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber-ink);
  line-height: 1;
}
.kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber-ink);
  flex-shrink: 0;
}
.kicker--center { justify-content: center; }
.kicker--light { color: var(--paper); }
.kicker--light::before { background: var(--amber); }

/* Numéros de section éditoriaux */
.sn {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-style: normal;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 1;
  color: var(--amber-ink);
  opacity: 0.18;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* ── 5. Sections — fluide avec dégradés volumétriques ── */
.section {
  padding: var(--section) 0;
  position: relative;
  isolation: isolate;
}
.section + .section { padding-top: 0; }
/* Fonds — au lieu de blocs plats, dégradés subtils qui rajoutent du volume */
.section--paper {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(240,160,32,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(192,123,16,0.05) 0%, transparent 60%),
    var(--paper);
}
.section--light {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,252,245,0.85) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(240,160,32,0.06) 0%, transparent 55%),
    var(--paper-light);
}
.section--ivory      { background: var(--ivory); }

/* ── Sections avec fonds décoratifs ambre (images blobs) ── */
.section--bg-1, .section--bg-2, .section--bg-3, .section--bg-4 {
  position: relative;
  isolation: isolate;
}
.section--bg-1::before,
.section--bg-2::before,
.section--bg-3::before,
.section--bg-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -2;
}
.section--bg-1::after,
.section--bg-2::after,
.section--bg-3::after,
.section--bg-4::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,232,208,0.15) 0%, rgba(245,232,208,0.05) 50%, rgba(245,232,208,0.20) 100%);
  z-index: -1;
}
.section--bg-1::before { background-image: url('../assets/fond-1.png'); }
.section--bg-2::before { background-image: url('../assets/fond-2.png'); }
.section--bg-3::before { background-image: url('../assets/fond-3.png'); }
.section--bg-4::before { background-image: url('../assets/fond-4.png'); }

/* Section "Notre méthode" — fond photo beige */
.section--bg-methode {
  position: relative;
  isolation: isolate;
  background: transparent !important;
}
.section--bg-methode::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/fond-methode.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -2;
}
.section--bg-methode::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,232,208,0.55) 0%, rgba(245,232,208,0.30) 50%, rgba(245,232,208,0.55) 100%);
  z-index: -1;
}
.section--ink        {
  background: var(--ink);
  color: var(--paper);
}

/* Transitions "blob" entre sections — courbes organiques au lieu de bords droits */
.section-wave {
  position: relative;
}
.section-wave::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 80px;
  background: inherit;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 2;
}
.section-wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: inherit;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper-light); }
.section--ink p { color: rgba(245,232,208,0.75); }
.section--ink .kicker { color: var(--amber); }
.section--ink .kicker::before { background: var(--amber); }

.section-head {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin-bottom: var(--gap-2xl);
}
.section-head__lead { max-width: 18ch; }
.section-head__lead h2 {
  margin-top: 22px;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.section-head__intro { padding-bottom: 12px; padding-left: clamp(0px, 4vw, 80px); }
.section-head__intro p { font-size: var(--fs-lg); max-width: 44ch; }
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section-head__lead { max-width: none; }
.section-head--center .section-head__intro { padding-left: 0; }
.section-head--center .section-head__intro p { margin-left: auto; margin-right: auto; }

/* Hairline ambre */
.hr {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--amber-ink);
  margin: 28px 0;
  border: 0;
}
.hr--center { margin-left: auto; margin-right: auto; }
.hr--full   { width: 100%; opacity: 0.5; background: var(--ink); }

/* ── 6. Buttons & links ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1.5px solid currentColor;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: translateY(101%);
  transition: transform var(--t-base) var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn .btn-arrow { transition: transform var(--t-base) var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.btn--primary {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 6px 0 -3px rgba(192,123,16,0.45);
  font-weight: 700;
  padding: 18px 32px;
}
.btn--primary:hover {
  color: var(--paper-light);
  background: var(--amber-ink);
  border-color: var(--amber-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(192,123,16,0.55);
}
.btn--primary::before { background: var(--ink); }

.btn--dark {
  color: var(--ink);
  background: transparent;
}
.btn--dark:hover { color: var(--paper-light); }
.btn--dark::before { background: var(--ink); }

.btn--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--hair-strong);
}
.btn--ghost:hover { color: var(--paper-light); border-color: var(--ink); }
.btn--ghost::before { background: var(--ink); }

.section--ink .btn--dark {
  color: var(--paper-light);
  border-color: var(--paper-light);
}
.section--ink .btn--dark:hover { color: var(--ink); }
.section--ink .btn--dark::before { background: var(--paper-light); }
/* Primary amber stays amber even on dark sections — top CTA hierarchy */
.section--ink .btn--primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.section--ink .btn--primary:hover {
  background: var(--paper-light);
  border-color: var(--paper-light);
}

/* Link with animated underline */
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-base) var(--ease-out);
}
.link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform var(--t-base) var(--ease-out);
}
.link:hover { color: var(--amber-ink); }
.link:hover::after { transform: scaleX(0); transform-origin: left; }
.link:hover .link-arrow { transform: translateX(4px); }
.link-arrow { transition: transform var(--t-base) var(--ease-out); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── 7. Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(245,232,208,0.82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(245,232,208,0.92);
  border-bottom-color: var(--hair);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out);
}
.nav__mark img { width: 28px; height: 28px; object-fit: contain; }
.nav__brand:hover .nav__mark { transform: rotate(-6deg); }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav__tag {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--amber-ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  position: relative;
  transition: color var(--t-base) var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease-out);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta .btn { padding: 12px 22px; font-size: 0.82rem; }
.nav__burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 4px;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-fast);
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px var(--gutter) 60px;
  gap: 18px;
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease-out);
}
.nav-overlay.is-open { transform: translateY(0); }
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 10vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay a:hover { color: var(--amber); }
.nav-overlay .btn { margin-top: 32px; }

/* ── 8. Hero — gradient mesh volumétrique ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 100% 30%, rgba(240,160,32,0.32) 0%, rgba(240,160,32,0.10) 30%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(192,123,16,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,252,245,0.9) 0%, transparent 70%),
    linear-gradient(160deg, var(--paper-light) 0%, var(--paper) 45%, var(--paper-dark) 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 30%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(240,160,32,0.22) 0%, rgba(240,160,32,0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  animation: blob-morph 24s ease-in-out infinite;
  filter: blur(4px);
}
/* Second blob discret en bas-gauche du hero */
.hero::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(192,123,16,0.10) 0%, transparent 65%);
  border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
  pointer-events: none;
  z-index: 0;
  animation: blob-morph 32s ease-in-out infinite reverse;
  filter: blur(8px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { position: relative; z-index: 2; }
.hero__fox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 460px;
  height: 480px;
  margin-left: auto;
}
.hero__fox::before {
  content: '';
  position: absolute;
  inset: 6%;
  border: 1px dashed var(--amber-ink);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero__fox::after {
  content: '';
  position: absolute;
  inset: -8%;
  border-top: 1px solid var(--amber-ink);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid var(--amber-ink);
  border-radius: 50%;
  transform: rotate(-15deg);
  opacity: 0.5;
  animation: rotate-soft 38s linear infinite;
}
.hero__fox img {
  width: auto;
  max-width: 100%;
  max-height: 460px;
  position: relative;
  z-index: 2;
  animation: float-soft 7s ease-in-out infinite;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--gap-md);
  margin-bottom: var(--gap-2xl);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.hero__meta span:last-child { color: var(--amber-ink); }
.hero h1 {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--amber-ink);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.18em;
  background: var(--amber);
  opacity: 0.32;
  z-index: -1;
  border-radius: 2px;
  animation: highlight-grow 1.2s var(--ease-out) 0.8s backwards;
}
@keyframes highlight-grow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
.hero__lede {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--text);
  max-width: 46ch;
  margin-bottom: 40px;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes rotate-soft {
  to { transform: rotate(345deg); }
}
.hero__caption {
  position: absolute;
  bottom: -6px;
  left: 0;
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
  z-index: 3;
}
.hero__caption::before {
  content: '— ';
  color: var(--amber-ink);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
  z-index: 3;
}
.hero__scroll-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--amber-ink);
  animation: scroll-line 2.4s var(--ease-out) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── 9. Word reveal (page-load anim) ── */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: top; }
.word-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.9s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 200ms);
}
@keyframes word-up {
  to { transform: translateY(0); }
}

/* ── 10. Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 11. Editorial stats row ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: clamp(28px, 3vw, 48px) clamp(20px, 3vw, 40px);
  margin: 0 auto;
  max-width: 1200px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(240,160,32,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper-light) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 70px -30px rgba(192,123,16,0.18),
    0 1px 0 rgba(255,255,255,0.8) inset;
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  top: -3px; left: 30%; right: 30%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: var(--radius-pill);
  opacity: 0.6;
}
.stat {
  text-align: left;
  padding: 16px 28px;
  border-right: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.stat__num .unit {
  font-size: 0.55em;
  color: var(--amber-ink);
  font-weight: 700;
}
.stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: transparent;
  color: var(--amber-ink);
  margin-bottom: 16px;
  position: relative;
  transition: transform 0.5s var(--ease-out), color var(--t-base);
}
.stat__icon::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 1px;
}
.stat__icon::after {
  content: '✱';
  position: absolute;
  top: -8px;
  right: -6px;
  font-size: 12px;
  color: var(--amber);
  line-height: 1;
}
.stat:hover .stat__icon {
  transform: rotate(-6deg);
  color: var(--ink);
}
.stat__icon svg {
  width: 42px; height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat__icon svg .fill { fill: currentColor; stroke: none; opacity: 0.18; }
.stat__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── 12. Service blocks (cards) — soft modular ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: var(--gap-lg);
}
.svc {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  background:
    radial-gradient(ellipse 100% 60% at 0% 0%, rgba(240,160,32,0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper-light) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}

/* ── Cards services avec fond image ── */
.svc--bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ivory);
  border-color: rgba(192,123,16,0.25);
  position: relative;
}
.svc--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,252,245,0.10) 0%, rgba(255,252,245,0.20) 50%, rgba(255,252,245,0.40) 100%);
  border-radius: inherit;
  pointer-events: none;
  transition: background var(--t-base) var(--ease-out);
}
.svc--bg:hover::after {
  background: linear-gradient(180deg, rgba(255,252,245,0) 0%, rgba(255,252,245,0.10) 50%, rgba(255,252,245,0.30) 100%);
}
.svc--bg > * { position: relative; z-index: 1; }
/* Chaque card pioche dans une zone différente de son image pour montrer ses blobs */
.svc--bg-1 { background-image: url('../assets/svc-bg-1.png'); background-position: left center; }
.svc--bg-2 { background-image: url('../assets/svc-bg-2.png'); background-position: right center; }
.svc--bg-3 { background-image: url('../assets/svc-bg-3.png'); background-position: left center; }

/* Quand la card a une image en fond, on supprime le header décoratif (svc__illu-bg) qui ferait double emploi */
.svc--bg .svc__illu-bg { display: none; }
.svc:hover {
  border-color: rgba(192,123,16,0.4);
  box-shadow: 0 16px 36px -24px rgba(192,123,16,0.22);
  transform: scale(1.02);
}
.svc:hover { background: var(--ivory); }
.svc__num {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: 2rem;
  color: var(--amber-ink);
  line-height: 1;
  margin-bottom: var(--gap-lg);
}
.svc__icon {
  width: 36px; height: 36px;
  margin-bottom: 24px;
  color: var(--amber-ink);
}
.svc h3 {
  font-size: var(--fs-2xl);
  margin-bottom: 16px;
  font-weight: 700;
}
.svc p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--gap-lg);
}
.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.svc__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 1px;
  background: var(--amber-ink);
  transition: width var(--t-base) var(--ease-out);
}
.svc:hover .svc__link::after { width: 100%; }

/* ── 13. Asymmetric two-col ── */
.two-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--gap-2xl);
  align-items: start;
}
.two-col--flip { grid-template-columns: 7fr 5fr; }
.two-col__lead { position: sticky; top: 120px; }

/* ── 14. Args / différenciateurs — modules arrondis ── */
.args {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: var(--gap-lg);
}
.arg {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  background:
    radial-gradient(ellipse 100% 60% at 100% 0%, rgba(240,160,32,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper-light) 0%, var(--ivory) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.arg:hover {
  border-color: rgba(192,123,16,0.4);
  box-shadow: 0 16px 36px -24px rgba(192,123,16,0.22);
  transform: scale(1.02);
}
.arg__num {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: 2rem;
  color: var(--amber-ink);
  line-height: 1;
  min-width: 60px;
}
.arg h3 {
  font-size: var(--fs-xl);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.15;
}
.arg p { font-size: 0.95rem; color: var(--text-muted); }

/* ── 15. Projects (editorial cards) ── */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.project {
  display: block;
  position: relative;
}
.project__media {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--paper-dark);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-base);
}
.project__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.05) 100%);
  pointer-events: none;
}
.project__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-ink);
  opacity: 0.5;
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-base) var(--ease-out);
}
.project__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
  will-change: transform;
}
.project__badge {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-light);
  padding: 8px 16px;
  border: 1px solid var(--hair);
  border-radius: var(--radius-pill);
}
.project__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 20px 0 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}
.project__meta .num {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--amber-ink);
  letter-spacing: 0;
}
.project h3 {
  font-size: var(--fs-xl);
  margin-bottom: 8px;
  line-height: 1.15;
}
.project p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--amber-ink);
}
.project__tags span { position: relative; padding-right: 14px; }
.project__tags span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--amber-ink);
  opacity: 0.55;
}
.project:hover .project__icon { transform: scale(1.08) rotate(-4deg); opacity: 0.7; }
.project:hover .project__image { transform: scale(1.06); }
.project:hover .project__media { transform: scale(1.015); }

/* ── 16. Pull quote / témoignage éditorial ── */
.pullquote {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
  padding: var(--gap-2xl) 0;
  position: relative;
}
.pullquote__mark {
  position: absolute;
  top: -40px; left: -20px;
  font-family: var(--font-editorial);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.8;
  color: var(--amber-ink);
  opacity: 0.18;
  pointer-events: none;
}
.pullquote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.8vw, 2.9rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 22ch;
  position: relative;
}
.pullquote__text em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--amber-ink);
  font-variation-settings: "SOFT" 100;
}
.pullquote__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: var(--gap-lg);
}
.pullquote__author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.pullquote__author-role {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pullquote__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber-ink);
}

.testimonials-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: var(--gap-lg);
}
.testi {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.testi:hover {
  border-color: rgba(192,123,16,0.35);
  box-shadow: 0 18px 40px -28px rgba(13,13,13,0.15);
  transform: scale(1.02);
}
.testi__stars { display: flex; gap: 4px; margin-bottom: var(--gap-md); color: var(--amber); }
.testi__text {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: var(--gap-md);
  font-variation-settings: "SOFT" 60;
}
.testi__author { display: flex; flex-direction: column; gap: 2px; }
.testi__author-name { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.testi__author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── 17. Logos / preuve sociale ── */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px 56px;
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.logos__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 8px;
}
.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--t-base) var(--ease-out);
}
.logo-item svg { color: var(--amber-ink); flex-shrink: 0; }
.logo-item:hover { color: var(--ink); }

/* ── 18. Page hero (inner pages) ── */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-top: 24px;
}
.page-hero h1 em {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  color: var(--amber-ink);
}
.page-hero__lede {
  font-size: var(--fs-lg);
  max-width: 50ch;
  color: var(--text);
}

/* Hero "Inclus dans toutes les formules" — liste à checks */
.hero-includes {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 56ch;
}
.hero-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}
.hero-includes li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--amber-ink);
  background: rgba(240, 160, 32, 0.12);
  border-radius: 999px;
  padding: 3px;
  box-sizing: content-box;
}
.hero-includes li strong {
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 760px) {
  .hero-includes { grid-template-columns: 1fr; }
}
.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}
.page-hero__crumb a { color: inherit; transition: color var(--t-base) var(--ease-out); }
.page-hero__crumb a:hover { color: var(--amber-ink); }

/* ── 19. Pricing offres ── */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: var(--gap-lg);
}
.offer {
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.offer:hover {
  border-color: rgba(192,123,16,0.35);
  box-shadow: 0 18px 40px -28px rgba(13,13,13,0.15);
  transform: scale(1.02);
}
.offer--featured {
  border-color: rgba(192,123,16,0.55);
  border-width: 1.5px;
  box-shadow: 0 18px 40px -24px rgba(192,123,16,0.28);
  position: relative;
}
.offer--featured .offer__num { color: var(--ink); opacity: 0.65; font-weight: 400; }
.offer--featured h3 {
  color: var(--ink);
  text-shadow:
    0 1px 0 rgba(255, 252, 245, 0.9),
    0 0 18px rgba(255, 252, 245, 0.7),
    0 0 32px rgba(255, 252, 245, 0.45);
  position: relative;
}
.offer--featured__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  align-self: flex-start;
  box-shadow: 0 4px 12px -4px rgba(192,123,16,0.4);
}
/* Le liseré ambre top est remplacé par le chip "★ Notre savoir-faire" */

/* ── Offres avec fond image (blob ambre) ── */
.offer--bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.offer--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,252,245,0.12) 0%, rgba(255,252,245,0.25) 50%, rgba(255,252,245,0.45) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  transition: background var(--t-base) var(--ease-out);
}
.offer--bg:hover::after {
  background: linear-gradient(180deg, rgba(255,252,245,0) 0%, rgba(255,252,245,0.15) 50%, rgba(255,252,245,0.35) 100%);
}
.offer--bg > * { position: relative; z-index: 1; }
.offer--bg-1 { background-image: url('../assets/svc-bg-1.png'); background-position: left center; }
.offer--bg-2 { background-image: url('../assets/svc-bg-2.png'); background-position: right center; }
.offer--bg-3 { background-image: url('../assets/svc-bg-3.png'); background-position: left center; }
.offer__flag {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--amber-ink);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offer__flag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--amber-ink);
}
.offer__num {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--gap-md);
  opacity: 0.55;
}
.offer h3 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.offer__sub {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--gap-lg);
  display: block;
}
/* Mensualité — gros */
.offer__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  color: var(--amber-ink);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.offer__price small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.32em;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.offer--featured .offer__price { color: var(--ink); }
/* Frais de création — plus petit */
.offer__period {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--gap-lg);
  display: block;
  padding-top: 2px;
  border-top: 1px dashed rgba(192,123,16,0.25);
  padding-bottom: 4px;
}
.offer__period strong { color: var(--ink); font-weight: 700; }
.offer__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--gap-lg);
  line-height: 1.65;
}
.offer__list {
  margin-bottom: var(--gap-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.offer__list li svg { color: var(--amber-ink); flex-shrink: 0; margin-top: 4px; }
.offer__cta { margin-top: auto; }

.note-abo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper-light);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  margin-top: clamp(32px, 4vw, 56px);
}
.note-abo__mark {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: 2.6rem;
  color: var(--amber-ink);
  line-height: 1;
}
.note-abo__text { font-size: 0.92rem; color: var(--text); line-height: 1.7; }
.note-abo__text strong { display: block; color: var(--ink); margin-bottom: 4px; }

/* ── 20. Process / studio (editorial article) ── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: var(--gap-lg);
}
.step {
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 36px);
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.step:hover {
  border-color: rgba(192,123,16,0.35);
  box-shadow: 0 18px 40px -28px rgba(13,13,13,0.15);
  transform: scale(1.02);
}
.step__num {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--ink);
  line-height: 0.85;
  margin-bottom: var(--gap-lg);
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.step__num em { color: var(--amber-ink); }
.step h3 {
  font-size: var(--fs-xl);
  margin-bottom: 12px;
  line-height: 1.15;
}
.step p { font-size: 0.92rem; color: var(--text-muted); }

/* ── 21. Team (le studio) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-xl);
}
.member {
  display: flex;
  flex-direction: column;
}
.member__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--paper-dark);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.member__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.member:hover .member__photo {
  transform: scale(1.04);
}
.member__initials {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: 7rem;
  color: var(--amber-ink);
  letter-spacing: -0.05em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.member__role {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 8px;
}
.member h3 { font-size: var(--fs-xl); margin-bottom: 4px; }
.member__expertise {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.member__bio { font-size: 0.9rem; color: var(--text); }

/* ── 22. Service items (compact list) ── */
.svc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.svc-item:hover {
  border-color: rgba(192,123,16,0.4);
  background: var(--paper-light);
  box-shadow: 0 14px 32px -22px rgba(13,13,13,0.12);
  transform: scale(1.015);
}
.svc-item__num {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: 1.5rem;
  color: var(--amber-ink);
  line-height: 1;
  min-width: 50px;
}
.svc-item h4 {
  font-size: var(--fs-lg);
  margin-bottom: 6px;
}
.svc-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.svc-item__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.svc-item__price small {
  display: block;
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Auto features list (services) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hair-strong);
  margin: var(--gap-lg) 0;
}
.feature-list li {
  padding: var(--gap-md) var(--gap-md) var(--gap-md) 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text);
}
.feature-list li svg { color: var(--amber-ink); flex-shrink: 0; margin-top: 4px; }

/* ── 23. CTA bandeau — module arrondi flottant ── */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: clamp(40px, 6vw, 96px) clamp(20px, 4vw, 56px);
  box-shadow: 0 40px 80px -40px rgba(13,13,13,0.4);
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: var(--amber);
  border-radius: var(--radius-pill);
}
/* Blob décoratif animé */
.cta::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,160,32,0.25) 0%, transparent 65%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
  animation: blob-morph 22s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
  50%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 50%; transform: rotate(180deg); }
}
.cta__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: center;
}
.cta h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--paper-light);
  letter-spacing: -0.03em;
}
.cta h2 em {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-style: normal;
  color: var(--amber);
}
.cta p {
  font-size: var(--fs-lg);
  color: rgba(245,232,208,0.7);
  max-width: 44ch;
  margin-bottom: 32px;
}

/* ── 24. Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--gap-2xl);
  align-items: start;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 22px;
}
.field label .req { color: var(--amber-ink); }
.field label .opt {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-quiet);
  margin-left: 6px;
}
.field input,
.field select,
.field textarea {
  background: var(--paper-light);
  border: 1.5px solid var(--hair);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  appearance: none;
  transition: border-color var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber-ink);
  background: var(--ivory);
  box-shadow: 0 0 0 4px rgba(240,160,32,0.12);
}
.field::after { display: none; }
.field--floating { padding-top: 0; }
.field--floating label {
  position: static;
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transform: none !important;
  transition: color var(--t-base);
}
.field--floating:focus-within label { color: var(--amber-ink); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-quiet); font-style: italic; }

/* Honeypot anti-bot — invisible aux humains, visible aux bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Pages légales (mentions, politique confidentialité) */
.legal h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-top: 48px;
  margin-bottom: 12px;
  color: var(--amber-ink);
  letter-spacing: -0.01em;
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal ul {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 70ch;
}
.legal ul {
  padding-left: 24px;
  list-style: disc;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
  color: var(--amber-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal a:hover { text-decoration-thickness: 2px; }
.legal-placeholder {
  display: inline-block;
  padding: 1px 8px;
  background: rgba(240, 160, 32, 0.15);
  border: 1px dashed var(--amber-ink);
  border-radius: 4px;
  color: var(--amber-ink);
  font-family: var(--font-display);
  font-size: 0.85em;
  font-weight: 600;
}
.legal-update {
  margin-top: 48px !important;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem !important;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C07B10' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}
.form-note {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-confirm {
  display: none;
  padding: 20px 24px;
  border-left: 2px solid var(--amber-ink);
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.95rem;
}
.form-confirm.is-visible { display: block; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  position: sticky;
  top: 120px;
}
.contact-card {
  padding: var(--gap-lg);
  border: 1px solid var(--hair);
  background: var(--ivory);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.contact-card__num {
  font-family: var(--font-editorial);
  font-weight: 200;
  font-style: normal;
  font-size: 2rem;
  color: var(--amber-ink);
  line-height: 1;
}
.contact-card__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.contact-card__value { font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.contact-card a:hover { color: var(--amber-ink); }

.contact-card__mailbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--amber-ink);
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 4px 14px -6px rgba(192, 123, 16, 0.5);
  margin-top: 2px;
}
.contact-card__mailbtn svg { flex-shrink: 0; }
.contact-card__mailbtn:hover {
  background: var(--ink);
  color: var(--paper) !important;
  transform: scale(1.03);
  box-shadow: 0 6px 18px -6px rgba(13, 13, 13, 0.45);
}

/* ── 25. Footer ── */
.footer {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,160,32,0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
  color: var(--paper);
  padding: 80px 0 var(--gap-lg);
  position: relative;
  overflow: hidden;
}
.footer__mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 19vw, 26rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,232,208,0.18);
  text-stroke: 1.5px rgba(245,232,208,0.18);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.1em;
  padding-bottom: 16px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em;
  overflow: hidden;
}
.footer__mega .accent {
  -webkit-text-stroke: 1.5px rgba(240,160,32,0.65);
  text-stroke: 1.5px rgba(240,160,32,0.65);
}
.footer__mega .star {
  display: inline-block;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  color: var(--amber);
  font-size: 0.45em;
  transform: translateY(-0.55em);
  animation: spin-soft 18s linear infinite;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-ink), transparent);
  opacity: 0.6;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-xl);
  padding-bottom: var(--gap-2xl);
  border-bottom: 1px solid rgba(245,232,208,0.1);
  margin-bottom: var(--gap-lg);
}
.footer__brand p {
  font-size: 0.92rem;
  color: rgba(245,232,208,0.7);
  margin-top: 18px;
  max-width: 30ch;
  line-height: 1.65;
}
.footer__brand .nav__name { color: var(--paper-light); }
.footer__brand .nav__tag { color: var(--amber); }
.footer__brand .nav__mark { background: var(--paper-light); border-color: transparent; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a,
.footer__col span {
  font-size: 0.92rem;
  color: rgba(245,232,208,0.75);
  transition: color var(--t-base) var(--ease-out);
}
.footer__col a:hover { color: var(--paper-light); }

/* Boutons contact footer */
.footer__contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.footer__cbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(240, 160, 32, 0.15);
  border: 1px solid rgba(240, 160, 32, 0.45);
  color: var(--paper-light) !important;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  width: fit-content;
}
.footer__cbtn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink) !important;
  transform: scale(1.02);
}
.footer__cbtn svg { flex-shrink: 0; }
.footer__seo {
  padding: var(--gap-lg) 0;
  border-bottom: 1px solid rgba(245,232,208,0.08);
}
.footer__seo p {
  font-size: 0.72rem;
  color: rgba(245,232,208,0.4);
  line-height: 1.8;
}
.footer__seo p:first-child {
  color: rgba(245,232,208,0.55);
  font-weight: 500;
  margin-bottom: 6px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(245,232,208,0.45);
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: var(--amber); }

/* ── 26. Identity colors (services page) ── */
.idv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}
.palette-swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Bloc visuel "Merch & supports" en remplacement de la palette */
.idv-merch {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper-light);
  border: 1px solid var(--hair);
  box-shadow:
    0 10px 40px -20px rgba(13,13,13,0.18),
    0 2px 8px -2px rgba(13,13,13,0.08);
  aspect-ratio: 4 / 3.2;
}
.idv-merch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.idv-merch:hover img { transform: scale(1.03); }
.swatch {
  aspect-ratio: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hair);
}
.swatch__code {
  position: absolute;
  bottom: 10px; left: 10px;
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.6);
  mix-blend-mode: difference;
}

/* ── 26-bis. Motion extras (marquee, tilt, magnetic, parallax) ── */

/* Marquee logos */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: var(--gap-lg) 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-right: 80px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee .logo-item {
  font-size: 1.15rem;
  flex-shrink: 0;
}
.marquee__star {
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.4rem;
  flex-shrink: 0;
  animation: spin-soft 8s linear infinite;
}
@keyframes spin-soft { to { transform: rotate(360deg); } }

/* Cards transitions douces avec scale subtil au hover */
.svc, .arg, .project, .testi, .member, .offer, .contact-card {
  transition: transform 0.4s var(--ease-out), background var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.project:hover .project__media {
  box-shadow: 0 18px 40px -28px rgba(13,13,13,0.22);
}
.project__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,13,0.0) 50%, rgba(192,123,16,0.18) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.project:hover .project__media::after { opacity: 1; }

/* Magnetic buttons (works with JS, fallback hover) */
.btn { will-change: transform; }

/* Pulse ring around fox */
/* .hero__fox::before pulse-ring retiré : la composition poster n'utilise plus de cercle décoratif autour du renard */
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.04); opacity: 0.55; }
}

/* Decorative star (used in hero, between sections) */
.deco-star {
  display: inline-block;
  width: 18px; height: 18px;
  color: var(--amber);
  flex-shrink: 0;
  animation: spin-soft 14s linear infinite;
}
.deco-star--large { width: 28px; height: 28px; }

/* Floating decorative asterisks in hero */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--amber-ink);
  opacity: 0.4;
}
.hero__deco--1 { top: 32%; left: 4%; animation: float-soft 5s ease-in-out infinite; }
.hero__deco--2 { bottom: 22%; right: 38%; animation: float-soft 6s ease-in-out 1s infinite; }
.hero__deco--3 { top: 48%; right: 4%; animation: spin-soft 18s linear infinite; opacity: 0.25; }

/* Section number background watermark */
.section--num {
  position: relative;
}
.section--num::before {
  content: attr(data-num);
  position: absolute;
  top: 60px;
  right: var(--gutter);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.85;
  color: var(--amber-ink);
  opacity: 0.06;
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: 0;
}
.section--num > .wrap { position: relative; z-index: 2; }

/* Process: animated connecting line */
.process-line {
  position: relative;
}
.process-line::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--amber-ink), var(--amber), var(--amber-ink));
  z-index: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.5s var(--ease-out);
}
.process-line.is-visible::before { transform: scaleX(1); }
.process-line .step { position: relative; z-index: 1; background: var(--paper); }

/* Section dividers */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 var(--gutter);
  color: var(--amber-ink);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hair);
}

/* Highlight word effect (mark) */
mark {
  background: linear-gradient(180deg, transparent 60%, rgba(240,160,32,0.4) 60%);
  color: inherit;
  padding: 0 4px;
}

/* ── ICON SYSTEM "Atelier Goupil" ──
   - Style line-art, stroke 1.5px, amber-ink uni
   - Signature : petit astérisque ✱ en haut à droite (motif signature)
   - Hairline ambre 24px au-dessus
   - Pas de cadre/fond — l'icône respire dans la page
*/
.gicon {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}
.gicon::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 1px;
}
.gicon__art {
  position: relative;
  color: var(--amber-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: transform 0.5s var(--ease-out), color var(--t-base);
}
.gicon__art svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke: currentColor;
}
.gicon__art svg .fill { fill: currentColor; stroke: none; opacity: 0.18; }
.gicon__art svg .accent { stroke: var(--amber); stroke-width: 1.6; }
/* Signature mark : tiny 4-branch star top right */
.gicon__sig {
  position: absolute;
  top: -4px;
  right: -10px;
  width: 14px;
  height: 14px;
  color: var(--amber);
  opacity: 0.9;
}
.svc:hover .gicon__art,
.arg:hover .gicon__art,
.stat:hover .gicon__art { transform: rotate(-4deg); color: var(--ink); }
.svc:hover .gicon__sig,
.arg:hover .gicon__sig,
.stat:hover .gicon__sig { transform: rotate(40deg); transition: transform 0.5s var(--ease-out); }

/* Compact variant for stats (smaller, horizontal) */
.gicon--stat {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.gicon--stat::before { width: 18px; }
.gicon--stat .gicon__art { width: 48px; height: 48px; }
.gicon--stat .gicon__sig { width: 11px; height: 11px; top: -2px; right: -6px; }

/* Pictogramme image 3D — remplace SVG line-art quand on utilise .picto */
.picto {
  display: inline-block;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out);
}
.picto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(192,123,16,0.22));
}
.svc:hover .picto, .arg:hover .picto, .stat:hover .picto {
  transform: scale(1.08) rotate(-3deg);
}

/* Stats — pictos plus grands, centrés avec le texte */
.picto--stat {
  width: 143px;
  height: 143px;
  display: block;
  margin: 0 auto 20px;
}
.stat {
  text-align: center;
  align-items: center;
}
.stat__num, .stat__label { text-align: center; }

/* Services — pictos plus grands, centrés (texte reste à gauche) */
.svc .picto {
  width: 170px;
  height: 170px;
  display: block;
  margin: 12px auto 36px;
}

/* Compatibility : keep .icon-pill as alias for old markup */
.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: transparent;
  color: var(--amber-ink);
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease-out), color var(--t-base);
  position: relative;
}
.icon-pill::before {
  content: '';
  position: absolute;
  top: -20px; left: 0;
  width: 28px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 1px;
}
.icon-pill::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 12px; height: 12px;
  background:
    linear-gradient(transparent calc(50% - 0.75px), var(--amber) calc(50% - 0.75px), var(--amber) calc(50% + 0.75px), transparent calc(50% + 0.75px)),
    linear-gradient(90deg, transparent calc(50% - 0.75px), var(--amber) calc(50% - 0.75px), var(--amber) calc(50% + 0.75px), transparent calc(50% + 0.75px));
}
.icon-pill svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc:hover .icon-pill, .arg:hover .icon-pill {
  transform: rotate(-4deg);
  color: var(--ink);
}

/* Service illustration block (large decorative SVG) */
.svc__illu {
  width: 100%;
  height: 88px;
  margin-bottom: var(--gap-md);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.svc__illu svg {
  width: 100%;
  height: 100%;
  color: var(--amber-ink);
}

/* Project meta extra */
.project__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.55) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.project__overlay span {
  color: var(--paper-light);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.project:hover .project__overlay { opacity: 1; }
.project:hover .project__overlay span { transform: translateY(-4px); transition: transform var(--t-base) var(--ease-out); }

/* Reviews badge (Google) */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 10px 18px;
}
.reviews-badge__stars { display: flex; gap: 2px; color: var(--amber); }
.reviews-badge__text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.reviews-badge strong { color: var(--ink); font-weight: 700; }

/* Service card with image illustration */
.svc--illu {
  padding-top: 0;
}
.svc__illu-bg {
  margin: 0 calc(var(--gap-lg) * -1) var(--gap-lg);
  height: 140px;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--hair);
}
.svc__illu-bg svg {
  width: 84px; height: 84px;
  color: var(--amber-ink);
  transition: transform 0.6s var(--ease-out);
}
.svc:hover .svc__illu-bg svg { transform: scale(1.08) rotate(-4deg); }
.svc__illu-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, var(--amber-ink) 1.2px, transparent 1.4px);
  background-size: 18px 18px;
}

/* Floating chip badges */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-soft);
  color: var(--amber-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(192,123,16,0.25);
}
.chip svg { color: var(--amber-ink); }

/* Hero CTA hint underline */
.hero__lede em, .hero__lede strong { background: linear-gradient(180deg, transparent 65%, rgba(240,160,32,0.32) 65%); padding: 0 2px; font-style: normal; font-weight: 600; color: var(--ink); }

/* Footer scrolling tagline */
.footer-tagline {
  overflow: hidden;
  margin: var(--gap-lg) calc(var(--gutter) * -1) var(--gap-md);
  padding: 14px 0;
  border-top: 1px solid rgba(245,232,208,0.1);
  border-bottom: 1px solid rgba(245,232,208,0.1);
}
.footer-tagline__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-light);
  padding-right: 48px;
}
.footer-tagline__track .accent { color: var(--amber); }
.footer-tagline__star { color: var(--amber); }

/* CTA gros chiffre tarif highlight */
.price-mega {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: var(--amber-ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.price-mega small {
  font-size: 0.32em;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ── Soft section flow — sections arrondies entre elles ── */
.section--light {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(var(--radius-xl) * -1);
  position: relative;
  z-index: 2;
}
.section--paper + .section--paper {
  position: relative;
}
/* L'enchaînement hero → light section utilise un border-radius top pour douceur */
.hero + .section,
.section + .section--light,
.section--light + .section,
.section--paper + .section--light,
.section--light + .section--paper {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(var(--radius-xl) * -1);
  position: relative;
  z-index: 2;
  box-shadow: 0 -20px 40px -30px rgba(13,13,13,0.08);
}
/* Pas d'arrondi de coin sur la section juste après hero */
.hero { border-radius: 0; }

/* Aussi sur les sections paper qui se suivent on adoucit */
section + section {
  margin-top: 0;
}

/* ── 26-quater. Picture section — image en fond avec dégradé ── */
.picture-section {
  position: relative;
  padding: clamp(96px, 13vw, 180px) 0;
  margin: clamp(20px, 4vw, 56px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  color: var(--paper-light);
  min-height: 560px;
  display: flex;
  align-items: center;
}
.picture-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/accueil-1.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease-out);
}
.picture-section:hover .picture-section__bg { transform: scale(1.08); }
.picture-section__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 0% 100%, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.55) 35%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(192,123,16,0.55) 0%, rgba(240,160,32,0.25) 40%, transparent 70%),
    linear-gradient(135deg, rgba(13,13,13,0.5) 0%, rgba(192,123,16,0.35) 100%);
}
.picture-section__inner { position: relative; z-index: 1; max-width: 720px; }
.picture-section h2 {
  color: var(--paper-light);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 20px;
}
.picture-section h2 em {
  color: var(--amber);
  background: none;
  font-weight: 900;
}
.picture-section h2 em::after { display: none; }
.picture-section .mark-amber {
  background: linear-gradient(180deg, transparent 55%, rgba(240,160,32,0.55) 55%);
  color: var(--paper-light);
}
.picture-section__lede {
  color: rgba(245,232,208,0.92);
  font-size: var(--fs-lg);
  max-width: 56ch;
  margin-top: 28px;
  line-height: 1.6;
}
.picture-section__lede em {
  color: var(--amber);
  background: none;
  font-weight: 700;
}
.picture-section__lede em::after { display: none; }
.link--light { color: var(--paper-light) !important; }

/* ── 26-ter. Contact page bespoke ── */

/* Réassurance strip */
.reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  padding: 32px clamp(20px, 4vw, 56px);
  background: var(--paper-light);
  border: 1px solid var(--hair);
  border-radius: var(--radius-xl);
  max-width: 1280px;
  margin: 0 auto;
}
.reassurance__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base);
}
.reassurance__chip:hover { border-color: var(--amber-ink); background: var(--paper-light); transform: scale(1.04); }
.reassurance__chip svg {
  color: var(--amber-ink);
  flex-shrink: 0;
  width: 16px; height: 16px;
}
.reassurance__chip strong { color: var(--amber-ink); font-weight: 700; }

/* Hero contact decos */
.page-hero__deco {
  position: absolute;
  pointer-events: none;
  color: var(--amber-ink);
  opacity: 0.32;
  z-index: 1;
}
.page-hero__deco--1 { top: 38%; right: 8%; animation: float-soft 6s ease-in-out infinite; }
.page-hero__deco--2 { bottom: 24%; left: 6%; animation: spin-soft 22s linear infinite; opacity: 0.18; }
.page-hero__deco--3 { top: 22%; left: 48%; animation: float-soft 5s ease-in-out 1s infinite; opacity: 0.2; }

/* Form floating labels */
.field--floating {
  position: relative;
  padding-top: 22px;
}
.field--floating label {
  position: absolute;
  top: 30px;
  left: 0;
  pointer-events: none;
  transition: transform var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out), font-size var(--t-base) var(--ease-out);
  transform-origin: left top;
  letter-spacing: 0.16em;
}
.field--floating input:focus + label,
.field--floating select:focus + label,
.field--floating textarea:focus + label,
.field--floating input:not(:placeholder-shown) + label,
.field--floating textarea:not(:placeholder-shown) + label,
.field--floating select.has-value + label,
.field--floating input[type="date"]:valid + label {
  transform: translateY(-26px) scale(0.85);
  color: var(--amber-ink);
}
.field--floating input,
.field--floating select,
.field--floating textarea {
  padding-top: 14px;
  padding-bottom: 10px;
}
.field--floating input::placeholder,
.field--floating textarea::placeholder { opacity: 0; transition: opacity 0.2s; }
.field--floating input:focus::placeholder,
.field--floating textarea:focus::placeholder { opacity: 1; }

/* Field active hairline indicator */
.field {
  position: relative;
}
.field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.4s var(--ease-out);
  pointer-events: none;
}
.field:focus-within::after { width: 100%; }

/* Contact aside upgraded */
.contact-aside {
  background: var(--ivory);
  padding: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 40px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-card {
  padding: 20px 0;
  border: 0;
  background: transparent;
  border-bottom: 1px solid var(--hair);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.contact-card:last-of-type { border-bottom: 0; }
.contact-aside .contact-card__num {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--amber-ink);
  letter-spacing: -0.04em;
}

/* IDF map SVG */
.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--gap-lg) auto 0;
  width: 100%;
  max-width: 220px;
  position: relative;
}
.contact-map svg { width: 100%; height: auto; }
.contact-map__dot {
  fill: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
  transform-origin: center;
}
.contact-map__ring {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1;
  animation: ping 2.8s var(--ease-out) infinite;
  transform-origin: center;
  opacity: 0;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}
@keyframes ping {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.contact-map__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--text-muted);
}

/* Next steps section */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  position: relative;
  margin-top: var(--gap-lg);
}
.next-step {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  position: relative;
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  z-index: 1;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.next-step:hover {
  border-color: rgba(192,123,16,0.35);
  box-shadow: 0 16px 36px -24px rgba(13,13,13,0.15);
  transform: scale(1.02);
}
.next-step__bubble {
  width: 60px; height: 60px;
  margin: 0 auto var(--gap-lg);
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--amber-ink);
  color: var(--amber-ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--t-base), color var(--t-base);
}
.next-step:hover .next-step__bubble {
  background: var(--amber);
  color: var(--ink);
}
.next-step__icon {
  width: 30px; height: 30px;
  color: var(--amber-ink);
  position: absolute;
  top: -8px; right: -8px;
  background: var(--paper);
  border-radius: 50%;
  border: 1px solid var(--hair);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.next-step__icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.next-step h3 {
  font-size: var(--fs-xl);
  margin-bottom: 8px;
}
.next-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 28ch;
  margin: 0 auto;
}

/* FAQ accordion */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: var(--gap-lg);
}
.faq__item {
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}
.faq__item:hover, .faq__item[open] { border-color: rgba(192,123,16,0.4); background: var(--paper-light); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px clamp(72px, 8vw, 96px) 28px clamp(28px, 3vw, 36px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--ink);
  position: relative;
  letter-spacing: -0.015em;
  transition: color var(--t-base) var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: clamp(20px, 3vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--amber-ink);
  width: 44px; height: 44px;
  border: 1px solid var(--amber-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base), color var(--t-base);
  line-height: 1;
}
.faq__item summary:hover { color: var(--amber-ink); }
.faq__item summary:hover::after { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--amber); color: var(--ink); border-color: var(--amber); }
.faq__answer {
  padding: 0 clamp(28px, 3vw, 40px) clamp(28px, 3vw, 36px);
  max-width: 70ch;
}
.faq__answer p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}
.faq__answer p + p { margin-top: 12px; }
.faq__item[open] .faq__answer {
  animation: faq-open 0.4s var(--ease-out) both;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mini quote on contact */
.mini-quote {
  background: var(--paper-light);
  padding: var(--gap-2xl) var(--gap-lg);
  text-align: center;
  position: relative;
}
.mini-quote::before {
  content: '“';
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}
.mini-quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
}
.mini-quote p em { font-weight: 800; }
.mini-quote__author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.mini-quote__author strong { color: var(--ink); }
.mini-quote__divider {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--amber-ink);
}

/* ── 27. Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__fox img, .hero__fox::after, .hero__scroll-line::after,
  .marquee__track, .footer-tagline__track, .deco-star, .marquee__star,
  .hero__deco { animation: none !important; }
  .word-reveal__inner { transform: translateY(0); }
  .reveal { opacity: 1; transform: none; }
}

/* ── 28. Responsive ── */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--gap-xl); }
  .hero__fox { max-width: 360px; margin: 0 auto; }
  .hero__fox img { max-width: 320px; }
  .hero__scroll { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hair); }
  .stat:nth-child(3) { border-right: 1px solid var(--hair); }
  .stat:nth-child(4) { border-right: 0; }
  .section-head { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .two-col, .two-col--flip { grid-template-columns: 1fr; gap: var(--gap-xl); }
  .two-col__lead { position: static; }
  .args { grid-template-columns: 1fr; }
  .arg { border-right: 0; }
  .projects { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .idv { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav { padding: 16px 0; }
  .stats { grid-template-columns: 1fr 1fr; padding: 16px 8px; }
  .stat { padding: 16px 12px; min-width: 0; overflow: hidden; }
  .stat__num { font-size: clamp(2rem, 9vw, 3rem); }
  .stat__label { font-size: 0.7rem; word-break: break-word; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hair); }
  .svc-grid, .offers, .process { grid-template-columns: 1fr; }
  .svc, .offer, .step { border-right: 0; border-bottom: 1px solid var(--hair); }
  .projects, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .next-steps { grid-template-columns: 1fr; }
  .next-step { border-right: 0; border-bottom: 1px solid var(--hair); }
  .next-steps::before { display: none; }
  .reassurance__chip { font-size: 0.8rem; padding: 8px 14px; }
  .testimonials-strip { grid-template-columns: 1fr; }
  .testi { border-right: 0; border-bottom: 1px solid var(--hair); }
  .footer__top { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4.5rem); }
  .hero__meta { flex-direction: column; gap: 8px; margin-bottom: var(--gap-lg); }
  .svc-item { grid-template-columns: auto 1fr; gap: 14px; }
  .svc-item__price { grid-column: 1 / -1; text-align: left; padding-left: 64px; }
  .palette-swatches { grid-template-columns: 1fr 1fr; }
  .swatch:nth-child(2n) { border-right: 0; }
  .swatch:nth-child(1), .swatch:nth-child(2) { border-bottom: 1px solid var(--hair); }
}

@media (max-width: 480px) {
  :root { --section: 56px; --gutter: 20px; --gap-2xl: 36px; --gap-3xl: 48px; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .btn { padding: 14px 22px; font-size: 0.85rem; width: 100%; justify-content: center; }
  .btn-row { width: 100%; }

  /* Hero — H1 plus lisible sur petit écran */
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  /* Hero — réduire l'illustration renard sur petit écran */
  .hero__fox { max-width: 220px; height: 280px; }
  .hero__fox img { max-width: 200px; max-height: 280px; }

  /* Réduction marges section-head (au-dessus des cards services / args) */
  .section-head { margin-bottom: 28px; gap: 18px; }
  .section-head__lead h2 { margin-top: 8px; }
  .section-head__intro { padding-left: 0; padding-bottom: 0; }
  .section-head__intro p { font-size: 1rem; }

  /* Pictos services — animation de rebond continue (mobile only) */
  .svc .picto img,
  .arg .picto img {
    animation: picto-bounce 3.2s ease-in-out infinite;
  }
  .svc:nth-child(2) .picto img,
  .arg:nth-child(2) .picto img { animation-delay: 0.4s; }
  .svc:nth-child(3) .picto img,
  .arg:nth-child(3) .picto img { animation-delay: 0.8s; }
  .svc:nth-child(4) .picto img,
  .arg:nth-child(4) .picto img { animation-delay: 1.2s; }

  /* Cards args : centrer verticalement le picto avec le texte + agrandir */
  .arg {
    align-items: center;
    gap: 18px;
    padding: 28px 22px;
  }
  .arg .picto {
    width: 84px;
    height: 84px;
    margin-bottom: 0;
  }
  .arg h3 {
    font-size: 1.15rem;
    line-height: 1.2;
  }
}

/* Keyframes du rebond picto (utilisable hors media query) */
@keyframes picto-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
