:root {
  --color-primary: #2F9C99;
  --color-secondary: #8d4f07;
  --color-accent: #B8862F;   /* moutarde des banquettes (etait un orange invente) */
  --color-background: #F7F3EB;
  --color-surface: #FFFDFC;
  --color-text: #1E1E1B;
  --color-text-secondary: #4F4A43;
  --color-muted: #D8CFC0;

  --font-heading: 'Bree Serif', serif;
  --font-body: 'Inter', sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 5rem;
  --space-8: 6rem;

  --radius-button: 999px;
  --radius-card: 18px;
  --shadow-soft: 0 14px 40px rgba(30, 30, 27, 0.08);
  --shadow-card: 0 10px 30px rgba(30, 30, 27, 0.06);
  --container: 1180px;
  --header-height: 5.75rem;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-background);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
section { scroll-margin-top: 7rem; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(216, 207, 192, 0.35) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
  opacity: 0.3;
  z-index: -1;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 2rem), 800px); }

/* navbar "capsule flottante" (style repris de cafe_rio2) : header en creme,
   et la barre elle-meme devient une pilule blanche arrondie avec ombre. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-background);
  padding: 1rem 0;
}
.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid rgba(216, 207, 192, 0.95);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  box-shadow: var(--shadow-card);
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; justify-self: start; }
.brand-img { max-height: 58px; width: auto; }
.brand-txt {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
}
.site-nav { justify-self: center; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}
.nav-list a, .mobile-nav-list a, .footer-links a {
  white-space: nowrap;
}
.nav-list a {
  font-weight: 600;
  color: var(--color-text-secondary);
  position: relative;
}
.nav-list a::after, .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-list a:hover::after, .nav-list a:focus-visible::after, .footer-links a:hover::after, .footer-links a:focus-visible::after {
  transform: scaleX(1);
}
.nav-cta-wrap { justify-self: end; }
.nav-toggle, .drawer-close {
  display: none;
  border: 1px solid rgba(216, 207, 192, 0.95);
  background: var(--color-surface);
  color: var(--color-text);
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  border-radius: var(--radius-button);
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-accent);
  color: white;            
  box-shadow: var(--shadow-card);
}
/* au survol : on FONCE l'orange (comportement attendu) au lieu de basculer vers le
   turquoise de marque -- ce flip de teinte donnait l'impression d'un bouton qui vire au bleu */
.btn-primary:hover, .btn-primary:focus-visible { background: color-mix(in srgb, var(--color-accent) 90%, #000); }
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: rgba(47, 156, 153, 0.1);
}
.btn-full { width: 100%; }

.hero, .services-section, .pricing-section, .about-section, .en-bref-section, .practical-section, .gallery-section, .contact-section, .faq-section, .final-cta, .legal-hero, .legal-content {
  padding: 5rem 0;
}
.section-surface { background: var(--color-surface); }
.section-accent-tint { background: rgba(47, 156, 153, 0.08); }
.section-noise { position: relative; }

.hero-grid, .split-feature, .practical-grid, .contact-grid, .pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.hero-copy { padding-top: 1rem; }
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-secondary);
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  line-height: 1.1;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 14ch; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
.hero-subheadline, .section-lead { font-size: 1.08rem; color: var(--color-text-secondary); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.trust-line {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.trust-line span { color: var(--color-secondary); }
.hero-media img, .feature-media img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  box-shadow: var(--shadow-soft);
}
.signature-frame {
  border: 1px solid rgba(184, 134, 47, 0.38);
  border-radius: calc(var(--radius-card) + 4px);
  padding: 0.5rem;
}

.retro-underline { position: relative; }
.retro-underline::after,
.section-heading h2::after,
.cta-card h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 12px;
  margin-top: 0.75rem;
  background: radial-gradient(circle at 6px 6px, var(--color-accent) 2px, transparent 2px) left bottom/18px 12px repeat-x;
}

.brief-band { padding: 3.5rem 0 2rem; }   /* de l'air entre le hero et le panneau d'intro */
.brief-panel {
  position: relative;
  background: var(--color-surface);
  border: 0;                         /* plus de bordure complete */
  border-radius: var(--radius-card);
  padding: 1.5rem 1.6rem 1.5rem 1.9rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.brief-panel::before {               /* barre d'accent verticale a gauche (style intro/lead) */
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--color-accent);
}
.brief-panel p + p { margin-top: 1rem; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-note { color: var(--color-text-secondary); }

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.card-grid-3 .info-card {
  flex: 0 1 calc((100% - 2rem) / 3);
  min-width: 240px;
}
.info-card, .summary-card, .legal-card {
  background: var(--color-surface);
  border: 1px solid rgba(216, 207, 192, 0.95);
  border-radius: var(--radius-card);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  min-height: 100%;
}
.info-card h3, .summary-card h3 { margin-bottom: 0; }
.price-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.price-pill {
  background: var(--color-surface);
  border: 1px solid rgba(216, 207, 192, 0.95);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: var(--shadow-card);
}
.price-pill span { color: var(--color-text-secondary); }
.price-pill strong { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-primary); }
.feature-list, .contact-points, .footer-links, .footer-contact, .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li, .contact-points li, .footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.feature-list i, .contact-points i, .footer-contact i { color: var(--color-primary); flex-shrink: 0; }

.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.summary-grid-5 .summary-card {
  flex: 0 1 calc((100% - 4rem) / 5);
  min-width: 190px;
}
.summary-card p { margin: 0; color: var(--color-text-secondary); }

.label-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.label-item {
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(216, 207, 192, 0.95);
}
.label-item strong { color: var(--color-secondary); }
.map-card {
  background: var(--color-surface);
  border-radius: calc(var(--radius-card) + 4px);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-card);
}
.practical-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.gallery-shell { position: relative; }
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gallery-nav, .lightbox-nav, .lightbox-close {
  border: 1px solid rgba(216, 207, 192, 0.95);
  background: var(--color-surface);
  color: var(--color-text);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}
.gallery-nav:hover, .gallery-nav:focus-visible, .lightbox-nav:hover, .lightbox-nav:focus-visible, .lightbox-close:hover, .lightbox-close:focus-visible {
  transform: translateY(-2px);
  background: var(--color-primary);
  color: var(--color-surface);
}
.gallery-dots { display: flex; justify-content: center; gap: 0.45rem; flex: 1; }
.gallery-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 0;
  background: rgba(216, 207, 192, 0.95);
}
.gallery-dot[aria-current="true"] { background: var(--color-accent); }
.gallery-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative;
  flex: 0 0 min(80%, 26rem);
  scroll-snap-align: center;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.gallery-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}
.gallery-item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  background: rgba(30, 30, 27, 0.75);
  color: var(--color-surface);
  border: 1px solid rgba(216, 207, 192, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

.contact-panel {
  background: var(--color-primary);
  color: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.contact-panel .eyebrow, .contact-panel .section-lead, .contact-panel p, .contact-panel .contact-points i { color: var(--color-surface); }
.contact-panel .contact-points li { border-bottom: 1px solid rgba(255, 253, 252, 0.2); padding-bottom: 0.85rem; }
.contact-form {
  background: var(--color-surface);
  border: 1px solid rgba(216, 207, 192, 0.95);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.form-row { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
label { font-weight: 600; }
input, textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(216, 207, 192, 0.95);
  background: var(--color-surface);
  color: var(--color-text);
}
input:focus-visible, textarea:focus-visible, .btn:focus-visible, .nav-toggle:focus-visible, .drawer-close:focus-visible, summary:focus-visible, .gallery-open:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
  outline-offset: 2px;
}

.faq-layout { max-width: 860px; margin: 0 auto; }
.faq-list details {
  background: var(--color-surface);
  border: 1px solid rgba(216, 207, 192, 0.95);
  border-radius: var(--radius-card);
  padding: 0;
  box-shadow: var(--shadow-card);
}
.faq-list details + details { margin-top: 1rem; }
.faq-list summary {
  list-style: none;
  padding: 1.2rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 1.25rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--color-text-secondary); }

.cta-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: calc(var(--radius-card) + 4px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.cta-card p { max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-card .hero-actions { justify-content: center; }

.footer-band {
  background: var(--color-primary);
  color: var(--color-surface);
  padding: 2.5rem 0;
}
.footer-band .eyebrow, .footer-band p { color: var(--color-surface); }
.footer-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.site-footer { background: var(--color-text); color: var(--color-surface); }
.footer-main { padding: 3rem 0 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .brand-txt, .footer-tagline, .footer-links a, .footer-contact span, .footer-contact a, .footer-bottom p { color: var(--color-surface); }
.footer-links li + li, .footer-contact li + li { margin-top: 0.75rem; }
.footer-links a { position: relative; }
.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(216, 207, 192, 0.22);
}
.compact-footer { padding-top: 2rem; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(78vw, 360px);
  background: var(--color-surface);
  z-index: 70;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-soft);
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 27, 0.45);
  z-index: 60;
}
.drawer-backdrop[hidden], .mobile-drawer[hidden], .lightbox[hidden] { display: none; }
.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
}
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.drawer-title { font-family: var(--font-heading); font-size: 1.35rem; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-list a { font-size: 1.1rem; font-weight: 700; color: var(--color-text); }
.mobile-cta { margin-top: auto; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(30, 30, 27, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-content {
  max-width: min(92vw, 900px);
  text-align: center;
}
.lightbox-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-card);
}
.lightbox-caption { color: var(--color-surface); margin-top: 1rem; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; }
.lightbox-prev { position: absolute; left: 1rem; }
.lightbox-next { position: absolute; right: 1rem; }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.js-enabled .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav-grid { grid-template-columns: 1fr auto; }
  .site-nav { justify-self: end; }
  .nav-list, .nav-cta-wrap { display: none; }
  .nav-toggle, .drawer-close { display: inline-flex; }
}

@media (max-width: 900px) {
  .hero, .services-section, .pricing-section, .about-section, .en-bref-section, .practical-section, .gallery-section, .contact-section, .faq-section, .final-cta, .legal-hero, .legal-content { padding: 4rem 0; }
  .hero-grid, .split-feature, .practical-grid, .contact-grid, .pricing-layout, .footer-band-inner, .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-grid-3 .info-card, .summary-grid-5 .summary-card { flex: 0 1 calc((100% - 1rem) / 2); }
}

@media (max-width: 640px) {
  :root { --header-height: 5rem; }
  .brand-img { max-height: 48px; }
  /* textes un peu plus petits en mobile (les planchers de clamp restaient gros) */
  h1 { max-width: 100%; font-size: 1.95rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  body { font-size: 0.95rem; }
  .hero-subheadline, .section-lead { font-size: 1rem; }
  .info-card-detail, .trust-line { font-size: 0.9rem; }
  .hero-actions, .practical-actions { flex-direction: column; align-items: stretch; }
  .card-grid-3 .info-card, .summary-grid-5 .summary-card { flex: 1 1 100%; min-width: 0; }
  .price-feature-grid { grid-template-columns: 1fr; }
  .gallery-item { flex-basis: 85%; }
  .label-item { grid-template-columns: 1fr; gap: 0.35rem; }
  .lightbox { padding: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js-enabled .reveal, .js-enabled .reveal.is-visible { opacity: 1; transform: none; }
}
/* ============================================================
   HERO PLEINE IMAGE : la photo passe en FOND de section, le
   texte se superpose. Voile sombre degrade pour la lisibilite
   (thème clair + photo lumineuse => texte force en blanc ici).
   ============================================================ */
.hero-full {
  position: relative;
  padding: 0;
  min-height: min(76vh, 640px);  /* hero un peu moins haut : moins de vide au-dessus */
  display: grid;
  align-items: center;           /* texte remonte au centre vertical (plus bas = trop vide) */
  overflow: hidden;
  isolation: isolate;
}
.hero-full .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-full .hero-bg img {        /* annule le cadre 4/3 / max-height / ombre de .hero-media */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  max-height: none;
  aspect-ratio: auto;
  box-shadow: none;
}
.hero-full::after {              /* scrim : lisibilite du texte sur la photo */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
      rgba(18, 20, 20, 0.28) 0%,
      rgba(18, 20, 20, 0.46) 50%,
      rgba(18, 20, 20, 0.72) 100%);
}
.hero-full .hero-inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero-full .hero-copy {
  padding-top: 0;
  max-width: 44rem;
}
/* texte en clair sur l'image */
.hero-full .eyebrow { color: #ffffff; opacity: 0.92; }
.hero-full h1 { color: #ffffff; max-width: 20ch; }
.hero-full .hero-subheadline { color: rgba(255, 255, 255, 0.92); }
.hero-full .trust-line { color: rgba(255, 255, 255, 0.90); }
.hero-full .trust-line span { color: var(--color-accent); }

@media (max-width: 720px) {
  .hero-full { min-height: min(80vh, 620px); }
  .hero-full .hero-inner { padding-top: 5.5rem; padding-bottom: 2.5rem; }
}


.info-card-featured {
  border-color: color-mix(in srgb, var(--color-accent) 42%, transparent);
  box-shadow: 0 20px 42px rgba(30, 30, 27, 0.10);   
}

.card-badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.22rem 0.66rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: color-mix(in srgb, var(--color-primary) 62%, #000);  /* moutarde FONCEE : lisible sur le tint */
  background: color-mix(in srgb, var(--color-primary) 15%, transparent);
  border-radius: 999px;
}
.info-card-detail {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
/* item "jeux" un peu accentue dans la liste ambiance */
.feature-list-accent span { font-weight: 600; }
.feature-list-accent i { color: var(--color-accent); }

/* icone propre a chaque carte de la section Carte (turquoise = couleur signature).
   Placee en HAUT A DROITE : le titre occupe toute la largeur, plus de vide a droite. */
.info-card { position: relative; }
.card-icon {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 30px; 
  height: 30px;
  color: var(--color-secondary);
  stroke-width: 1.75;
}
.info-card h3 { padding-right: 2.6rem; }   /* reserve la place de l'icone en haut a droite */

/* ============================================================
   CTA WhatsApp flottant (fixe, bas-droite). Pilule verte qui
   s'ouvre au survol pour reveler le label ; icone seule sinon.
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.85rem;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
  transition: transform var(--transition), box-shadow var(--transition), gap var(--transition), padding var(--transition);
}
.wa-fab:hover, .wa-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.52);
  gap: 0.5rem;
  padding-right: 1.2rem;
  outline: none;
}
.wa-fab svg { display: block; flex-shrink: 0; }
.wa-fab-label {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width var(--transition);
}
.wa-fab:hover .wa-fab-label, .wa-fab:focus-visible .wa-fab-label { max-width: 12rem; }

/* 2e CTA du hero : bouton fantome BLANC (lisible sur la photo, contrairement au turquoise) */
.hero-full .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}
.hero-full .btn-secondary:hover, .hero-full .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
}
