/* ═══════════════════════════════════════════════════════════════════════════
   RHIINO — CSS partagé sites démo
   Palette (--p1→--p5) et ton (body.ton-*) swappés par demo-widget.js
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables de base (palette par défaut — surchargée par inline style) ── */
:root {
  --p1: #1E3A2F;
  --p2: #3D6B55;
  --p3: #7FA882;
  --p4: #D4E8D0;
  --p5: #F7F3EC;

  /* Ton par défaut : naturel */
  --fw-h1: 600;
  --fw-h2: 600;
  --fw-h3: 600;
  --ls-h:  -0.01em;
  --lh:    1.75;
  --pad-section: 96px;
  --radius: 14px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Tons — typo + espacement + polices ─────────────────────────────────── */

/* Naturel : Space Grotesk + Nunito, géométrique moderne + corps organique arrondi */
body.ton-naturel {
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --fw-h1: 600; --fw-h2: 600; --fw-h3: 500;
  --ls-h: -0.01em; --lh: 1.8; --pad-section: 100px;
}

/* Apaisant : full Lora (serif doux partout), respiration maximale */
body.ton-apaisant {
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --fw-h1: 400; --fw-h2: 400; --fw-h3: 400;
  --ls-h: 0.01em; --lh: 2.0; --pad-section: 120px;
}

/* Professionnel : Josefin Sans (titres épurés) + IBM Plex Sans (corps structuré) */
body.ton-professionnel {
  --font-head: 'Josefin Sans', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --fw-h1: 700; --fw-h2: 700; --fw-h3: 600;
  --ls-h: 0.04em; --lh: 1.6; --pad-section: 80px;
}

/* Dynamique : Space Grotesk impact + Barlow corps sportif */
body.ton-dynamique {
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --fw-h1: 700; --fw-h2: 700; --fw-h3: 700;
  --ls-h: -0.03em; --lh: 1.55; --pad-section: 72px;
}

/* Convivial : full Nunito, 100% rond et accessible */
body.ton-convivial {
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --fw-h1: 700; --fw-h2: 700; --fw-h3: 600;
  --ls-h: 0.01em; --lh: 1.85; --pad-section: 88px;
}

/* Premium : Playfair Display + Cormorant Garamond, full serif éditorial luxueux */
body.ton-premium {
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --fw-h1: 400; --fw-h2: 400; --fw-h3: 400;
  --ls-h: 0.02em; --lh: 1.95; --pad-section: 124px;
  font-size: 17px; /* Cormorant Garamond est optiquement plus petit */
}

/* ── Variantes de navigation ─────────────────────────────────────────────── */

/* Variante 1 : Classique (logo gauche, liens centre, CTA droite) — défaut */

/* Variante 2 : Drawer droite (burger visible, liens masqués) */
body.menu-drawer-right .nav-links { display: none !important; }
body.menu-drawer-right .nav-cta   { display: none !important; }
body.menu-drawer-right .nav-burger { display: flex !important; }

/* Variante 3 : Logo gauche, liens + CTA groupés à droite */
body.menu-right .nav-links {
  position: static !important; transform: none !important;
  margin-left: auto;
}
body.menu-right .nav-cta { margin-left: 24px; }
body.menu-right .demo-nav { justify-content: flex-start; gap: 0; }

/* Variante 4 : Logo centré, burger gauche, drawer gauche */
body.menu-drawer-left .nav-links { display: none !important; }
body.menu-drawer-left .nav-cta   { display: none !important; }
body.menu-drawer-left .nav-burger { display: flex !important; order: -1; }
body.menu-drawer-left .nav-brand  {
  position: absolute; left: 50%; transform: translateX(-50%);
}

/* ── Overlay commun aux deux drawers ─────────────────────────────────────── */
.demo-nav-drawer-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.45); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.demo-nav-drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── Drawer commun ───────────────────────────────────────────────────────── */
.demo-nav-drawer {
  position: fixed; top: 0; bottom: 0; z-index: 95;
  width: 280px; background: var(--p1);
  padding: 110px 32px 40px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 8px;
}
/* Drawer droite */
.demo-nav-drawer.drawer-right {
  right: 0; transform: translateX(100%);
  border-left: 1px solid rgba(255,255,255,.1);
}
.demo-nav-drawer.drawer-right.open { transform: translateX(0); }

/* Drawer gauche */
.demo-nav-drawer.drawer-left {
  left: 0; transform: translateX(-100%);
  border-right: 1px solid rgba(255,255,255,.1);
}
.demo-nav-drawer.drawer-left.open { transform: translateX(0); }

.demo-nav-drawer a {
  font-family: var(--font-head); font-size: 22px;
  font-weight: var(--fw-h2); letter-spacing: var(--ls-h);
  color: rgba(255,255,255,.7); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.demo-nav-drawer a:hover { color: #fff; padding-left: 8px; }
.demo-nav-drawer a.drawer-sub {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.45); padding: 4px 0;
  border-bottom: none; letter-spacing: 0;
}
.drawer-sub-icon { flex-shrink: 0; font-size: 14px; }
.demo-nav-drawer a.drawer-sub:hover { color: rgba(255,255,255,.8); padding-left: 6px; }
.demo-nav-drawer .drawer-cta {
  margin-top: 24px; background: var(--p3); color: var(--p1);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 14px; border-radius: 8px; text-align: center;
  transition: filter .2s;
}
.demo-nav-drawer .drawer-cta:hover { filter: brightness(1.1); }
.demo-nav-drawer-close {
  position: absolute; top: 20px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer-right .demo-nav-drawer-close { right: 20px; }
.drawer-left  .demo-nav-drawer-close { right: 20px; }
.demo-nav-drawer-close:hover { background: rgba(255,255,255,.2); }

/* ── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--p5);
  color: var(--p1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: var(--lh);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.demo-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--p1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 96px;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s;
}
.demo-nav.scrolled { background: var(--p1); box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav-brand {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: var(--ls-h);
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 80px; width: auto; max-width: 220px;
  filter: brightness(0) invert(1);
}
/* Switcher identité : logo vs nom */
body.brand-text .nav-logo-img  { display: none; }
body.brand-logo .nav-brand-text { display: none; }

.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center; height: 96px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-mobile-cta-item { display: none; }

/* ── Sous-menu nav (démos Pro) ───────────────────────────────────────────── */
.nav-has-sub { position: relative; display: flex; align-items: center; height: 96px; }
.nav-has-sub > a { display: inline-flex; align-items: center; gap: 5px; }

.nav-chevron { flex-shrink: 0; transition: transform .25s ease; }
.nav-has-sub:hover .nav-chevron { transform: rotate(180deg); }

.nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--p1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px 0 8px; list-style: none;
  min-width: 248px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 20px 56px rgba(0,0,0,.45);
  z-index: 60;
}
/* Petit triangle pointant vers le nav */
.nav-sub::before {
  content: ''; position: absolute; top: -5px;
  left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--p1);
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
}
.nav-has-sub:hover .nav-sub {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-sub li { display: block; }
.nav-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; letter-spacing: 0;
  color: rgba(255,255,255,.65);
  transition: color .15s, background .15s, padding-left .15s;
  white-space: nowrap;
}
.nav-sub a:hover { color: #fff; background: rgba(255,255,255,.07); padding-left: 26px; }
.nav-sub-icon { font-size: 13px; line-height: 1; flex-shrink: 0; }
.nav-sub-sep { height: 1px; background: rgba(255,255,255,.08); margin: 6px 18px; }

/* ── Fil d'ariane ───────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.3); font-size: 11px; }
.breadcrumb-current { color: #fff; font-weight: 500; }

.nav-cta {
  background: var(--p3); color: var(--p1);
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 6px;
  transition: filter .2s, transform .15s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; height: 30px; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .25s, opacity .2s;
}
/* État fermé — 3 barres horizontales (reset explicite) */
.nav-burger span { transform: none; opacity: 1; }
/* État ouvert — croix */
.demo-nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.demo-nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.demo-nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.demo-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 96px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.demo-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.demo-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  transition: transform 8s ease;
}
@media (max-width: 900px) {
  .demo-hero-bg img {
    object-position: center 20%;
  }
}
.demo-hero:hover .demo-hero-bg img { transform: scale(1.03); }
.demo-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(0,0,0,.55) 0%, var(--p1) 100%);
  opacity: .88;
}
.demo-hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px 72px;
  max-width: 740px;
}
.demo-hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--p3); border: 1px solid var(--p3); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 22px;
}
.demo-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: var(--fw-h1);
  letter-spacing: var(--ls-h);
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.demo-hero-sub {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: var(--lh); margin-bottom: 36px; max-width: 480px;
}
.demo-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-hero-primary {
  background: var(--p3); color: var(--p1);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: filter .2s, transform .15s;
}
.btn-hero-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }

.btn-hero-secondary {
  color: #fff; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  font-family: var(--font-head); font-size: 15px; font-weight: 400;
  padding: 14px 28px; border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.demo-hero-stats {
  display: flex; gap: 28px;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-val {
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  color: var(--p3); line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* ── Hero Split : texte gauche / photo droite ────────────────────────────── */
.demo-hero.hero-split {
  min-height: 0;
  height: auto;
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
  justify-content: unset;
}
.demo-hero.hero-split .demo-hero-bg,
.demo-hero.hero-split .demo-hero-overlay { display: none; }

.hero-split-left {
  background: var(--p1);
  display: flex;
  align-items: center;
  padding: 128px 56px 80px 60px;
}
.demo-hero.hero-split .demo-hero-content {
  position: static;
  z-index: auto;
  padding: 0;
  max-width: none;
}

.hero-split-right {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.hero-split-right picture { display: block; height: 100%; }
.hero-split-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-split-right::after {
  display: none;
}

@media (max-width: 900px) {
  .demo-hero.hero-split {
    padding-top: 96px;
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
  }
  .hero-split-left {
    order: 2;
    padding: 48px 24px 60px;
    align-items: flex-start;
  }
  .hero-split-right {
    order: 1;
    min-height: 280px;
  }
  .hero-split-right::after {
    display: none;
  }
}

/* ── Sections communes ───────────────────────────────────────────────────── */
.demo-section { padding: var(--pad-section) 60px; }
.demo-container { max-width: 1100px; margin: 0 auto; }
.demo-section-light { background: var(--p5); }
.demo-section-tinted { background: var(--p4); }
.demo-section-dark { background: var(--p1); color: #fff; }
.demo-section-mid { background: var(--p2); color: #fff; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--p2); margin-bottom: 10px; display: block;
}
.demo-section-dark .section-label,
.demo-section-mid .section-label { color: var(--p3); }

h2.demo-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: var(--fw-h2);
  letter-spacing: var(--ls-h);
  line-height: 1.15; margin-bottom: 14px;
}
.demo-h2-intro {
  font-size: 17px; font-weight: 300; color: var(--p2);
  line-height: var(--lh); margin-bottom: 52px; max-width: 520px;
}
.demo-section-dark .demo-h2-intro { color: rgba(255,255,255,.65); }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-photo {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: var(--p4);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--p3); background: var(--p4);
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 16px; line-height: var(--lh); color: var(--p2); margin-bottom: 16px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-badge {
  font-size: 12px; font-weight: 500; color: var(--p2);
  border: 1px solid var(--p3); border-radius: 100px;
  padding: 5px 14px; background: var(--p5);
}

/* ── Prestations ─────────────────────────────────────────────────────────── */
.prestations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.presta-card {
  background: var(--p5); border: 1px solid var(--p4);
  border-radius: var(--radius); padding: 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.presta-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); border-color: var(--p3); }
.presta-icon {
  font-size: 32px; margin-bottom: 14px; line-height: 1;
}
.presta-card h3 {
  font-family: var(--font-head); font-size: 17px;
  font-weight: var(--fw-h3); letter-spacing: var(--ls-h);
  margin-bottom: 8px; color: var(--p1);
}
.presta-card p { font-size: 14px; color: var(--p2); line-height: var(--lh); }
.presta-duration {
  font-size: 12px; font-weight: 500; color: var(--p3);
  margin-top: 14px; display: flex; align-items: center; gap: 5px;
}

/* ── Avis clients (fake Google) ──────────────────────────────────────────── */
.reviews-header {
  display: flex; align-items: center; gap: 24px; margin-bottom: 36px;
}
.reviews-global {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 28px; background: var(--p5);
  border-radius: var(--radius); border: 1px solid var(--p4);
  min-width: 180px; text-align: center;
}
.reviews-global-score {
  font-family: var(--font-head); font-size: 44px; font-weight: 700; color: var(--p1); line-height: 1;
}
.reviews-global-stars { color: #F4B400; font-size: 20px; letter-spacing: 2px; margin: 4px 0; }
.reviews-global-count { font-size: 12px; color: var(--p2); }
.reviews-google-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--p2); margin-top: 8px;
}
.reviews-google-badge img { width: 18px; height: 18px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--p5); border: 1px solid var(--p4);
  border-radius: var(--radius); padding: 20px 22px;
}
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--p2);
  font-size: 15px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-size: 14px; font-weight: 600; color: var(--p1); }
.review-date { font-size: 12px; color: var(--p2); }
.review-stars { color: #F4B400; font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--p2); line-height: 1.65; }
.review-source {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--p3); margin-top: 10px;
}

/* ── Booking (fake) ──────────────────────────────────────────────────────── */
.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.booking-calendar {
  background: var(--p5); border: 1px solid var(--p4);
  border-radius: var(--radius); overflow: hidden;
}
.cal-header {
  background: var(--p1); color: #fff; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.cal-header-month { font-family: var(--font-head); font-size: 16px; font-weight: 600; }
.cal-nav { background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: 18px; padding: 0 6px; }
.cal-nav:hover { color: #fff; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day-label {
  text-align: center; padding: 10px 4px;
  font-size: 11px; font-weight: 600; color: var(--p2); letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 1px solid var(--p4);
}
.cal-day {
  text-align: center; padding: 10px 4px; font-size: 14px; color: var(--p1);
  cursor: pointer; border-radius: 6px; margin: 2px;
  transition: background .15s, color .15s;
}
.cal-day:hover:not(.empty):not(.past) { background: var(--p4); color: var(--p1); }
.cal-day.available { font-weight: 600; }
.cal-day.selected { background: var(--p2); color: #fff; border-radius: 8px; }
.cal-day.past { color: rgba(0,0,0,.2); cursor: default; }
.cal-day.empty { cursor: default; }
.cal-slots { padding: 16px; border-top: 1px solid var(--p4); }
.cal-slots-title { font-size: 13px; font-weight: 600; color: var(--p1); margin-bottom: 12px; }
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot {
  text-align: center; padding: 9px 4px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--p3); border-radius: 6px; color: var(--p2);
  cursor: pointer; transition: background .15s, color .15s;
}
.slot:hover, .slot.selected { background: var(--p2); color: #fff; border-color: var(--p2); }
.slot.full { opacity: .35; cursor: not-allowed; }

.booking-form-side h3 {
  font-family: var(--font-head); font-size: 20px;
  font-weight: var(--fw-h3); letter-spacing: var(--ls-h);
  margin-bottom: 6px;
}
.booking-form-side p { font-size: 14px; color: var(--p2); margin-bottom: 24px; line-height: var(--lh); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--p1); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--font-body);
  border: 1px solid var(--p4); border-radius: 8px; background: var(--p5);
  color: var(--p1); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--p2); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-booking {
  width: 100%; background: var(--p2); color: #fff;
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 14px; border-radius: 8px; border: none; cursor: pointer;
  transition: filter .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-booking:hover { filter: brightness(1.12); transform: translateY(-1px); }

/* ── Tarifs ──────────────────────────────────────────────────────────────── */
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tarif-card {
  background: var(--p5); border: 2px solid var(--p4);
  border-radius: var(--radius); padding: 32px 28px; text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.tarif-card.featured { border-color: var(--p2); position: relative; }
.tarif-card.featured::before {
  content: 'Populaire'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--p2); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
}
.tarif-card:hover { border-color: var(--p3); box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.tarif-name { font-size: 13px; font-weight: 600; color: var(--p2); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.tarif-price {
  font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--p1); line-height: 1;
}
.tarif-price span { font-size: 16px; font-weight: 400; color: var(--p2); }
.tarif-duration { font-size: 13px; color: var(--p2); margin: 8px 0 20px; }
.tarif-features { list-style: none; text-align: left; margin-bottom: 28px; }
.tarif-features li {
  font-size: 14px; color: var(--p2); padding: 6px 0;
  border-bottom: 1px solid var(--p4); display: flex; gap: 10px; align-items: center;
}
.tarif-features li::before { content: '✓'; color: var(--p2); font-weight: 700; flex-shrink: 0; }
.btn-tarif {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 12px;
  background: var(--p4); color: var(--p1);
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  border-radius: 8px; border: none; cursor: pointer; text-align: center;
  transition: background .2s, color .2s;
}
.tarif-card.featured .btn-tarif { background: var(--p2); color: #fff; }
.btn-tarif:hover { filter: brightness(1.08); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 {
  font-family: var(--font-head); font-size: 22px;
  font-weight: var(--fw-h3); margin-bottom: 12px;
}
.contact-info p { font-size: 15px; color: rgba(255,255,255,.7); line-height: var(--lh); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item-icon {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-item-text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.contact-item-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }

.contact-form-wrap {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px;
}
.contact-form-wrap .form-group label { color: rgba(255,255,255,.8); }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: var(--p3); }
.btn-contact {
  width: 100%; background: var(--p3); color: var(--p1);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 14px; border-radius: 8px; border: none; cursor: pointer;
  transition: filter .2s; margin-top: 8px;
}
.btn-contact:hover { filter: brightness(1.1); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.demo-footer {
  background: var(--p1); border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 60px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px 24px;
}
.footer-brand {
  font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff;
  display: flex; align-items: center;
}
.footer-logo-img {
  height: 72px !important; width: auto; max-width: 220px;
  filter: brightness(0) invert(1);
}
.footer-copy-group {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-copy-group .footer-copy::after {
  content: '·'; margin-left: 16px; color: rgba(255,255,255,.2);
}

.footer-legal-link {
  font-size: 12px; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s; cursor: pointer;
}
.footer-legal-link:hover { color: rgba(255,255,255,.8); text-decoration: underline; }

.footer-rhiino {
  font-size: 12px; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 6px;
}
.footer-rhiino a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* ── Modale démo (booking + slots) ──────────────────────────────────────── */
.demo-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.demo-modal-overlay.open { opacity: 1; pointer-events: all; }
.demo-modal {
  background: var(--p5); border-radius: var(--radius);
  padding: 36px 40px; max-width: 420px; width: 90%;
  text-align: center;
  transform: translateY(20px); transition: transform .25s;
  border: 2px solid var(--p3);
}
.demo-modal-overlay.open .demo-modal { transform: translateY(0); }
.demo-modal-icon { font-size: 40px; margin-bottom: 14px; }
.demo-modal h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--p1); margin-bottom: 10px;
}
.demo-modal p { font-size: 15px; color: var(--p2); line-height: 1.65; margin-bottom: 24px; }
.demo-modal-actions { display: flex; gap: 12px; justify-content: center; }
.demo-modal-close {
  background: var(--p4); color: var(--p1);
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  padding: 11px 24px; border-radius: 8px; border: none; cursor: pointer;
}
.demo-modal-cta {
  background: var(--p2); color: #fff;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  padding: 11px 24px; border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .demo-nav { padding: 0 20px; }

  /* ── Burger toujours visible, CTA header masqué ── */
  .nav-burger { display: flex !important; }
  .nav-cta    { display: none !important; }

  /* ── Variante Classique & Droite : dropdown pleine largeur ── */
  .nav-links {
    display: none;
    position: fixed; top: 96px; left: 0; right: 0;
    background: var(--p1);
    flex-direction: column; padding: 20px 24px; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    z-index: 49;
    /* Reset des règles desktop menu-right */
    transform: none !important; margin-left: 0 !important;
  }
  .demo-nav.open .nav-links { display: flex; }

  /* CTA mobile visible uniquement dans le dropdown */
  .nav-mobile-cta-item { display: block; margin-top: 8px; }

  /* ── Variante "Droite" sur mobile → drawer droit, pas de dropdown ── */
  body.menu-right .demo-nav   { justify-content: space-between; }
  body.menu-right .nav-burger { margin-left: auto; }
  body.menu-right.demo-nav-open .nav-links { display: none !important; }

  /* ── Reset variante "Logo centré + burger gauche" sur mobile ── */
  body.menu-drawer-left .nav-brand {
    position: static !important; transform: none !important;
  }
  body.menu-drawer-left .nav-burger { order: -1; }

  /* ── Sous-menu : inline statique dans le panel mobile ── */
  .nav-sub {
    position: static; transform: none !important;
    opacity: 1 !important; pointer-events: all !important;
    background: rgba(255,255,255,.05);
    border: none; border-radius: 8px;
    box-shadow: none; padding: 4px 0;
    margin: 4px 0 2px; min-width: 0;
    display: block !important;
  }
  .nav-sub::before { display: none; }
  .nav-links { height: auto; }
  .nav-has-sub { height: auto; display: block; }
  .nav-sub a {
    font-size: 14px; padding: 7px 8px 7px 28px;
    color: rgba(255,255,255,.55);
  }
  .nav-sub a:hover { padding-left: 34px; }
  .nav-chevron { display: none; }

  /* ── Layout ── */
  .demo-hero-content { padding: 48px 24px 48px; }
  .demo-section { padding: 64px 24px; }
  .about-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .prestations-grid, .reviews-grid, .tarifs-grid { grid-template-columns: 1fr; }
  .demo-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .demo-hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ── Fake Instagram ──────────────────────────────────────────────────────── */
.insta-section-wrap { text-align: center; }
.insta-container-wrap {
  display: inline-block; max-width: 640px; width: 100%; text-align: left;
}

.insta-widget {
  background: var(--p5); border: 1px solid var(--p4);
  border-radius: var(--radius); overflow: hidden; max-width: 640px;
}

.insta-header {
  display: flex; gap: 24px; padding: 24px 24px 16px; align-items: flex-start;
}

.insta-avatar-wrap { position: relative; flex-shrink: 0; }
.insta-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 2px var(--p3);
}
.insta-ig-badge {
  position: absolute; bottom: 0; right: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

.insta-profile-info { flex: 1; min-width: 0; }
.insta-top-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.insta-handle { font-size: 15px; font-weight: 700; color: var(--p1); }
.insta-name   { font-size: 12px; color: var(--p2); margin-top: 2px; }

.insta-follow-btn {
  background: var(--p2); color: #fff;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 6px; border: none; cursor: pointer;
  flex-shrink: 0; transition: filter .2s;
}
.insta-follow-btn:hover { filter: brightness(1.12); }

.insta-stats-row { display: flex; gap: 20px; margin-bottom: 10px; }
.insta-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.insta-stat strong { font-size: 14px; font-weight: 700; color: var(--p1); }
.insta-stat span { font-size: 11px; color: var(--p2); }

.insta-bio    { font-size: 13px; color: var(--p1); line-height: 1.55; margin-bottom: 4px; }
.insta-website { font-size: 12px; color: var(--p2); }

/* Grille 3×3 */
.insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-top: 1px solid var(--p4);
}

.insta-post {
  position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.insta-post-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.insta-post:hover .insta-post-inner { transform: scale(1.06); }
.insta-post-emoji { font-size: 36px; user-select: none; }

.insta-post-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; transition: opacity .2s;
}
.insta-post:hover .insta-post-overlay { opacity: 1; }
.insta-post-stat { color: #fff; font-size: 13px; font-weight: 600; }

.insta-footer {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px; border-top: 1px solid var(--p4);
  font-size: 12px; color: var(--p2); cursor: pointer;
  transition: color .2s;
}
.insta-footer:hover { color: var(--p1); }

@media (max-width: 900px) {
  .insta-header { flex-direction: column; align-items: center; text-align: center; }
  .insta-top-row { flex-direction: column; align-items: center; }
  .insta-stats-row { justify-content: center; }
}
