/* ============================================================
   Sylvia Pinot — coiffure & bien-être à domicile, Bandol
   Charte : blanc dominant · rouge #C12128 · noir #161616
   Titres : Cormorant Garamond · Corps : Jost
   ============================================================ */

/* ---------- Fonts (auto-hébergées, WOFF2) ---------- */
@font-face {
  font-family: "Cormorant";
  src: url("fonts/cormorant.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: "Jost";
  src: url("fonts/jost.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: optional;
}

/* ---------- Variables ---------- */
:root {
  --primary: #2a1d1d;
  --on-primary: #fdfcfb;
  --accent: #c12128;
  --on-accent: #ffffff;
  --dark: #161616;
  --on-dark: #f4efed;
  --muted: #8a7f7d;
  --surface: #f8f3f1;
  --text-soft: #463d3b;
  --error: #c0392b;
  --success: #2e7d52;

  --serif: "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --maxw: 1180px;
  --radius: 8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ---------- Typo ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.005em;
}
h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 1.1rem;
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; color: var(--text-soft); }

/* ---------- Accessibilité ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--dark); color: var(--on-dark);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-narrow { max-width: 760px; }

/* ---------- Icônes ---------- */
.ico { width: 24px; height: 24px; stroke-width: 1.5; color: var(--accent); flex-shrink: 0; }
.ico-lg { width: 40px; height: 40px; stroke-width: 1.5; color: var(--accent); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* ⚠️ JAMAIS backdrop-filter ici (sticky = re-flou à chaque frame de scroll → lag CPU/GPU bridé, mesuré 2026-06-11). Fond quasi-opaque à la place. */
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #efe8e5;
  /* Démarcation blanc-sur-blanc : plat en haut de page, ombre douce dès le scroll
     (convention premium 2026 — séparation par profondeur, pas par trait franc).
     La classe .is-scrolled est posée en JS (event delegation scroll). */
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(22,22,22,0.06);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 76px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 64px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav a {
  text-decoration: none; color: var(--dark);
  font-size: 0.95rem; font-weight: 400;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav > ul { display: flex; align-items: center; gap: 0.2rem; }
.nav > ul > li { position: relative; }
.nav a:hover { color: var(--accent); }
.nav a.btn-primary,
.nav a.btn-primary:hover {
  color: var(--on-accent);
}

/* dropdown */
.has-sub > a::after {
  content: ""; display: inline-block; width: 7px; height: 7px;
  margin-left: 6px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
}
.submenu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid #efe8e5; border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22,22,22,0.1);
  min-width: 250px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a { display: block; padding: 0.6rem 0.8rem; font-size: 0.92rem; }
.submenu a:hover { background: var(--surface); }

.nav-cta { margin-left: 0.6rem; }

/* burger */
.burger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0.4rem; color: var(--dark);
}
.burger .ico { width: 28px; height: 28px; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 500; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  border: 1.5px solid transparent; transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.2;
}
.btn .ico { width: 18px; height: 18px; color: currentColor; }
.btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-primary:hover,
.btn-primary:focus-visible {
  background: color-mix(in oklch, var(--accent), black 15%);
  color: var(--on-accent);
  border-color: color-mix(in oklch, var(--accent), black 15%);
}
.btn-secondary { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-secondary:hover { background: var(--accent); color: var(--on-accent); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* ============================================================
   HERO mobile-first
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 68svh;
  padding: 4.6rem 0 4rem;
  background-size: cover;
  background-position: 58% center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,12,0.28) 0%, rgba(15,12,12,0.62) 52%, rgba(15,12,12,0.78) 100%),
    linear-gradient(105deg, rgba(15,12,12,0.72) 0%, rgba(15,12,12,0.38) 58%, rgba(15,12,12,0.18) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero .hero-content,
.hero.hero-inner .hero-content {
  max-width: 680px;
  width: 100%;
  background: rgba(22, 22, 22, 0.78);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
}
.hero h2 {
  color: #fff; font-weight: 500;
  font-size: 2.35rem; line-height: 1.08;
  margin-bottom: 1.15rem;
}
.hero .eyebrow { color: #fff; opacity: 0.9; }
.hero p { color: rgba(255,255,255,0.94); font-size: 1.05rem; max-width: 560px; }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.45rem;
}
.hero-actions .btn { width: 100%; justify-content: center; }
.hero-micro {
  display: none;
}
.hero-alt-link {
  margin-top: 0.9rem; font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}
.hero-alt-link a { color: #fff; text-decoration: underline; }
.hero-alt-link a:hover { color: rgba(255,255,255,0.85); }

/* Pages intérieures plus courtes que l'accueil. */
.hero-inner {
  min-height: 56svh;
  padding: 4.2rem 0 3.6rem;
}

.hero-client {
  background-position: center 34%;
}

.hero-client-portrait {
  background-position: center 28%;
}

.hero-client-wellness {
  background-position: center 24%;
}

.hero-tools {
  background-position: 50% center;
}

.hero-tools-coupe {
  background-position: 42% center;
}

/* fil d'ariane */
.breadcrumb {
  color: rgba(255,255,255,0.82); font-size: 0.85rem; margin-bottom: 0.85rem;
  position: relative; z-index: 2;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { opacity: 0.75; }

/* ============================================================
   BLOCS DE CONTENU
   ============================================================ */
.surface-bg { background: var(--surface); }
.dark-bg { background: var(--dark); color: var(--on-dark); }
.dark-bg h2, .dark-bg h3 { color: var(--on-dark); }
.dark-bg .eyebrow { color: color-mix(in oklch, var(--accent), white 38%); }

/* intro / texte centré */
.intro { text-align: center; max-width: 760px; margin: 0 auto; }
.intro p { font-size: 1.18rem; color: var(--text-soft); }
.dark-bg .intro p { color: rgba(244,239,237,0.88); }

/* texte + image (split) */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: 0 22px 50px rgba(22,22,22,0.12);
}
.split-media img.img-focus-head {
  object-position: center 34%;
}
/* portrait très haut (Sylvia au travail) : cadrer haut pour garder le visage */
.split-media img.img-focus-top {
  object-position: center 18%;
}
.split-media-portrait img {
  aspect-ratio: 3 / 4;
  max-height: 560px; width: auto; max-width: 100%;
  margin: 0 auto;
}
.split-body h2 { margin-bottom: 1.2rem; }
/* lien « Découvrir » vers une page (teaser deux univers) : flèche accent, pas souligné */
.split-body a.more-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.4rem; color: var(--accent); font-weight: 600;
  font-size: 1rem; text-decoration: none;
}
.split-body a.more-link .ico { width: 18px; height: 18px; }
.split-body a.more-link:hover { text-decoration: underline; }

/* figure photo centrée (image authentique du coin coiffure) */
.media-wide { margin: 0; }
.media-wide img {
  display: block; margin: 0 auto;
  width: auto; max-width: 100%; max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(22,22,22,0.12);
}

/* lien dans une prose / texte courant : même couleur + souligné */
.split-body a, .intro a, .section-narrow a, .presta-desc a, .hero p a { text-decoration: underline; }

/* badge présenté en feature (fond clair, pas d'ombre) */
.badge-feature {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: var(--radius);
  padding: 2.5rem;
}
.badge-feature img {
  box-shadow: none; border-radius: 0; aspect-ratio: auto;
  max-width: 320px; width: 100%;
}

/* citation mots de Sylvia */
.pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.35;
  color: var(--dark); max-width: 820px; margin: 0 auto; text-align: center;
}
.pullquote .ico { width: 34px; height: 34px; margin: 0 auto 1rem; display: block; }
/* citation intégrée dans une colonne split : alignée à gauche, plus sobre */
.split-body .pullquote { text-align: left; margin: 0; max-width: none; font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.split-body .pullquote .ico { margin: 0 0 0.85rem; }
.dark-bg .pullquote { color: var(--on-dark); }
/* signature présentation : logo + nom (section « Coiffeuse mais pas que ») */
.author-sign { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.author-logo { width: 96px; height: 96px; flex-shrink: 0; }
.author-name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--primary); margin: 0; line-height: 1; }

/* ============================================================
   LISTE "DEUX UNIVERS" / FEATURES TEXTE-ICÔNE
   ============================================================ */
.duo {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 2.5rem;
}
.duo-item { padding-top: 1.5rem; border-top: 2px solid var(--accent); }
.duo-item .ico-lg { margin-bottom: 1rem; }
.duo-item h3, .duo-item h2 { margin-bottom: 0.5rem; }
.duo-item h2 { font-size: 1.25rem; line-height: 1.25; }
.duo-item .presta-dur { display: block; margin-bottom: 0.9rem; }
.duo-item p { font-size: 0.98rem; color: var(--text-soft); }
.duo-item a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.6rem; color: var(--accent); font-weight: 500;
  font-size: 0.92rem; text-decoration: none;
}
.duo-item a .ico { width: 16px; height: 16px; }
.duo-item a:hover { text-decoration: underline; }

/* réassurance — texte avec icône inline, pas de cards encadrées */
.reassur {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 2.5rem;
}
.reassur-item { display: flex; gap: 1rem; align-items: flex-start; }
.reassur-item .ico-lg { width: 32px; height: 32px; margin-top: 2px; }
.reassur-item h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.reassur-item p { font-size: 0.95rem; color: var(--text-soft); }

/* ============================================================
   PRESTATIONS (liste tarifée, pas des cards uniformes)
   ============================================================ */
.presta-list { margin-top: 2.5rem; display: grid; gap: 0; }
.presta {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem; align-items: baseline;
  padding: 1.8rem 0; border-top: 1px solid #e7ddd9;
}
.presta:last-child { border-bottom: 1px solid #e7ddd9; }
.presta-head { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.presta h3 { margin-bottom: 0; }
.presta-dur { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.03em; }
.presta-desc { grid-column: 1 / 2; margin-top: 0.6rem; color: var(--text-soft); max-width: 62ch; }
.presta-desc a { color: inherit; text-decoration: underline; }
.presta-price {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.7rem; color: var(--accent);
  white-space: nowrap; text-align: right;
}
.presta-note { margin-top: 2.5rem; }
.presta-note p + p { margin-top: 1rem; }
.presta-note a { color: inherit; text-decoration: underline; }

/* ============================================================
   ZONE D'INTERVENTION
   ============================================================ */
.zones { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.zone-link {
  font-size: 0.98rem; text-decoration: none; color: var(--dark);
  padding: 0.45rem 0; position: relative;
}
.zone-link::after { content: "·"; margin-left: 0.7rem; color: var(--muted); }
.zone-link:last-child::after { content: ""; }
.zone-link.is-home { font-weight: 500; color: var(--accent); }

/* ============================================================
   CERTIFICATIONS (badges réels, fond clair)
   ============================================================ */
.certifs {
  display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 5rem);
  align-items: center; justify-content: center; margin-top: 2.5rem;
}
.certif { text-align: center; max-width: 220px; }
.certif img { height: 92px; width: auto; margin: 0 auto 0.8rem; }
.certif p { font-size: 0.9rem; color: var(--text-soft); }

/* certificats Access : cartes paysage (vrais diplômes) */
.certif-wide { max-width: 240px; }
.certif-card { height: auto; width: 100%; border-radius: var(--radius); }

/* paire de certificats Access côte à côte (bien-être) */
.badge-pair { flex-wrap: wrap; gap: 1.25rem; }
.badge-pair img { max-width: 300px; border-radius: var(--radius); }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; margin-top: 2.5rem;
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; line-height: 1.4; color: var(--dark);
  border-left: 2px solid var(--accent); padding-left: 1.2rem;
}
.testimonial .ico { width: 26px; height: 26px; margin-bottom: 0.8rem; }
.testimonial cite { display: block; margin-top: 0.9rem; font-family: var(--sans); font-style: normal; font-size: 0.88rem; color: var(--muted); padding-left: 1.2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 2.5rem auto 0; }
.faq details {
  border-bottom: 1px solid #e7ddd9;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.3rem; top: 1.65rem;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg); transition: transform 0.25s;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding: 0 0 1.4rem; color: var(--text-soft); max-width: 68ch; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--accent); color: var(--on-accent); text-align: center;
}
.cta-banner-photo {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(41, 43, 38, 0.88), rgba(41, 43, 38, 0.62)),
    var(--cta-photo) center 42% / cover no-repeat,
    var(--accent);
}
.cta-banner-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(41, 43, 38, 0.18);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 2rem; font-size: 1.15rem; }
.cta-banner .btn-ghost-light { background: #fff; color: var(--accent); border-color: #fff; }
.cta-banner .btn-ghost-light:hover { background: #f2f2f2; color: var(--accent); border-color: #f2f2f2; }
.cta-micro { margin-top: 1.4rem; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.cta-micro a { color: #fff; }

/* CTA accueil "Me joindre" en banniere accent (parite pages interieures) — texte lisible sur fond colore */
.cta-banner .contact-simple .lead,
.cta-banner .contact-simple p { color: rgba(255,255,255,0.92); }
.cta-banner .contact-simple a:not(.btn) { color: #fff; }
.cta-banner .contact-lines { color: rgba(255,255,255,0.88); }

.cta-dark { background: var(--primary); color: var(--on-primary); text-align: center; border-bottom: 3px solid var(--accent); }
.cta-dark h2 { color: var(--on-primary); }
.cta-dark p { color: rgba(253,252,251,0.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.15rem; }
.cta-dark .cta-micro { color: rgba(253,252,251,0.78); }
.cta-dark .cta-micro a { color: var(--on-primary); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.contact-simple {
  text-align: center;
}
.contact-simple .btn {
  margin: 0.5rem 0 1.3rem;
  text-decoration: none;
}
.contact-simple a:not(.btn) {
  text-decoration: underline;
}
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}
.contact-info dl { display: grid; gap: 1.4rem; margin-top: 1.5rem; }
.contact-info .row { display: grid; grid-template-columns: 24px minmax(0, 1fr); column-gap: 0.9rem; align-items: flex-start; }
.contact-info dt {
  display: grid; grid-template-columns: 24px minmax(0, 1fr); column-gap: 0.9rem;
  grid-column: 1 / -1;
  font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.15rem;
}
.contact-info dt .ico { margin-top: 3px; }
.contact-info dd { grid-column: 2; }
.contact-info dd a { color: inherit; text-decoration: underline; }

.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }
.disclaimer { margin-top: 2.2rem; max-width: 70ch; font-size: 0.9rem; font-style: italic; color: var(--muted); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--on-dark); padding: clamp(3rem, 7vw, 4.5rem) 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer-brand p { font-size: 0.95rem; color: rgba(244,239,237,0.7); max-width: 30ch; }
.footer-col .footer-title {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: color-mix(in oklch, var(--accent), white 38%); margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col .footer-title.mt { margin-top: 1.6rem; }
.footer-col a { color: rgba(244,239,237,0.82); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { font-size: 0.95rem; color: rgba(244,239,237,0.82); display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.6rem; }
.footer-contact .ico { width: 18px; height: 18px; color: color-mix(in oklch, var(--accent), white 38%); margin-top: 2px; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.footer-social a { display: inline-flex; }
.footer-social .ico { width: 22px; height: 22px; color: rgba(244,239,237,0.82); }
.footer-social a:hover .ico { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.8rem; font-size: 0.85rem; color: rgba(244,239,237,0.6);
}
.footer-bottom a { color: inherit; text-decoration: underline; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ============================================================
   PAGE LÉGALE (mentions légales)
   ============================================================ */
.breadcrumb-dark { color: var(--muted); }
.breadcrumb-dark a { color: var(--dark); }
.legal h2 { margin-top: 2.6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { margin-top: 1.8rem; }
.legal p, .legal .legal-list { color: var(--text-soft); }
.legal a { text-decoration: underline; }
.legal-list { margin: 0 0 1.1rem 0; display: grid; gap: 0.5rem; }
.legal-list li { padding-left: 1rem; position: relative; }
.legal-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.legal .faq { margin-top: 1.5rem; }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 0.7rem 1rem; background: rgba(255,255,255,0.98);
  border-top: 1px solid #efe8e5;
}
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .duo, .reassur, .testimonials { grid-template-columns: 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   BOOKING — modale de prise de rendez-vous (démo maquette)
   Parité visuelle avec le widget WebZenon. Front-only (pas de backend).
   ============================================================ */
@keyframes bookFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.booking-modal-overlay { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.booking-modal-overlay.open { opacity: 1; pointer-events: auto; }
.booking-modal { position: relative; width: min(95vw, 480px); max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: bookFadeIn 0.25s ease; }
.booking-modal-close { position: absolute; top: 12px; right: 12px; padding: 6px; border: none; background: none; color: var(--muted,#888); border-radius: 6px; cursor: pointer; transition: background 0.15s; }
.booking-modal-close:hover { background: var(--surface,#f5f5f5); }
.booking-widget { padding: 1.5rem; }
.booking-steps { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--surface,#eee); }
.booking-step { padding: 0.35rem 0.7rem; border-radius: 20px; font-size: 0.78rem; font-weight: 500; color: var(--muted,#888); transition: 0.2s; }
.booking-step.active { background: var(--accent,#2563eb); color: var(--on-accent,#fff); }
.booking-step.done { color: var(--accent,#2563eb); }
.booking-back { margin-bottom: 1rem; padding: 0; border: none; background: none; color: var(--accent,#2563eb); font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.booking-back:hover { opacity: 0.7; }
.booking-service-title { margin: 0 0 0.35rem; font-size: 1.15rem; color: var(--dark,#333); }
.booking-service-help { margin: 0 0 1rem; color: var(--muted,#888); font-size: 0.9rem; }
.booking-services { display: grid; gap: 0.6rem; margin-bottom: 0.85rem; }
.booking-service-option { width: 100%; display: flex; flex-direction: column; gap: 0.2rem; text-align: left; padding: 0.85rem 1rem; border: 1px solid var(--surface,#ddd); border-radius: 8px; background: #fff; color: var(--dark,#333); font: inherit; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.booking-service-option:hover { border-color: var(--accent,#2563eb); }
.booking-service-option--selected { background: var(--accent,#2563eb); border-color: var(--accent,#2563eb); color: var(--on-accent,#fff); }
.booking-service-meta { font-size: 0.84rem; font-weight: 500; opacity: 0.8; }
.booking-service-next { width: 100%; padding: 0.85rem; border: none; border-radius: 8px; background: var(--accent,#2563eb); color: var(--on-accent,#fff); font: inherit; font-weight: 700; cursor: pointer; transition: opacity 0.15s; }
.booking-service-next:disabled { opacity: 0.45; cursor: default; }
.booking-service-error { margin: 0.25rem 0 0.75rem; color: var(--accent,#888); font-size: 0.85rem; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-header span { font-size: 1.1rem; font-weight: 700; }
.cal-header button { padding: 0.4rem 0.75rem; border: 1px solid var(--surface,#eee); border-radius: 6px; background: none; color: var(--dark,#333); font-size: 1rem; cursor: pointer; transition: background 0.15s; }
.cal-header button:hover:not(:disabled) { background: var(--surface,#f5f5f5); }
.cal-header button:disabled { opacity: 0.3; cursor: default; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; margin-bottom: 0.5rem; font-size: 0.75rem; font-weight: 600; color: var(--muted,#888); }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-day { display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1; border: none; border-radius: 8px; background: none; color: var(--dark,#333); font-size: 0.9rem; cursor: pointer; transition: 0.15s; }
.cal-day:hover:not(:disabled):not(.cal-day--empty) { background: var(--surface,#f0f0f0); }
.cal-day:disabled { opacity: 0.25; cursor: default; }
.cal-day--empty { cursor: default; }
.cal-day--today { box-shadow: inset 0 0 0 1px var(--accent,#2563eb); font-weight: 700; }
.cal-day--selected { background: var(--accent,#2563eb) !important; color: var(--on-accent,#fff) !important; font-weight: 600; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px,1fr)); gap: 8px; margin-top: 1rem; }
.slot-btn { padding: 0.6rem 0.4rem; border: 1px solid var(--surface,#ddd); border-radius: 8px; background: #fff; color: var(--dark,#333); font: inherit; font-size: 0.92rem; cursor: pointer; transition: all 0.15s; }
.slot-btn:hover { border-color: var(--accent,#2563eb); color: var(--accent,#2563eb); }
.slots-empty { text-align: center; color: var(--muted,#888); padding: 2rem 0; font-size: 0.95rem; }
#slots-date { font-size: 1.05rem; margin-bottom: 0.25rem; }
#booking-summary { margin-bottom: 1rem; padding: 0.75rem 1rem; background: var(--surface,#f8f8f8); border-radius: 8px; font-size: 0.9rem; }
.booking-field { margin-bottom: 1rem; }
.booking-field label { display: block; margin-bottom: 0.35rem; font-size: 0.85rem; font-weight: 500; color: var(--dark,#333); }
.booking-field input, .booking-field textarea { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid var(--surface,#ddd); border-radius: 8px; font-family: inherit; font-size: 0.95rem; transition: border-color 0.15s; }
.booking-field input:focus, .booking-field textarea:focus { outline: none; border-color: var(--accent,#2563eb); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent,#2563eb), transparent 85%); }
#booking-form button[type="submit"] { width: 100%; margin-top: 0.5rem; padding: 0.85rem; border: none; border-radius: 8px; background: var(--accent,#2563eb); color: var(--on-accent,#fff); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.15s; }
#booking-form button[type="submit"]:hover { background: color-mix(in oklch, var(--accent,#2563eb), black 15%); }
.booking-phone-cta { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 1.25rem 1rem 1rem; text-align: center; border-top: 1px solid var(--surface,#e5e5e5); }
.booking-phone-sep { font-size: 0.9rem; font-weight: 500; color: var(--dark,#333); }
.btn-phone { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 0.5rem; background: var(--dark,#1a1a1a); color: #fff; font-size: 1rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.btn-phone:hover { background: color-mix(in oklch, var(--dark,#1a1a1a), white 20%); }
.btn-phone svg { flex-shrink: 0; }
@media (max-width: 480px) { .slots-grid { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 760px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .nav-cta { display: none; }

  /* nav mobile ouvert */
  .nav.open {
    display: block; position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 76px);
    background: #fff; padding: 1.5rem; z-index: 101; overflow-y: auto;
  }
  .nav.open > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav.open > ul > li { border-bottom: 1px solid #efe8e5; }
  .nav.open a { display: block; padding: 1rem 0; font-size: 1.1rem; }
  .nav.open .has-sub > a::after { float: right; }
  .nav.open .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 0.5rem 1rem; min-width: 0;
  }
  .nav.open .nav-cta { display: block; margin: 1.2rem 0 0; }
  .nav.open .nav-cta .btn { width: 100%; justify-content: center; }

  body.has-sticky-cta { padding-bottom: 76px; }
  .sticky-cta { display: block; }

  .presta { grid-template-columns: 1fr; gap: 0.5rem; }
  .presta-price { text-align: left; grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (min-width: 520px) {
  .hero h2 { font-size: 2.8rem; }
}

@media (min-width: 761px) {
  .nav-toggle-open { display: none; }
  .hero {
    min-height: 74svh;
    padding: 6rem 0 5.5rem;
    background-position: center;
  }
  .hero .hero-content,
  .hero.hero-inner .hero-content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
  .hero h2 { font-size: 3.4rem; }
  .hero p { font-size: 1.15rem; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1.9rem;
  }
  .hero-actions .btn { width: auto; }
  .hero-micro {
    margin-top: 1.5rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .hero-micro .ico {
    width: 17px;
    height: 17px;
    color: #fff;
    opacity: 0.85;
  }
  .hero-inner {
    min-height: 56svh;
    padding: 5.2rem 0 4.6rem;
  }
  .hero-tools,
  .hero-tools-coupe {
    background-position: center;
  }
}

@media (min-width: 1100px) {
  .hero h2 { font-size: 4rem; }
}

/* ⚠️ NE JAMAIS cibler .booking-modal-overlay SANS .open ici.
   L'overlay fermé est opacity:0 mais fixed/inset:0/z-index:9999 : sans le garde
   .open, ce `pointer-events:auto` (cascade > ligne 674) le rend cliquable en
   invisible → couche plein écran qui bloque TOUT le tactile de la page (bug mobile
   constaté). Réactivation UNIQUEMENT quand la modale est ouverte. */
.booking-modal-overlay.open,
.booking-modal-overlay.open * {
  pointer-events: auto;
}

.booking-service-option:hover,
.booking-service-option:focus-visible,
.booking-service-option--selected,
.booking-service-option[aria-pressed="true"] {
  background: var(--accent) !important;
  color: var(--on-accent) !important;
  border-color: var(--accent) !important;
}

.booking-service-next:hover,
.booking-service-next:focus-visible,
.booking-modal .btn-primary:hover,
.booking-modal .btn-primary:focus-visible {
  color: var(--on-accent) !important;
}

/* ⚠️ NE PAS SUPPRIMER — Hero cover <img> (standard LCP 2026, remplace background-image image-set).
   image-set 1x/2x = densité Retina, PAS du responsive → desktop recevait l'image mobile étirée. */
section:has(> .hero-cover-img), div:has(> .hero-cover-img) { position: relative; overflow: hidden; isolation: isolate; }
.hero-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: blur(0.1px); }

/* ============================================================
   HERO ACCUEIL — version « présentation » (demande cliente, juin 2026).
   Reproche n°1 de la cliente : « le texte est toujours sur la photo ».
   Réf de goût : mariesandrinesalvai.com (épuré, sections empilées).
   ⚠️ RÈGLE ABSOLUE : photo de présentation EN HAUT, texte/titre/CTA SÉPARÉS
   EN DESSOUS. JAMAIS de texte par-dessus la photo, JAMAIS de carte qui
   chevauche l'image (pas de margin-top négatif). Bloc texte franchement
   sous la photo, aéré. Ne PAS réintroduire l'ancien .hero-salv-card.
   La photo est VERTICALE (portrait) : contenue et centrée, pas un bandeau
   horizontal déformé.
   ============================================================ */
.hero-stacked {
  background: var(--surface);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
}
.hero-stacked .hero-photo {
  max-width: 460px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}
.hero-stacked .hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(22, 22, 22, 0.16);
}
.hero-stacked .hero-text {
  max-width: 660px;
  margin: 0 auto;
}
.hero-stacked .eyebrow { color: var(--accent); }
.hero-stacked h2 {
  font-family: var(--serif); color: var(--primary); font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.12;
  margin: 0.4rem 0 1.1rem;
}
.hero-stacked .hero-text p {
  color: var(--text-soft); font-size: 1.1rem;
  max-width: 580px; margin: 0 auto 1.1rem;
}
.hero-stacked .hero-actions {
  flex-direction: row; flex-wrap: wrap; justify-content: center;
  margin-top: 1.6rem;
}
.hero-stacked .hero-actions .btn { width: auto; }
.hero-stacked .hero-alt-link { color: var(--text-soft); margin-top: 1rem; }
.hero-stacked .hero-alt-link a { color: var(--accent); text-decoration: underline; }
.hero-stacked .hero-meta {
  margin-top: 1.4rem; font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   PRESTATIONS — tableaux de tarifs façon « carte de prestations » premium.
   Nom de prestation en valeur, durée discrète, tarif mis en avant à droite.
   Source : 2 tableaux markdown (coiffure + bien-être) sur l'accueil.
   ============================================================ */
.price-list { margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid #e7ddd9;
}
.price-row:last-child { border-bottom: 1px solid #e7ddd9; }
.price-name {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem); color: var(--primary);
  line-height: 1.2; margin: 0;
}
.price-amount {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem); color: var(--accent);
  white-space: nowrap; text-align: right;
}
.price-amount .price-amount-pre { font-weight: 400; font-size: 0.72em; color: var(--text-soft); }
.price-dur {
  grid-column: 1 / 2;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
  margin: 0.35rem 0 0;
}
.price-desc {
  grid-column: 1 / 2;
  margin: 0.55rem 0 0; color: var(--text-soft);
  font-size: 0.98rem; max-width: 60ch;
}
.price-note { margin-top: 1.8rem; color: var(--text-soft); }
.price-note a { color: inherit; text-decoration: underline; }

@media (max-width: 600px) {
  .price-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .price-amount { text-align: left; grid-column: 1; margin-top: 0.3rem; }
}
