@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Mulish:wght@400;500;600;700&display=swap');

/* =========================================================================
   PLOMBIER MINUTE — Design System "Sobre & Classe"
   Crème/ivoire · encre chaude · vert bouteille profond · bronze/cuivre
   Typo: Fraunces (titres serif) · Mulish (corps)
   Élégance feutrée, claire, raffinée — intemporel & rassurant.
   ========================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Palette source de vérité */
  --c-cream: #F4EFE6;          /* crème de fond principale */
  --c-ivory: #FBF8F1;          /* ivoire clair */
  --c-white: #FFFFFF;
  --c-bottle: #1F3A2E;         /* vert bouteille profond (accent principal) */
  --c-bottle-700: #18302563;   /* (non utilisé tel quel, voir dérivés) */
  --c-copper: #B0703A;         /* bronze / cuivre chaud (accent secondaire) */
  --c-copper-soft: #C68A57;
  --c-ink: #241F1A;            /* encre chaude */

  /* ---- Mappage des anciens tokens (compat HTML/inline/<style>) ---- */
  /* Accent PRINCIPAL = vert bouteille */
  --c-primary: #1F3A2E;
  --c-primary-700: #16291F;    /* texte cuivre/vert sur clair → on garde le cuivre pour les liens */
  --c-primary-600: #284A39;
  --c-primary-300: #C8D2CB;    /* vert très désaturé clair (filets/accents doux) */
  --c-primary-100: #E7ECE7;    /* vert lavé très pâle (puces, fonds d'icônes) */
  --c-accent: #B0703A;         /* cuivre */
  --c-accent-200: #E6D2BE;

  /* Sombre = vert bouteille (sections de contraste) */
  --c-dark: #1F3A2E;
  --c-light: #FBF8F1;

  /* Échelle d'encre (neutres chauds) */
  --c-ink-800: #2C2620;
  --c-ink-700: #4A4138;
  --c-ink-500: #7A6F62;
  --c-ink-400: #A99E8F;
  --c-ink-200: #E3DCCF;

  --c-cream-200: #ECE4D6;

  /* Rôles */
  --bg: var(--c-cream);
  --bg-alt: var(--c-ivory);
  --bg-ink: var(--c-bottle);
  --text: var(--c-ink-800);
  --text-soft: var(--c-ink-500);
  --heading: var(--c-ink);
  --border: rgba(36, 31, 26, 0.10);
  --border-copper: rgba(176, 112, 58, 0.32);

  /* Typo */
  --ff-head: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-body: "Mulish", system-ui, -apple-system, sans-serif;

  /* Échelle de texte mesurée (pas de titres géants) */
  --fs-900: clamp(2.3rem, 1.7rem + 2.6vw, 3.8rem);
  --fs-800: clamp(1.9rem, 1.5rem + 1.8vw, 2.9rem);
  --fs-700: clamp(1.55rem, 1.3rem + 1.1vw, 2.2rem);
  --fs-600: clamp(1.3rem, 1.15rem + .7vw, 1.65rem);
  --fs-500: clamp(1.1rem, 1.02rem + .35vw, 1.28rem);
  --fs-400: 1.0625rem;
  --fs-300: 0.9375rem;
  --fs-200: 0.8125rem;

  /* Espacements */
  --sp-1: 0.4rem;
  --sp-2: 0.8rem;
  --sp-3: 1.2rem;
  --sp-4: 1.8rem;
  --sp-5: 2.6rem;
  --sp-6: 3.6rem;
  --sp-7: 5rem;
  --sp-8: 7rem;

  --container: 1180px;
  --container-narrow: 800px;

  /* Radius modérés */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-pill: 999px;

  /* Ombres douces */
  --sh-sm: 0 1px 2px rgba(36,31,26,.04), 0 2px 8px rgba(36,31,26,.05);
  --sh-md: 0 6px 22px rgba(36,31,26,.07), 0 2px 8px rgba(36,31,26,.04);
  --sh-lg: 0 20px 54px rgba(36,31,26,.12);
  --sh-orange: 0 10px 28px rgba(31,58,46,.20);   /* ancien nom : ombre verte feutrée */
  --sh-copper: 0 10px 26px rgba(176,112,58,.22);

  /* Transitions sobres */
  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t: 320ms cubic-bezier(.4,0,.2,1);
  --t-slow: 620ms cubic-bezier(.22,1,.36,1);

  --header-h: 78px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-400);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul[class] { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--ff-head); font-weight: 600; line-height: 1.14;
  color: var(--heading); letter-spacing: -0.005em;
  font-optical-sizing: auto;
}
strong, b { font-weight: 700; }
:focus-visible { outline: 2px solid var(--c-bottle); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--c-bottle); color: var(--c-ivory); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.4rem, 7vw, 6.5rem); position: relative; }
.section--ink { background: var(--bg-ink); color: rgba(244,239,230,.86); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--c-ivory); }
.section--cream { background: var(--c-cream); }
.section--white { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.2rem, 4vw, 3.4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-body); font-weight: 700; font-size: var(--fs-200);
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--c-copper);
}
.section--ink .eyebrow { color: var(--c-copper-soft); }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--c-copper); display: inline-block; }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: var(--fs-800); margin-top: .8rem; font-weight: 600; }
.section-head p { margin-top: 1rem; color: var(--text-soft); font-size: var(--fs-500); }
.section--ink .section-head p { color: rgba(244,239,230,.74); }

.lead { font-size: var(--fs-500); color: var(--c-ink-700); }

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: var(--c-bottle);
  --btn-fg: var(--c-ivory);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--ff-body); font-weight: 700; font-size: var(--fs-300);
  letter-spacing: .015em;
  padding: .9rem 1.7rem; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--c-bottle); --btn-fg: var(--c-ivory); box-shadow: var(--sh-orange); }
.btn-primary:hover { --btn-bg: var(--c-primary-600); box-shadow: 0 14px 32px rgba(31,58,46,.28); }

.btn-call { --btn-bg: var(--c-bottle); --btn-fg: var(--c-ivory); }
.btn-call:hover { --btn-bg: #16291F; box-shadow: var(--sh-md); }
.btn-call .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-copper); box-shadow: 0 0 0 0 var(--c-copper); animation: ring 2.2s infinite; }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--c-bottle); border-color: var(--border-copper); }
.btn-ghost:hover { --btn-bg: var(--c-bottle); --btn-fg: var(--c-ivory); border-color: var(--c-bottle); }
.section--ink .btn-ghost { --btn-fg: var(--c-ivory); border-color: rgba(244,239,230,.34); }
.section--ink .btn-ghost:hover { --btn-bg: var(--c-ivory); --btn-fg: var(--c-bottle); border-color: var(--c-ivory); }

.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(176,112,58,.5); }
  70% { box-shadow: 0 0 0 8px rgba(176,112,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,112,58,0); }
}

/* ---------- BADGES / CHIPS ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--ff-body); font-weight: 600; font-size: var(--fs-200);
  letter-spacing: .02em;
  padding: .42rem .85rem; border-radius: var(--r-pill);
  background: var(--c-primary-100); color: var(--c-bottle);
  border: 1px solid var(--border);
}
.badge svg { width: 1em; height: 1em; color: var(--c-copper); }
.badge--ink { background: rgba(244,239,230,.10); color: var(--c-copper-soft); border-color: rgba(244,239,230,.16); }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,241,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t), background var(--t);
}
.site-header.is-scrolled { box-shadow: var(--sh-md); background: rgba(251,248,241,.95); }
.nav { display: flex; align-items: center; gap: 1.4rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--ff-head); font-weight: 600; font-size: 1.28rem; color: var(--c-ink); letter-spacing: -.01em; }
.brand .brand-mark { width: 38px; height: 38px; flex: none; border-radius: 10px; }
.brand b { color: var(--c-copper); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-links a {
  font-family: var(--ff-body); font-size: var(--fs-300); font-weight: 600; color: var(--c-ink-700);
  padding: .55rem .7rem; border-radius: var(--r-sm); position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--c-bottle); background: var(--c-primary-100); }
.nav-links a.active { color: var(--c-bottle); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: .3rem; transform: translateX(-50%);
  width: 16px; height: 2px; border-radius: 2px; background: var(--c-copper);
}
.nav-cta { display: flex; align-items: center; gap: .7rem; margin-left: .4rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; margin-left: auto;
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--c-ivory); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle .bars { position: relative; width: 22px; height: 14px; }
.nav-toggle .bars span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--c-bottle); border-radius: 2px; transition: transform var(--t), opacity var(--t-fast); }
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: .6rem; }
}

/* Mobile drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.mobile-menu[hidden] { display: none; }
.mobile-menu .backdrop { position: absolute; inset: 0; background: rgba(31,58,46,.42); opacity: 0; transition: opacity var(--t); }
.mobile-menu .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: var(--c-ivory); padding: 1.4rem; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--t-slow); box-shadow: var(--sh-lg);
  border-left: 1px solid var(--border-copper);
}
.mobile-menu.open { visibility: visible; }
.mobile-menu.open .backdrop { opacity: 1; }
.mobile-menu.open .panel { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.mobile-menu .mm-close { width: 44px; height: 44px; border-radius: var(--r-md); border: 1px solid var(--border); background: var(--c-cream); font-size: 1.4rem; cursor: pointer; color: var(--c-ink); }
.mobile-menu nav { display: flex; flex-direction: column; gap: .15rem; }
.mobile-menu nav a { padding: .85rem .9rem; border-radius: var(--r-sm); font-family: var(--ff-body); font-weight: 600; font-size: 1.02rem; color: var(--c-ink-700); }
.mobile-menu nav a:hover, .mobile-menu nav a.active { background: var(--c-primary-100); color: var(--c-bottle); }
.mobile-menu .mm-foot { margin-top: auto; padding-top: 1.2rem; display: grid; gap: .7rem; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: clamp(540px, 80vh, 760px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: -8% 0 0 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 116%; object-fit: cover; will-change: transform;
  filter: grayscale(.55) sepia(.22) contrast(.96) brightness(.94);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(108deg, rgba(31,58,46,.94) 0%, rgba(31,58,46,.78) 44%, rgba(31,58,46,.32) 100%),
    linear-gradient(0deg, rgba(31,58,46,.34), rgba(31,58,46,.10));
}
.hero__inner { padding-block: clamp(3rem, 8vh, 6rem); max-width: 700px; color: var(--c-ivory); }
.hero h1 { color: var(--c-ivory); font-size: var(--fs-900); font-weight: 600; letter-spacing: -.01em; }
.hero h1 .accent { color: var(--c-copper-soft); font-style: italic; font-weight: 500; }
.hero p { margin-top: 1.3rem; font-size: var(--fs-500); color: rgba(244,239,230,.9); max-width: 560px; }
.hero .btn-row { margin-top: 2rem; }
.hero .chip-row { margin-top: 2rem; }
.hero .badge { background: rgba(244,239,230,.12); color: var(--c-ivory); border-color: rgba(244,239,230,.2); backdrop-filter: blur(4px); }
.hero .badge svg { color: var(--c-copper-soft); }

/* Signature chrono badge — feutré */
.chrono {
  position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: clamp(1.4rem, 4vh, 3rem);
  z-index: 1; background: rgba(244,239,230,.10); border: 1px solid var(--border-copper);
  backdrop-filter: blur(10px); border-radius: var(--r-lg); padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: .9rem; color: var(--c-ivory); box-shadow: var(--sh-lg);
}
.chrono__face { width: 50px; height: 50px; flex: none; }
.chrono__txt { line-height: 1.25; }
.chrono__num { font-family: var(--ff-head); font-weight: 700; font-size: 1.7rem; color: var(--c-copper-soft); }
.chrono__lbl { display: block; font-family: var(--ff-body); font-size: var(--fs-200); text-transform: uppercase; letter-spacing: .14em; color: rgba(244,239,230,.78); }
@media (max-width: 620px) { .chrono { display: none; } }

/* Speed streaks → filets cuivre sobres et lents */
.streaks { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.streaks i { position: absolute; height: 1px; width: 140px; border-radius: 1px; background: linear-gradient(90deg, transparent, rgba(198,138,87,.6)); opacity: 0; }

/* ---------- REASSURANCE STRIP ---------- */
.reassure { background: var(--c-bottle); color: var(--c-ivory); }
.reassure .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; padding-block: 1.8rem; }
.reassure .ra { display: flex; align-items: center; gap: .85rem; }
.reassure .ra svg { width: 28px; height: 28px; color: var(--c-copper-soft); flex: none; }
.reassure .ra b { font-family: var(--ff-head); font-weight: 600; display: block; font-size: var(--fs-400); }
.reassure .ra > span { display: block; }
.reassure .ra > span > span { font-size: var(--fs-200); color: rgba(244,239,230,.66); }
@media (max-width: 860px) { .reassure .container { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .reassure .container { grid-template-columns: 1fr; } }

/* ---------- GRIDS ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.7rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.split--rev > :first-child { order: 2; }
@media (max-width: 880px) { .split, .split--rev { grid-template-columns: 1fr; } .split--rev > :first-child { order: 0; } }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.7rem; box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-copper); }

.card-service { display: flex; flex-direction: column; gap: .8rem; }
.card-service .ic {
  width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--c-primary-100); color: var(--c-bottle); flex: none;
  border: 1px solid var(--border);
  transition: background var(--t), color var(--t);
}
.card-service:hover .ic { background: var(--c-bottle); color: var(--c-ivory); border-color: var(--c-bottle); }
.card-service .ic svg { width: 26px; height: 26px; }
.card-service h3 { font-size: var(--fs-600); font-weight: 600; }
.card-service p { color: var(--text-soft); font-size: var(--fs-300); }
.card-service .more { margin-top: auto; font-family: var(--ff-body); font-weight: 700; font-size: var(--fs-300); color: var(--c-copper); display: inline-flex; align-items: center; gap: .4rem; }
.card-service .more svg { width: 1em; height: 1em; transition: transform var(--t); }
.card-service:hover .more svg { transform: translateX(4px); }
.card-service::after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--c-copper); transition: width var(--t-slow); }
.card-service:hover::after { width: 100%; }

.card-feature { display: flex; gap: 1rem; align-items: flex-start; }
.card-feature .num { font-family: var(--ff-head); font-weight: 600; font-size: 1.6rem; color: var(--c-copper); line-height: 1; flex: none; font-feature-settings: "lnum"; }
.card-feature h3 { font-size: var(--fs-500); font-weight: 600; }
.card-feature p { color: var(--text-soft); font-size: var(--fs-300); }

/* ---------- LIST CHECK ---------- */
.list-check { display: grid; gap: .75rem; }
.list-check li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-400); }
.list-check li svg { width: 21px; height: 21px; flex: none; color: var(--c-copper); margin-top: .2rem; }
.section--ink .list-check li svg { color: var(--c-copper-soft); }

/* ---------- IMAGE BLOCKS — encadrement élégant, filet cuivre ---------- */
.imgwrap { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--border-copper); }
.imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); filter: grayscale(.5) sepia(.2) contrast(.97); }
.imgwrap:hover img { transform: scale(1.04); }
.imgwrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(31,58,46,.32)); pointer-events: none; }
.imgwrap--tall { aspect-ratio: 3/4; }
.imgwrap--wide { aspect-ratio: 3/2; }
.imgwrap .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(31,58,46,.86); color: var(--c-ivory); backdrop-filter: blur(6px);
  font-family: var(--ff-body); font-weight: 600; font-size: var(--fs-200);
  padding: .5rem .9rem; border-radius: var(--r-pill); border: 1px solid rgba(244,239,230,.16);
}
.imgwrap .float-stat {
  position: absolute; right: 1rem; top: 1rem; z-index: 2;
  background: var(--c-ivory); color: var(--c-bottle); border: 1px solid var(--border-copper);
  border-radius: var(--r-md); padding: .7rem 1rem; box-shadow: var(--sh-md);
}
.imgwrap .float-stat b { font-family: var(--ff-head); font-weight: 700; font-size: 1.4rem; display: block; line-height: 1; color: var(--c-copper); }
.imgwrap .float-stat span { font-size: var(--fs-200); color: var(--text-soft); }

/* ---------- PROCESS / STEPS ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.steps.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px){ .steps.grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps.grid-4 { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.7rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); }
.section--ink .step { background: rgba(244,239,230,.05); border-color: rgba(244,239,230,.14); }
.step .step-n {
  counter-increment: step; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700;
  background: transparent; color: var(--c-copper); margin-bottom: 1rem;
  border: 1px solid var(--border-copper); font-size: 1.05rem;
}
.step .step-n::before { content: counter(step, decimal-leading-zero); }
.section--ink .step .step-n { color: var(--c-copper-soft); border-color: rgba(198,138,87,.5); }
.step h3 { font-size: var(--fs-500); font-weight: 600; }
.step p { color: var(--text-soft); font-size: var(--fs-300); margin-top: .35rem; }
.section--ink .step p { color: rgba(244,239,230,.72); }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
@media (max-width: 760px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat .num { font-family: var(--ff-head); font-weight: 600; font-size: clamp(2.2rem, 4.6vw, 3.1rem); color: var(--c-copper); line-height: 1; font-feature-settings: "lnum"; }
.section--ink .stat .num { color: var(--c-copper-soft); }
.stat .num .suffix { color: inherit; }
.stat .lbl { margin-top: .55rem; font-size: var(--fs-300); color: var(--text-soft); }
.section--ink .stat .lbl { color: rgba(244,239,230,.72); }

/* ---------- TARIFS TABLE ---------- */
.tarif-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--bg-alt); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--border); }
.tarif-table caption { caption-side: bottom; padding-top: 1rem; font-size: var(--fs-200); color: var(--text-soft); text-align: left; }
.tarif-table th, .tarif-table td { padding: 1rem 1.2rem; text-align: left; }
.tarif-table thead th { background: var(--c-bottle); color: var(--c-ivory); font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-300); }
.tarif-table tbody tr { border-top: 1px solid var(--border); }
.tarif-table tbody tr:nth-child(even) { background: var(--c-cream); }
.tarif-table td.price { font-family: var(--ff-head); font-weight: 700; color: var(--c-copper); white-space: nowrap; }
.tarif-table tbody tr:hover { background: var(--c-primary-100); }
.tarif-note { font-size: var(--fs-200); color: var(--text-soft); margin-top: .9rem; }

.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 880px){ .price-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 1rem; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-copper); }
.price-card.featured { border-color: var(--c-copper); box-shadow: var(--sh-copper); position: relative; }
.price-card.featured .ribbon { position: absolute; top: -12px; left: 1.9rem; background: var(--c-copper); color: var(--c-ivory); font-family: var(--ff-body); font-weight: 700; font-size: var(--fs-200); letter-spacing: .04em; padding: .32rem .85rem; border-radius: var(--r-pill); }
.price-card h3 { font-size: var(--fs-600); font-weight: 600; }
.price-card .amount { font-family: var(--ff-head); font-weight: 700; font-size: 2.3rem; color: var(--c-ink); font-feature-settings: "lnum"; }
.price-card .amount small { font-size: 1rem; font-weight: 600; color: var(--text-soft); font-family: var(--ff-body); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq details { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.faq details[open] { border-color: var(--border-copper); box-shadow: var(--sh-sm); }
.faq summary { cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-400); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--c-ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--c-primary-100); color: var(--c-copper); display: grid; place-items: center; transition: transform var(--t), background var(--t), color var(--t); font-weight: 700; font-family: var(--ff-body); }
.faq details[open] summary .ico { transform: rotate(135deg); background: var(--c-copper); color: var(--c-ivory); }
.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--text-soft); font-size: var(--fs-300); }

/* ---------- TESTIMONIALS ---------- */
.review { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 1rem; }
.review .stars { display: flex; gap: .2rem; color: var(--c-copper); }
.review .stars svg { width: 17px; height: 17px; }
.review blockquote { font-family: var(--ff-head); font-weight: 500; font-style: italic; font-size: var(--fs-400); line-height: 1.55; color: var(--c-ink-700); }
.review .who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.review .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--c-bottle); color: var(--c-ivory); display: grid; place-items: center; font-family: var(--ff-head); font-weight: 600; flex: none; }
.review .who b { font-size: var(--fs-300); display: block; font-family: var(--ff-body); }
.review .who span { font-size: var(--fs-200); color: var(--text-soft); }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--c-bottle); color: var(--c-ivory); border-radius: var(--r-xl); padding: clamp(2.2rem, 5vw, 3.6rem); box-shadow: var(--sh-lg); border: 1px solid rgba(176,112,58,.28); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 220px at 88% 8%, rgba(176,112,58,.22), transparent), radial-gradient(520px 320px at 0% 100%, rgba(0,0,0,.18), transparent); pointer-events: none; }
.cta-band h2 { color: var(--c-ivory); font-size: var(--fs-800); font-weight: 600; position: relative; }
.cta-band p { color: rgba(244,239,230,.9); margin-top: .8rem; font-size: var(--fs-500); position: relative; max-width: 600px; }
.cta-band .btn-row { margin-top: 1.8rem; position: relative; }
.cta-band .btn-primary { --btn-bg: var(--c-copper); --btn-fg: var(--c-ivory); box-shadow: var(--sh-copper); }
.cta-band .btn-primary:hover { --btn-bg: var(--c-copper-soft); box-shadow: 0 14px 32px rgba(176,112,58,.34); }
.cta-band .btn-ghost { --btn-fg: var(--c-ivory); border-color: rgba(244,239,230,.5); }
.cta-band .btn-ghost:hover { --btn-bg: var(--c-ivory); --btn-fg: var(--c-bottle); border-color: var(--c-ivory); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { padding-block: 1rem; font-size: var(--fs-200); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; list-style: none; padding: 0; color: var(--text-soft); }
.breadcrumb li { display: flex; align-items: center; gap: .4rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--c-ink-400); }
.breadcrumb a:hover { color: var(--c-copper); }
.breadcrumb [aria-current="page"] { color: var(--c-ink); font-weight: 600; }

/* Page hero (internal pages) */
.page-hero { background: var(--c-bottle); color: var(--c-ivory); padding-block: clamp(2.6rem, 6vw, 4.4rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(720px 320px at 100% 0%, rgba(176,112,58,.2), transparent); pointer-events: none; }
.page-hero h1 { color: var(--c-ivory); font-size: var(--fs-800); font-weight: 600; position: relative; max-width: 760px; }
.page-hero p { color: rgba(244,239,230,.84); margin-top: 1rem; font-size: var(--fs-500); max-width: 640px; position: relative; }
.page-hero .breadcrumb { color: rgba(244,239,230,.72); }
.page-hero .breadcrumb a { color: rgba(244,239,230,.72); }
.page-hero .breadcrumb a:hover { color: var(--c-copper-soft); }
.page-hero .breadcrumb [aria-current="page"] { color: var(--c-copper-soft); }
.page-hero .breadcrumb li:not(:last-child)::after { color: rgba(244,239,230,.32); }

/* ---------- ZONES GRID ---------- */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .7rem; }
.zone-pill { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md); padding: .8rem 1rem; font-size: var(--fs-300); display: flex; align-items: center; gap: .5rem; transition: border-color var(--t), transform var(--t), color var(--t); }
.zone-pill svg { width: 15px; height: 15px; color: var(--c-copper); flex: none; }
.zone-pill:hover { border-color: var(--border-copper); transform: translateY(-2px); color: var(--c-bottle); }

/* ---------- FORM ---------- */
.form { display: grid; gap: 1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--ff-body); font-weight: 700; font-size: var(--fs-300); color: var(--c-ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--c-ink-200); border-radius: var(--r-md);
  background: var(--c-white); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-copper); box-shadow: 0 0 0 3px rgba(176,112,58,.16); }
.field textarea { min-height: 130px; resize: vertical; }
.form-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--sh-md); }

/* contact info list */
.info-list { display: grid; gap: 1rem; }
.info-list .it { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .it .ic { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--c-primary-100); color: var(--c-bottle); display: grid; place-items: center; flex: none; border: 1px solid var(--border); }
.info-list .it .ic svg { width: 22px; height: 22px; }
.info-list .it b { font-family: var(--ff-head); font-weight: 600; display: block; color: var(--c-ink); }
.info-list .it a, .info-list .it span { color: var(--text-soft); font-size: var(--fs-300); }
.info-list .it a:hover { color: var(--c-copper); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--c-bottle); color: rgba(244,239,230,.74); padding-block: clamp(3rem, 6vw, 4.4rem) 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--c-ivory); }
.site-footer h4 { color: var(--c-ivory); font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-300); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer p { font-size: var(--fs-300); }
.site-footer a { color: rgba(244,239,230,.74); font-size: var(--fs-300); transition: color var(--t-fast); }
.site-footer a:hover { color: var(--c-copper-soft); }
.site-footer ul { display: grid; gap: .55rem; list-style: none; padding: 0; }
.footer-contact { display: grid; gap: .7rem; margin-top: 1.1rem; }
.footer-contact a { display: inline-flex; gap: .5rem; align-items: center; }
.footer-contact svg { width: 16px; height: 16px; color: var(--c-copper-soft); flex: none; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(244,239,230,.14); display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: space-between; align-items: center; font-size: var(--fs-200); }
.footer-bottom a { font-size: var(--fs-200); }

/* ---------- STICKY MOBILE CALL BAR ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(31,58,46,.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(176,112,58,.3); gap: .7rem;
  transform: translateY(120%); transition: transform var(--t-slow);
}
.callbar.show { transform: translateY(0); }
.callbar .btn { flex: 1; padding: .85rem 1rem; }
.callbar .btn-primary { --btn-bg: var(--c-copper); --btn-fg: var(--c-ivory); box-shadow: none; }
@media (max-width: 760px){ .callbar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- REVEAL / ANIMATIONS (sobres) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal-zoom { opacity: 0; transform: scale(.97); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal-zoom.in-view { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-22px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal-left.in-view { opacity: 1; transform: none; }

/* tick animation for chrono face hand */
@keyframes tick { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.chrono__hand { transform-origin: 50% 50%; animation: tick 60s steps(60) infinite; }

/* utility */
.mt-1{margin-top:.6rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}
.text-center{text-align:center}
.muted{color:var(--text-soft)}
.flow > * + * { margin-top: 1rem; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-zoom, .reveal-left { opacity: 1 !important; transform: none !important; }
  .hero__media img { transform: none !important; }
  .chrono__hand { animation: none !important; }
  .btn-call .pulse-dot { animation: none !important; }
  .callbar { transition: none; }
}

/* fix: téléphone sur une ligne */
.btn{white-space:nowrap}
