/* ═══════════════════════════════════════════════════════════════
   Cabinet Équilibre — feuille de style principale
   ✏️ Pour changer l'ambiance du site, modifiez les couleurs ici :
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ink: #2b352e;            /* texte principal */
  --muted: #5f6d62;          /* texte secondaire */
  --green-900: #2e4036;      /* vert très foncé (pied de page, bandeau) */
  --green-700: #44594c;      /* vert principal (boutons, titres) */
  --green-500: #6f8878;      /* vert moyen */
  --green-100: #e6ede5;      /* vert très clair (fonds d'icônes) */
  --cream: #faf7f1;          /* fond principal */
  --cream-2: #f2ecdf;        /* fond alterné */
  --white: #ffffff;
  --accent: #a85b38;         /* accent chaleureux (étoiles, sur-titres) */
  --border: #e7dfcf;
  --shadow: 0 12px 32px rgba(46, 64, 54, 0.08);
  --shadow-lg: 0 18px 44px rgba(46, 64, 54, 0.14);
  --radius: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
}

h1 em, h2 em, .footer-logo em, .brand em {
  font-style: italic;
  color: var(--green-700);
}

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

section[id] { scroll-margin-top: 92px; }

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

/* ── Utilitaires ──────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 58ch;
}

.section { padding: 96px 0; }
.section-alt { background: var(--cream-2); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .lede { margin: 12px auto 0; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

.section-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Apparition douce au défilement (activée uniquement si JS présent) */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Boutons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--green-700);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(46, 64, 54, 0.22);
}
.btn-primary:hover { background: var(--green-900); box-shadow: 0 12px 26px rgba(46, 64, 54, 0.28); }

.btn-outline {
  border: 1.5px solid var(--green-700);
  color: var(--green-700);
  background: transparent;
}
.btn-outline:hover { background: var(--green-100); }

.btn-light {
  background: var(--cream);
  color: var(--green-900);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn-light:hover { background: var(--white); }

.btn-sm { padding: 0.6em 1.4em; font-size: 0.95rem; }

/* ── En-tête / navigation ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 64, 54, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--green-900);
}
.brand:hover { text-decoration: none; }
.brand svg { color: var(--green-700); flex-shrink: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav > a:not(.btn) {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
}
.site-nav > a:not(.btn):hover { color: var(--green-700); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── Accueil / hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero::before {
  width: 480px; height: 480px;
  right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(111, 136, 120, 0.28), transparent 70%);
}
.hero::after {
  width: 420px; height: 420px;
  left: -160px; bottom: -180px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.2), transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: 22px;
}
.hero-text .lede { margin-bottom: 34px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-trust li::before {
  content: "✓";
  color: var(--green-500);
  font-weight: 600;
  margin-right: 8px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-blob {
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(145deg, var(--green-500), var(--green-900));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob svg {
  width: 46%;
  color: rgba(250, 247, 241, 0.9);
}

.hero-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.hero-chip strong { color: var(--accent); }
.hero-chip small { color: var(--muted); }
.hero-chip-1 { bottom: 1%; left: 0; }

/* ── Cartes de soins ──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 24px;
}

.soin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.soin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.soin-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.soin-icon svg { width: 30px; height: 30px; }

.soin-card h3 { font-size: 1.45rem; margin-bottom: 6px; }

.soin-meta {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}

.soin-card p:not(.soin-meta) {
  color: var(--muted);
  font-size: 0.98rem;
  flex-grow: 1;
}

.soin-link {
  margin-top: 18px;
  font-weight: 500;
  font-size: 0.95rem;
}
.soin-link span { transition: transform 0.2s ease; display: inline-block; }
.soin-link:hover span { transform: translateX(4px); }

/* ── À propos ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; color: var(--muted); }

.portrait-placeholder {
  width: min(320px, 100%);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border-radius: 55% 45% 48% 52% / 42% 46% 54% 58%;
  background: linear-gradient(160deg, var(--green-500), var(--green-900));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-initials {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4.5rem;
  color: rgba(250, 247, 241, 0.92);
}
.about-photo {
  width: min(320px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-inline: auto;
  border-radius: 55% 45% 48% 52% / 42% 46% 54% 58%;
  box-shadow: var(--shadow-lg);
}

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.badges li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-700);
}
.badges li::before { content: "✓ "; color: var(--green-500); }

/* ── Témoignages ──────────────────────────────────────────────── */
.testi-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.testi-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 16px;
}
.testi-card figcaption {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Catégories de soins & liste madérothérapie ───────────────── */
.soins-category {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  text-align: center;
  margin: 0 0 28px;
}
.cards-grid ~ .soins-category { margin-top: 72px; }
.category-desc {
  text-align: center;
  color: var(--muted);
  max-width: 58ch;
  margin: -12px auto 32px;
}
.madero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 40px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border);
}
.price-name { flex: 1; font-weight: 500; }
.price-duree { color: var(--muted); font-size: 0.92rem; white-space: nowrap; }
.price-prix {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  min-width: 76px;
  text-align: right;
}
.madero-cta { text-align: center; padding-top: 28px; }

/* ── Bouton avis Google ───────────────────────────────────────── */
.google-reviews-cta { text-align: center; margin-top: 44px; }
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 500;
}
.btn-google:hover { box-shadow: var(--shadow-lg); }
.google-note { margin-top: 14px; font-size: 0.9rem; color: var(--muted); }

/* ── Infos pratiques ──────────────────────────────────────────── */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1.4rem; margin-bottom: 18px; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.98rem;
}
.hours th { text-align: left; font-weight: 500; }
.hours td { text-align: right; color: var(--muted); }
.hours .closed td { color: var(--accent); }

.info-note { margin-top: 16px; font-size: 0.9rem; color: var(--muted); }

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.98rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
}

/* ── Bandeau d'appel à l'action ───────────────────────────────── */
.cta-band {
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  color: var(--cream);
  text-align: center;
  padding: 88px 0;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(250, 247, 241, 0.8);
  margin-bottom: 32px;
}

/* ── Pied de page ─────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(250, 247, 241, 0.82);
  font-size: 0.95rem;
}
.site-footer a { color: rgba(250, 247, 241, 0.82); }
.site-footer a:hover { color: var(--cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-logo em { color: #b9cbb9; }

.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9cbb9;
  margin-bottom: 14px;
}

.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 241, 0.14);
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(250, 247, 241, 0.55);
  text-align: center;
}

/* ── Page rendez-vous ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 0 56px;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -140px; top: -200px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(111, 136, 120, 0.25), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}
.page-hero .lede { margin-inline: auto; }

.rdv-section { padding-top: 24px; }

.steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 44px;
  margin-bottom: 48px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rdv-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.calendly-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.calendly-inline-widget { border-radius: var(--radius); }

#calendly-setup {
  padding: 44px 40px;
  border: 2px dashed var(--green-500);
  border-radius: var(--radius);
  margin: 20px;
  background: var(--cream);
}
#calendly-setup h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
}
#calendly-setup ol {
  margin: 14px 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}
#calendly-setup code {
  background: var(--green-100);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.88em;
  color: var(--green-900);
}
.setup-fallback {
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}

.rdv-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rdv-aside .info-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.rdv-aside .info-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 8px; }

.aside-phone a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-900);
}

.aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.aside-list li::before {
  content: "•";
  color: var(--green-500);
  margin-right: 10px;
}

/* ── Logo emblème (en-tête) ───────────────────────────────────── */
.brand-logo { display: inline-flex; flex-shrink: 0; }
.brand-logo svg { width: 36px; height: 36px; display: block; }
.brand-logo-img { width: 40px; height: 40px; object-fit: cover; display: block; border-radius: 50%; box-shadow: 0 2px 8px rgba(46, 64, 54, 0.18); }

/* ── Hero : cadre photo (repli sur feuille décorative) ────────── */
.hero-photo {
  position: relative;
  width: min(380px, 82%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-500), var(--green-900));
  box-shadow: var(--shadow-lg);
}
.hero-leaf {
  position: absolute; inset: 0; margin: auto;
  width: 46%; height: 46%; z-index: 1;
  color: rgba(250, 247, 241, 0.9);
}
.hero-emblem { position: absolute; inset: 0; margin: auto; width: 66%; height: 66%; z-index: 1; }
.hero-logo-img { position: absolute; top: 16%; left: 12%; width: 76%; height: 68%; object-fit: contain; z-index: 2; }
.hero-brandline {
  width: min(330px, 76%);
  color: #ca9d6f;              /* doré exact de la calligraphie du logo */
  pointer-events: none;
}
.hero-photo.has-logo { background: #afc2c0; }
.hero-photo.has-logo .hero-emblem { display: none; }

/* ── Galerie « Le cadre » (avec repli élégant) ────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 215px 215px;
  gap: 18px;
}
.gallery-grid .photo-frame:first-child { grid-row: 1 / span 2; }
.photo-frame {
  position: relative;
  height: 100%;
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--green-100), var(--cream-2));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-fallback {
  display: none;
  text-align: center;
  color: var(--green-700);
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 16px;
}
.photo-fallback svg { display: block; width: 38px; height: 38px; margin: 0 auto 8px; opacity: 0.6; }
.photo-fallback code {
  display: inline-block;
  margin-top: 6px;
  background: var(--white);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.82em;
  color: var(--muted);
}
.photo-frame.photo-empty .photo-fallback { display: block; }

/* ── Widget de réservation ────────────────────────────────────── */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 34px;
}
.booking-step { margin-bottom: 26px; }
.booking-step:last-child { margin-bottom: 0; }
.booking-label {
  display: block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
#bk-service, #bk-date, .booking-fields input, .booking-fields textarea {
  width: 100%; font: inherit;
  padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--cream); color: var(--ink);
}
#bk-service:focus, #bk-date:focus,
.booking-fields input:focus, .booking-fields textarea:focus {
  outline: none; border-color: var(--green-500); background: var(--white);
}
.booking-meta { margin-top: 8px; font-size: 0.92rem; color: var(--muted); }
.booking-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.slot-btn {
  font: inherit; cursor: pointer;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--white); color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.slot-btn:hover { border-color: var(--green-500); background: var(--green-100); }
.slot-btn.selected { background: var(--green-700); color: var(--cream); border-color: var(--green-700); }
.booking-loading, .booking-empty { color: var(--muted); font-size: 0.95rem; }
.booking-fields { display: grid; gap: 12px; }
.booking-fields textarea { min-height: 80px; resize: vertical; }
.booking-recap {
  margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  background: var(--green-100); color: var(--green-900); font-size: 0.98rem;
}
#bk-submit { margin-top: 18px; width: 100%; }
.booking-error {
  margin-top: 14px; padding: 12px 15px; border-radius: 10px;
  background: #f7e0e0; border: 1px solid #e0b4b4; color: #8a2b2b; font-size: 0.95rem;
}
.booking-success { text-align: center; padding: 20px 10px; }
.booking-check {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--green-700); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.booking-success h2 { font-size: 1.6rem; margin-bottom: 12px; }
.booking-success .muted { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.booking-success .btn { margin-top: 22px; }

/* ── Adaptation mobile / tablette ─────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-blob { width: min(280px, 70%); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .rdv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 24px 24px;
  }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.btn) { padding: 12px 4px; border-bottom: 1px dashed var(--border); }
  .site-nav .btn { margin-top: 12px; text-align: center; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .container { width: min(1120px, 100% - 40px); }
  .hero { padding: 48px 0 72px; }
  .hero-chip-1 { bottom: 0; left: -4px; }
  .infos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .steps { flex-direction: column; align-items: center; gap: 14px; }
  .calendly-inline-widget { height: 1060px !important; }
  #calendly-setup { padding: 32px 22px; margin: 14px; }
  .madero-card { padding: 8px 22px 26px; }
  .price-row { flex-wrap: wrap; gap: 4px 14px; }
  .price-name { flex: 1 1 100%; }
  .price-duree { flex: 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-grid .photo-frame:first-child { grid-row: auto; }
  .photo-frame { height: 240px; }
  .hero-photo { width: min(300px, 78%); }
}
