/* ============================================
   REFLET ROUX — Lavage de vitres | Estrie
   Feuille de style globale
   ============================================ */

:root {
  /* Couleurs */
  --rr-orange:        #D4622A;
  --rr-orange-light:  #E8835A;
  --rr-orange-deep:   #B24E1E;
  --rr-brown:         #2C1A0E;
  --rr-brown-mid:     #5C3D2E;
  --rr-cream:         #F5EFE6;
  --rr-cream-dark:    #EAE0D2;
  --rr-gold:          #C9A84C;

  /* Typographie */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-size-base: 16px;

  /* Espacement */
  --section-padding: 84px 0;
  --container-max: 1200px;
  --gap-standard: 2rem;

  /* Transitions */
  --transition-base: 0.2s ease;
  --transition-slow: 0.5s ease;

  /* Ombres */
  --shadow-card: 0 4px 24px rgba(44, 26, 14, 0.13);
  --shadow-card-hover: 0 12px 44px rgba(44, 26, 14, 0.24);
  --shadow-btn: 0 6px 20px rgba(212, 98, 42, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: var(--font-size-base); scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--rr-cream);
  color: var(--rr-brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--rr-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); }
.section--cream { background: var(--rr-cream); }
.section--cream-dark { background: var(--rr-cream-dark); }
.section--brown { background: var(--rr-brown); color: var(--rr-cream); }
.section--brown .section-title { color: var(--rr-cream); }

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rr-orange);
  margin-bottom: 18px;
}
.section--brown .label { color: var(--rr-orange-light); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: var(--rr-brown);
  margin-bottom: 20px;
}
.section-intro {
  max-width: 680px;
  font-size: 1.05rem;
  color: var(--rr-brown-mid);
  margin-bottom: 52px;
}
.section--brown .section-intro { color: rgba(245, 239, 230, 0.78); }
.section-head { margin-bottom: 4px; }
.section-head--center { text-align: center; }
.section-head--center .section-intro { margin-left: auto; margin-right: auto; }

.text-orange { color: var(--rr-orange); }

/* ---------- Boutons ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}
.btn-primary { background: var(--rr-orange); color: var(--rr-cream); }
.btn-primary:hover { background: var(--rr-orange-light); transform: translateY(-2px); box-shadow: var(--shadow-btn); }
.btn-secondary { background: transparent; color: var(--rr-cream); border: 2px solid var(--rr-orange); padding: 13px 30px; }
.btn-secondary:hover { background: var(--rr-orange); transform: translateY(-2px); box-shadow: var(--shadow-btn); }
.btn-secondary--dark { color: var(--rr-brown); }
.btn-secondary--dark:hover { color: var(--rr-cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(44, 26, 14, 0.94) 0%, rgba(92, 61, 46, 0.88) 100%),
    radial-gradient(circle at 78% 32%, rgba(212, 98, 42, 0.35) 0%, transparent 55%);
  background-color: var(--rr-brown);
  color: var(--rr-cream);
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero::after {
  /* reflet de vitre en diagonale */
  content: '';
  position: absolute;
  top: -40%; right: -12%;
  width: 62%; height: 190%;
  background: linear-gradient(105deg, transparent 42%, rgba(245, 239, 230, 0.05) 48%, rgba(245, 239, 230, 0.11) 52%, transparent 58%);
  transform: rotate(8deg);
  pointer-events: none;
}
.hero--page { min-height: auto; padding: 175px 0 90px; }
.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.3rem, 6.2vw, 4.3rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero--page h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
.hero p.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: rgba(245, 239, 230, 0.85);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

/* ---------- Fil d'Ariane ---------- */
.breadcrumb {
  position: relative; z-index: 2;
  font-size: 13px;
  color: rgba(245, 239, 230, 0.6);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--rr-orange-light); }
.breadcrumb span { margin: 0 8px; }

/* ---------- Grilles de cartes ---------- */
.grid { display: grid; gap: var(--gap-standard); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: var(--rr-cream);
  border: 1px solid rgba(92, 61, 46, 0.13);
  border-top: 3px solid transparent;
  border-radius: 5px;
  padding: 38px 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}
.section--cream .card { background: #FBF7F1; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-top-color: var(--rr-orange); }
.card-icon { margin-bottom: 20px; color: var(--rr-orange); }
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.card p { color: var(--rr-brown-mid); font-size: 0.97rem; }
.card ul { margin-top: 16px; }
.card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 0.94rem;
  color: var(--rr-brown-mid);
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--rr-orange);
  border-radius: 50%;
}
.card-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rr-orange);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}
.card-link:hover { border-bottom-color: var(--rr-orange); }

/* ---------- Avantages ---------- */
.perk { text-align: left; }
.perk-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid rgba(212, 98, 42, 0.45);
  border-radius: 50%;
  color: var(--rr-orange-light);
  margin-bottom: 20px;
}
.perk h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--rr-cream);
}
.perk p { font-size: 0.95rem; color: rgba(245, 239, 230, 0.72); }

/* ---------- Étapes ---------- */
.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 58px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--rr-orange);
  color: var(--rr-cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
}
.step h3 { font-family: var(--font-heading); font-size: 1.22rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--rr-brown-mid); }

/* ---------- Contenu texte long ---------- */
.prose { max-width: 760px; }
.prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 44px 0 16px;
  line-height: 1.2;
}
.prose h3 { font-family: var(--font-heading); font-size: 1.28rem; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--rr-brown-mid); }
.prose ul { margin: 0 0 20px; }
.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--rr-brown-mid);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--rr-orange);
  border-radius: 50%;
}
.prose a { color: var(--rr-orange-deep); border-bottom: 1px solid rgba(178, 78, 30, 0.4); }
.prose a:hover { border-bottom-color: var(--rr-orange-deep); }
.prose strong { color: var(--rr-brown); font-weight: 600; }

/* ---------- Témoignages ---------- */
.quote {
  background: #FBF7F1;
  border-left: 3px solid var(--rr-orange);
  border-radius: 4px;
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.stars { color: var(--rr-gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.quote p { font-size: 1rem; color: var(--rr-brown-mid); font-style: italic; margin-bottom: 18px; }
.quote cite { font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--rr-brown); display: block; }
.quote cite span { display: block; font-weight: 400; color: var(--rr-brown-mid); font-size: 0.83rem; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid rgba(92, 61, 46, 0.18);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--rr-orange);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.faq details[open] summary::after { content: '\2013'; }
.faq details p { margin-top: 13px; color: var(--rr-brown-mid); font-size: 0.98rem; }

/* ---------- Formulaire ---------- */
.form-wrap {
  background: rgba(245, 239, 230, 0.06);
  border: 1px solid rgba(212, 98, 42, 0.28);
  border-radius: 6px;
  padding: 38px 34px;
}
.form-row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245, 239, 230, 0.75); }
.field input, .field select, .field textarea {
  background: rgba(44, 26, 14, 0.45);
  border: 1px solid rgba(245, 239, 230, 0.22);
  border-radius: 4px;
  padding: 13px 15px;
  color: var(--rr-cream);
  font-size: 15px;
  transition: border-color var(--transition-base);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245, 239, 230, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rr-orange); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field select option { background: var(--rr-brown); color: var(--rr-cream); }
.form-note { font-size: 13px; color: rgba(245, 239, 230, 0.6); margin-top: 16px; }
.form-status { margin-top: 16px; font-size: 15px; font-weight: 500; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #8FCB8F; }
.form-status.is-error { color: var(--rr-orange-light); }

/* ---------- Bloc contact ---------- */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr 1.15fr; align-items: start; }
.contact-info h2 { font-family: var(--font-heading); font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 18px; line-height: 1.15; }
.contact-info > p { color: rgba(245, 239, 230, 0.78); margin-bottom: 30px; }
.contact-line { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-line svg { color: var(--rr-orange); flex-shrink: 0; }
.contact-line a, .contact-line span { color: var(--rr-cream); font-size: 1.02rem; }
.contact-line a:hover { color: var(--rr-orange-light); }
.contact-line strong { display: block; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 239, 230, 0.55); font-weight: 600; }
.cta-band .btn-primary { background: var(--rr-brown); }
.cta-band .btn-primary:hover { background: #1D1008; box-shadow: 0 6px 20px rgba(44, 26, 14, 0.4); }

/* ---------- Pied de page ---------- */
.site-footer { background: #1D1008; color: rgba(245, 239, 230, 0.72); padding: 68px 0 28px; font-size: 0.93rem; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; margin-bottom: 46px; }
.footer-brand img { height: 62px; width: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 280px; }
.site-footer .footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rr-orange-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--rr-orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
}

/* ---------- Barre d'appel mobile ---------- */
.mobile-bar { display: none; }

/* ---------- Animations au défilement ---------- */
.reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal--up    { transform: translateY(34px); }
.reveal--left  { transform: translateX(-38px); }
.reveal--right { transform: translateX(38px); }
.reveal--zoom  { transform: scale(0.965); }
.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }

/* Barre de progression du défilement */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--rr-orange);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 1100;
  pointer-events: none;
}

/* Le hero flotte doucement au défilement */
.hero-art { transition: transform 0.1s linear; }

/* Boutons et cartes : réactions plus vivantes */
.btn-primary, .btn-secondary { transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s ease; }
.btn-primary:active, .btn-secondary:active { transform: translateY(0) scale(0.98); }
.card, .plan, .quote { transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, border-color 0.2s ease; }
.faq summary { transition: color 0.2s ease; }
.faq summary:hover { color: var(--rr-orange-deep); }
.section--brown .faq summary:hover { color: var(--rr-orange-light); }
.faq details[open] summary::after { transform: rotate(180deg); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-progress { display: none; }
  .hero-art { transform: none !important; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 68px 0; }
  .hero { min-height: auto; padding: 128px 0 76px; }
  .hero--page { padding: 128px 0 66px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .card { padding: 30px 24px; }
  .form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  body { padding-bottom: 92px; }

  /* Barre d'action flottante : deux vraies tuiles, pas deux bandes plates */
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 9px;
    position: fixed;
    bottom: 14px; left: 14px; right: 14px;
    z-index: 999;
    padding: 9px;
    border-radius: 22px;
    background: rgba(29, 16, 8, 0.9);
    border: 1px solid rgba(212, 98, 42, 0.32);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 12px 40px rgba(20, 11, 5, 0.48);
  }
  .bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 10px;
    border-radius: 15px;
    transition: transform 0.18s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.18s ease;
  }
  .bar-btn:active { transform: scale(0.97); filter: brightness(1.08); }
  .bar-btn svg { flex-shrink: 0; }
  .bar-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
  .bar-txt strong { font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; }
  .bar-txt small { font-size: 11px; opacity: 0.72; margin-top: 2px; }

  .bar-call {
    background: rgba(245, 239, 230, 0.1);
    border: 1px solid rgba(245, 239, 230, 0.2);
    color: var(--rr-cream);
  }
  .bar-call svg { color: var(--rr-orange-light); }
  .bar-quote {
    background: var(--rr-orange);
    color: var(--rr-cream);
    box-shadow: 0 5px 16px rgba(212, 98, 42, 0.38);
  }
}

@media (max-width: 360px) {
  .bar-txt small { display: none; }
  .bar-txt strong { font-size: 13.5px; }
}

@media print {
  .site-header, .mobile-bar, .cta-band { display: none; }
}

/* ============================================================
   COMPOSANTS AVANCÉS — v2
   ============================================================ */

/* ---------- Hero v2 ---------- */
.hero-v2 {
  position: relative;
  background:
    radial-gradient(ellipse at 74% 18%, rgba(212, 98, 42, 0.28) 0%, transparent 58%),
    linear-gradient(150deg, #2C1A0E 0%, #43291A 55%, #2C1A0E 100%);
  color: var(--rr-cream);
  padding: 150px 0 84px;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 55%; height: 170%;
  background: linear-gradient(102deg, transparent 44%, rgba(245, 239, 230, 0.045) 49%, rgba(245, 239, 230, 0.09) 51%, transparent 56%);
  transform: rotate(7deg);
  pointer-events: none;
}
.hero-v2 .container { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(212, 98, 42, 0.5);
  background: rgba(212, 98, 42, 0.1);
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 239, 230, 0.92);
}
.badge svg { color: var(--rr-orange-light); }
.badge--gold { border-color: rgba(201, 168, 76, 0.55); background: rgba(201, 168, 76, 0.12); }
.badge--gold svg, .badge--gold .topbar-stars { color: var(--rr-gold); }

.hero-v2 h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-v2 h1 em { font-style: normal; color: var(--rr-orange-light); }
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: rgba(245, 239, 230, 0.82);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-checks { display: grid; gap: 11px; margin-bottom: 32px; }
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: rgba(245, 239, 230, 0.86);
}
.hero-checks svg { flex-shrink: 0; margin-top: 3px; color: var(--rr-orange); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.42)); }

/* ---------- Bande de statistiques ---------- */
.stats-band { background: var(--rr-cream-dark); border-bottom: 1px solid rgba(92, 61, 46, 0.12); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  padding: 38px 0;
}
.stat { text-align: center; padding: 6px 14px; border-right: 1px solid rgba(92, 61, 46, 0.16); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--rr-orange-deep);
  display: block;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rr-brown-mid);
  font-weight: 500;
}

/* ---------- Slider avant / après ---------- */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.ba {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: var(--rr-brown);
  isolation: isolate;
}
.ba-pane { display: block; width: 100%; height: auto; }
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  clip-path: inset(0 0 0 50%);
}
.ba-after svg { width: 100%; height: 100%; display: block; }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--rr-cream);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--rr-orange);
  border: 3px solid var(--rr-cream);
  display: grid;
  place-items: center;
  color: var(--rr-cream);
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 46px; height: 999px; border: none; background: transparent; cursor: ew-resize; }
.ba-range:focus-visible + .ba-line { background: var(--rr-orange-light); width: 5px; }
.ba-tag {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  padding: 5px 13px;
  border-radius: 40px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(29, 16, 8, 0.82);
  color: var(--rr-cream);
  pointer-events: none;
}
.ba-tag--l { left: 14px; }
.ba-tag--r { right: 14px; }
.plan .btn-primary, .plan .btn-secondary { width: 100%; }

/* ---------- Carte de zone ---------- */
.map-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.map-svg { width: 100%; height: auto; display: block; }
.map-city { cursor: pointer; }
.map-city circle { transition: all var(--transition-base); }
.map-city:hover circle.dot { r: 9; fill: var(--rr-orange-light); }
.map-city:hover text { fill: var(--rr-cream); }
.map-city:focus-visible { outline: 3px solid var(--rr-orange); outline-offset: 2px; }

/* ---------- Sceau de garantie ---------- */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  background: rgba(245, 239, 230, 0.05);
  border: 1px solid rgba(212, 98, 42, 0.32);
  border-radius: 8px;
  padding: 38px 40px;
}
.guarantee h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.05rem); margin-bottom: 12px; }
.guarantee p { color: rgba(245, 239, 230, 0.78); max-width: 640px; }
.seal { flex-shrink: 0; }
.reviews-meta .stars { margin-bottom: 3px; }

/* ---------- Responsive v2 ---------- */
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 520px; margin: 0 auto; }
  .ba-wrap, .map-wrap { grid-template-columns: 1fr; gap: 34px; }
  .calc { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; gap: 22px; text-align: left; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; padding: 6px 16px; gap: 10px; }
  .topbar-trust { gap: 14px; justify-content: center; font-size: 12px; }
  .topbar-trust .hide-sm { display: none; }
  .hero-v2 { padding: 120px 0 62px; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; }
  .stat { border-right: none; border-bottom: 1px solid rgba(92, 61, 46, 0.14); padding: 16px 8px; }
  .stat:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .guarantee { padding: 28px 24px; }
  .plan--featured { margin-top: 14px; }
}

/* ---------- Ajustements liés à l'en-tête collant ---------- */
/* Avec le bandeau, l'en-tête est dans le flux : moins de rembourrage en tête de page. */

@media (max-width: 768px) {
        }

/* ---------- Rangée d'avantages intégrée aux services ---------- */
.perks-strip {
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid rgba(92, 61, 46, 0.16);
}
.perks-strip .label { color: var(--rr-orange-deep); margin-bottom: 26px; }
.perks-strip .perk-icon {
  width: 46px; height: 46px;
  border-color: rgba(212, 98, 42, 0.45);
  color: var(--rr-orange);
  margin-bottom: 14px;
}
.perks-strip .perk h3 { color: var(--rr-brown); font-size: 1.08rem; margin-bottom: 7px; }
.perks-strip .perk p { color: var(--rr-brown-mid); font-size: 0.91rem; }

/* ---------- Garantie compacte ---------- */
.guarantee--slim {
  margin-top: 50px;
  padding: 26px 30px;
  gap: 26px;
}
.guarantee--slim h2 { font-size: clamp(1.22rem, 2.4vw, 1.6rem); margin-bottom: 7px; }
.guarantee--slim p { font-size: 0.96rem; }

@media (max-width: 768px) {
  .perks-strip { margin-top: 38px; padding-top: 32px; }
  .guarantee--slim { margin-top: 34px; padding: 22px 20px; }
}

/* ---------- Liens secondaires du hero ---------- */
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
}
.hero-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--rr-orange-light);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}
.hero-links a::before { content: '→'; margin-right: 7px; opacity: 0.7; }
.hero-links a:hover { border-bottom-color: var(--rr-orange-light); }

/* ============================================================
   AFFINAGE v3 — plus simple, plus aéré
   ============================================================ */

/* Chiffres intégrés au bas du hero, plutôt qu'une bande séparée */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 66px;
  padding-top: 34px;
  border-top: 1px solid rgba(245, 239, 230, 0.13);
}
.hero-stats .stat { text-align: left; padding: 0 20px 0 0; border-right: 1px solid rgba(245, 239, 230, 0.1); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat-num { color: var(--rr-orange-light); font-size: clamp(1.7rem, 2.8vw, 2.25rem); }
.hero-stats .stat-label { color: rgba(245, 239, 230, 0.55); font-size: 11.5px; margin-top: 6px; }

/* Renvoi sous la FAQ */
.faq-more { margin-top: 28px; font-size: 15px; color: var(--rr-brown-mid); }
.faq-more a { color: var(--rr-orange-deep); border-bottom: 1px solid rgba(178, 78, 30, 0.4); }
.faq-more a:hover { border-bottom-color: var(--rr-orange-deep); }

/* Titres un peu plus serrés — meilleur rendu de Playfair en grande taille */
.hero-v2 h1, .hero h1 { letter-spacing: -0.015em; }
.section-title { letter-spacing: -0.008em; }

/* Cartes et citations : coins et bordures homogènes */
.card, .quote, .calc, .plan, .reviews-head { border-radius: 6px; }
.quote { border-left-width: 3px; }

/* Liens secondaires : aussi utilisés sur la page 404 */
.hero .hero-links { border-top-color: rgba(245, 239, 230, 0.14); }

@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 8px; margin-top: 46px; padding-top: 28px; }
  .hero-stats .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .hero-stats { margin-top: 38px; }
}

/* ---------- Titres sur deux tons ---------- */
.section-title em, .hero-v2 h1 em, .hero h1 em {
  font-style: normal;
  color: var(--rr-orange);
}
.section--brown .section-title em { color: var(--rr-orange-light); }

/* ---------- Bandeau défilant des villes ---------- */
.marquee-band {
  background: var(--rr-brown);
  border-top: 1px solid rgba(212, 98, 42, 0.18);
  border-bottom: 1px solid rgba(212, 98, 42, 0.18);
  padding: 20px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item a {
  display: inline-block;
  padding: 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: rgba(245, 239, 230, 0.62);
  transition: color 0.2s ease;
}
.marquee-item a:hover { color: var(--rr-orange-light); }
.marquee-dot { color: var(--rr-orange); font-size: 0.85rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Carte Google intégrée ---------- */
.map-embed {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 98, 42, 0.3);
  box-shadow: 0 14px 46px rgba(20, 11, 5, 0.42);
  aspect-ratio: 4 / 3;
  background: #231409;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.28) sepia(0.22) contrast(1.04) brightness(0.94);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(245, 239, 230, 0.62);
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rr-orange);
  flex-shrink: 0;
}
@media (max-width: 700px) { .map-embed { aspect-ratio: 1 / 1; } }

/* ---------- Pied de page : colonne des villes sur deux rangs ---------- */
.footer-villes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.footer-grid { grid-template-columns: 1.1fr 1.3fr 1fr 1.1fr; }

/* Lien vers Google Maps sous la carte */
.map-legend a {
  color: var(--rr-orange-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.map-legend a:hover { border-bottom-color: var(--rr-orange-light); }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-villes { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Pied de page à deux colonnes ---------- */
.footer-grid--2 { grid-template-columns: 1fr 1fr; max-width: 720px; }
@media (max-width: 700px) { .footer-grid--2 { grid-template-columns: 1fr; } }

/* ============================================================
   PASSE « DUPLEX » — arrondis généreux, étiquettes en pastille,
   lueurs douces, entrée échelonnée du hero
   ============================================================ */

/* ---------- Boutons entièrement arrondis ---------- */
.btn-primary, .btn-secondary { border-radius: 999px; padding-left: 30px; padding-right: 30px; }

/* ---------- Étiquettes de section en pastille ---------- */
.label {
  padding: 6px 15px 6px 13px;
  border: 1px solid rgba(212, 98, 42, 0.4);
  background: rgba(212, 98, 42, 0.09);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rr-orange);
  margin-right: 9px;
  vertical-align: 1.5px;
}
.section--brown .label, .hero-v2 .label { background: rgba(212, 98, 42, 0.13); }

/* ---------- Blocs aux coins plus généreux ---------- */
.calc, .ba, .map-embed, .guarantee, .card, .quote, .form-wrap { border-radius: 18px; }
.faq details { border-radius: 0; }

/* ---------- Lueurs douces derrière les sections claires ---------- */
.section--cream, .section--cream-dark { position: relative; overflow: hidden; }
.section--cream::before, .section--cream-dark::before {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 98, 42, 0.09) 0%, transparent 68%);
  pointer-events: none;
}
.section--cream-dark::before { left: -160px; right: auto; top: auto; bottom: -200px; }
.section--cream > .container, .section--cream-dark > .container { position: relative; z-index: 1; }

/* ---------- Titres de section plus imposants ---------- */
.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.08; }
.section-intro { font-size: 1.08rem; }

/* ---------- Entrée échelonnée du hero au chargement ---------- */
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--d) * 0.09s + 0.12s);
}
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero-art {
  opacity: 0;
  animation: artIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.28s forwards;
}
@keyframes artIn { from { opacity: 0; transform: translateY(26px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- Cartes : relief au survol ---------- */
.calc:hover, .ba:hover, .map-embed:hover { box-shadow: 0 18px 60px rgba(20, 11, 5, 0.34); }
.calc, .ba, .map-embed { transition: box-shadow 0.35s ease; }

@media (prefers-reduced-motion: reduce) {
  .hero-in, .hero-art { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 768px) {
  .section--cream::before, .section--cream-dark::before { width: 320px; height: 320px; }
  .calc, .ba, .map-embed, .guarantee, .card, .quote, .form-wrap { border-radius: 14px; }
}

/* ============================================================
   MENU — capsule flottante + tiroir déroulant (mobile ET ordi)
   ============================================================ */

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 2000;
  background: var(--rr-orange);
  color: var(--rr-cream);
  padding: 12px 20px;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

.navbar {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1180px;
  z-index: 1200;
  transition: top 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px 9px 18px;
  border-radius: 999px;
  background: rgba(29, 16, 8, 0.74);
  border: 1px solid rgba(212, 98, 42, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 10px 40px rgba(20, 11, 5, 0.32);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.is-stuck { top: 10px; }
.navbar.is-stuck .navbar-inner {
  background: rgba(29, 16, 8, 0.94);
  box-shadow: 0 14px 46px rgba(20, 11, 5, 0.46);
  padding-top: 7px; padding-bottom: 7px;
}

.navbar-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.02rem;
  color: var(--rr-cream);
  letter-spacing: -0.01em;
}
.navbar-brand img { height: 32px; width: auto; transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1); }
.navbar-brand:hover img { transform: rotate(-7deg) scale(1.06); }

.navbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.navbar-phone {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: rgba(245, 239, 230, 0.8);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.navbar-phone svg { color: var(--rr-orange); }
.navbar-phone:hover { color: var(--rr-cream); background: rgba(245, 239, 230, 0.07); }

.navbar-cta {
  display: inline-flex; align-items: center;
  padding: 11px 22px; border-radius: 999px;
  background: var(--rr-orange); color: var(--rr-cream);
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s ease;
}
.navbar-cta:hover { background: var(--rr-orange-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(212, 98, 42, 0.4); }

/* ---------- Bouton du tiroir, visible sur tous les écrans ---------- */
.navbar-burger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.07);
  color: var(--rr-cream);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.navbar-burger:hover { background: rgba(245, 239, 230, 0.13); border-color: rgba(212, 98, 42, 0.5); }
.navbar-burger-lines { display: flex; flex-direction: column; gap: 5px; }
.navbar-burger-lines span {
  display: block; width: 17px; height: 2px;
  border-radius: 2px; background: var(--rr-cream);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-burger[aria-expanded="true"] .navbar-burger-lines span:first-child { transform: translateY(3.5px) rotate(45deg); }
.navbar-burger[aria-expanded="true"] .navbar-burger-lines span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.navbar-burger-label { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }

/* ---------- Fond assombri ---------- */
.navdrawer-backdrop {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(20, 11, 5, 0.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s;
}
.navdrawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Tiroir déroulant ---------- */
.navdrawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1150;
  background: linear-gradient(168deg, #2C1A0E 0%, #43291A 100%);
  border-bottom: 1px solid rgba(212, 98, 42, 0.3);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 24px 60px rgba(20, 11, 5, 0.5);
  padding: 104px 0 44px;
  overflow-y: auto;
  max-height: 100vh;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.42s;
}
.navdrawer.is-open { visibility: visible; transform: none; }

.navdrawer-inner {
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 56px;
  align-items: start;
}
.navdrawer-col { display: flex; flex-direction: column; }
.navdrawer-eyebrow {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rr-orange);
  margin-bottom: 18px;
}

.navdrawer-links { display: flex; flex-direction: column; }
.navdrawer-links a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 700;
  color: var(--rr-cream);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.2s ease, padding-left 0.25s ease;
  transition-delay: calc(var(--i) * 0.05s + 0.14s);
}
.navdrawer.is-open .navdrawer-links a { opacity: 1; transform: none; }
.navdrawer-links a span {
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rr-orange);
  min-width: 24px;
}
.navdrawer-links a:hover { color: var(--rr-orange-light); padding-left: 10px; }

.navdrawer-col--aside {
  border-left: 1px solid rgba(245, 239, 230, 0.12);
  padding-left: 40px;
}
.navdrawer-tel {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--rr-orange-light);
  margin-bottom: 8px;
}
.navdrawer-tel:hover { color: var(--rr-cream); }
.navdrawer-mail { font-size: 14.5px; color: rgba(245, 239, 230, 0.78); margin-bottom: 18px; word-break: break-all; }
.navdrawer-mail:hover { color: var(--rr-orange-light); }
.navdrawer-note { font-size: 14px; color: rgba(245, 239, 230, 0.55); line-height: 1.6; margin-bottom: 26px; }
.navdrawer-btn { align-self: flex-start; }

body.is-locked { overflow: hidden; }

/* ---------- Décalage du contenu sous la capsule ---------- */
.has-pillnav .hero-v2 { padding-top: 158px; }
.has-pillnav .hero--page { padding-top: 152px; }
.has-pillnav .hero { padding-top: 158px; }
html { scroll-padding-top: 96px; }

@media (max-width: 900px) {
  .navbar { top: 12px; width: calc(100% - 24px); }
  .navbar-phone span, .navbar-cta { display: none; }
  .navbar-burger-label { display: none; }
  .navbar-burger { padding: 12px; }
  .navbar-inner { padding: 8px 8px 8px 16px; }
  .navdrawer { padding: 92px 0 34px; border-radius: 0 0 22px 22px; }
  .navdrawer-inner { grid-template-columns: 1fr; gap: 30px; padding: 0 24px; }
  .navdrawer-col--aside { border-left: none; border-top: 1px solid rgba(245, 239, 230, 0.12); padding-left: 0; padding-top: 26px; }
  .navdrawer-links a { font-size: clamp(1.15rem, 5vw, 1.45rem); padding: 11px 0; }
  .has-pillnav .hero-v2 { padding-top: 112px; }
  .has-pillnav .hero--page { padding-top: 106px; }
  .has-pillnav .hero { padding-top: 112px; }
}

@media (prefers-reduced-motion: reduce) {
  .navdrawer, .navdrawer-links a { transition-duration: 0.01ms; }
}

/* ---------- Question de FAQ visée par une ancre ---------- */
.faq details { scroll-margin-top: 110px; border-radius: 8px; padding-left: 0; transition: background 0.4s ease, padding 0.4s ease; }
.faq details.is-cible {
  background: rgba(212, 98, 42, 0.09);
  padding-left: 16px;
  padding-right: 16px;
}
.faq details p a { color: var(--rr-orange-deep); border-bottom: 1px solid rgba(178, 78, 30, 0.4); }
.faq details p a:hover { border-bottom-color: var(--rr-orange-deep); }

/* ---------- Message de confirmation (copie du numéro) ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 1400;
  max-width: min(92vw, 520px);
  padding: 15px 24px;
  border-radius: 999px;
  background: rgba(29, 16, 8, 0.96);
  border: 1px solid rgba(212, 98, 42, 0.45);
  box-shadow: 0 14px 44px rgba(20, 11, 5, 0.45);
  color: var(--rr-cream);
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.28s;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast--erreur { border-color: rgba(201, 168, 76, 0.5); }

@media (max-width: 768px) { .toast { bottom: 76px; } }
