/* ============================================================
   NeoLaser — Luxury Theme (Minimal Luxury / Or Chaud)
   Override layer — chargé APRÈS styles.css
   Fonts : Playfair Display (Serif) + Manrope (Sans)
   Palette : Crème chaude · Or artisanal · Obsidien profond
   ============================================================ */


/* ── Jetons de design ──────────────────────────────────────── */
:root {
  --primary:       hsl(40, 45%, 56%);   /* or artisanal       */
  --primary-deep:  hsl(40, 52%, 38%);
  --accent:        hsl(40, 46%, 76%);   /* champagne          */
  --bg:            hsl(45, 20%, 97%);
  --bg-card:       hsl(42, 18%, 91%);
  --paper:         hsl(45, 30%, 98%);
  --ink:           hsl(0,  0%,  17%);
  --ink-soft:      hsl(0,  0%,  42%);
  --ink-faint:     hsl(0,  0%,  62%);
  --on-primary:    hsl(0,  0%,  12%);
  --accent-deep:   hsl(38, 52%, 42%);  /* or chaud profond — remplace le bleu marine */
  --line-soft:     rgba(0,0,0,.07);
  --serif:         'Playfair Display', Georgia, serif;
  --sans:          'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        20px;
  --lux-obsidian:  hsl(0, 0%, 9%);
}

/* ── Base ──────────────────────────────────────────────────── */
body { font-family: var(--sans); background: hsl(40, 14%, 87%); }

/* ── Typographie ── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.18;
}
h1 em, h2 em, h3 em { font-style: italic; }

/* ── Navigation ────────────────────────────────────────────── */
.site-head {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, backdrop-filter .35s, box-shadow .35s;
}
.site-head.lux-scrolled {
  background: rgba(253,251,248,.88);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom-color: rgba(0,0,0,.06);
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
.brand-name span { color: var(--primary); }
.nav a { color: var(--ink); }
.nav a:hover { color: var(--primary-deep); }

/* ── Boutons ───────────────────────────────────────────────── */
.btn-primary { background: var(--primary); color: var(--on-primary); font-weight: 700; }
.btn-primary:hover { background: var(--primary-deep); color: var(--on-primary); }
.btn-ghost { border-color: rgba(0,0,0,.2); color: var(--ink-soft); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-deep); }
.head-cta { color: var(--on-primary) !important; }
.phone { color: var(--ink-soft); }
.phone b { color: var(--ink); }

/* ── Eyebrow ── */
.eyebrow { border-color: rgba(163,126,60,.35); color: var(--primary-deep); }

/* ── Héro ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: 0 !important;
}
/* Fond dégradé chaud — remplace le visuel marine */
.lux-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(148deg, hsl(40,30%,90%) 0%, hsl(45,25%,95%) 52%, hsl(200,18%,88%) 100%);
}
.lux-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 50% at 68% 36%, rgba(163,126,60,.14) 0%, transparent 70%);
}
/* Hero wrap → 2 colonnes centrées verticalement */
.hero .wrap {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: 100svh;
  box-sizing: border-box;
  padding-top: calc(var(--head-h, 80px) + 48px);
  padding-bottom: clamp(56px, 7vw, 96px);
  background: transparent !important;
}
@media (max-width: 760px) {
  .hero .wrap { grid-template-columns: 1fr; min-height: unset; padding-top: calc(var(--head-h, 80px) + 32px); }
}
/* Texte du héro en couleurs sombres (fond clair) */
.hero-copy h1,
.hero-copy .lede,
.hero-copy .eyebrow { color: var(--ink); }

/* Hero rating badge */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(163,126,60,.1);
  border: 1px solid rgba(163,126,60,.3);
  border-radius: 30px;
}
.hero-stars { color: hsl(40,45%,56%); font-size: 13px; letter-spacing: 1px; }
.hero-rating-text { font-size: 13px; color: var(--lux-stone, #667380); }
.hero-rating-text b { color: var(--lux-obsidian, #111); }

/* Carte stats glass (remplace les stats en texte brut) */
.hero-copy .hero-stats {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  padding: 18px 22px;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0;
  box-shadow: 0 8px 36px rgba(0,0,0,.09), inset 0 1px 0 rgba(255,255,255,.9);
}
.hero-copy .hero-stats .stat { text-align: center; padding: 8px 14px; border-right: 1px solid rgba(0,0,0,.07); }
.hero-copy .hero-stats .stat:last-child { border-right: none; }
.hero-copy .hero-stats .n { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.hero-copy .hero-stats .l { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); }

/* Figure héro → portrait éditorial */
.hero-figure {
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.hero-figure .ph {
  width: 100%; height: 100%;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  min-height: 100%;
}
.hero-figure .hero-quote {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.72); border-radius: 14px;
  padding: 16px 20px; margin: 0;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink); line-height: 1.55;
}
.hero-figure .hero-quote p { margin: 0 0 8px; font-size: 14px; }
.hero-figure .by { font-style: normal; font-family: var(--sans); font-size: 11.5px; color: var(--ink-faint); }
@media (max-width: 760px) { .hero-figure { aspect-ratio: 5/4; border-radius: 20px; } }

/* Trust strip */
.trust { background: var(--bg); }
.trust .item svg { color: var(--primary); }

/* ── Panneaux — animation d'entrée simple (comme Marine) ── */
/* Pas de border-radius ni shadow sur les panneaux — hérité de styles.css */

/* ── Sections sombres → obsidien ── */
.benefits { background: var(--lux-obsidian); }
.booking  { background: var(--lux-obsidian); }
.benefits .t { color: rgba(163,126,60,.3); }
.benefits .eyebrow, .booking .eyebrow { color: var(--accent); border-color: rgba(163,126,60,.25); }

/* ── Étapes ── */
.step { transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
@media (prefers-reduced-motion: reduce) { .step:hover { transform: none; } }
.step .num { color: var(--primary-deep); border-color: rgba(163,126,60,.28); }

/* ── Prestations ── */
.presta-grid .presta {
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  overflow: hidden; position: relative;
}
.presta-grid .presta:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,.1); }
.presta-grid .presta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity .25s;
}
.presta-grid .presta:hover::before { opacity: 1; }
.presta-num, .prest-num { color: var(--accent) !important; }
.presta-title { font-family: var(--serif); }

/* ── Avis ── */
.gr-band { background: rgba(163,126,60,.07); border: 1px solid rgba(163,126,60,.2); }
.gr-stars  { color: var(--primary); }
.gr-count  { color: var(--primary-deep); }
.rev-card  { background: var(--bg-card) !important; border-color: rgba(0,0,0,.06) !important; }
.rev-av    { background: var(--primary) !important; color: var(--on-primary) !important; }
.rev-stars { color: var(--primary) !important; }

/* ── Tarifs ── */
.tarif-card { border-radius: 22px; transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s; }
.tarif-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,.1); }
.tarif-card.featured { border-color: var(--primary) !important; }
.tarif-badge { background: var(--primary) !important; color: var(--on-primary) !important; }
.tarif-price { color: var(--primary); }

/* ── Cabinets ── */
.cab { border-radius: 22px; }

/* ── Praticienne ── */
.prac-name { font-family: var(--serif); }

/* ── Formulaire ── */
input:focus, select:focus, textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(163,126,60,.15) !important;
}

/* ── Footer ── */
.site-foot { background: var(--lux-obsidian); }

/* ── Préchargeur — hérite automatiquement des vars or ── */
/* --primary = or → orbe + anneau deviennent dorés dans ce thème */

/* ── Réduction de mouvement ── */
@media (prefers-reduced-motion: reduce) {
  .presta-grid .presta, .tarif-card { transition: none !important; }
}
