/* ================================================================
   Institut de Beauté Sandra — style.css
   ================================================================ */

/* ── Tokens Studio stricts ──────────────────────────────────────── */
:root {
  --c-primary:     #c2673a;
  --c-primary-dk:  #a8552c;
  --c-accent:      #f0e0c8;
  --c-bg:          #fdf7f0;
  --c-surface:     #ffffff;
  --c-text:        #2d1a0e;
  --c-muted:       #8b6a57;
  --c-border:      rgba(0,0,0,.07);
  --c-border-warm: rgba(194,103,58,.18);
  --c-dark:        #2d1a0e;

  --f-title:       'Playfair Display', Georgia, serif;
  --f-body:        'DM Sans', system-ui, sans-serif;

  --section-pad:   72px;
  --gap:           24px;
  --max-w:         1160px;

  --r-card:        2px;   /* carré premium */
  --r-img:         6px;   /* rectangle images */
  --r-btn:         10px;

  --ease:   cubic-bezier(.22,.61,.36,1);
  --t:      .32s;
  --sh-s:   0 2px 10px rgba(44,26,14,.06);
  --sh-m:   0 6px 24px rgba(44,26,14,.10);
  --sh-l:   0 12px 40px rgba(44,26,14,.14);
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typographie ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-title);
  font-weight: 600;
  line-height: 1.12;
  color: var(--c-text);
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
h3 { font-size: 1rem; }

.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.section-sub {
  color: var(--c-muted);
  font-size: .88rem;
  line-height: 1.65;
  margin-top: 4px;
}

/* ── Boutons ─────────────────────────────────────────────────────── */
/* Contour — choix validé Studio */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 10px 22px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,103,58,.3);
}
/* Variante pleine — header CTA */
.btn-filled {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn-filled:hover { background: var(--c-primary-dk); border-color: var(--c-primary-dk); }

/* Variante blanc — sur fond sombre/photo */
.btn-white {
  border-color: rgba(255,255,255,.8);
  color: #fff;
}
.btn-white:hover { background: rgba(255,255,255,.15); border-color: #fff; box-shadow: none; }

/* ── HEADER V2 — fond crème, Playfair logo, nav + CTA contour ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  background: rgba(253,247,240,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border-warm);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: var(--sh-m); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  gap: 20px;
}

/* Logo — Playfair + sous-titre muted */
.logo {
  font-family: var(--f-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.15;
  flex-shrink: 0;
  text-decoration: none;
}
.logo small {
  display: block;
  font-family: var(--f-body);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding-bottom: 0;
  text-decoration: none;
  line-height: 1;
  transition: color var(--t);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-primary);
  transition: width var(--t) var(--ease);
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after { width: 100%; }

.btn-sm {
  min-height: 38px;
  padding: 0 18px;
  font-size: .8rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 301;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ================================================================
   HERO — STRUCTURE CATALOGUE MODERNE
   Fidèle maquette :
   • fond crème (--c-bg), pas de photo pleine hauteur
   • titre H1 à gauche + pastilles ancres à droite (même ligne)
   • bandeau photo en dessous avec overlay + texte + CTA
   ================================================================ */
.hero {
  margin-top: 64px;
  background: var(--c-bg);
}

/* Bloc titre + pastilles — padding 60px comme la maquette */
.hero-top {
  padding: 60px var(--section-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: calc(var(--max-w) + 56px * 2);
  margin: 0 auto;
}

.hero-title-block {
  flex: 1;
  min-width: 280px;
}
.hero-title-block .eyebrow { margin-bottom: 10px; }
.hero-title-block h1 { max-width: 580px; }

/* Pastilles de navigation — style maquette : pill terracotta léger */
.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeUp .5s .3s var(--ease) forwards;
}
.hero-pill {
  display: inline-block;
  border: 1px solid rgba(194,103,58,.25);
  background: rgba(194,103,58,.08);
  color: var(--c-primary);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  text-decoration: none;
}
.hero-pill:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* Bandeau photo — accueil contenu, plus haut et lisible */
.hero-banner {
  position: relative;
  overflow: hidden;
  width: min(1127px, calc(100% - 56px));
  height: clamp(437px, 55vw, 621px);
  margin: 0 auto 26px;
  border-radius: var(--r-img);
  box-shadow: var(--sh-m);
  background: #f8efe5;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}
/* Overlay dégradé gauche comme maquette */
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.08) 65%, transparent 100%);
}
/* Texte sur la photo */
.hero-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px var(--section-pad);
  max-width: 500px;
  color: #fff;
}
.hero-banner-content .label {
  font-size: .72rem;
  font-weight: 600;
  opacity: .8;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-banner-content h2 {
  font-family: var(--f-title);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.hero-banner-content p {
  font-size: .88rem;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ================================================================
   CATALOGUE DES PRESTATIONS
   Fidèle maquette : grid auto-fit minmax(190px,1fr), gap 24px
   Badge "Sélection", image rect, titre Playfair, desc, CTA
   ================================================================ */
.catalogue {
  background: var(--c-surface);
  padding: var(--section-pad);
  max-width: calc(var(--max-w) + var(--section-pad) * 2);
  margin: 0 auto;
  /* on sort du container pour rester full-width comme maquette */
}

.catalogue-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.catalogue-hdr-left h2 { margin-bottom: 4px; }
.catalogue-hdr-right {
  font-size: .8rem;
  font-weight: 800;
  color: var(--c-primary);
  white-space: nowrap;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--gap);
}

/* Carte catalogue — fidèle maquette */
.cat-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.cat-card:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-3px);
}

/* Image rectangle — min-height 126px comme maquette */
.cat-card-img {
  overflow: hidden;
  flex-shrink: 0;
}
.cat-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  transition: transform .55s var(--ease);
}
.cat-card:hover .cat-card-img img { transform: scale(1.05); }

/* Corps de carte */
.cat-card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }

/* Badge "Sélection" — pill terracotta comme maquette */
.cat-badge {
  display: inline-block;
  background: rgba(194,103,58,.10);
  color: var(--c-primary);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: .68rem;
  font-weight: 800;
  font-family: var(--f-body);
  margin-bottom: 8px;
  width: fit-content;
}

.cat-card-body h3 {
  font-family: var(--f-title);
  font-size: 1rem;
  color: var(--c-text);
  margin-bottom: 5px;
  line-height: 1.25;
}
.cat-card-body p {
  font-size: .78rem;
  line-height: 1.55;
  color: var(--c-muted);
  margin-bottom: 14px;
  flex: 1;
}

/* Bouton carte — contour (choix Studio) */
.cat-btn {
  display: inline-block;
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: var(--r-btn);
  padding: 7px 14px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--f-body);
  width: fit-content;
  transition: background var(--t), color var(--t);
}
.cat-btn:hover { background: var(--c-primary); color: #fff; }

/* ================================================================
   TARIFS — section synthétique
   ================================================================ */
.tarifs {
  background: var(--c-accent);
  padding: var(--section-pad);
  max-width: calc(var(--max-w) + var(--section-pad) * 2);
  margin: 0 auto;
}

.tarifs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.tarifs-left h2 { margin-bottom: 6px; }
.tarifs-left .section-sub { margin-bottom: 28px; }

.tarif-rows { border-top: 1px solid var(--c-border-warm); }
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--c-border-warm);
  font-size: .9rem;
}
.tarif-label { color: var(--c-text); }
.tarif-price { font-weight: 700; color: var(--c-primary); white-space: nowrap; flex-shrink: 0; }
.tarifs-note { font-size: .75rem; color: var(--c-muted); font-style: italic; margin-top: 14px; margin-bottom: 22px; }

/* Carte détail droite */
.tarifs-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-card);
  padding: 28px;
}
.tarifs-card-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-accent);
}
.tarif-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  font-size: .82rem;
  border-bottom: 1px dotted rgba(194,103,58,.15);
  color: var(--c-text);
}
.tarif-detail-row:last-child { border-bottom: none; }
.tarif-detail-row span:last-child { font-weight: 700; color: var(--c-primary); white-space: nowrap; }
.tarifs-card-pdf {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--c-accent);
}

/* ================================================================
   PRÉSENTATION — image droite (choix Studio)
   ================================================================ */
.about {
  background: var(--c-bg);
  padding: var(--section-pad);
  max-width: calc(var(--max-w) + var(--section-pad) * 2);
  margin: 0 auto;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text { order: 1; }
.about-media { order: 2; }
.about-chip {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-card);
  margin-bottom: 16px;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p  { color: var(--c-muted); font-size: .92rem; margin-bottom: 12px; line-height: 1.75; }
.about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-img);
  box-shadow: var(--sh-l);
}

/* ================================================================
   BANDE SOMBRE — confiance (fidèle maquette dark band)
   ================================================================ */
.trust-band {
  background: var(--c-dark);
  color: #fff;
  padding: 52px var(--section-pad);
}
.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-item-icon { font-size: 1.6rem; margin-bottom: 8px; }
.trust-item-title {
  font-family: var(--f-title);
  font-size: .95rem;
  margin-bottom: 4px;
  color: #fff;
}
.trust-item-desc { font-size: .72rem; opacity: .65; line-height: 1.5; }

/* ================================================================
   INFOS PRATIQUES & CONTACT — sans formulaire
   ================================================================ */
.infos {
  background: var(--c-surface);
  padding: var(--section-pad);
  max-width: calc(var(--max-w) + var(--section-pad) * 2);
  margin: 0 auto;
}
.infos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.infos-block-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-accent);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 10px 0;
  font-size: .88rem;
  border-bottom: 1px solid rgba(240,224,200,.5);
}
.info-row:last-child { border-bottom: none; }
.info-icon { flex-shrink: 0; font-size: .95rem; margin-top: 2px; }
.info-row a { color: var(--c-primary); }
.info-row a:hover { text-decoration: underline; }

.reseaux {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.reseau-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--c-primary);
  border: 1px solid var(--c-border-warm);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background var(--t), color var(--t);
}
.reseau-pill:hover { background: var(--c-primary); color: #fff; }

/* Contact direct — appel / SMS / email */
.contact-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-card);
  padding: 28px;
}
.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(240,224,200,.5);
}
.contact-action:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-meta small {
  display: block;
  font-size: .68rem;
  color: var(--c-muted);
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-meta a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-primary);
}
.contact-meta a:hover { text-decoration: underline; }
.contact-meta span { font-size: .88rem; color: var(--c-text); }

/* Placeholder carte */
.map-placeholder {
  margin-top: 16px;
  background: var(--c-accent);
  border-radius: var(--r-img);
  border: 1px dashed var(--c-border-warm);
  padding: 28px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.map-placeholder p { font-size: .78rem; color: var(--c-muted); }

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  background: var(--c-bg);
  padding: var(--section-pad);
  max-width: calc(var(--max-w) + var(--section-pad) * 2);
  margin: 0 auto;
}
.faq-wrap { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--c-accent); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--f-title);
  font-size: .98rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--t);
}
.faq-q:hover { color: var(--c-primary); }
.faq-plus {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
}
.faq-item.open .faq-plus { background: var(--c-primary); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease);
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 260px; padding-bottom: 16px; }

/* ================================================================
   BANDE CTA FINALE
   ================================================================ */
.cta-band {
  background: var(--c-primary);
  padding: 60px var(--section-pad);
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 6px; }
.cta-band p  { color: rgba(255,255,255,.78); font-size: .88rem; }
.cta-band-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ================================================================
   FOOTER — sombre, fidèle maquette
   ================================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.65);
  padding: 24px var(--section-pad);
  font-size: .8rem;
  font-family: var(--f-body);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { font-family: var(--f-title); font-size: .9rem; color: #fff; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.42); font-size: .74rem; transition: color var(--t); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .7rem; width: 100%; opacity: .4; margin-top: 4px; }

/* ================================================================
   CARTE GOOGLE MAPS
   ================================================================ */
.map-embed {
  margin-top: 16px;
  border-radius: var(--r-img);
  overflow: hidden;
  line-height: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }

/* Hero title animation */
.hero-title-block { opacity: 0; animation: fadeUp .6s .1s var(--ease) forwards; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 40px; }
}

@media (max-width: 860px) {
  :root { --section-pad: 28px; }

  .about-inner,
  .tarifs-inner,
  .infos-inner { grid-template-columns: 1fr; gap: 32px; }

  .about-media { order: -1; }
  .about-media img { aspect-ratio: 16/9; }

  .hero-top { padding: 40px 28px; }
  .hero-pills { justify-content: flex-start; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
}

@media (max-width: 768px) {

  /* ── Menu plein écran ── */
  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 299;
    padding: 80px 32px 48px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #fdf7f0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .28s ease, visibility 0s linear .28s;
  }
  .nav.open {
    visibility: visible;
    opacity: 1;
    transition: opacity .28s ease;
  }

  /* ── Liens principaux — grands, centrés ── */
  .nav > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: unset;
    width: 100%;
    max-width: 320px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d1a0e;
    padding: 14px 0;
    border-bottom: 1px solid rgba(194,103,58,.15);
    line-height: 1.3;
    background: transparent;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
  }
  .nav > a:hover { color: #c2673a; }
  .nav > a:first-child { border-top: 1px solid rgba(194,103,58,.15); }
  .nav > a::after { display: none; }

  /* ── CTA "Prendre RDV" ── */
  .nav > a.btn-sm {
    margin: 28px 0 0;
    padding: 15px 32px;
    width: auto;
    max-width: 260px;
    justify-content: center;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: .92rem;
    font-weight: 700;
    background: #c2673a;
    color: #fff;
    border: 1.5px solid #c2673a;
    border-radius: 10px;
    border-bottom: 1.5px solid #c2673a;
    letter-spacing: .03em;
  }
  .nav > a.btn-sm:hover { background: #a8552c; border-color: #a8552c; color: #fff; }
  .nav > a.btn-sm:first-child { border-top: none; }

  /* ── Overlay : inutile en plein écran, désactivé ── */
  .nav-overlay { display: none !important; }

  /* ── Burger ── */
  .burger {
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    gap: 0;
    z-index: 400;
  }
  .burger span { display: block; width: 22px; height: 2px; margin: 3px 0; }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(0, 8px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(0, -8px); }

  /* ── Grille catalogue & hero ── */
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-banner-content { padding: 36px 28px; }
  .hero-banner { width: calc(100% - 40px); height: clamp(380px, 83vw, 541px); }
}

@media (max-width: 480px) {
  .catalogue-grid { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .hero-pills { justify-content: flex-start; }
  .trust-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .reseaux { justify-content: flex-start; }
}


/* Enrichissement contenu prestations */
.care-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  list-style: none;
}
.care-list li {
  position: relative;
  padding-left: 24px;
  color: var(--c-muted);
  font-size: .9rem;
  line-height: 1.7;
}
.care-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(194,103,58,.12);
}
.care-note {
  margin-top: 22px;
  background: #fff7ed;
  border: 1px solid rgba(194,103,58,.24);
  border-radius: var(--r-card);
  padding: 16px 18px;
  color: var(--c-muted);
  font-size: .88rem;
  line-height: 1.7;
}
.care-note strong {
  color: var(--c-text);
}


/* Navigation prestations */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}
.nav-dropdown-trigger {
  list-style: none;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-text);
  padding-bottom: 0;
  line-height: 1;
}
.nav-dropdown-trigger::-webkit-details-marker { display: none; }
.nav-dropdown-trigger::after {
  content: '▾';
  font-size: .62rem;
  margin-left: 6px;
  color: var(--c-primary);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 24px;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-warm);
  box-shadow: var(--sh-m);
  border-radius: 10px;
  z-index: 320;
}
.nav-submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .8rem;
  line-height: 1.2;
}
.nav-submenu a:hover {
  background: var(--c-bg);
}
.nav-submenu a::after { display: none; }

@media (min-width: 769px) {
  .nav-dropdown .nav-submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
  }
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .nav-submenu {
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .22s;
  }
}


@media (max-width: 768px) {
  /* ── Dropdown "Prestations" en plein écran ──
     Spécificité .nav .nav-dropdown (0,2,0) et .nav .nav-dropdown-trigger (0,2,0)
     supérieure à .nav a (0,1,1) → pas de conflit */

  .nav .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    border-bottom: 1px solid rgba(194,103,58,.15);
  }

  /* Trigger "Prestations" — même style que les autres liens */
  .nav .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: unset;
    width: 100%;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d1a0e;
    padding: 14px 0;
    cursor: pointer;
    background: transparent;
    text-decoration: none;
    line-height: 1.3;
    text-align: center;
    transition: color .2s;
  }
  .nav .nav-dropdown-trigger:hover { color: #c2673a; }
  .nav .nav-dropdown-trigger::after {
    display: inline-block;
    content: '▾';
    font-size: .7rem;
    color: #c2673a;
    transition: transform .25s ease;
    flex-shrink: 0;
  }
  .nav-dropdown.submenu-open .nav-dropdown-trigger::after {
    transform: rotate(180deg);
  }

  /* ── Sous-menu : fermé par défaut, s'ouvre au tap ── */
  .nav .nav-submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
    transform: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    gap: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height .35s cubic-bezier(.22,.61,.36,1);
  }
  .nav .nav-dropdown.submenu-open .nav-submenu {
    max-height: 600px;
    padding: 4px 0 8px;
  }

  /* Liens du sous-menu — plus petits que les liens principaux */
  .nav .nav-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: unset;
    width: 100%;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: .95rem;
    font-weight: 500;
    color: #8b6a57;
    padding: 10px 0;
    border-bottom: none;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    text-align: center;
    line-height: 1.3;
    transition: color .18s;
  }
  .nav .nav-submenu a:hover { color: #c2673a; }
  .nav .nav-submenu a::after { display: none; }
}


/* Contact téléphone protégé */
.phone-action {
  user-select: none;
}
.phone-action.phone-visible {
  letter-spacing: .01em;
}
.btn.phone-action.phone-visible,
.btn-sm.phone-action.phone-visible {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,103,58,.24);
}
.btn-white.phone-action.phone-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--c-primary);
  box-shadow: none;
}
