*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F9F8F4;
  --surface:     #FFFFFF;
  --surface-2:   #F2F5F0;
  --text:        #1A1F18;
  --muted:       #6B7268;
  --accent:      #2D6A4F;
  --accent-mid:  #40916C;
  --accent-light:#D8EDDF;
  --accent-pale: #F0F7F2;
  --border:      #E3E8DF;
  --nav-bg:      rgba(249,248,244,0.92);
  --chevron:     #2D6A4F;
  --radius:      16px;
  --particle:    rgba(45,106,79,0.18);
}
html.dark {
  --bg:          #1E2022;
  --surface:     #26292C;
  --surface-2:   #2E3235;
  --text:        #E8EAE6;
  --muted:       #9BA89A;
  --accent:      #74C69D;
  --accent-mid:  #95D5B2;
  --accent-light:#2A3D32;
  --accent-pale: #222E28;
  --border:      #363B38;
  --nav-bg:      rgba(30,32,34,0.94);
  --chevron:     #74C69D;
  --particle:    rgba(116,198,157,0.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg); color: var(--text);
  font-size: 16px; line-height: 1.6; overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

/* ── CANVAS PARTICULES ── */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 6vw;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s, padding 0.3s;
}
nav.scrolled { padding: 10px 6vw; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 0.875rem !important; font-weight: 600 !important;
  color: #fff !important; background: var(--accent);
  padding: 9px 22px; border-radius: 50px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent-mid) !important; transform: translateY(-1px); }




/* ── BADGE DISPONIBILITÉ ── */
.avail-badge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 98;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  cursor: default;
  animation: badgeIn 0.6s 1.5s both;
  transition: background 0.4s, border-color 0.4s, transform 0.3s, opacity 0.4s;
  pointer-events: auto;
}
.avail-badge:hover { transform: translateY(-3px); }
.avail-badge.badge-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(16px) !important;
}

/* Statuts colorés */
.avail-badge[data-status="available"]   { border-color: rgba(34,197,94,0.3); }
.avail-badge[data-status="busy"]        { border-color: rgba(251,191,36,0.4); }
.avail-badge[data-status="unavailable"] { border-color: rgba(239,68,68,0.4); }

.avail-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avail-badge[data-status="available"]   .avail-dot { background: #22c55e; animation: ping 1.8s infinite; }
.avail-badge[data-status="busy"]        .avail-dot { background: #f59e0b; animation: ping 2.5s infinite; }
.avail-badge[data-status="unavailable"] .avail-dot { background: #ef4444; animation: none; }

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@keyframes badgeIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }

/* ── HERO ── */
header {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding: 130px 6vw 80px !important;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
  transition: background 0.4s, color 0.4s;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
  transition: color 0.4s;
}
h1 .line-accent { color: var(--accent); font-style: italic; }
h1 .cursor {
  display: inline-block; width: 3px; height: 0.85em;
  background: var(--accent); margin-left: 3px;
  vertical-align: middle; border-radius: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

.hero-sub {
  margin-top: 22px; font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; font-weight: 300; max-width: 500px;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards; transition: color 0.4s;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px;
  opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(45,106,79,0.3);
}
.btn-primary:hover { background: var(--accent-mid); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(45,106,79,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 500;
  padding: 13px 26px; border-radius: 50px; text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, color 0.4s, transform 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-pale); transform: translateY(-3px); }

/* Hero right card */
.hero-right { opacity: 0; animation: fadeIn 0.9s 0.6s forwards; position: relative; z-index: 1; }
.hero-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 32px;
  box-shadow: 0 24px 70px rgba(45,106,79,0.1);
  position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: 0 36px 80px rgba(45,106,79,0.16); }
.hero-card::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
}
.card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--text); transition: color 0.4s; }
.card-feature { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); transition: border-color 0.4s; }
.card-feature:last-of-type { border-bottom: none; }
.card-feature-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--accent-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.4s, transform 0.3s; }
.card-feature:hover .card-feature-icon { transform: scale(1.15); }
.card-feature-text strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 2px; transition: color 0.4s; }
.card-feature-text span { font-size: 0.83rem; color: var(--muted); transition: color 0.4s; }
.card-cta { margin-top: 24px; background: var(--accent-pale); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s; }
.card-cta p { font-size: 0.85rem; color: var(--accent); font-weight: 600; transition: color 0.4s; }
.card-cta span { font-size: 0.82rem; color: var(--muted); transition: color 0.4s; }



/* ── STATS avec compteurs ── */
.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
.stat-item {
  background: var(--surface-2); padding: 50px 36px; text-align: center;
  transition: background 0.4s, transform 0.3s;
  cursor: default;
}
.stat-item:hover { background: var(--surface); transform: translateY(-4px); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800; color: var(--accent);
  line-height: 1; letter-spacing: -0.03em;
  transition: color 0.4s;
}
.stat-label { margin-top: 10px; font-size: 0.88rem; color: var(--muted); transition: color 0.4s; }

/* ── SERVICES ── */
.services {
  position: relative; z-index: 1;
  padding: 110px 6vw; background: var(--surface);
  border-top: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.section-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; transition: color 0.4s; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; max-width: 560px; margin-bottom: 60px; color: var(--text); transition: color 0.4s; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s, border-color 0.35s, background 0.4s;
  cursor: default;
}
.service-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 55px rgba(45,106,79,0.13); border-color: var(--accent-light); }
.service-icon { width: 52px; height: 52px; background: var(--accent-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 22px; transition: background 0.4s, transform 0.3s; }
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.1); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); transition: color 0.4s; }
.service-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; font-weight: 300; transition: color 0.4s; }
.service-tag { display: inline-block; margin-top: 16px; font-size: 0.76rem; font-weight: 600; color: var(--accent); background: var(--accent-pale); padding: 4px 12px; border-radius: 50px; transition: color 0.4s, background 0.4s; }

/* ── PROCESSUS ── */
.process {
  position: relative; z-index: 1;
  padding: 110px 6vw; background: var(--bg);
  transition: background 0.4s;
}
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 60px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.step-number {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--accent);
  transition: background 0.4s, border-color 0.4s, color 0.4s, transform 0.35s;
  box-shadow: 0 0 0 6px var(--bg);
}
.process-step:hover .step-number { background: var(--accent); color: #fff; transform: scale(1.1); }
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; transition: color 0.4s; }
.process-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-weight: 300; transition: color 0.4s; }

/* ── À PROPOS ── */
.about {
  position: relative; z-index: 1;
  padding: 110px 6vw; background: var(--surface);
  border-top: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.about-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; max-width: 1100px; }
.about-visual {
  position: relative;
}
.about-card {
  background: var(--accent); border-radius: 24px; padding: 48px 40px;
  color: #fff; position: relative; overflow: hidden;
  transition: transform 0.35s;
}
.about-card:hover { transform: translateY(-6px); }
.about-card::before {
  content: '>>'; font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 8rem; font-weight: 700; color: rgba(255,255,255,0.08);
  position: absolute; bottom: -20px; right: 10px; line-height: 1;
  pointer-events: none;
}
.about-initials { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; margin-bottom: 8px; }
.about-name { font-size: 1.1rem; font-weight: 600; opacity: 0.9; }
.about-role { font-size: 0.85rem; opacity: 0.65; margin-top: 4px; letter-spacing: 0.05em; }
.about-tag {
  display: inline-block; margin-top: 24px;
  background: rgba(255,255,255,0.15); border-radius: 50px;
  padding: 6px 14px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
}

.about-content { }
.about-content .section-title { margin-bottom: 20px; }
.about-text { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 20px; transition: color 0.4s; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-value {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent-pale); border: 1px solid var(--accent-light);
  border-radius: 50px; padding: 8px 16px;
  font-size: 0.85rem; font-weight: 500; color: var(--accent);
  transition: background 0.4s, border-color 0.4s, color 0.4s, transform 0.25s;
}
.about-value:hover { transform: translateY(-2px); background: var(--accent-light); }

/* ── CONTACT ── */
.contact { position: relative; z-index: 1; padding: 110px 6vw; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; align-items: start; max-width: 1100px; }
.contact-info .section-title { margin-bottom: 18px; }
.contact-intro { font-size: 0.95rem; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 38px; transition: color 0.4s; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.detail-icon { width: 42px; height: 42px; background: var(--accent-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; transition: background 0.4s, transform 0.3s; }
.contact-detail:hover .detail-icon { transform: scale(1.1); }
.detail-text small { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2px; transition: color 0.4s; }
.detail-text a, .detail-text span { font-size: 0.92rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.4s; }
.detail-text a:hover { color: var(--accent); }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 44px 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.05); transition: background 0.4s, border-color 0.4s; }
.form-heading { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; color: var(--text); transition: color 0.4s; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; transition: color 0.4s; }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-family: 'Outfit', sans-serif; font-size: 0.94rem;
  color: var(--text); outline: none; width: 100%; appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.4s, color 0.4s;
}
.field input::placeholder, .field textarea::placeholder { color: #b0b8ae; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }
.field textarea { resize: vertical; min-height: 120px; }

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 15px 32px; border-radius: 50px; border: none;
  cursor: pointer; width: 100%; margin-top: 8px;
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(45,106,79,0.28);
}
.form-submit:hover { background: var(--accent-mid); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(45,106,79,0.38); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-msg { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; }
.form-msg.success { background: var(--accent-pale); color: var(--accent); border: 1px solid var(--accent-light); }
.form-msg.error   { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  padding: 32px 6vw; border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  transition: background 0.4s, border-color 0.4s;
}
footer p { font-size: 0.83rem; color: var(--muted); transition: color 0.4s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes pulse   { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.82); } }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,0,1.1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-40px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,0,1.1); }
.reveal-right { opacity:0; transform:translateX(40px);  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,0,1.1); }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── RESPONSIVE ── */

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .avail-badge { bottom: 16px; right: 16px; }
}

/* ── COOKIE BANNER RGPD ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.1), background 0.4s, border-color 0.4s;
}
/* CSS pur : quand l'ancre #cookie-ok est active, on cache le bandeau */
#cookie-ok:checked ~ .cookie-banner,
.cookie-banner.hidden { transform: translateY(140%); pointer-events: none; }
.cookie-text { font-size: 0.875rem; color: var(--muted); line-height: 1.6; max-width: 680px; flex: 1; transition: color 0.4s; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; font-weight: 600;
  padding: 10px 22px; border-radius: 50px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-accept { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(45,106,79,0.28); }
.cookie-accept:hover { background: var(--accent-mid); box-shadow: 0 6px 20px rgba(45,106,79,0.38); }
.cookie-refuse { background: transparent; color: var(--muted); border: 1.5px solid var(--border) !important; }
.cookie-refuse:hover { border-color: var(--muted) !important; color: var(--text); }


/* ── AVIS CLIENTS ── */
.reviews {
  position: relative; z-index: 1;
  padding: 110px 6vw; background: var(--bg);
  border-top: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.reviews-header { margin-bottom: 60px; }
.reviews-score {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px;
}
.score-big {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 800; line-height: 1;
  color: var(--accent); transition: color 0.4s;
}
.stars-row { display: flex; gap: 3px; margin-bottom: 6px; }
.star { color: #FBBC05; font-size: 1.2rem; }
.score-label { font-size: 0.85rem; color: var(--muted); transition: color 0.4s; }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); transition: color 0.4s;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s, background 0.4s, border-color 0.4s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(45,106,79,0.1); border-color: var(--accent-light); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
  font-family: 'Playfair Display', serif;
}
.review-meta { flex: 1; }
.review-name { font-size: 0.92rem; font-weight: 600; color: var(--text); transition: color 0.4s; }
.review-date { font-size: 0.78rem; color: var(--muted); margin-top: 1px; transition: color 0.4s; }
.review-google { margin-left: auto; opacity: 0.6; }
.review-stars { color: #FBBC05; font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-text {
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
  font-weight: 300; font-style: italic;
  transition: color 0.4s;
}

/* ═══════════════════════════════════════
   NAV RESPONSIVE
═══════════════════════════════════════ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.35s, border-color 0.35s;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), opacity 0.2s, background 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.4rem; color: var(--muted);
  cursor: pointer; padding: 8px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--text); }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.mobile-nav a:hover { color: var(--accent); transform: translateX(6px); }

.nav-cta-mobile {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 50px;
}
.nav-cta-mobile:hover { background: var(--accent-mid); transform: none !important; }

/* ═══════════════════════════════════════
   REVIEWS — grille desktop / carousel mobile
═══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

/* Carousel — masqué par défaut, activé seulement sur mobile */
.reviews-carousel-wrap { display: none; }

.reviews-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }

.reviews-carousel .review-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: min(300px, 78vw);
  /* Forcer le texte à wrapper */
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Le texte de l'avis doit wrapper */
.review-text {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.35); }

/* ═══════════════════════════════════════
   BREAKPOINTS
═══════════════════════════════════════ */
@media (min-width: 961px) {
  .hamburger { display: none !important; }
  .mobile-nav { display: none !important; }
  .nav-links { display: flex !important; }
  .reviews-grid { display: grid !important; }
  .reviews-carousel-wrap { display: none !important; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  header { grid-template-columns: 1fr; padding-top: 100px; min-height: auto; }
  .hero-right { display: none; }
  .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  /* Swap grille → carousel */
  .reviews-grid { display: none; }
  .reviews-carousel-wrap { display: block; }
}

@media (max-width: 768px) {
  nav { padding: 12px 5vw; }
  h1 { font-size: clamp(2rem, 7.5vw, 3rem); line-height: 1.1; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .about-card { padding: 32px 24px; }
  .about-initials { font-size: 2.5rem; }
  .avail-badge { bottom: 14px; right: 14px; font-size: 0.78rem; padding: 8px 14px 8px 10px; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .score-big { font-size: 3rem; }
  .services { padding: 70px 5vw; }
  .process { padding: 70px 5vw; }
  .about { padding: 70px 5vw; }
  .reviews { padding: 70px 5vw; }
  .contact { padding: 70px 5vw; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stat-item { padding: 28px 20px; }
  .stat-number { font-size: 2.2rem; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
  .reviews-carousel .review-card { width: calc(100vw - 10vw); }
  .avail-badge { display: none; }
}

/* ── BOUTON WHATSAPP ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  text-decoration: none;
  animation: badgeIn 0.6s 2s both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: absolute;
  left: 66px;
  background: var(--surface);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 480px) {
  .whatsapp-btn { bottom: 16px; left: 16px; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}
/* ── FAQ ACCORDÉON ── */
.faq {
  position: relative; z-index: 1;
  padding: 110px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.faq-grid {
  max-width: 780px;
  margin-top: 60px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 22px 0;
  background: none; border: none; cursor: pointer;
  text-align: left;
}
.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); line-height: 1.4;
  transition: color 0.3s;
}
.faq-btn:hover .faq-question { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.4s cubic-bezier(.22,.68,0,1.2), border-color 0.3s;
}
.faq-icon svg { transition: transform 0.4s cubic-bezier(.22,.68,0,1.2); }
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(0deg);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-item.open .faq-icon svg path { stroke: #fff; }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(.22,.68,0,1.1);
}
.faq-answer {
  padding: 0 0 22px;
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.8; font-weight: 300;
  transition: color 0.4s;
}
.faq-answer a { color: var(--accent); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ── TARIFS ── */
.tarifs {
  position: relative; z-index: 1;
  padding: 110px 6vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.tarifs-intro {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.75; font-weight: 300;
  max-width: 620px; margin-top: 8px;
  transition: color 0.4s;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.tarif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s, background 0.4s, border-color 0.4s;
}
.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45,106,79,0.1);
}
.tarif-featured {
  border-color: var(--accent);
  border-width: 2px;
}
.tarif-featured:hover {
  box-shadow: 0 20px 50px rgba(45,106,79,0.2);
}
.tarif-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 16px; border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.tarif-icon {
  font-size: 2rem; margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}
.tarif-card:hover .tarif-icon { transform: scale(1.15) rotate(-5deg); }
.tarif-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
  transition: color 0.4s;
}
.tarif-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.tarif-from {
  font-size: 0.78rem; color: var(--muted);
  font-weight: 400; transition: color 0.4s;
}
.tarif-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800;
  color: var(--accent); line-height: 1;
  transition: color 0.4s;
}
.tarif-unit {
  font-size: 0.85rem; color: var(--muted);
  font-weight: 400; transition: color 0.4s;
}
.tarif-list {
  list-style: none; padding: 0; margin-bottom: 24px;
}
.tarif-list li {
  font-size: 0.88rem; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5; font-weight: 300;
  transition: color 0.4s, border-color 0.4s;
}
.tarif-list li:last-child { border-bottom: none; }
.tarif-list li::before {
  content: '✓';
  color: var(--accent); font-weight: 600;
  font-size: 0.82rem; flex-shrink: 0;
  margin-top: 1px;
  transition: color 0.4s;
}
.tarif-cta {
  display: block; text-align: center;
  background: var(--accent-pale);
  color: var(--accent); font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  padding: 12px; border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--accent-light);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.4s;
}
.tarif-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.tarif-featured .tarif-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tarif-featured .tarif-cta:hover {
  background: var(--accent-mid);
}
.tarifs-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 36px;
  background: var(--accent-pale);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 680px;
  transition: background 0.4s, border-color 0.4s;
}
.tarifs-note p {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.65; font-weight: 300;
  transition: color 0.4s;
}
.tarifs-note strong { color: var(--accent); font-weight: 600; }
@media (max-width: 768px) {
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarif-card { padding: 28px 22px; }
}

/* Tarifs cards — animation CSS pure sans IntersectionObserver */
.tarifs-animated .tarif-card {
  animation: fadeUp 0.6s both;
}
.tarifs-animated .tarif-card:nth-child(1) { animation-delay: 0.1s; }
.tarifs-animated .tarif-card:nth-child(2) { animation-delay: 0.2s; }
.tarifs-animated .tarif-card:nth-child(3) { animation-delay: 0.3s; }
.tarifs-animated .tarif-card:nth-child(4) { animation-delay: 0.4s; }

/* ── Rendez-vous ── */
@keyframes spin { to { transform: rotate(360deg); } }

.rdv-day { margin-bottom: 20px; }
.rdv-day-label {
  font-size: 0.85rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.rdv-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.rdv-slot {
  padding: 10px 18px; border-radius: 50px;
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text); font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.rdv-slot:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); }
.rdv-slot.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

.rdv-type-option { cursor: pointer; }
.rdv-type-card {
  padding: 12px 16px; border-radius: 10px;
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s; text-align: center;
}
.rdv-type-option input:checked + .rdv-type-card {
  background: var(--accent-pale); border-color: var(--accent);
  color: var(--accent); font-weight: 700;
}
.rdv-type-card:hover { border-color: var(--accent); }

@media (max-width: 600px) {
  #rdvTypeGrid { grid-template-columns: 1fr; }
  #rdvFormInner > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
