:root {
  /* Colors */
  --red: #c94b4b; /* accent principal */
  --red-dark: #9e3535; /* accent foncé */
  --red-soft: #f7eaea; /* fond rosé subtil */
  --bg: #ffffff; /* fond global */
  --text: #1f2937; /* gris/anthracite */
  --muted: #6b7280; /* gris secondaire */
  --border: #e5e7eb; /* gris bordures */
  --success: #10b981;
  --warning: #f59e0b;

  /* Layout */
  --max: 1200px; /* largeur max container */
  --radius: 14px; /* rayon général */
  --radius-lg: 18px; /* rayon large */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.1);

  /* Typography scale */
  --fs-1: clamp(2.2rem, 4.2vw, 3.2rem); /* H1 */
  --fs-2: clamp(1.4rem, 2.3vw, 2rem); /* H2 */
  --fs-3: clamp(1.1rem, 1.6vw, 1.35rem); /* H3 */
  --fs-body: clamp(1rem, 1.2vw, 1.05rem);
  --fs-small: 0.92rem;
}

/* ===== Base / Reset ===== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fs-body);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.15rem;
}
li {
  margin: 0.25rem 0;
}
.muted {
  color: var(--muted);
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

/* ===== Layout utils ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px;
}
.section {
  padding: 84px 0;
}
.section-tight {
  padding: 44px 0;
}
.grid {
  display: grid;
  gap: 26px;
}
.h-stack {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.v-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.center {
  display: grid;
  place-items: center;
}
.spacer {
  height: 26px;
}

/* ===== Typography ===== */
h1 {
  font-size: var(--fs-1);
  line-height: 1.12;
  margin: 0.2rem 0 1rem;
  letter-spacing: -0.015em;
}
h2 {
  font-size: var(--fs-2);
  line-height: 1.18;
  margin: 0.2rem 0 1rem;
}
h3 {
  font-size: var(--fs-3);
  line-height: 1.22;
  margin: 0.2rem 0 0.8rem;
}
p {
  margin: 0.5rem 0 1rem;
}

/* ===== Header / Nav ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffcc;
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-weight: 900;
  letter-spacing: 0.2px;
}
nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 700;
}
nav a:hover {
  color: var(--red-dark);
}
nav a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ===== Links ===== */
a {
  color: var(--red-dark);
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ===== Buttons (premium) ===== */
.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red-dark);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-lg);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--red-dark);
  outline-offset: 2px;
}
.btn-ghost {
  border: 1px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--red-soft);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 60%,
    var(--red-soft) 60%,
    var(--red-soft) 100%
  );
}
.hero-wrap {
  display: grid;
  gap: 42px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.kicker {
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.hero p {
  font-size: 1.06rem;
  color: var(--muted);
}

/* ===== Badges / Stats ===== */
.badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
@media (min-width: 780px) {
  .badges {
    grid-template-columns: repeat(4, 1fr);
  }
}
.badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #f0dada;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.badge .ico {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red-soft);
  border: 1px solid #f0dada;
}
.badge strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.badge small {
  color: var(--muted);
}

/* ===== Cards ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.card h3 {
  margin: 0.2rem 0 0.8rem;
}
.card p,
.card ul,
.card li {
  margin-bottom: 0.8rem;
}
.card ul {
  padding-left: 1.2rem;
}
.card li {
  line-height: 1.55;
}
.card-soft {
  background: var(--red-soft);
}

/* ===== Grids ===== */
.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* ===== Steps (legacy) ===== */
.steps {
  counter-reset: step;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

/* ===== Testimonials (text) ===== */
.testi {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .testi {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote {
  font-style: italic;
  color: #374151;
}
.star {
  font-size: 1.1rem;
  color: var(--warning);
}

/* ===== Video Testimonials ===== */
.video-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 800px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-card .vc-body {
  padding: 14px 16px;
}
.video-card .vc-body h4 {
  margin: 0 0 0.25rem;
}
.video-card .vc-body small {
  color: var(--muted);
}

/* ===== Chips ===== */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red-soft);
  border: 1px solid #f0dada;
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.86rem;
}

/* ===== CTA Band ===== */
.band {
  background: var(--red);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.band h3 {
  margin: 0;
}

/* ===== FAQ ===== */
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}
.faq details + details {
  margin-top: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* ===== Footer (premium) ===== */
footer {
  border-top: 1px solid var(--border);
  background: #fff;
  color: #4b5563;
}
.footer-wrap {
  padding: 48px 0;
}
.footer-cols {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .footer-cols {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand .logo {
  font-weight: 900;
  font-size: 1.12rem;
  color: var(--red-dark);
}
.footer-cols h4 {
  margin: 0.2rem 0 0.6rem;
}
.footer-cols a {
  color: inherit;
  text-decoration: none;
}
.footer-cols a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 26px;
}
@media (min-width: 900px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}
.social {
  display: flex;
  gap: 10px;
}
.social a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.2s ease, transform 0.08s ease;
}
.social a:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}

/* ===== Hero right card tweaks (if present) ===== */
.hero .card {
  padding: 28px;
  line-height: 1.55;
}
.hero .card h3 {
  margin-bottom: 1rem;
  font-size: 1.22rem;
}
.hero .card p,
.hero .card li {
  margin-bottom: 0.7rem;
}

/* ===== Tight card spacing ===== */
.section-tight .card {
  padding-top: 36px;
  padding-bottom: 36px;
}
.section-tight .card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.section-tight .card p {
  margin-bottom: 1rem;
}
.section-tight .card ul li {
  margin-bottom: 0.6rem;
}

/* ===== Aside / Combined card ===== */
.aside-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.combo-aside {
  padding: 32px;
}
.combo-aside .subsec {
  margin: 0;
}
.combo-aside .subsec h3 {
  margin: 0 0 12px;
}
.combo-aside .subsec p {
  margin-bottom: 12px;
}
.combo-aside .sep {
  border: 0;
  border-top: 1px solid #f0dada;
  margin: 16px 0;
}
@media (min-width: 900px) {
  .combo-aside {
    padding: 36px;
  }
}

/* ===== Services specific ===== */
.kicker-band {
  background: var(--red-soft);
  border-top: 1px solid #f0dada;
  border-bottom: 1px solid #f0dada;
}
.statbar {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 800px) {
  .statbar {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  background: #fff;
  border: 1px solid #f0dada;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.stat strong {
  font-size: 1.22rem;
  line-height: 1;
}
.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}
.feature-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature p {
  margin: 0.4rem 0 1rem;
}
.alt-section {
  background: #fff;
}

/* ===== Timeline (services) ===== */
.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 16px;
}
.t-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.t-ico {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red-soft);
  border: 1px solid #f0dada;
  font-size: 22px;
}
.t-body h3 {
  margin: 0.1rem 0 0.45rem;
}
.t-body p {
  margin: 0;
  color: var(--text);
}
.t-line {
  height: 12px;
  border-left: 2px dashed #e9c7c7;
  margin: 0 0 0 28px;
}
@media (max-width: 899px) {
  .t-item {
    grid-template-columns: 48px 1fr;
  }
  .t-ico {
    width: 48px;
    height: 48px;
  }
  .t-line {
    margin-left: 24px;
  }
}

/* ===== Forms (for future Contact / Rendez-vous) ===== */
.input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.input:focus {
  outline: 2px solid var(--red);
  border-color: var(--red);
}
.label {
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

/* ===== Helpers ===== */
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red-soft);
  border: 1px solid #f0dada;
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.86rem;
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.radius-lg {
  border-radius: var(--radius-lg);
}

/* =============================
   Cabinet — hero variant (clean, modern, not like services band)
   ============================= */
.cab-hero {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 56px;
}
.cab-hero:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    120px 120px at 100% 0%,
    rgba(201, 75, 75, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.cab-hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red-soft), transparent);
  opacity: 0.9;
}
.cab-hero .kicker {
  color: var(--red);
  letter-spacing: 0.12em;
}
.cab-hero h1 {
  border-bottom: 6px solid rgba(201, 75, 75, 0.16);
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.cab-hero .lead {
  max-width: 820px;
}

/* Cabinet hero layout & founder card */
.cab-hero-wrap {
  display: grid;
  gap: 26px;
  align-items: center;
}
@media (min-width: 900px) {
  .cab-hero-wrap {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.founder-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 16px;
}
.founder-card .quote {
  font-style: italic;
  color: #374151;
  margin: 0 0 0.6rem;
}
.founder-card .sig {
  font-weight: 800;
}
.founder-card .sig span {
  display: block;
  font-weight: 600;
  color: var(--muted);
}

/* Micro‑refinements (global aesthetic) */
h2 + .grid,
h2 + p {
  margin-top: 0.4rem;
}
.card h3 {
  letter-spacing: 0.2px;
}
.badge .ico {
  box-shadow: var(--shadow-sm);
}
.band {
  box-shadow: var(--shadow-lg);
}
.social a {
  transition: border-color 0.2s ease, transform 0.08s ease,
    background-color 0.2s ease;
}
.social a:hover {
  background-color: var(--red-soft);
}

/* =====================================================
   PRO POLISH OVERRIDES — ultra pro & clean
   (Appended so they override previous rules safely)
   ===================================================== */

/* 1) Typography tuning */
:root {
  --lh-tight: 1.2; /* for headings */
  --lh-normal: 1.65; /* body */
}
body {
  line-height: var(--lh-normal);
}
h1,
h2,
h3 {
  letter-spacing: -0.01em;
}
h1 {
  line-height: var(--lh-tight);
}
h2 {
  line-height: 1.22;
}
h3 {
  line-height: 1.28;
}
.lead {
  font-weight: 500;
}

/* Optional measure helper for long paragraphs (future‑proof) */
.prose {
  max-width: 72ch;
}

/* 2) Container rhythm & section spacing on small screens */
@media (max-width: 480px) {
  .container {
    padding: 0 22px;
  }
  .section {
    padding: 64px 0;
  }
}

/* 3) Buttons — micro‑interaction & unified focus ring */
.btn {
  will-change: transform, filter, box-shadow;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 3px solid rgba(201, 75, 75, 0.55);
  outline-offset: 2px;
}
.btn-ghost {
  backdrop-filter: saturate(120%);
}

/* 4) Cards — subtle border & lift */
.card {
  border-color: #e9ecef;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}
.card h3 {
  font-weight: 800;
}

/* 5) Lists — vertical rhythm */
.card ul {
  margin-top: 0.2rem;
}
.card li {
  margin: 0.35rem 0;
}

/* 6) FAQ details — clearer affordance */
.faq details {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq details[open] {
  box-shadow: var(--shadow);
  border-color: #e8d0d0;
}
.faq summary {
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "▾";
  float: right;
  opacity: 0.6;
}
.faq details[open] summary:after {
  transform: rotate(180deg);
}

/* 7) Timeline refinements */
.t-ico {
  box-shadow: var(--shadow-sm);
}
.t-line {
  border-left: 2px dashed #e3bdbd;
}

/* 8) Video cards — hover */
.video-card {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 9) Price hero & tag — crisper scale if present */
.price-tag .amount {
  letter-spacing: -0.01em;
}
.price-card .list-check {
  margin-top: 0.4rem;
}

/* 10) Forms — focus with label highlight */
.label:has(.input:focus) {
  color: var(--red-dark);
}
.input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus {
  box-shadow: 0 0 0 4px rgba(201, 75, 75, 0.12);
}

/* 11) Footer — calmer spacing and hover */
.footer-wrap {
  padding: 52px 0;
}
.footer-cols a {
  transition: color 0.2s ease;
}
.social a {
  box-shadow: var(--shadow-sm);
}

/* 12) Cabinet hero — tone down halo on very small screens */
@media (max-width: 520px) {
  .cab-hero:after {
    width: 120px;
    height: 120px;
    opacity: 0.7;
  }
}

/* 13) Accessible focus for all interactive elements */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.input:focus-visible {
  outline: 3px solid rgba(201, 75, 75, 0.45);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ===== Contact polish — épuré & lisible ===== */
/* 1) Grilles : plus d’air sur desktop, compact sur mobile */
@media (max-width: 680px) {
  .grid {
    gap: 18px;
  }
}
@media (min-width: 1000px) {
  .grid {
    gap: 30px;
  }
}

/* 2) Cartes : ombres plus fines et hover plus doux */
.card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

/* 3) Formulaire : rythme vertical & champs confortables */
form.card .label {
  margin-bottom: 8px;
}
form.card .label + .label {
  margin-top: 8px;
}
.input {
  border-radius: 14px;
}
textarea.input {
  min-height: 140px;
}

/* ===== Rendez-vous — polish & unification ===== */
/* Pills container */
.pill-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* Pill button */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease;
}
.pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.pill-btn[aria-pressed="true"] {
  background: var(--red-soft);
  border-color: #f0dada;
  color: var(--red-dark);
}
.pill-btn:focus-visible {
  outline: 3px solid rgba(201, 75, 75, 0.45);
  outline-offset: 2px;
}

/* Calendar iframe wrapper */
.iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.iframe-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fafafa, #f3f4f6);
  opacity: 0; /* shimmer disabled by default to avoid overlay */
  pointer-events: none; /* never block clicks */
}
.iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Hide skeleton once iframe has loaded (best-effort) */
.iframe-wrap iframe:is([src*="http"]) + .skeleton {
  display: none;
}
@keyframes shimmer {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}

/* Section spacing refinements specifically around the calendar */
#villes-wrap + .spacer {
  height: 18px;
}
#cal-wrap h2 {
  margin-bottom: 0.6rem;
}

/* Small devices: tighten pills and grids */
@media (max-width: 520px) {
  .pill-btn {
    padding: 9px 12px;
  }
}

/* ===== Final polish (spacing & responsiveness) ===== */
@media (max-width: 900px) {
  .cab-hero {
    padding-top: 48px;
    padding-bottom: 44px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: clamp(1.9rem, 6.2vw, 2.2rem);
  }
  .btn {
    padding: 11px 16px;
  }
}
/* Ensure reservation calendar has comfortable height */
.iframe-wrap {
  min-height: 520px;
}
@media (min-width: 900px) {
  .iframe-wrap {
    min-height: 620px;
  }
}
/* Minor heading rhythm inside bands */
.band h3 {
  line-height: 1.25;
}

/* =====================================================
   Responsive suite — desktop / tablet / mobile (HTML intact)
   ===================================================== */

/* Header/navigation wraps cleanly on small screens */
@media (max-width: 920px) {
  header .nav {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding: 10px 0;
  }
  header .brand {
    flex: 1 1 100%;
  }
  header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  header nav a {
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  header nav {
    gap: 10px;
  }
  header nav .btn {
    width: 100%;
  }
}

/* Containers & sections tighter on phones */
@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 52px 0;
  }
  .section-tight {
    padding: 32px 0;
  }
}

/* Any two‑column blocks collapse nicely */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
  }
  .hero-wrap {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
}

/* Badges/stats rows: 4 → 2 → 1 */
@media (max-width: 780px) {
  .badges {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .badges {
    grid-template-columns: 1fr;
  }
}

/* Video & testimonial grids: keep readable */
@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .testi {
    grid-template-columns: 1fr;
  }
}

/* Forms: full‑width inputs on small screens */
@media (max-width: 560px) {
  .h-stack {
    gap: 12px;
  }
  .btn {
    width: 100%;
  }
}

/* iFrame reservation: ensure visibility on very small screens */
@media (max-width: 520px) {
  .iframe-wrap {
    min-height: 480px;
    aspect-ratio: auto;
  }
}

/* =====================================================
   Mobile Navigation (hamburger + drawer)
   ===================================================== */
.nav-toggle {
  display: none;
}
@media (max-width: 920px) {
  /* Toggle button */
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
  }
  .nav-toggle:focus-visible {
    outline: 3px solid rgba(201, 75, 75, 0.45);
    outline-offset: 2px;
  }
  /* Header layout tweak */
  header .nav {
    gap: 10px;
  }
  /* Drawer */
  .site-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: #fff;
    padding: 18px 22px;
    display: none;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--border);
    z-index: 49;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    margin-left: 0;
    font-size: 1.05rem;
  }
  .site-nav .btn {
    width: 100%;
  }
  body.nav-open {
    overflow: hidden;
  }
}

/* ===== Index hero — solid white + clean separation from stats ===== */
.hero {
  background: #fff !important;
  position: relative;
}
.hero.section {
  padding-bottom: 88px;
} /* air sous les CTA */
.stats-band {
  margin-top: 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  background: var(--red-soft);
}

/* Stats typography fine‑tune */
.badges-pro .badge strong {
  font-size: 2rem;
}
.badges-pro .badge small {
  font-size: 0.95rem;
}
/* === NAV MOBILE — forcer tiroir vertical, corriger conflit d'affichage === */
@media (min-width: 921px) {
  /* Desktop : nav inline et bouton masqué */
  .nav-toggle {
    display: none !important;
  }
  .site-nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    inset: auto;
  }
  .site-nav a {
    margin-left: 18px;
  } /* ton style desktop habituel */
  .site-nav .btn {
    width: auto;
  }
}

@media (max-width: 920px) {
  /* Cache la nav par défaut (même si un autre sélecteur met display:flex) */
  .site-nav {
    position: fixed !important;
    inset: 72px 0 0 0;
    display: none !important; /* ← clé : force le masquage tant que .open n'est pas là */
    flex-direction: column;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 49;
  }
  /* Ouverte par le JS (.open) */
  .site-nav.open {
    display: flex !important; /* ← clé : s’affiche verticalement quand ouvert */
  }
  /* Liens en colonne, confortables */
  .site-nav a {
    margin: 0;
    padding: 10px 2px;
    font-size: 1.05rem;
    font-weight: 800;
    border-bottom: 1px solid #f3f4f6;
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .site-nav .btn {
    width: 100%;
    margin-top: 6px;
  }

  /* Bouton hamburger visible sur mobile */
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
  }

  /* Bloque le scroll quand le menu est ouvert (le JS ajoute .nav-open au body) */
  body.nav-open {
    overflow: hidden;
  }
}
/* ===== Hamburger icon (CSS-only, no HTML change) ===== */
.nav-toggle {
  position: relative;
  color: transparent; /* cache le caractère ☰ */
  background-image: linear-gradient(
    var(--red) 0 2px,
    transparent 2px 8px,
    var(--red) 8px 10px,
    transparent 10px 16px,
    var(--red) 16px 18px
  ); /* 3 barres */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 18px;
  transition: transform 0.12s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: #e9d1d1;
}

/* État ouvert : on remplace les 3 barres par une croix (X) */
.nav-toggle[aria-expanded="true"] {
  background-image: none;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--red);
  transform-origin: 50% 50%;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0; /* caché par défaut */
}
.nav-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"]::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Accessibilité : focus visible */
.nav-toggle:focus-visible {
  outline: 3px solid rgba(201, 75, 75, 0.45);
  outline-offset: 2px;
}

/* Optionnel : légère teinte au survol quand le menu est ouvert */
.nav-toggle[aria-expanded="true"]:hover {
  filter: brightness(1.05);
}

/* ===== Mobile header — logo à gauche, hamburger à droite ===== */
@media (max-width: 920px) {
  header {
    background: #fff;
  }
  header .nav {
    height: 64px;
    padding: 8px 0;
    gap: 0;
    justify-content: space-between;
  }
  .brand {
    display: flex;
    align-items: center;
  }
  .brand img {
    height: 36px;
  }
  /* masquage forcé de la nav desktop si un style conflictuel la montre */
  #site-nav {
    display: none !important;
  }
  /* bouton à droite */
  .nav-toggle {
    margin-left: auto;
  }
}

/* ===== Mobile header alignment + bigger logo + centered promo ===== */
@media (max-width: 920px) {
  header .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 64px;
    padding: 6px 0;
  }
  .brand {
    grid-column: 2;
    justify-self: center;
  }
  .brand img {
    height: 48px;
  } /* bigger logo on mobile */
  .promo-offer {
    display: none;
    /* The rest of the rules are kept for desktop or future use */
    justify-self: center;
    font-weight: 900;
    color: var(--red);
    background: var(--red-soft);
    border: 1px solid #f0dada;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    max-width: 70vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    margin-right: 12px;
  }
}

/* Desktop: optional subtle promo centered below or hide (we keep it visible inline) */
@media (min-width: 921px) {
  .promo-offer {
    margin-left: 12px;
    font-weight: 800;
    color: var(--red);
  }
}

/* ===== Footer mobile padding — balanced left/right ===== */
@media (max-width: 920px) {
  footer .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 560px) {
  footer .container {
    padding-left: 26px;
    padding-right: 26px;
  }
}
