@import url('/assets/fonts/fonts.css');

/* =========================================================================
   Tiph Coiffure — feuille de style unique.
   Palette crème / rose poudré / prune, reprise de la carte de tarifs.
   ========================================================================= */

:root {
  --creme:      #FDF8F5;
  --creme-2:    #F7ECE6;
  --surface:    #FFFFFF;
  --surface-2:  #FDF3EF;
  --blush:      #F7E2E2;
  --rose:       #E7B7BB;
  --rose-pale:  #F4D9DA;
  --accent:     #A8405C;
  --accent-2:   #C97285;
  --accent-txt: #FFFFFF;
  --encre:      #2B2320;
  --encre-2:    #5E5049;
  --encre-3:    #8E7D76;
  --trait:      rgba(43, 35, 32, .10);
  --trait-fort: rgba(43, 35, 32, .20);
  --ok:         #2E7D5B;
  --alerte:     #B4462F;
  --ombre-1:    0 1px 2px rgba(80, 52, 46, .06), 0 6px 18px rgba(80, 52, 46, .06);
  --ombre-2:    0 2px 6px rgba(80, 52, 46, .08), 0 18px 44px rgba(80, 52, 46, .12);
  --r:          16px;
  --r-s:        11px;
  --largeur:    1120px;
  --gouttiere:  clamp(18px, 4vw, 40px);
  --ressort:    cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
}

:root[data-theme="dark"], :root:not([data-theme="light"]) {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --creme:      #16100E;
    --creme-2:    #1E1715;
    --surface:    #201917;
    --surface-2:  #271F1D;
    --blush:      #322523;
    --rose:       #7C5A5C;
    --rose-pale:  #3A2B2A;
    --accent:     #EDA9B6;
    --accent-2:   #C98D99;
    --accent-txt: #24161A;
    --encre:      #F6EDEA;
    --encre-2:    #CBBBB5;
    --encre-3:    #9A8880;
    --trait:      rgba(246, 237, 234, .12);
    --trait-fort: rgba(246, 237, 234, .24);
    --ok:         #7BC9A2;
    --alerte:     #F0907A;
    --ombre-1:    0 1px 2px rgba(0, 0, 0, .35), 0 6px 18px rgba(0, 0, 0, .28);
    --ombre-2:    0 2px 8px rgba(0, 0, 0, .40), 0 20px 48px rgba(0, 0, 0, .42);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --creme:      #16100E;
  --creme-2:    #1E1715;
  --surface:    #201917;
  --surface-2:  #271F1D;
  --blush:      #322523;
  --rose:       #7C5A5C;
  --rose-pale:  #3A2B2A;
  --accent:     #EDA9B6;
  --accent-2:   #C98D99;
  --accent-txt: #24161A;
  --encre:      #F6EDEA;
  --encre-2:    #CBBBB5;
  --encre-3:    #9A8880;
  --trait:      rgba(246, 237, 234, .12);
  --trait-fort: rgba(246, 237, 234, .24);
  --ok:         #7BC9A2;
  --alerte:     #F0907A;
  --ombre-1:    0 1px 2px rgba(0, 0, 0, .35), 0 6px 18px rgba(0, 0, 0, .28);
  --ombre-2:    0 2px 8px rgba(0, 0, 0, .40), 0 20px 48px rgba(0, 0, 0, .42);
  color-scheme: dark;
}

/* ------------------------------------------------------------- socle --- */

*, *::before, *::after { box-sizing: border-box; }
/* Nos composants posent display:flex/grid, ce qui prend le pas sur le style
   par défaut de [hidden]. On rétablit la règle une fois pour toutes. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.62; color: var(--encre);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; }
img { height: auto; }
a { color: var(--accent); text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  /* Cormorant sort des chiffres elzéviriens par défaut : le « 1 » ressemble à un
     « I » et un prix devient ambigu. On force les chiffres alignés partout où
     cette police affiche des nombres. */
  font-variant-numeric: lining-nums;
  font-weight: 600; line-height: 1.12; letter-spacing: -.005em;
  color: var(--encre); margin: 0 0 .5em;
}
h1 { font-size: clamp(38px, 6.4vw, 64px); }
h2 { font-size: clamp(28px, 4.2vw, 42px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
p  { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid var(--trait); margin: 32px 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.page { max-width: var(--largeur); margin: 0 auto; padding: 0 var(--gouttiere); }
.page--etroite { max-width: 780px; }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--creme { background: var(--creme-2); }
.centre { text-align: center; }
.muet { color: var(--encre-3); }
.petit { font-size: 13.5px; }
.sauteur { position: absolute; left: -9999px; }
.sauteur:focus { left: 12px; top: 12px; z-index: 300; background: var(--surface); padding: 10px 16px; border-radius: 10px; box-shadow: var(--ombre-2); }

/* Script manuscrit du logotype. */
.script { font-family: 'Parisienne', 'Cormorant Garamond', cursive; font-weight: 400; }

/* Coup de pinceau rose derrière un intitulé, comme sur la carte papier. */
.pinceau { position: relative; display: inline-block; z-index: 0; }
.pinceau::before {
  content: ''; position: absolute; z-index: -1;
  left: -.3em; right: -.3em; top: 30%; bottom: 7%;
  background: var(--rose-pale);
  border-radius: 40% 60% 55% 45% / 60% 50% 50% 40%;
  transform: rotate(-.6deg);
}

.surtitre {
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px; font-family: 'Figtree', sans-serif;
}
.chapeau { font-size: clamp(16px, 1.6vw, 18.5px); color: var(--encre-2); max-width: 62ch; }

/* ------------------------------------------------------------ boutons --- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-size: 15px; font-weight: 640; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: transform .22s var(--ressort), background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.btn--plein { background: var(--accent); color: var(--accent-txt); box-shadow: var(--ombre-1); }
.btn--plein:hover { background: var(--encre); }
.btn--ligne { background: transparent; color: var(--encre); border-color: var(--trait-fort); }
.btn--ligne:hover { border-color: var(--accent); color: var(--accent); }
.btn--doux { background: var(--blush); color: var(--accent); }
.btn--doux:hover { background: var(--rose-pale); }
.btn--mini { padding: 9px 16px; font-size: 13.5px; }
.btn--large { width: 100%; }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ------------------------------------------------------------- entête --- */

.entete {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--creme) 86%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--trait);
}
.entete-inner {
  max-width: var(--largeur); margin: 0 auto; padding: 12px var(--gouttiere);
  display: flex; align-items: center; gap: 18px;
}
.marque { display: flex; align-items: baseline; gap: 9px; text-decoration: none; color: var(--encre); flex: none; }
.marque-script { font-family: 'Parisienne', cursive; font-size: 30px; color: var(--accent); line-height: 1; }
.marque-nom {
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
@media (max-width: 400px) { .marque-nom { display: none; } }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 560;
  color: var(--encre-2); text-decoration: none; transition: background .2s, color .2s;
}
.nav a:hover { color: var(--encre); background: var(--blush); }
.nav a.est-actif { color: var(--accent); background: var(--blush); }
@media (max-width: 900px) { .nav { display: none; } }

.entete-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
@media (min-width: 901px) { .entete-actions { margin-left: 14px; } }

.rond {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  border: 1px solid var(--trait-fort); background: var(--surface); color: var(--encre-2);
  cursor: pointer; text-decoration: none; position: relative;
  transition: background .2s, color .2s, border-color .2s, transform .22s var(--ressort);
}
.rond:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.rond svg { width: 19px; height: 19px; }
.pastille {
  position: absolute; top: -3px; right: -3px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 999px; background: var(--accent); color: var(--accent-txt);
  font-size: 11px; font-weight: 750; line-height: 19px; text-align: center;
  border: 2px solid var(--creme);
}
.burger { display: none; }
@media (max-width: 900px) { .burger { display: inline-flex; } }

/* Menu plein écran (mobile) */
.voile {
  position: fixed; inset: 0; z-index: 120; background: rgba(28, 20, 18, .5);
  backdrop-filter: blur(3px); display: grid; place-items: start stretch;
}
.voile[hidden] { display: none; }
.tiroir {
  background: var(--creme); padding: 18px var(--gouttiere) 28px;
  border-bottom-left-radius: 26px; border-bottom-right-radius: 26px;
  box-shadow: var(--ombre-2); animation: tombe .3s var(--ressort);
}
@keyframes tombe { from { transform: translateY(-14px); opacity: 0; } }
.tiroir-haut { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tiroir nav { display: grid; gap: 2px; }
.tiroir nav a {
  padding: 14px 12px; border-radius: 12px; font-size: 17px; font-weight: 560;
  color: var(--encre); text-decoration: none; border-bottom: 1px solid var(--trait);
}
.tiroir nav a:last-child { border-bottom: 0; }
.tiroir nav a.est-actif { color: var(--accent); }

/* Bandeau d'annonce */
.ruban {
  background: var(--accent); color: var(--accent-txt);
  font-size: 13.5px; font-weight: 560; text-align: center;
  padding: 9px var(--gouttiere);
}
.ruban a { color: inherit; }

/* -------------------------------------------------------------- héros --- */

.heros { position: relative; overflow: hidden; padding: clamp(44px, 7vw, 92px) 0 clamp(40px, 6vw, 76px); }
.heros::before, .heros::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, var(--blush), transparent 70%);
}
.heros::before { width: 540px; height: 540px; top: -190px; right: -160px; }
.heros::after  { width: 420px; height: 420px; bottom: -220px; left: -170px; opacity: .8; }
.heros-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .heros-inner { grid-template-columns: minmax(0, 1fr); } }

.heros h1 { margin-bottom: 18px; }
.heros h1 .script { display: block; font-size: 1.24em; color: var(--accent); line-height: .95; margin-bottom: -.06em; }
.heros-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.heros-infos { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; font-size: 14px; color: var(--encre-2); }
.heros-infos span { display: inline-flex; align-items: center; gap: 8px; }
.heros-infos svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* Carte de visite (colonne droite du héros) */
.visite {
  background: var(--surface); border: 1px solid var(--trait); border-radius: 26px;
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--ombre-2); text-align: center;
  position: relative; overflow: hidden;
}
.visite::before {
  content: ''; position: absolute; inset: 10px; border: 1px solid var(--rose-pale);
  border-radius: 20px; pointer-events: none;
}
.visite-logo { font-family: 'Parisienne', cursive; font-size: 54px; color: var(--accent); line-height: 1; }
.visite-nom {
  font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; margin: 6px 0 4px; padding-left: .26em;
}
.visite-sous { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--encre-3); }
.visite-sep { display: block; margin: 16px auto; width: 46px; border-top: 1px solid var(--rose); }
.visite dl { display: grid; gap: 12px; margin: 0; text-align: left; }
.visite dl > div { display: flex; align-items: center; gap: 12px; }
.visite dt {
  width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--blush);
  display: grid; place-items: center; color: var(--accent);
}
.visite dt svg { width: 16px; height: 16px; }
.visite dd { margin: 0; font-size: 14.5px; }
.visite dd a { color: var(--encre); text-decoration: none; }
.visite dd a:hover { color: var(--accent); }

/* ------------------------------------------------------------- cartes --- */

.grille { display: grid; gap: 20px; }
.grille--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grille--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grille--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .grille--3, .grille--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grille--2, .grille--3, .grille--4 { grid-template-columns: minmax(0, 1fr); } }

.carte {
  background: var(--surface); border: 1px solid var(--trait); border-radius: var(--r);
  padding: 24px; box-shadow: var(--ombre-1);
}
.carte--doux { background: var(--surface-2); box-shadow: none; }
.carte h3 { margin-bottom: 8px; }
.carte p:last-child { margin-bottom: 0; }

.atout { text-align: center; }
.atout-ic {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--blush); color: var(--accent); display: grid; place-items: center;
}
.atout-ic svg { width: 23px; height: 23px; }
.atout h3 { font-size: 20px; }
.atout p { font-size: 14.5px; color: var(--encre-2); margin: 0; }

/* -------------------------------------------------------- prestations --- */

.cat-entete { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 28px; margin-bottom: 22px; }
.cat-entete h2 { margin: 0; }
.cat-entete p { margin: 0; color: var(--encre-3); font-size: 14.5px; }

.filtres { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filtres a {
  padding: 9px 17px; border-radius: 999px; font-size: 14px; font-weight: 580;
  text-decoration: none; color: var(--encre-2); background: var(--surface);
  border: 1px solid var(--trait); transition: all .2s;
}
.filtres a:hover { border-color: var(--accent); color: var(--accent); }
.filtres a.est-actif { background: var(--accent); border-color: var(--accent); color: var(--accent-txt); }

.presta {
  background: var(--surface); border: 1px solid var(--trait); border-radius: var(--r);
  padding: 20px 22px; box-shadow: var(--ombre-1);
  display: flex; flex-direction: column; gap: 14px;
}
.presta-titre { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.presta-titre h3 { font-size: 22px; margin: 0; }
.presta-duree {
  font-size: 12px; font-weight: 640; color: var(--encre-3); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.presta-duree svg { width: 13px; height: 13px; }
.presta-desc { font-size: 14px; color: var(--encre-2); margin: -6px 0 0; }
.presta-lignes { display: grid; gap: 8px; }

.ligne-prix {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-s);
  background: var(--surface-2); border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.ligne-prix:hover { border-color: var(--rose); }
.ligne-prix .lp-label { font-size: 14px; color: var(--encre-2); flex: 1; min-width: 0; }
.ligne-prix .lp-prix { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 600; white-space: nowrap; font-variant-numeric: lining-nums; }
.ligne-prix .lp-btn {
  flex: none; width: 36px; height: 36px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--accent); color: var(--accent-txt); display: grid; place-items: center;
  transition: transform .22s var(--ressort), background .2s;
}
.ligne-prix .lp-btn:hover { transform: scale(1.08); background: var(--encre); }
.ligne-prix .lp-btn svg { width: 16px; height: 16px; }
.ligne-prix.est-dedans { border-color: var(--accent); background: var(--blush); }

/* Tableau de tarifs (rappel façon carte papier) */
.tarifs { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tarifs caption { text-align: left; padding-bottom: 12px; color: var(--encre-3); font-size: 13px; }
.tarifs th, .tarifs td { padding: 11px 12px; border-bottom: 1px dotted var(--trait-fort); text-align: right; }
.tarifs th:first-child, .tarifs td:first-child { text-align: left; }
.tarifs thead th {
  background: var(--rose-pale); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--encre); border-bottom: 0;
}
.tarifs thead th:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.tarifs thead th:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
.tarifs tbody tr:last-child td { border-bottom: 0; }
.tarifs td.prix { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; font-variant-numeric: lining-nums; }
.defile { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ------------------------------------------------------------- panier --- */

.colonnes { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
@media (max-width: 900px) { .colonnes { grid-template-columns: minmax(0, 1fr); } }
.colle { position: sticky; top: 84px; }
@media (max-width: 900px) { .colle { position: static; } }

.recap {
  background: var(--surface); border: 1px solid var(--trait); border-radius: var(--r);
  padding: 22px; box-shadow: var(--ombre-1);
}
.recap h3 { font-size: 21px; margin-bottom: 14px; }
.recap-ligne { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 14.5px; }
.recap-ligne span:last-child { white-space: nowrap; font-weight: 580; }
.recap-ligne--remise span { color: var(--ok); }
.recap-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  border-top: 1px solid var(--trait); margin-top: 12px; padding-top: 14px;
}
.recap-total strong { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; font-variant-numeric: lining-nums; }

.article {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--trait);
}
.article:last-child { border-bottom: 0; }
.article-corps { flex: 1; min-width: 0; }
.article h4 { font-family: 'Figtree', sans-serif; font-size: 16px; font-weight: 640; margin: 0 0 3px; }
.article .article-meta { font-size: 13px; color: var(--encre-3); margin: 0; }
.article-prix { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; white-space: nowrap; font-variant-numeric: lining-nums; }
.qte { display: inline-flex; align-items: center; border: 1px solid var(--trait-fort); border-radius: 999px; overflow: hidden; }
.qte button {
  width: 32px; height: 32px; border: 0; background: transparent; color: var(--encre-2);
  cursor: pointer; font-size: 17px; line-height: 1; transition: background .2s, color .2s;
}
.qte button:hover { background: var(--blush); color: var(--accent); }
.qte span { min-width: 30px; text-align: center; font-size: 14px; font-weight: 640; }
.lien-sup { background: 0; border: 0; padding: 0; font: inherit; font-size: 13px; color: var(--encre-3); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.lien-sup:hover { color: var(--alerte); }

.vide { text-align: center; padding: 56px 20px; }
.vide-ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--blush); color: var(--accent); display: grid; place-items: center; }
.vide-ic svg { width: 28px; height: 28px; }

/* Barre panier flottante (mobile) */
.barre-panier {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  display: none; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 18px;
  background: var(--encre); color: var(--creme); box-shadow: var(--ombre-2);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.barre-panier strong { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-variant-numeric: lining-nums; }
.barre-panier .btn { margin-left: auto; }
@media (max-width: 900px) { .barre-panier.est-visible { display: flex; } }

/* ----------------------------------------------------------- formulaire */

.champs { display: grid; gap: 16px; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .duo { grid-template-columns: 1fr; } }
.champ { display: grid; gap: 6px; align-content: start; }
.champ > label, .legende {
  font-size: 13px; font-weight: 640; color: var(--encre-2); letter-spacing: .01em;
}
.champ input, .champ select, .champ textarea {
  font: inherit; font-size: 15.5px; color: var(--encre);
  padding: 12px 14px; border-radius: var(--r-s);
  border: 1px solid var(--trait-fort); background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.champ textarea { min-height: 96px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.champ .aide { font-size: 12.5px; color: var(--encre-3); }
.champ.est-fautif input, .champ.est-fautif select, .champ.est-fautif textarea { border-color: var(--alerte); }
.champ .erreur { font-size: 12.5px; color: var(--alerte); font-weight: 580; }
fieldset { border: 0; padding: 0; margin: 0; }
.case { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--encre-2); }
.case input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--accent); }

.bloc-etape {
  background: var(--surface); border: 1px solid var(--trait); border-radius: var(--r);
  padding: clamp(20px, 3vw, 28px); box-shadow: var(--ombre-1); margin-bottom: 20px;
}
.bloc-etape > h2 { font-size: 25px; display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.num {
  width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--blush); color: var(--accent);
  display: grid; place-items: center; font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 750;
}

/* Sélecteur de créneaux */
.jours { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 16px; scrollbar-width: thin; }
.jour {
  flex: none; min-width: 78px; padding: 11px 12px; border-radius: 14px; cursor: pointer;
  border: 1px solid var(--trait-fort); background: var(--surface); text-align: center;
  transition: all .2s; font: inherit;
}
.jour:hover { border-color: var(--accent); }
.jour.est-actif { background: var(--accent); border-color: var(--accent); color: var(--accent-txt); }
.jour b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; font-variant-numeric: lining-nums; }
.jour small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; opacity: .75; }
.heures { display: flex; flex-wrap: wrap; gap: 8px; }
.heure {
  padding: 10px 15px; border-radius: 999px; cursor: pointer; font: inherit; font-size: 14.5px; font-weight: 580;
  border: 1px solid var(--trait-fort); background: var(--surface); color: var(--encre); transition: all .2s;
}
.heure:hover { border-color: var(--accent); color: var(--accent); }
.heure.est-actif { background: var(--accent); border-color: var(--accent); color: var(--accent-txt); }

/* Retour de calcul d'adresse / de code promo */
.avis {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 13px 15px; border-radius: var(--r-s); font-size: 14px; line-height: 1.5;
  background: var(--surface-2); border: 1px solid var(--trait); color: var(--encre-2);
}
.avis svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.avis--ok { background: color-mix(in srgb, var(--ok) 12%, var(--surface)); border-color: color-mix(in srgb, var(--ok) 34%, transparent); color: var(--encre); }
.avis--ok svg { color: var(--ok); }
.avis--attention { background: color-mix(in srgb, var(--alerte) 11%, var(--surface)); border-color: color-mix(in srgb, var(--alerte) 32%, transparent); color: var(--encre); }
.avis--attention svg { color: var(--alerte); }
.avis--info svg { color: var(--accent); }
.avis[hidden] { display: none; }

.promo-rang { display: flex; gap: 8px; align-items: stretch; }
.promo-rang input { text-transform: uppercase; letter-spacing: .08em; font-weight: 640; }
.promo-rang .btn { flex: none; }

/* ---------------------------------------------------------------- carte */

.carte-geo {
  height: clamp(320px, 52vh, 480px); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--trait); box-shadow: var(--ombre-1); background: var(--surface-2);
}
.carte-geo--mini { height: 230px; }
.leaflet-container { font: inherit; background: var(--surface-2); }
.leaflet-control-attribution { font-size: 10px; background: rgba(255, 255, 255, .78) !important; }
:root[data-theme="dark"] .leaflet-tile-pane, :root:not([data-theme="light"]) .leaflet-tile-pane { filter: none; }
.pin-tiph {
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
  border: 3px solid #fff; font-family: 'Parisienne', cursive; font-size: 19px; line-height: 1;
}
.legende-carte { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; font-size: 13.5px; color: var(--encre-2); }
.legende-carte span { display: inline-flex; align-items: center; gap: 8px; }
.puce-legende { width: 13px; height: 13px; border-radius: 50%; flex: none; }

/* Horaires d'ouverture — « 14 h – 19 h » ne doit jamais se couper en deux. */
.horaires { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 0 0 14px; font-size: 14.5px; }
.horaires dt { font-weight: 640; color: var(--encre); }
.horaires dd { margin: 0; display: flex; flex-wrap: wrap; gap: 4px 14px; color: var(--encre-2); }
.horaires dd span { white-space: nowrap; }
@media (max-width: 460px) {
  .horaires { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .horaires dd { margin-bottom: 8px; }
}

/* Coordonnées en pastilles (page contact) — même esprit que la carte de visite
   du héros, mais sans son liseré décoratif qui débordait ici. */
.coord { display: grid; gap: 12px; margin: 14px 0 0; }
.coord > div { display: flex; align-items: center; gap: 12px; }
.coord dt {
  width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--blush);
  display: grid; place-items: center; color: var(--accent);
}
.coord dt svg { width: 16px; height: 16px; }
.coord dd { margin: 0; font-size: 14.5px; min-width: 0; overflow-wrap: anywhere; }
.coord dd a { color: var(--encre); text-decoration: none; }
.coord dd a:hover { color: var(--accent); }

/* -------------------------------------------------------------- divers */

.etiquette {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px; font-size: 12px; font-weight: 660; line-height: 1.35;
  background: var(--blush); color: var(--accent);
}
.etiquette--ok { background: color-mix(in srgb, var(--ok) 16%, transparent); color: var(--ok); }
.etiquette--attente { background: color-mix(in srgb, #D9A441 20%, transparent); color: #9A6B12; }
:root[data-theme="dark"] .etiquette--attente, :root:not([data-theme="light"]) .etiquette--attente { color: #E9C173; }
.etiquette--annule { background: color-mix(in srgb, var(--alerte) 15%, transparent); color: var(--alerte); }
.etiquette--fini { background: var(--trait); color: var(--encre-3); }

.liste-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.liste-check li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--encre-2); }
.liste-check svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }

.prose { font-size: 15.5px; color: var(--encre-2); }
.prose h2 { font-size: clamp(24px, 3vw, 30px); margin-top: 40px; }
.prose h3 { font-size: 20px; margin-top: 28px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--accent); }
.prose dl { display: grid; gap: 4px 18px; grid-template-columns: max-content 1fr; margin: 0 0 1em; }
@media (max-width: 560px) { .prose dl { grid-template-columns: 1fr; } .prose dd { margin-left: 0; margin-bottom: 10px; } }
.prose dt { font-weight: 660; color: var(--encre); }
.prose dd { margin: 0; }

.encadre {
  border-left: 3px solid var(--rose); background: var(--surface-2);
  padding: 16px 20px; border-radius: 0 var(--r-s) var(--r-s) 0; margin: 0 0 1.4em;
}
.encadre p:last-child { margin-bottom: 0; }

.fil { font-size: 13px; color: var(--encre-3); padding-top: 20px; }
.fil a { color: var(--encre-3); text-decoration: none; }
.fil a:hover { color: var(--accent); }

/* ---------------------------------------------------------------- pied */

.pied {
  margin-top: 60px; border-top: 1px solid var(--trait);
  background: linear-gradient(180deg, color-mix(in srgb, var(--creme-2) 60%, transparent), var(--creme-2));
  color: var(--encre-2);
}
.pied-inner { max-width: var(--largeur); margin: 0 auto; padding: 56px var(--gouttiere) 30px; }
.pied-grille { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 34px; }
.pied-col { min-width: 0; }
.pied-col h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--encre); margin: 0 0 16px;
}
.pied-col a, .pied-col p {
  display: block; margin: 0 0 10px; font-size: 13.5px; line-height: 1.5;
  color: var(--encre-2); text-decoration: none; transition: color .2s;
}
.pied-col a:hover { color: var(--accent); }
.pied-col--marque { display: flex; flex-direction: column; align-items: flex-start; }
.pied-logo {
  width: 52px; height: 52px; border-radius: 15px; margin-bottom: 12px; box-shadow: var(--ombre-1);
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: 'Parisienne', cursive; font-size: 30px; line-height: 1;
}
.pied-marque { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--encre); }
.pied-note { max-width: 40ch; margin-top: 10px !important; font-size: 13px; color: var(--encre-3); }
.pied-note a { display: inline; margin: 0; font-size: inherit; color: var(--encre-2); text-decoration: underline; text-underline-offset: 2px; }
.pied-note a:hover { color: var(--accent); }
.pied-puces { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pied-social { display: flex; gap: 10px; margin-top: 14px; }
.pied-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  margin: 0; border-radius: 50%; border: 1px solid var(--trait-fort); color: var(--encre-2);
  transition: background .2s, color .2s, border-color .2s, transform .22s var(--ressort);
}
.pied-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-txt); transform: translateY(-2px); }
.pied-social svg { width: 16px; height: 16px; }
.pied-bas {
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--trait); padding-top: 20px; padding-bottom: 8px;
  font-size: 12.5px; color: var(--encre-3);
}
.pied-bas p { margin: 0; }
.pied-bas a { color: var(--encre-2); text-decoration: none; }
.pied-bas a:hover { color: var(--accent); }
.pied-bas-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
@media (max-width: 980px) {
  .pied-grille { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .pied-col--marque { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .pied-inner { padding-top: 40px; }
  .pied-grille { grid-template-columns: minmax(0, 1fr); gap: 30px; padding-bottom: 26px; }
  .pied-note { max-width: none; }
  .pied-bas { flex-direction: column; align-items: flex-start; gap: 12px; }
  body.a-barre-panier .pied { padding-bottom: 76px; }
}

/* Notification passagère */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(14px);
  z-index: 200; display: flex; align-items: center; gap: 10px;
  background: var(--encre); color: var(--creme); padding: 13px 20px; border-radius: 999px;
  font-size: 14.5px; font-weight: 560; box-shadow: var(--ombre-2);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .3s var(--ressort);
}
.toast.est-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 17px; height: 17px; color: var(--rose); }
@media (max-width: 900px) { .toast { bottom: 88px; } }

@media print {
  .entete, .pied, .barre-panier, .btn, .filtres, .toast { display: none !important; }
  body { background: #fff; }
}
