/* =================================================================
   BARBERKING — Feuille de style
   Direction artistique : luxe royal barbershop.
   Noir charbon + or métallique, art déco, grain, barber-pole.
   ================================================================= */

:root {
  /* Couleurs */
  --noir:        #0a0a0c;
  --charbon:     #121215;
  --charbon-2:   #18181d;
  --charbon-3:   #202027;
  --bord:        #2c2c34;
  --ivoire:      #f4efe3;
  --gris:        #9a9aa4;
  --gris-fonce:  #6a6a74;

  --or:          #c9a227;
  --or-clair:    #f3dd8e;
  --or-vif:      #e8c45a;
  --or-fonce:    #8a6c1c;
  --rouge:       #9b2226;

  /* Dégradé or métallique (texte / surfaces) */
  --grad-or: linear-gradient(135deg, #f3dd8e 0%, #c9a227 38%, #fbeaa6 60%, #9d7a1e 100%);

  /* Typo */
  --f-royal: 'Cinzel', serif;
  --f-barber: 'Bebas Neue', sans-serif;
  --f-corps: 'Jost', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 60px -20px rgba(0,0,0,.75);
  --shadow-gold: 0 18px 50px -22px rgba(201,162,39,.55);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--noir); overflow-x: hidden; }
body {
  font-family: var(--f-corps);
  background: transparent;
  color: var(--ivoire);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--or); color: var(--noir); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--charbon); }
::-webkit-scrollbar-thumb { background: var(--charbon-3); border-radius: 10px; border: 2px solid var(--charbon); }
::-webkit-scrollbar-thumb:hover { background: var(--or-fonce); }

/* --------------------------- Fond 3D WebGL ------------------------ */
#bg3d { position: fixed; inset: 0; width: 100%; height: 100%; max-width: 100vw; z-index: -1; pointer-events: none; display: block; }
/* Anti-débordement horizontal (plus besoin de zoomer sur mobile) */
.grain { max-width: 100vw; }
@media (max-width: 768px) { .fx3d { transform: none !important; } }   /* effet 3D au scroll : ordinateur uniquement */

/* --------------- Réintégration 3D des rubriques (scroll) ---------- */
.fx3d { will-change: transform; transform-origin: 50% 50%; }

/* --------------------------- Grain overlay ------------------------ */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================== NAV =============================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.1rem clamp(1rem, 4vw, 3rem);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--bord);
  padding-top: .7rem; padding-bottom: .7rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__crown {
  width: 38px; height: 28px;
  fill: none; stroke: url(#g); /* fallback below */
}
.brand__crown path, .brand__crown rect, .brand__crown circle {
  fill: var(--or); stroke: none;
  filter: drop-shadow(0 2px 6px rgba(201,162,39,.35));
}
.brand__name {
  font-family: var(--f-royal); font-weight: 900;
  font-size: 1.35rem; letter-spacing: .12em; text-transform: uppercase;
}
.brand__name em {
  font-style: normal;
  background: var(--grad-or); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gris); position: relative; padding: .3rem 0; transition: color .3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--grad-or); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--ivoire); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: .78rem; padding: .65rem 1.4rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.nav__burger span { width: 26px; height: 2px; background: var(--ivoire); transition: .3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================= BOUTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-corps); font-weight: 500; font-size: .9rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.7rem; border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s, opacity .3s;
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 2.3rem; font-size: .95rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: var(--grad-or); color: var(--noir); font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 24px 55px -18px rgba(232,196,90,.7); }
.btn--ghost {
  border: 1.5px solid var(--bord); color: var(--ivoire); background: transparent;
}
.btn--ghost:hover:not(:disabled) { border-color: var(--or); color: var(--or-clair); transform: translateY(-3px); }
.btn:disabled { opacity: .35; cursor: not-allowed; }
.btn:active:not(:disabled) { transform: translateY(-1px) scale(.99); }

/* ============================== HERO ============================== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 8rem clamp(1rem, 5vw, 2rem) 5rem; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(201,162,39,.22) 0%, rgba(201,162,39,.06) 35%, transparent 68%);
  filter: blur(10px);
}
/* Motif art déco en éventail, gauche/droite */
.hero__deco {
  position: absolute; top: 0; bottom: 0; width: 38%; opacity: .5;
  background-repeat: no-repeat; background-size: cover;
}
.hero__deco--left {
  left: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 38px, rgba(201,162,39,.05) 38px 39px);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent);
          mask-image: linear-gradient(90deg, #000, transparent);
}
.hero__deco--right {
  right: 0;
  background-image: repeating-linear-gradient(-115deg, transparent 0 38px, rgba(201,162,39,.05) 38px 39px);
  -webkit-mask-image: linear-gradient(-90deg, #000, transparent);
          mask-image: linear-gradient(-90deg, #000, transparent);
}
.hero::after { /* vignette bas */
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 40%;
  background: linear-gradient(transparent, var(--noir)); z-index: 1; pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 920px; }

/* --- Intro animée : assemblage par particules + machine à écrire --- */
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 4; pointer-events: none; display: none; opacity: 1;
  transition: opacity .75s ease;
}
.js-intro .hero__canvas { display: block; }
/* État masqué pendant l'intro (uniquement si JS + animations autorisées) */
.js-intro .hero__title,
.js-intro .intro { opacity: 0; }
.hero__title.is-shown { animation: heroTitleIn .9s var(--ease) forwards; }
.intro.is-shown { animation: reveal .8s var(--ease) forwards; }
@keyframes heroTitleIn {
  from { opacity: 0; filter: blur(10px); transform: scale(1.05); }
  to   { opacity: 1; filter: blur(0);    transform: none; }
}
/* Curseur de la machine à écrire */
.type-cursor {
  display: inline-block; width: 3px; height: 1em; margin-left: .08em;
  vertical-align: -0.12em; background: var(--or-vif);
  animation: caretBlink 1s steps(1) infinite;
}
.hero__lede .type-cursor { background: var(--gris); }
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.hero__eyebrow {
  font-family: var(--f-barber); letter-spacing: .42em; font-size: 1.05rem;
  color: var(--or-vif); text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--f-royal); font-weight: 900; line-height: .92;
  font-size: clamp(3.4rem, 13vw, 9.5rem); letter-spacing: .02em;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0 .04em;
}
.hero__title span { display: inline-block; }
.hero__title-king {
  background: var(--grad-or); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 24px rgba(201,162,39,.35));
}
.hero__tagline {
  font-family: var(--f-royal); font-weight: 500; font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem); color: var(--ivoire);
  margin: 1.6rem 0 1rem; letter-spacing: .04em;
}
.hero__lede { max-width: 540px; margin: 0 auto; color: var(--gris); font-size: 1.05rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__stats {
  display: flex; gap: clamp(1.5rem, 6vw, 4rem); justify-content: center; flex-wrap: wrap;
  margin-top: 3.6rem; padding-top: 2.4rem; border-top: 1px solid var(--bord);
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat__num { font-family: var(--f-barber); font-size: 2.1rem; color: var(--or-clair); letter-spacing: .04em; line-height: 1; }
.stat__lbl { font-size: .8rem; color: var(--gris); letter-spacing: .06em; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid var(--gris-fonce); border-radius: 100px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: var(--or);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* Barber pole vertical (or / noir / ivoire) */
.barberpole {
  position: absolute; top: 22%; right: clamp(.6rem, 3vw, 2.5rem); z-index: 2;
  width: 16px; height: 230px; border-radius: 100px; overflow: hidden;
  border: 2px solid var(--charbon-3); box-shadow: var(--shadow);
}
.barberpole__stripes {
  position: absolute; inset: -50% -50%;
  background: repeating-linear-gradient(45deg,
    var(--or) 0 10px, var(--noir) 10px 20px, var(--ivoire) 20px 30px, var(--noir) 30px 40px);
  animation: pole 2.4s linear infinite;
}
@keyframes pole { to { transform: translateY(40px); } }

/* ====================== SECTIONS génériques ======================= */
section { position: relative; }
.section__head { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 1rem; }
.section__eyebrow {
  font-family: var(--f-barber); letter-spacing: .35em; font-size: .95rem;
  color: var(--or-vif); text-transform: uppercase; margin-bottom: .8rem;
}
.section__title {
  font-family: var(--f-royal); font-weight: 700; line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: .01em;
}
.section__sub { color: var(--gris); margin-top: 1rem; font-size: 1.02rem; }

/* ============================= ABOUT ============================== */
.about { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.about__inner { display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__text .section__eyebrow, .about__text .section__title { text-align: left; }
.about__text .section__title { margin-bottom: 1.6rem; }
.about__text p { color: var(--gris); margin-bottom: 1.1rem; max-width: 52ch; }
.about__text strong { color: var(--ivoire); font-weight: 500; }
.about__text em { color: var(--or-clair); font-style: italic; }
.about__list { margin-top: 1.8rem; display: grid; gap: .9rem; }
.about__list li { display: flex; gap: .8rem; align-items: center; color: var(--ivoire); }
.about__list span {
  display: grid; place-items: center; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201,162,39,.14); color: var(--or-clair); font-size: .8rem;
}

.about__card { position: relative; }
.hours-card {
  background: linear-gradient(160deg, var(--charbon-2), var(--charbon));
  border: 1px solid var(--bord); border-radius: var(--radius-lg);
  padding: 2.2rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hours-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-or);
}
.hours-card__title {
  font-family: var(--f-barber); letter-spacing: .2em; font-size: 1.3rem; text-transform: uppercase;
  color: var(--or-clair); margin-bottom: 1.2rem;
}
.hours-card__list { display: grid; gap: .65rem; margin-bottom: 1.3rem; }
.hours-card__list li { display: flex; justify-content: space-between; padding-bottom: .55rem; border-bottom: 1px dashed var(--bord); font-size: .95rem; }
.hours-card__list .day { color: var(--gris); }
.hours-card__list .hrs { color: var(--ivoire); letter-spacing: .04em; }
.hours-card__list li.is-today { }
.hours-card__list li.is-today .day { color: var(--or-clair); font-weight: 500; }
.hours-card__list li.is-today .hrs { color: var(--or-clair); }
.hours-card__note { font-size: .82rem; color: var(--gris); margin-bottom: 1.5rem; line-height: 1.5; }
.hours-card__note strong { color: var(--ivoire); }

/* ============================= STYLES ============================= */
.styles { padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.styles__grid {
  margin-top: 3rem; display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.style-card {
  position: relative; background: var(--charbon-2); border: 1px solid var(--bord);
  border-radius: var(--radius); padding: 1.8rem 1.6rem; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.style-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(120% 80% at 100% 0%, rgba(201,162,39,.12), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.style-card:hover { transform: translateY(-6px); border-color: var(--or-fonce); box-shadow: var(--shadow); }
.style-card:hover::after { opacity: 1; }
.style-card__icon { width: 46px; height: 46px; margin-bottom: 1.1rem; }
.style-card__icon svg { width: 100%; height: 100%; stroke: var(--or-clair); fill: none; stroke-width: 1.4; }
.style-card__name { font-family: var(--f-barber); font-size: 1.55rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ivoire); line-height: 1; }
.style-card__tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or-vif); margin: .35rem 0 .8rem; }
.style-card__desc { font-size: .9rem; color: var(--gris); position: relative; z-index: 1; }

/* ============================ PRICING ============================= */
.pricing { padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.pricing__cols { margin-top: 3rem; display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.price-col {
  background: linear-gradient(165deg, var(--charbon-2), var(--charbon));
  border: 1px solid var(--bord); border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.price-col:hover { border-color: var(--or-fonce); transform: translateY(-4px); }
.price-col__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--bord); }
.price-col__head h3 { font-family: var(--f-barber); font-size: 1.7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--or-clair); }
.price-col__head svg { width: 30px; height: 30px; stroke: var(--or); fill: none; stroke-width: 1.4; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .85rem 0; border-bottom: 1px dashed var(--bord); }
.price-row:last-child { border-bottom: none; }
.price-row__info { display: flex; flex-direction: column; gap: .15rem; }
.price-row__name { color: var(--ivoire); font-weight: 400; font-size: 1rem; }
.price-row__meta { font-size: .78rem; color: var(--gris-fonce); letter-spacing: .04em; }
.price-row__price { font-family: var(--f-barber); font-size: 1.45rem; letter-spacing: .04em; color: var(--or-vif); white-space: nowrap; }
.price-row__price small { font-size: .7rem; color: var(--gris); letter-spacing: .1em; }
.pricing__foot { text-align: center; margin-top: 2.2rem; color: var(--gris); font-size: .88rem; letter-spacing: .02em; }

/* ============================ BOOKING ============================= */
.booking { padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 3rem) clamp(5rem, 10vw, 8rem); max-width: 960px; margin: 0 auto; }
.booking__card {
  margin-top: 3rem; background: linear-gradient(165deg, var(--charbon-2), var(--charbon));
  border: 1px solid var(--bord); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden;
}

/* --- Choix du lieu : salon / domicile --- */
.place-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.6rem clamp(1.2rem, 4vw, 2.4rem) 0; }
.place-card {
  position: relative; text-align: left; display: flex; flex-direction: column; gap: .25rem;
  padding: 1.3rem 1.4rem; border-radius: var(--radius); border: 1.5px solid var(--bord);
  background: var(--charbon-3); color: var(--ivoire); transition: .3s var(--ease); overflow: hidden;
}
.place-card:hover { border-color: var(--or-fonce); transform: translateY(-2px); }
.place-card.is-selected { border-color: var(--or); background: rgba(201,162,39,.08); box-shadow: 0 0 0 3px rgba(201,162,39,.12); }
.place-card__ico { width: 30px; height: 30px; color: var(--or-clair); margin-bottom: .3rem; }
.place-card__ico svg { width: 100%; height: 100%; }
.place-card__title { font-family: var(--f-royal); font-weight: 700; font-size: 1.15rem; }
.place-card__desc { font-size: .8rem; color: var(--gris); line-height: 1.4; }
.place-card__badge { position: absolute; top: .8rem; right: .8rem; font-family: var(--f-barber); font-size: .72rem; letter-spacing: .12em; color: var(--noir); background: var(--grad-or); padding: .12rem .55rem; border-radius: 100px; }

/* --- Détails domicile (zone + personnes) --- */
.home-detail[hidden] { display: none; }
.home-detail { margin-top: 1.4rem; padding: 1.2rem 1.3rem; border: 1px dashed var(--or-fonce); border-radius: var(--radius); background: rgba(201,162,39,.05); }
.home-detail__title { font-family: var(--f-barber); letter-spacing: .12em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 1rem; font-size: 1.05rem; }
.home-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.home-detail__hint { margin-top: .9rem; font-size: .82rem; color: var(--gris); line-height: 1.5; }
.home-detail__hint b { color: var(--or-clair); font-weight: 500; }
.home-detail select, .home-detail input { width: 100%; padding: .8rem .9rem; border-radius: 10px; border: 1.5px solid var(--bord); background: var(--charbon); color: var(--ivoire); font-family: var(--f-corps); font-size: 1rem; }
.home-detail select:focus, .home-detail input:focus { outline: none; border-color: var(--or); box-shadow: 0 0 0 3px rgba(201,162,39,.14); }

/* Un champ masqué doit primer sur le display:grid de .field */
.field[hidden] { display: none; }
.recap__list:empty { display: none; }

/* --- Panier « groupe » (domicile) --- */
.group-cart[hidden] { display: none; }
.group-cart { margin-top: 1.2rem; padding: 1.1rem 1.2rem; border: 1px solid var(--or-fonce); border-radius: var(--radius); background: rgba(201,162,39,.06); }
.gc-title { font-family: var(--f-barber); letter-spacing: .12em; text-transform: uppercase; color: var(--or-clair); font-size: 1.05rem; margin-bottom: .7rem; }
.gc-row { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: .8rem; padding: .55rem 0; border-bottom: 1px dashed var(--bord); }
.gc-row:last-of-type { border-bottom: none; }
.gc-person { font-size: .85rem; color: var(--gris); white-space: nowrap; }
.gc-name { color: var(--ivoire); font-size: .95rem; }
.gc-price { font-family: var(--f-barber); color: var(--or-vif); font-size: 1.1rem; letter-spacing: .03em; white-space: nowrap; }
.gc-del { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--bord); color: var(--gris); font-size: .8rem; line-height: 1; transition: .2s var(--ease); }
.gc-del:hover { border-color: var(--rouge); color: #e7777a; }
.gc-add { margin-top: .8rem; font-size: .8rem; color: var(--gris); text-align: center; }
.service.is-added { border-color: var(--or) !important; box-shadow: 0 0 0 3px rgba(201,162,39,.28); transform: scale(.97); }

@media (max-width: 560px) {
  .place-choice { grid-template-columns: 1fr; }
  .home-detail__grid { grid-template-columns: 1fr; }
}

/* Stepper */
.stepper {
  display: flex; align-items: center; gap: .5rem; padding: 1.6rem clamp(1.2rem, 4vw, 2.4rem);
  border-bottom: 1px solid var(--bord); background: rgba(0,0,0,.18);
}
.stepper__item { display: flex; align-items: center; gap: .6rem; flex: 1; position: relative; }
.stepper__item:not(:last-child)::after {
  content: ''; flex: 1; height: 1.5px; background: var(--bord); margin-left: .3rem; transition: background .4s var(--ease);
}
.stepper__dot {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--f-barber); font-size: 1.05rem; border: 1.5px solid var(--bord);
  color: var(--gris); background: var(--charbon); transition: .4s var(--ease);
}
.stepper__lbl { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); transition: color .4s var(--ease); white-space: nowrap; }
.stepper__item.is-active .stepper__dot { background: var(--grad-or); color: var(--noir); border-color: transparent; box-shadow: 0 0 0 4px rgba(201,162,39,.15); }
.stepper__item.is-active .stepper__lbl { color: var(--or-clair); }
.stepper__item.is-done .stepper__dot { background: var(--or-fonce); color: var(--ivoire); border-color: transparent; }
.stepper__item.is-done::after { background: var(--or-fonce); }

/* Corps du stepper */
.booking__body { padding: clamp(1.6rem, 4vw, 2.6rem); min-height: 320px; }
.step { display: none; animation: stepIn .45s var(--ease); }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.step__title { font-family: var(--f-royal); font-weight: 700; font-size: 1.4rem; margin-bottom: 1.4rem; }
.step__hint { color: var(--gris); margin-bottom: 1.3rem; font-size: .92rem; }
.step__hint b { color: var(--or-clair); font-weight: 500; }

/* Services (étape 1) */
.services { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); }
.service {
  display: flex; align-items: center; gap: .9rem; text-align: left; width: 100%;
  background: var(--charbon-3); border: 1.5px solid var(--bord); border-radius: var(--radius);
  padding: 1rem 1.1rem; transition: .3s var(--ease);
}
.service:hover { border-color: var(--or-fonce); transform: translateY(-2px); }
.service.is-selected { border-color: var(--or); background: rgba(201,162,39,.08); box-shadow: 0 0 0 3px rgba(201,162,39,.12); }
.service__ico { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(201,162,39,.12); }
.service__ico svg { width: 22px; height: 22px; stroke: var(--or-clair); fill: none; stroke-width: 1.5; }
.service__body { flex: 1; min-width: 0; }
.service__name { color: var(--ivoire); font-size: .98rem; font-weight: 400; }
.service__meta { font-size: .76rem; color: var(--gris); letter-spacing: .03em; }
.service__price { font-family: var(--f-barber); font-size: 1.3rem; color: var(--or-vif); letter-spacing: .03em; }

/* Calendrier (étape 2) */
.calendar { max-width: 460px; margin: 0 auto; }
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.calendar__nav {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--bord);
  font-size: 1.5rem; color: var(--ivoire); display: grid; place-items: center; transition: .3s var(--ease);
}
.calendar__nav:hover:not(:disabled) { border-color: var(--or); color: var(--or-clair); }
.calendar__nav:disabled { opacity: .25; cursor: not-allowed; }
.calendar__month { font-family: var(--f-royal); font-weight: 700; font-size: 1.25rem; text-transform: capitalize; letter-spacing: .03em; }
.calendar__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: .4rem; margin-bottom: .5rem; }
.calendar__weekdays span { text-align: center; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gris-fonce); }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .4rem; }
.cal-day {
  aspect-ratio: 1; border-radius: 12px; border: 1.5px solid transparent;
  display: grid; place-items: center; font-size: .95rem; color: var(--ivoire);
  background: var(--charbon-3); transition: .25s var(--ease); position: relative;
}
.cal-day:hover:not(:disabled):not(.is-empty) { border-color: var(--or-fonce); transform: translateY(-2px); color: var(--or-clair); }
.cal-day.is-empty { background: transparent; pointer-events: none; }
.cal-day:disabled { color: var(--gris-fonce); background: transparent; cursor: not-allowed; text-decoration: line-through; opacity: .5; }
.cal-day.is-vacation { color: #d98a8c; background: rgba(155,34,38,.10); border-color: rgba(155,34,38,.35); text-decoration: line-through; opacity: .85; }
.cal-day.is-monday:not([disabled]) { box-shadow: inset 0 0 0 1.5px var(--or-fonce); color: var(--or-clair); }
.cal-day.is-sunday:not([disabled]) { box-shadow: inset 0 0 0 1.5px var(--or-fonce); color: var(--or-clair); }
.hint-monday { color: var(--or-clair); }
.calendar__note { text-align: center; margin-top: .5rem; font-size: .78rem; color: var(--gris); line-height: 1.5; }
.calendar__note b { color: var(--or-clair); font-weight: 500; }
.calendar__vacances { text-align: center; margin-top: 1rem; font-size: .82rem; color: var(--or-clair); letter-spacing: .02em; }
.calendar__vacances b { color: #e7b3b4; font-weight: 600; }
.cal-day.is-today { border-color: var(--bord); }
.cal-day.is-today::after { content: ''; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--ivoire); }
.cal-day.is-selected { background: var(--grad-or); color: var(--noir); font-weight: 600; border-color: transparent; box-shadow: var(--shadow-gold); }
.cal-day.is-selected.is-today::after { background: var(--noir); }
.calendar__legend { display: flex; gap: 1.2rem; justify-content: center; margin-top: 1.4rem; font-size: .76rem; color: var(--gris); flex-wrap: wrap; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .35rem; vertical-align: middle; }
.dot--today { background: var(--ivoire); }
.dot--sel { background: var(--or); }
.dot--off { background: var(--gris-fonce); }

/* Créneaux (étape 3) */
.slots { display: grid; gap: 1.4rem; }
.slot-group__title { font-family: var(--f-barber); font-size: 1.15rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or-vif); margin-bottom: .8rem; display: flex; align-items: center; gap: .6rem; }
.slot-group__title::after { content: ''; flex: 1; height: 1px; background: var(--bord); }
.slot-group__grid { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); }
.slot-lunch {
  text-align: center; font-size: .82rem; letter-spacing: .05em; color: var(--or-clair);
  padding: .7rem 1rem; border: 1px dashed var(--or-fonce); border-radius: 10px;
  background: rgba(201,162,39,.07); margin: .2rem 0;
}
.slot {
  padding: .7rem .4rem; border-radius: 10px; border: 1.5px solid var(--bord);
  background: var(--charbon-3); color: var(--ivoire); font-size: .95rem; letter-spacing: .04em;
  transition: .25s var(--ease); text-align: center;
}
.slot:hover:not(.is-selected) { border-color: var(--or-fonce); color: var(--or-clair); transform: translateY(-2px); }
.slot.is-selected { background: var(--grad-or); color: var(--noir); font-weight: 600; border-color: transparent; box-shadow: var(--shadow-gold); }
/* Créneau déjà réservé : affiché barré en rouge, non cliquable */
.slot--booked { display: flex; flex-direction: column; align-items: center; gap: 1px; background: rgba(229,64,63,.08); border-color: rgba(229,64,63,.32); color: #e98a86; cursor: not-allowed; text-decoration: line-through; text-decoration-color: rgba(229,64,63,.65); }
.slot--booked:hover { transform: none; border-color: rgba(229,64,63,.32); color: #e98a86; }
.slot--booked em { font-style: normal; font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; opacity: .9; }
.slots__empty {
  text-align: center; padding: 2.5rem 1rem; color: var(--gris); border: 1px dashed var(--bord); border-radius: var(--radius);
}
.slots__empty strong { color: var(--or-clair); display: block; font-family: var(--f-royal); font-size: 1.1rem; margin-bottom: .4rem; }

/* Confirmation (étape 4) */
.confirm { display: grid; grid-template-columns: 1fr .85fr; gap: 1.6rem; align-items: start; }
.confirm__form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field__lbl { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gris); }
.field input {
  width: 100%; padding: .9rem 1rem; border-radius: 10px; border: 1.5px solid var(--bord);
  background: var(--charbon); color: var(--ivoire); font-family: var(--f-corps); font-size: 1rem;
  transition: border-color .3s, box-shadow .3s;
}
.field input::placeholder { color: var(--gris-fonce); }
.field input:focus { outline: none; border-color: var(--or); box-shadow: 0 0 0 3px rgba(201,162,39,.14); }
.field.is-invalid input { border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(155,34,38,.18); }
.field__err { font-size: .78rem; color: #e7777a; min-height: 1em; }
.confirm__note { font-size: .8rem; color: var(--gris); line-height: 1.5; }
.confirm__note--warn { color: var(--or-clair); border-left: 2px solid var(--or-fonce); padding-left: .85rem; margin-top: .5rem; }

/* --------------------------- Popup / modal ------------------------ */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 5000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(0,0,0,.72); backdrop-filter: blur(5px); animation: modalIn .25s var(--ease); }
.modal__box { background: linear-gradient(165deg, var(--charbon-2), var(--charbon)); border: 1px solid var(--or-fonce); border-radius: var(--radius-lg); max-width: 460px; width: 100%; padding: 2rem 1.8rem; text-align: center; box-shadow: var(--shadow); animation: modalBox .3s var(--ease); }
.modal__ico { font-size: 2.6rem; line-height: 1; }
.modal__title { font-family: var(--f-royal); color: var(--or-clair); font-size: 1.4rem; margin: .7rem 0 .9rem; }
.modal__text { color: var(--gris); line-height: 1.65; font-size: .95rem; }
.modal__text b { color: var(--or-clair); font-weight: 500; }
.modal__actions { display: flex; gap: .8rem; margin-top: 1.6rem; justify-content: center; flex-wrap: wrap; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalBox { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }

/* --------------------- Rappel de rendez-vous (bannière) ----------- */
.rdv-reminder[hidden] { display: none; }
.rdv-reminder {
  position: fixed; top: 4.7rem; left: 50%; transform: translateX(-50%); z-index: 1100;
  display: flex; align-items: center; gap: 1rem; max-width: 94vw;
  padding: .7rem .8rem .7rem 1.2rem;
  background: linear-gradient(165deg, var(--charbon-2), var(--charbon));
  border: 1px solid var(--or-fonce); border-radius: 100px;
  box-shadow: var(--shadow), 0 0 34px -12px rgba(201,162,39,.5);
  animation: rdvDrop .5s var(--ease);
}
.rdv-reminder__ico { font-size: 1.25rem; line-height: 1; }
.rdv-reminder__txt { font-size: .9rem; color: var(--ivoire); white-space: nowrap; }
.rdv-reminder__txt b { color: var(--or-clair); font-weight: 500; }
.rdv-reminder__actions { display: flex; gap: .5rem; }
.rdv-reminder__close { color: var(--gris); font-size: .95rem; padding: 0 .3rem; line-height: 1; }
.rdv-reminder__close:hover { color: var(--ivoire); }
@keyframes rdvDrop { from { opacity: 0; transform: translate(-50%, -16px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (max-width: 640px) {
  .rdv-reminder { flex-wrap: wrap; justify-content: center; text-align: center; border-radius: var(--radius); top: 4.3rem; padding: .8rem 1rem; }
  .rdv-reminder__txt { white-space: normal; }
}

/* ----------------------- Bouton installer l'app (PWA) ------------- */
.pwa-install[hidden] { display: none; }
.pwa-install {
  position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 1200;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .72rem 1.15rem; border-radius: 100px;
  background: var(--grad-or); color: var(--noir);
  font-weight: 600; font-size: .85rem; letter-spacing: .01em;
  box-shadow: var(--shadow-gold); animation: rdvDrop .5s var(--ease);
}
.pwa-install:hover { filter: brightness(1.06); }
@media (max-width: 640px) { .pwa-install { bottom: .9rem; right: .9rem; } }
.confirm__note strong { color: var(--ivoire); font-weight: 500; }
.field__opt { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--gris-fonce); font-size: .82em; }

.recap {
  background: var(--charbon); border: 1px solid var(--bord); border-radius: var(--radius); padding: 1.4rem 1.5rem;
  position: relative; overflow: hidden;
}
.recap::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--grad-or); }
.recap__title { font-family: var(--f-barber); font-size: 1.2rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 1rem; }
.recap__list { display: grid; gap: .7rem; margin-bottom: 1.1rem; }
.recap__list div { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.recap__list dt { color: var(--gris); }
.recap__list dd { color: var(--ivoire); text-align: right; font-weight: 400; }
.recap__price { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; border-top: 1px solid var(--bord); }
.recap__price span { color: var(--gris); letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.recap__price strong { font-family: var(--f-barber); font-size: 1.8rem; color: var(--or-vif); letter-spacing: .03em; }

/* Succès (étape 5) */
.step--done .success { text-align: center; padding: 1.5rem 1rem 1rem; }
.success__check { width: 92px; height: 92px; margin: 0 auto 1.4rem; }
.success__check circle { fill: none; stroke: var(--or); stroke-width: 3; opacity: .35; }
.success__check path { fill: none; stroke: var(--or-vif); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: check .6s .2s var(--ease) forwards; }
@keyframes check { to { stroke-dashoffset: 0; } }
.success__title { font-family: var(--f-royal); font-weight: 900; font-size: 1.9rem; margin-bottom: .8rem; }
.success__text { color: var(--gris); max-width: 46ch; margin: 0 auto 1.8rem; line-height: 1.6; }
.success__text b { color: var(--or-clair); font-weight: 500; }

/* Navigation booking */
.booking__nav { display: flex; justify-content: space-between; gap: 1rem; padding: 1.4rem clamp(1.2rem, 4vw, 2.4rem); border-top: 1px solid var(--bord); background: rgba(0,0,0,.18); }
.booking__nav.is-hidden { display: none; }

/* ===================== MES RENDEZ-VOUS ===================== */
.myrdv { padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem) 0; max-width: var(--maxw); margin: 0 auto; }
.myrdv__list { margin-top: 2.4rem; display: grid; gap: 1rem; }
.rdv-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: linear-gradient(165deg, var(--charbon-2), var(--charbon));
  border: 1px solid var(--bord); border-radius: var(--radius); padding: 1.2rem 1.4rem;
  transition: border-color .3s var(--ease);
}
.rdv-card:hover { border-color: var(--or-fonce); }
.rdv-card__main { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.rdv-card__ico { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(201,162,39,.12); }
.rdv-card__ico svg { width: 22px; height: 22px; stroke: var(--or-clair); fill: none; stroke-width: 1.5; }
.rdv-card__svc { font-family: var(--f-royal); font-weight: 700; font-size: 1.05rem; color: var(--ivoire); }
.rdv-card__when { color: var(--or-clair); font-size: .92rem; text-transform: capitalize; }
.rdv-card__ref { color: var(--gris-fonce); font-size: .78rem; letter-spacing: .03em; }
.rdv-card__actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.btn--sm { padding: .55rem 1.05rem; font-size: .76rem; }
.rdv-card__cancel { border: 1.5px solid var(--bord); color: var(--gris); }
.rdv-card__cancel:hover { border-color: var(--rouge); color: #e7777a; }
.rdv-card__cancel.is-confirm { background: var(--rouge); color: #fff; border-color: var(--rouge); }
.rdv-card__ics { border: 1.5px solid var(--or-fonce); color: var(--or-clair); }
.rdv-card__ics:hover { background: rgba(201,162,39,.12); }
.rdv-card__locked { font-size: .82rem; color: var(--gris); max-width: 40ch; }
.rdv-card__locked a { color: var(--or-clair); }

/* Bandeau de modification */
.edit-banner[hidden] { display: none; }   /* l'attribut hidden doit primer sur display:flex */
.edit-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: rgba(201,162,39,.1); border-bottom: 1px solid var(--or-fonce);
  padding: 1rem clamp(1.2rem, 4vw, 2.4rem); color: var(--or-clair); font-size: .9rem;
}
.edit-banner__x { border: 1px solid var(--or-fonce); border-radius: 100px; padding: .45rem 1.1rem; font-size: .78rem; color: var(--or-clair); transition: background .3s; white-space: nowrap; }
.edit-banner__x:hover { background: rgba(201,162,39,.16); }

/* Actions de l'écran de succès */
.success__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ============================= FOOTER ============================= */
.footer { border-top: 1px solid var(--bord); padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 3rem) 2rem; background: var(--charbon); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.brand--footer { margin-bottom: 1rem; }
.footer__tag { font-family: var(--f-royal); font-style: italic; color: var(--gris); max-width: 28ch; }
.footer__h { font-family: var(--f-barber); font-size: 1.15rem; letter-spacing: .16em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 1rem; }
.footer__col p { color: var(--gris); font-size: .92rem; margin-bottom: .4rem; }
.footer__col a:hover { color: var(--or-clair); }
.footer__small { font-size: .8rem; color: var(--gris-fonce); }
.footer__social { display: flex; flex-direction: column; gap: .5rem; }
.footer__social a { color: var(--gris); font-size: .92rem; transition: color .3s; width: fit-content; }
.footer__copy { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--bord); color: var(--gris-fonce); font-size: .82rem; letter-spacing: .04em; }

/* ============================== TOAST ============================= */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(140%);
  z-index: 9500; max-width: 90vw;
  background: var(--charbon-3); border: 1px solid var(--or-fonce); border-left: 4px solid var(--or);
  border-radius: 12px; padding: .9rem 1.4rem; box-shadow: var(--shadow);
  color: var(--ivoire); font-size: .92rem; letter-spacing: .02em;
  transition: transform .5s var(--ease), opacity .5s;
}
.toast.is-show { transform: translateX(-50%) translateY(0); }

/* Bouton rouge (« Ajouter à l'agenda » dans la modale de confirmation) */
.btn--red {
  background: linear-gradient(135deg, #e5403f, #b01b1b); color: #fff; border: none;
  box-shadow: 0 6px 22px rgba(200, 30, 30, .38);
}
.btn--red:hover:not(:disabled) { transform: translateY(-3px); filter: brightness(1.07); }

/* ========================= ANIM REVEAL =========================== */
.reveal { opacity: 0; transform: translateY(26px); animation: reveal .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes reveal { to { opacity: 1; transform: none; } }
.in-view { animation: reveal .9s var(--ease) forwards; }
.will-reveal { opacity: 0; transform: translateY(30px); }

/* Traduction albanaise affichée sous le texte français */
.sq { display: block; font-size: .72em; font-weight: 400; font-style: italic; opacity: .78; margin-top: 1px; letter-spacing: normal; line-height: 1.25; }
.place-card__title { display: block; }

/* Bouton « plusieurs personnes » (salon) + bouton Continuer du panier */
.multi-toggle { display: block; width: 100%; margin: .7rem 0 0; padding: .8rem 1rem; background: transparent; border: 1px dashed var(--or-fonce); border-radius: 14px; color: var(--or-clair); font-family: inherit; font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .2s, border-color .2s; }
.multi-toggle:hover { background: rgba(201, 162, 39, .1); border-color: var(--or); }
.gc-next { margin-top: .9rem; }

/* Badge « prochain créneau libre » (hero) */
.next-slot {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.1rem;
  padding: .55rem 1.15rem; border: 1px solid rgba(67, 209, 124, .35); border-radius: 100px;
  background: rgba(67, 209, 124, .08); color: #8ce7ae; font-size: .9rem; text-decoration: none;
  transition: border-color .25s, background .25s;
}
.next-slot:hover { border-color: rgba(67, 209, 124, .7); background: rgba(67, 209, 124, .14); }
.next-slot b { color: #b8f5cf; font-weight: 600; }
.next-slot .sq { font-size: .68em; }
.next-slot__dot {
  width: 8px; height: 8px; flex-shrink: 0; border-radius: 50%;
  background: #43d17c; box-shadow: 0 0 10px rgba(67, 209, 124, .9);
  animation: nextPulse 1.8s ease-in-out infinite;
}
@keyframes nextPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Rubrique dépliante « Quelle coupe souhaitez-vous ? » */
.services-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  width: 100%; margin: .1rem 0 1rem; padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(201,162,39,.16), rgba(201,162,39,.04));
  border: 1.5px solid var(--or-fonce); border-radius: 14px;
  color: var(--or-clair); font-family: inherit; font-size: 1.02rem; font-weight: 600; letter-spacing: .02em;
  cursor: pointer; text-align: left; transition: border-color .25s, background .25s;
}
.services-toggle:hover { border-color: var(--or); background: rgba(201,162,39,.14); }
.services-toggle__chev { font-size: 1.05rem; flex-shrink: 0; transition: transform .3s var(--ease); }
.services-toggle.is-open .services-toggle__chev { transform: rotate(180deg); }
#servicesGrid.is-collapsed { display: none; }

/* Formulaire : un bloc de coordonnées par client */
.client-block + .client-block { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px dashed rgba(201, 162, 39, .25); }
.client-head { font-weight: 700; color: var(--or-clair); margin: 0 0 .6rem; font-size: .98rem; }

/* ========================= RESPONSIVE ============================ */
@media (max-width: 920px) {
  .about__inner { grid-template-columns: minmax(0, 1fr); }
  .pricing__cols { grid-template-columns: minmax(0, 1fr); }
  .confirm { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 1.2rem; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,12,.97); backdrop-filter: blur(14px); padding: 1.6rem 2rem 2rem;
    border-bottom: 1px solid var(--bord);
  }
  .barberpole { display: none; }
  .services { grid-template-columns: 1fr; }
  .stepper__lbl { display: none; }
  .stepper { gap: .2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero__stats { gap: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .slot-group__grid { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
}

/* Réduction des animations si préférence système */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal, .will-reveal { opacity: 1 !important; transform: none !important; }
}
