/* ===========================================================================
   PRESSING & COUTURE MON REPÈRE — Feuille de style principale
   1. Tokens          5. Services        9.  Tarifs
   2. Base            6. Détail / Split  10. Formulaire
   3. Header / Nav    7. Couture         11. Localisation / Écosystème
   4. Hero            8. Process / Avant-Après  12. Footer & utilitaires
   =========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  --teal:        #079FB1;
  --teal-dark:   #05808F;
  --teal-deep:   #046370;
  --teal-text:   #04737F;  /* teal lisible en petit corps (WCAG AA) */
  --navy:        #061B45;
  --navy-soft:   #0C2A63;
  --gold:        #D9A520;
  --gold-soft:   #E8C468;
  --white:       #FFFFFF;
  --gray:        #F6F8F9;
  --gray-200:    #E7ECEF;
  --gray-400:    #AFBBC2;
  --ink:         #0D1A2B;
  --ink-soft:    #52626F;

  --font-display: "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:   "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;

  --wrap:    1280px;
  --wrap-nx: 1080px;
  --gut:     clamp(20px, 5vw, 64px);

  --r-sm: 2px;
  --r-md: 4px;

  --shadow-sm: 0 1px 2px rgba(6, 27, 69, .06), 0 4px 14px rgba(6, 27, 69, .05);
  --shadow-md: 0 8px 30px rgba(6, 27, 69, .09);
  --shadow-lg: 0 24px 70px rgba(6, 27, 69, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --header-h: 84px;
}

/* 2. BASE ================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, picture, video { max-width: 100%; display: block; }
/* Les attributs width/height du HTML sont des indications de présentation :
   sans height:auto ils l'emportent sur aspect-ratio et déforment l'image. */
img, video { height: auto; }

/* <picture> est un conteneur neutre : il doit transmettre la taille à son <img>. */
.hero__media picture,
.split__media picture,
.svc__media picture,
.cmp picture,
.cmp__after picture { display: block; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .02em;
  margin: 0;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 5.1rem); letter-spacing: .012em; }
h2 { font-size: clamp(1.85rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.4rem); letter-spacing: .07em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--teal); color: #fff; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: var(--wrap-nx); }

.section { padding-block: clamp(72px, 9vw, 140px); }
.section--gray { background: var(--gray); }
.section--tight { padding-block: clamp(56px, 6vw, 96px); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 14px 22px;
  font-family: var(--font-display); letter-spacing: .12em; font-size: .8rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- Eyebrow / titres de section ---------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--center { justify-content: center; }

.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p {
  color: var(--ink-soft); font-size: 1.05rem; margin-top: 22px; max-width: 60ch;
}
.sec-head--center p { margin-inline: auto; }

/* --- Boutons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--teal-dark);
  --btn-fg: #fff;
  --btn-bd: var(--teal-dark);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 17px 34px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .3s var(--ease), box-shadow .45s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.btn:hover { color: #fff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(1px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: rgba(6,27,69,.28); }
.btn--ghost:hover { border-color: var(--navy); }

.btn--onDark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.45); }
.btn--onDark::after { background: #fff; }
.btn--onDark:hover { color: var(--navy); border-color: #fff; }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }
.btn--gold::after { background: var(--navy); }

.btn--wa { --btn-bg: #0E7A3C; --btn-fg: #fff; --btn-bd: #0E7A3C; }
.btn--wa::after { background: #0B6B34; }
.btn--wa:hover { border-color: #0B6B34; }

.btn--sm { padding: 13px 24px; font-size: .71rem; letter-spacing: .15em; }
.btn__ico { width: 17px; height: 17px; flex: none; }

/* Lien souligné animé */
.ulink {
  position: relative;
  font-family: var(--font-display); font-size: .78rem;
  letter-spacing: .17em; text-transform: uppercase; color: var(--teal-text);
  padding-bottom: 5px;
}
.ulink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transform: scaleX(0);
  transition: transform .5s var(--ease-out);
}
.ulink:hover::after { transform-origin: left; transform: scaleX(1); }

/* 3. HEADER / NAV ========================================================== */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .4s var(--ease);
}
.hdr::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,27,69,.62), rgba(6,27,69,0));
  transition: opacity .5s var(--ease);
}
.hdr.is-stuck {
  height: 70px;
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}
.hdr.is-stuck::before { opacity: 0; }

.hdr__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; gap: 28px;
}

.logo { display: flex; align-items: center; gap: 13px; flex: none; }
.logo picture { display: block; flex: none; line-height: 0; }
/* Le logo est un cercle inscrit dans un carré blanc :
   border-radius supprime les angles blancs sur fond sombre comme sur fond clair. */
.logo__mark {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.logo:hover .logo__mark { transform: scale(1.06); }
.hdr:not(.is-stuck) .logo__mark { box-shadow: 0 2px 14px rgba(4,15,40,.35); }
.logo__txt {
  font-family: var(--font-display); text-transform: uppercase;
  line-height: 1.12; color: #fff; transition: color .5s var(--ease);
}
.logo__txt b { display: block; font-size: .78rem; font-weight: 500; letter-spacing: .21em; }
.logo__txt span {
  display: block; font-size: .94rem; font-weight: 600; letter-spacing: .13em; color: var(--gold-soft);
  transition: color .5s var(--ease);
}
.hdr.is-stuck .logo__txt { color: var(--navy); }
.hdr.is-stuck .logo__txt span { color: var(--teal); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: .76rem; font-weight: 400; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.88); padding: 6px 0;
  transition: color .4s var(--ease);
  white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }
.hdr.is-stuck .nav a { color: var(--navy); }
.hdr.is-stuck .nav a:hover { color: var(--teal); }

.hdr__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.hdr__cta .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.42); }
.hdr.is-stuck .hdr__cta .btn--ghost { --btn-fg: var(--navy); --btn-bd: rgba(6,27,69,.25); }

/* Burger */
.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.4);
  background: transparent; border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  transition: border-color .4s var(--ease);
}
.burger span {
  display: block; width: 19px; height: 1.5px; background: #fff;
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease);
}
.hdr.is-stuck .burger { border-color: rgba(6,27,69,.24); }
.hdr.is-stuck .burger span { background: var(--navy); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu plein écran */
.mmenu {
  position: fixed; inset: 0; z-index: 85;
  background: var(--navy);
  padding: calc(var(--header-h) + 24px) var(--gut) 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
  overflow-y: auto;
}
.mmenu.is-open { opacity: 1; visibility: visible; transform: none; }
.mmenu__nav { display: flex; flex-direction: column; }
.mmenu__nav a {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.4rem, 7vw, 2rem); font-weight: 400; letter-spacing: .05em;
  color: #fff; padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(14px);
}
.mmenu.is-open .mmenu__nav a { animation: mmIn .55s var(--ease-out) forwards; }
.mmenu__nav a i {
  font-family: var(--font-serif); font-style: normal;
  font-size: .8rem; color: var(--gold); letter-spacing: .1em;
}
@keyframes mmIn { to { opacity: 1; transform: none; } }
.mmenu__foot { margin-top: auto; padding-top: 34px; display: grid; gap: 12px; }
.mmenu__foot .btn { width: 100%; }
.mmenu__meta {
  margin-top: 26px; color: rgba(255,255,255,.62); font-size: .88rem; line-height: 1.7;
}

/* 4. HERO ================================================================== */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(56px, 7vw, 104px);
  overflow: hidden;
  background: var(--navy);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 118%; object-fit: cover; object-position: 50% 42%;
  will-change: transform;
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to   { transform: scale(1.11) translate3d(-1.2%, -1%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(104deg, rgba(6,27,69,.90) 0%, rgba(6,27,69,.70) 42%, rgba(6,27,69,.24) 74%, rgba(6,27,69,.34) 100%),
    linear-gradient(0deg, rgba(4,20,52,.72) 0%, rgba(4,20,52,0) 46%);
}
.hero__glow {
  position: absolute; z-index: 1; right: -12%; top: 8%;
  width: 46vw; height: 46vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(7,159,177,.34), rgba(7,159,177,0) 68%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__grid { max-width: 880px; }

.hero__tag {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-display); font-size: .7rem; letter-spacing: .26em;
  text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 18px 9px 14px; margin-bottom: 30px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
}
.hero__tag em { font-style: normal; color: var(--gold-soft); }

.hero h1 { color: #fff; margin-bottom: 26px; text-wrap: balance; }
.hero h1 .l2 { display: block; color: var(--gold-soft); }

.hero__sub {
  color: rgba(255,255,255,.9); font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  max-width: 46ch; line-height: 1.66; margin-bottom: 14px;
}
.hero__loc {
  display: flex; align-items: flex-start; gap: 11px;
  color: rgba(255,255,255,.66); font-size: .93rem; max-width: 42ch;
  padding-left: 2px; margin-bottom: 38px;
}
.hero__loc svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--teal); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute; left: var(--gut); bottom: 26px; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: .64rem; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.hero__scroll i {
  display: block; width: 1px; height: 38px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* 5. BÉNÉFICES ============================================================= */
.bene {
  position: relative; z-index: 3;
  margin-top: -1px;
  background: var(--white);
}
.bene__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
}
.bene__item {
  padding: clamp(34px, 3.4vw, 54px) clamp(20px, 2.4vw, 38px);
  border-right: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
  transition: background .5s var(--ease);
}
.bene__item:last-child { border-right: 0; }
.bene__item::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.bene__item:hover { background: var(--gray); }
.bene__item:hover::before { transform: scaleX(1); }
.bene__ico {
  width: 40px; height: 40px; color: var(--teal); margin-bottom: 22px;
  transition: transform .55s var(--ease), color .4s var(--ease);
}
.bene__item:hover .bene__ico { transform: translateY(-3px); color: var(--teal-dark); }
.bene__item h3 { color: var(--navy); margin-bottom: 12px; font-size: .92rem; letter-spacing: .13em; }
.bene__item p { color: var(--ink-soft); font-size: .95rem; line-height: 1.62; }

/* 6. SERVICES ============================================================== */
.svc__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px);
}
.svc {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--gray-200);
  overflow: hidden; border-radius: var(--r-sm);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .5s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc__media {
  position: relative; aspect-ratio: 4 / 3.15; overflow: hidden; background: var(--navy);
}
.svc__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.15s var(--ease-out), filter .7s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.07); }
.svc__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,27,69,0) 42%, rgba(6,27,69,.62) 100%);
}
.svc__num {
  position: absolute; z-index: 2; left: 22px; top: 18px;
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--gold-soft); letter-spacing: .04em;
  text-shadow: 0 2px 14px rgba(4,15,40,.6);
}
.svc__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { color: var(--navy); font-size: 1.02rem; letter-spacing: .1em; margin-bottom: 13px; }
.svc__body p { color: var(--ink-soft); font-size: .95rem; line-height: 1.64; }
.svc__tags {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.svc__tags li {
  font-size: .73rem; letter-spacing: .05em; color: var(--teal-deep);
  background: rgba(7,159,177,.09); padding: 5px 11px; border-radius: 100px;
}
.svc__rule {
  margin-top: auto; padding-top: 22px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal-text);
}
.svc__rule::before { content: ""; height: 1px; width: 26px; background: var(--gold); }

/* 7. DÉTAIL / SPLIT ======================================================== */
.split {
  display: grid; grid-template-columns: 1.02fr 1fr;
  align-items: stretch; gap: 0;
}
.split__media { position: relative; overflow: hidden; min-height: 460px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute; z-index: 2; right: 0; bottom: 0;
  background: var(--gold); color: var(--navy);
  padding: 22px 28px; max-width: 250px;
}
.split__badge b {
  display: block; font-family: var(--font-serif); font-size: 2.3rem;
  font-weight: 600; line-height: 1; margin-bottom: 4px;
}
.split__badge span {
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase; line-height: 1.5; display: block;
}
.split__body {
  background: var(--white);
  padding: clamp(40px, 5.4vw, 86px) clamp(26px, 4.4vw, 74px);
  display: flex; flex-direction: column; justify-content: center;
}
.split__body h2 { color: var(--navy); margin-bottom: 26px; }
.split__body > p { color: var(--ink-soft); font-size: 1.04rem; max-width: 54ch; }

.checks { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 1px; background: var(--gray-200); }
.checks li {
  display: flex; align-items: center; gap: 15px;
  background: var(--white); padding: 16px 4px;
  font-size: .97rem; color: var(--navy);
  transition: padding-left .45s var(--ease), color .4s var(--ease);
}
.checks li:hover { padding-left: 14px; color: var(--teal-deep); }
.checks svg { width: 19px; height: 19px; color: var(--teal); flex: none; }

/* 8. COUTURE =============================================================== */
.couture { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.couture::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../img/couture-wide.webp");
  background-size: cover; background-position: center;
  opacity: .16; filter: saturate(.6);
}
.couture::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 12% 50%, rgba(6,27,69,.92), rgba(6,27,69,.72) 55%, rgba(6,27,69,.94));
}
.couture > .wrap { position: relative; z-index: 2; }
.couture h2 { color: #fff; }
.couture__lead {
  font-family: var(--font-serif); font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-style: italic; color: var(--gold-soft); margin-top: 18px; line-height: 1.4;
}
.couture__layout {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 86px); align-items: center;
}
.couture__media { position: relative; }
.couture__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-sm);
}
.couture__media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid rgba(217,165,32,.45);
}
.cgrid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); }
.cgrid li {
  background: var(--navy); padding: 19px 16px;
  font-family: var(--font-display); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.86);
  display: flex; align-items: center; gap: 10px;
  transition: background .45s var(--ease), color .45s var(--ease);
}
.cgrid li::before { content: ""; width: 5px; height: 5px; background: var(--gold); flex: none; transition: transform .4s var(--ease); }
.cgrid li:hover { background: var(--teal-deep); color: #fff; }
.cgrid li:hover::before { transform: scale(1.9); }

/* 9. PROCESS =============================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); position: relative; }
.steps::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gray-200), var(--teal), var(--gray-200));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s var(--ease-out);
}
.steps.is-in::before { transform: scaleX(1); }
.step { position: relative; text-align: center; }
.step__dot {
  width: 68px; height: 68px; margin: 0 auto 24px;
  display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 50%;
  color: var(--teal); position: relative; z-index: 2;
  transition: border-color .5s var(--ease), transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease);
}
.step__dot svg { width: 27px; height: 27px; }
.step:hover .step__dot { border-color: var(--teal); background: var(--teal); color: #fff; transform: translateY(-4px); }
.step__n {
  font-family: var(--font-serif); font-size: .95rem; font-weight: 600;
  color: var(--gold); letter-spacing: .14em; display: block; margin-bottom: 9px;
}
.step h3 { color: var(--navy); font-size: .92rem; letter-spacing: .13em; margin-bottom: 11px; }
.step p { color: var(--ink-soft); font-size: .93rem; max-width: 27ch; margin-inline: auto; }

/* 10. AVANT / APRÈS ======================================================== */
.ba__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 2.6vw, 40px); }
.ba {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-sm); overflow: hidden;
}
.cmp {
  position: relative; aspect-ratio: 16 / 11; overflow: hidden;
  touch-action: pan-y; cursor: ew-resize; user-select: none; background: var(--navy);
}
.cmp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.cmp__after {
  position: absolute; inset: 0; z-index: 2;
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.cmp__label {
  position: absolute; z-index: 3; top: 16px;
  font-family: var(--font-display); font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; color: #fff;
  background: rgba(6,27,69,.62); backdrop-filter: blur(4px);
  padding: 7px 13px; pointer-events: none;
}
.cmp__label--a { left: 16px; }
.cmp__label--b { right: 16px; background: rgba(4,115,127,.92); }
.cmp__bar {
  position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 18px rgba(0,0,0,.35);
}
.cmp__knob {
  position: absolute; z-index: 5; top: 50%; left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; color: var(--navy);
  display: grid; place-items: center; box-shadow: 0 6px 22px rgba(4,15,40,.32);
  pointer-events: none; transition: transform .25s var(--ease);
}
.cmp:hover .cmp__knob { transform: translate(-50%, -50%) scale(1.06); }
.cmp__knob svg { width: 20px; height: 20px; }
.cmp__range {
  position: absolute; inset: 0; z-index: 6;
  width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.cmp__range:focus-visible + .cmp__bar { box-shadow: 0 0 0 3px var(--teal); }
.ba__cap { padding: 20px 24px 24px; }
.ba__cap h3 { color: var(--navy); font-size: .88rem; letter-spacing: .13em; margin-bottom: 8px; }
.ba__cap p { color: var(--ink-soft); font-size: .92rem; }
.ba__note {
  margin-top: 26px; font-size: .88rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 9px; justify-content: center;
}
.ba__note svg { width: 14px; height: 14px; flex: none; }

/* 11. TARIFS =============================================================== */
.tar__tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.tar__tab {
  border: 1px solid var(--gray-200); background: var(--white);
  padding: 11px 20px; cursor: pointer; border-radius: 100px;
  font-family: var(--font-display); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
  transition: all .4s var(--ease);
}
.tar__tab:hover { border-color: var(--teal); color: var(--teal-deep); }
.tar__tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.tar__panel { display: none; }
.tar__panel.is-active { display: block; animation: fadeUp .5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.tar__card {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: clamp(26px, 3.4vw, 46px);
}
.tar__card > header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.tar__card h3 { color: var(--navy); font-size: 1.15rem; letter-spacing: .1em; margin-bottom: 8px; }
.tar__card header p { color: var(--ink-soft); font-size: .93rem; }
.tar__list { list-style: none; margin: 0; padding: 0; }
.tar__list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 15px 8px; border-bottom: 1px dashed var(--gray-200);
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.tar__list li:last-child { border-bottom: 0; }
.tar__list li:hover { background: var(--gray); padding-left: 16px; }
.tar__label { color: var(--navy); font-size: .99rem; }
.tar__dots { flex: 1; border-bottom: 1px dotted var(--gray-400); transform: translateY(-4px); min-width: 20px; }
.tar__val {
  font-family: var(--font-display); font-size: .88rem; letter-spacing: .07em;
  color: var(--teal-deep); white-space: nowrap; font-weight: 500;
}
.tar__val--ask { color: var(--ink-soft); font-style: normal; letter-spacing: .12em; font-size: .78rem; text-transform: uppercase; }
.tar__foot {
  margin-top: clamp(30px, 3.5vw, 46px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 30px; background: var(--navy); color: rgba(255,255,255,.76);
}
.tar__foot p { font-size: .93rem; max-width: 52ch; }

/* 12. FORMULAIRE =========================================================== */
.order { background: var(--gray); }
.order__layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(32px, 4vw, 70px); align-items: start; }
.order__aside { position: sticky; top: calc(var(--header-h) + 24px); }
.order__aside h2 { color: var(--navy); margin-bottom: 22px; }
.order__aside > p { color: var(--ink-soft); }
.order__contacts { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 18px; }
.order__contacts li { display: flex; gap: 14px; align-items: flex-start; }
.order__contacts svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 4px; }
.order__contacts b { display: block; font-family: var(--font-display); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; }
.order__contacts span, .order__contacts a { color: var(--ink-soft); font-size: .96rem; }
.order__contacts a:hover { color: var(--teal-deep); }

.form { background: var(--white); padding: clamp(26px, 3.4vw, 48px); border: 1px solid var(--gray-200); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 9px;
}
.field label .req { color: var(--teal-text); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 14px 16px; border-radius: var(--r-sm); width: 100%;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352626F' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(7,159,177,.14);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C0392B; }
.field__err { color: #C0392B; font-size: .84rem; margin-top: 7px; }
.field__hint { color: var(--ink-soft); font-size: .84rem; margin-top: 7px; }

.file {
  display: flex; align-items: center; gap: 14px;
  border: 1px dashed var(--gray-400); padding: 15px 16px; border-radius: var(--r-sm);
  cursor: pointer; transition: border-color .35s var(--ease), background .35s var(--ease);
}
.file:hover { border-color: var(--teal); background: rgba(7,159,177,.04); }
.file svg { width: 21px; height: 21px; color: var(--teal); flex: none; }
.file input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file span { font-size: .92rem; color: var(--ink-soft); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.form__actions .btn { flex: 1 1 210px; }

.alert { padding: 18px 22px; margin-bottom: 26px; border-left: 3px solid; font-size: .96rem; }
.alert--ok  { background: rgba(7,159,177,.08); border-color: var(--teal); color: var(--teal-deep); }
.alert--err { background: rgba(192,57,43,.07); border-color: #C0392B; color: #A5342A; }
.alert b { display: block; font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; margin-bottom: 5px; }

/* 13. LOCALISATION ========================================================= */
.loc__layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 3.6vw, 60px); align-items: center; }
.loc__map {
  position: relative; border: 1px solid var(--gray-200); background: var(--gray);
  aspect-ratio: 16 / 11; overflow: hidden;
}
.loc__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }
.loc__info h2 { color: var(--navy); margin-bottom: 26px; }
.loc__addr { font-size: 1.06rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 26px; }
.loc__addr b { display: block; color: var(--navy); font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; font-size: .88rem; margin-bottom: 8px; }
.loc__feats { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.loc__feats li {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gray-200); padding: 9px 15px; border-radius: 100px;
  font-size: .85rem; color: var(--navy);
}
.loc__feats svg { width: 15px; height: 15px; color: var(--teal); }
.loc__hours { list-style: none; margin: 0 0 30px; padding: 0; max-width: 340px; }
.loc__hours li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: .95rem; }
.loc__hours span:first-child { color: var(--ink-soft); }
.loc__hours span:last-child { color: var(--navy); font-weight: 500; }

/* 14. ÉCOSYSTÈME =========================================================== */
.eco__layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 4vw, 70px); align-items: center; }
.eco__media { position: relative; }
.eco__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.eco__media::before {
  content: ""; position: absolute; left: -16px; top: -16px; width: 96px; height: 96px;
  border-left: 1px solid var(--gold); border-top: 1px solid var(--gold);
}
.eco h2 { color: var(--navy); }
.eco__list { list-style: none; margin: 32px 0 34px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-200); }
.eco__list li {
  background: var(--white); padding: 17px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--navy);
  transition: background .4s var(--ease);
}
.eco__list li:hover { background: var(--gray); }
.eco__list svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.eco__list li.is-self { background: var(--navy); color: #fff; }
.eco__list li.is-self svg { color: var(--gold); }

/* 15. CTA FINAL ============================================================ */
.fcta {
  position: relative; overflow: hidden;
  background: linear-gradient(118deg, var(--navy) 0%, var(--navy-soft) 46%, var(--teal-deep) 100%);
  color: #fff; text-align: center;
}
.fcta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 74% at 78% 18%, rgba(7,159,177,.4), transparent 62%),
    radial-gradient(40% 60% at 14% 88%, rgba(217,165,32,.2), transparent 64%);
}
.fcta > .wrap { position: relative; z-index: 2; }
.fcta h2 { color: #fff; margin-bottom: 22px; text-wrap: balance; }
.fcta h2 .l2 { display: block; color: var(--gold-soft); }
.fcta p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 46ch; margin-inline: auto; margin-bottom: 38px; }
.fcta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* 16. FOOTER =============================================================== */
.ftr { background: var(--navy); color: rgba(255,255,255,.66); padding-top: clamp(56px, 6vw, 92px); }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(26px, 3vw, 52px); padding-bottom: 52px; }
.ftr__brand p { font-size: .95rem; line-height: 1.8; }
.ftr__logo-link { display: inline-block; margin-bottom: 20px; line-height: 0; }
.ftr__logo {
  width: clamp(176px, 44vw, 212px); height: auto; aspect-ratio: 1; border-radius: 50%;
  background: #fff;
  transition: transform .5s var(--ease);
}
.ftr__logo-link:hover .ftr__logo { transform: scale(1.03); }
.ftr h4 { color: #fff; font-size: .72rem; letter-spacing: .2em; margin-bottom: 20px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ftr ul a { font-size: .94rem; transition: color .35s var(--ease), padding-left .35s var(--ease); display: inline-block; }
.ftr ul a:hover { color: var(--gold-soft); padding-left: 5px; }
.ftr__social { display: flex; gap: 10px; margin-top: 6px; }
.ftr__social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff;
  transition: all .4s var(--ease);
}
.ftr__social a:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.ftr__social svg { width: 17px; height: 17px; }
.ftr__bot {
  border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: .86rem;
}
.ftr__bot nav { display: flex; flex-wrap: wrap; gap: 22px; }
.ftr__bot a:hover { color: var(--gold-soft); }

/* 17. BARRE MOBILE ========================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gray-200);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
  box-shadow: 0 -4px 24px rgba(6,27,69,.08);
}
.sticky-cta.is-in { transform: none; }
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 10px;
  font-family: var(--font-display); font-size: .73rem; letter-spacing: .14em; text-transform: uppercase;
}
.sticky-cta a:first-child { color: #0E7A3C; border-right: 1px solid var(--gray-200); }
.sticky-cta a:last-child { background: var(--navy); color: #fff; }
.sticky-cta svg { width: 17px; height: 17px; }

/* 18. RÉVÉLATIONS ========================================================== */
/* Sans JavaScript, le contenu doit rester visible : on ne masque
   que lorsque la classe « js » a été posée par le script en <head>. */
.js .rv { opacity: 0; transform: translateY(26px); }
.js .rv.is-in {
  opacity: 1; transform: none;
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
}
.rv-d1 { transition-delay: .09s; }
.rv-d2 { transition-delay: .18s; }
.rv-d3 { transition-delay: .27s; }
.rv-d4 { transition-delay: .36s; }
.rv-d5 { transition-delay: .45s; }

/* 19. RESPONSIVE =========================================================== */
@media (max-width: 1300px) {
  .nav { gap: 21px; }
  .nav a { font-size: .72rem; letter-spacing: .1em; }
  .hdr__cta .btn { padding: 13px 21px; font-size: .69rem; letter-spacing: .12em; }
  /* Le second CTA cède la place : « Commander » reste prioritaire. */
  .hdr__cta .btn--ghost { display: none; }
}

@media (max-width: 1120px) {
  .hdr__inner { gap: 18px; }
  .nav { gap: 15px; }
  .nav a { font-size: .68rem; letter-spacing: .07em; }
  .logo__mark { width: 38px; height: 38px; }
  .logo__txt b { font-size: .7rem; letter-spacing: .17em; }
  .logo__txt span { font-size: .84rem; }
}

@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
  .bene__grid { grid-template-columns: repeat(2, 1fr); }
  .bene__item:nth-child(2n) { border-right: 0; }
  .bene__item:nth-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 380px; }
  .couture__layout, .loc__layout, .eco__layout, .order__layout { grid-template-columns: 1fr; }
  .order__aside { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { min-height: 640px; align-items: flex-end; }
  .hero__scroll { display: none; }
  .hero__cta .btn { width: 100%; }
  .bene__grid { grid-template-columns: 1fr; }
  .bene__item { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .svc__grid { grid-template-columns: 1fr; }
  .cgrid { grid-template-columns: repeat(2, 1fr); }
  .ba__grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .eco__list { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; gap: 36px; }
  .ftr__bot { flex-direction: column; align-items: flex-start; }
  .tar__foot { flex-direction: column; align-items: flex-start; }
  .split__badge { position: static; max-width: none; }
  .section { padding-block: 64px; }
  .fcta__btns .btn { width: 100%; }
}

@media (max-width: 420px) {
  .cgrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* 20. PRÉFÉRENCES / IMPRESSION ============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .rv { opacity: 1; transform: none; }
  .hero__media img { animation: none; transform: none; height: 100%; }
}

@media print {
  .hdr, .sticky-cta, .mmenu, .hero__scroll, .form__actions { display: none !important; }
  body { color: #000; }
  .hero { min-height: auto; }
}

/* Ajustements fins petits écrans */
@media (max-width: 560px) {
  .hero__tag { font-size: .62rem; letter-spacing: .18em; gap: 8px; padding: 8px 14px; }
  .hero__tag em { display: none; }
  .split__badge { display: flex; align-items: center; gap: 18px; }
  .split__badge b { margin-bottom: 0; }
}
