/* =========
   Variables
   ========= */
:root {
  --bg: #f3ebde; /* beige doux (fond) */
  --paper: #fffaf2; /* carte claire */
  --ink: #1f2630; /* texte principal */
  --muted: #5c6773; /* texte secondaire */
  --green: #2d6a4f; /* accents verts (nature) */
  --green-hover: #184a34; /* vert au survol (plus contrasté) */
  --teal: #4aa3a4; /* bleu-vert (charte illu) */
  --teal-hover: #2c7c7d; /* teal au survol (plus contrasté) */
  --orange: #e98d3f; /* petit accent chaleureux */
  --orange-hover: #d77f34; /* orange au survol */
  --ring: rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --shadow: 0 6px 24px rgba(28, 44, 64, 0.1);
  --header-offset: 80px; /* marge pour le header sticky */
}

/* =========
   Reset doux
   ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--ink);
  background: radial-gradient(1200px 800px at 20% -10%, #fff 0%, var(--bg) 60%);
  line-height: 1.65;
}
html {
  scroll-behavior: smooth; /* défilement fluide */
  scroll-padding-top: var(--header-offset); /* évite d’être caché sous le header */
}

/* Garantit un décalage confortable pour les ancres de sections */
#contenu,
#services,
#apropos,
#lieux,
#avis,
#faq {
  scroll-margin-top: var(--header-offset);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--teal);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease,
    box-shadow 160ms ease;
}
a:not(.btn):hover {
  text-decoration: none; /* jamais de soulignement */
  color: var(--teal);
  background: rgba(74, 163, 164, 0.08); /* léger fond teal */
  border-radius: 8px;
}
.nowrap {
  white-space: nowrap;
}

.wrap {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Accessibilité */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* =========
   Header
   ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--ring);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative; /* positionner le dropdown */
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--ink);
}
.brand-mark {
  font-size: 1.5rem;
}
.brand-text em {
  font-family: "Alfa Slab One", serif;
  font-style: normal;
  color: var(--green);
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav a:not(.btn) {
  font-weight: 600;
  color: var(--ink);
  opacity: 0.9;
  padding: 0.35rem 0.6rem; /* espace pour un joli rectangle */
  border-radius: 10px;
}
.nav a:not(.btn):hover {
  opacity: 1;
  background: rgba(74, 163, 164, 0.12);
  color: var(--teal);
  text-decoration: none;
}

/* Boutons */
.btn {
  --bg-btn: var(--green);
  --bg-btn-hover: var(--green-hover);
  --fg-btn: #fff;
  display: inline-block;
  white-space: nowrap;
  background: var(--bg-btn);
  color: var(--fg-btn);
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 18px rgba(45, 106, 79, 0.22);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: background-color 180ms ease, box-shadow 180ms ease,
    transform 120ms ease;
}
.btn--icon {
  padding: 0.6rem 0.8rem; /* compact, mais ok pour icône + texte */
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap; /* garde icône + texte sur une ligne */
}
.btn--icon svg {
  display: block;
  width: 22px;
  height: 22px;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12), 0 10px 22px rgba(0, 0, 0, 0.22);
  text-decoration: none; /* pas de soulignement */
  background: var(--bg-btn-hover); /* couleur change au survol */
}
.btn:active {
  transform: translateY(0);
}
.btn--alt {
  --bg-btn: var(--teal);
  --bg-btn-hover: var(--teal-hover);
}
/* Règles explicites pour garantir la différence visuelle entre les 2 CTA */
.btn:not(.btn--alt):hover {
  background: var(--green-hover);
}
.btn.btn--alt {
  background: var(--teal);
}
.btn.btn--alt:hover {
  background: var(--teal-hover);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ring);
  box-shadow: none;
  padding: 0.6rem 0.9rem;
}
.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(74, 163, 164, 0.12);
}

/* Bouton menu (hamburger) */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--ring);
  background: #ffffffcc;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.menu-toggle:hover {
  background: rgba(74, 163, 164, 0.12);
  color: var(--teal);
}

/* =========
   Hero
   ========= */
.hero {
  padding: clamp(0.5rem, 1vw + 0.5rem, 1.25rem) 0 0.5rem;
}
.hero__grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: "copy art";
}
.hero__copy {
  grid-area: copy;
}
.hero__copy h1 {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.9rem, 2.6vw + 1.4rem, 3.2rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.subtitle {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.95rem, 0.6vw + 0.7rem, 1.1rem);
  font-weight: 800;
  color: var(--teal);
  display: block;
  margin-top: 0.35rem;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
}
.hero__art {
  grid-area: art;
  background: linear-gradient(160deg, #dcefeb, #f8f4ea);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--ring);
}
.cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* =========
   Sections
   ========= */
.section {
  padding: clamp(1.1rem, 1.5vw + 0.8rem, 2rem) 0;
}
.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.9)
  );
}
.section-title {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
  margin: 0 0 0.8rem;
}
.section-title--center {
  text-align: center;
}
.section--faq {
  background: radial-gradient(
    1200px 800px at 50% 0,
    rgba(243, 235, 222, 0.85) 0%,
    rgba(243, 235, 222, 0.45) 60%,
    rgba(255, 255, 255, 0.95) 100%
  );
}
.section--faq .wrap {
  width: min(900px, 94%);
}
.section--services {
  background: #fff;
}
.section--lieux {
  background: var(--bg);
}
.section--avis {
  background: #fff;
}

/* Apparitions au scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Badges d'avis */
.rating-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.8rem 0 1.2rem;
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow);
  min-width: 170px;
  text-align: center;
}
.rating-badge__provider {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
a.rating-badge__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--teal);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 18px rgba(74, 163, 164, 0.22);
  transition: background-color 180ms ease, transform 120ms ease,
    box-shadow 180ms ease;
  text-decoration: none;
}
a.rating-badge__score:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12), 0 10px 22px rgba(74, 163, 164, 0.22);
}
a.rating-badge__score:active {
  transform: translateY(0);
}
a.rating-badge__score:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.stars {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}
.stars__base,
.stars__fill {
  letter-spacing: 2px;
  font-weight: 800;
}
.stars__base { color: #c9d6dc; }
.stars__fill {
  color: #f5a623;
  position: absolute;
  inset: 0 auto auto 0;
  white-space: nowrap;
  overflow: hidden;
}
/* Utilitaire pour centrer une section simple */
.section--center {
  text-align: center;
}
.section--center .cta {
  justify-content: center;
}

/* FAQ */
.faq__intro {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  text-align: center;
}
.faq {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.faq details[open] {
  border-color: rgba(45, 106, 79, 0.4);
  box-shadow: 0 12px 32px rgba(31, 38, 48, 0.12);
}
.faq summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--teal);
  transition: transform 180ms ease, color 180ms ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--green);
}
.faq summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Page mentions légales */
.legal {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 3vw + 1.2rem, 3rem);
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.2rem);
}
.legal__header {
  display: grid;
  gap: 0.6rem;
}
.legal__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal__header h1 {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.8rem, 2.4vw + 1rem, 2.6rem);
}
.legal__header p {
  margin: 0;
  color: var(--muted);
}
.legal__block {
  display: grid;
  gap: 0.6rem;
}
.legal__block h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.4vw + 1rem, 1.6rem);
}
.legal__block p {
  margin: 0;
}
.legal dl {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.legal dl div {
  display: grid;
  gap: 0.2rem;
}
.legal dt {
  font-weight: 600;
  color: var(--muted);
}
.legal dd {
  margin: 0;
}
.legal a {
  color: var(--teal);
  font-weight: 600;
}

/* Cards services */
.cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 1 seule ligne (4 colonnes) sur ordi */
}
.card {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative; /* pour l'indicateur mobile */
}
.card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* carré */
  object-fit: cover;
  background: #eee;
}
.card-body {
  padding: 1rem 1.1rem;
}
.card h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.25rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}

/* Services: texte repliable (desktop et mobile) */
.cards .card .card-body p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  margin: 0;
}
.cards .card.open .card-body p {
  max-height: 320px;
  margin-top: 10px; /* espace entre bouton et texte quand ouvert */
}

.services-extra {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}
.services-extra__box {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.4rem;
  width: min(100%, 800px);
  text-align: center;
}
.services-extra__box h3 {
  margin: 0 0 0.8rem;
}
.services-extra__box p {
  margin: 0;
  color: var(--muted);
}
.services-extra__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.services-extra__list li {
  background: #f5fbf8;
  border: 1px dashed var(--ring);
  border-radius: calc(var(--radius) / 1.5);
  padding: 0.55rem 0.7rem;
  font-weight: 600;
}

/* Bouton de dépliage (desktop) */
.card-toggle {
  margin-top: 0.5rem;
}
.btn--small {
  padding: 0.45rem 0.7rem;
  font-weight: 700;
}

/* À propos */
.about {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}
.about__art img {
  border-radius: var(--radius);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  width: 56%; /* -20% supplémentaire par rapport à 70% */
  margin-inline: auto; /* centrage visuel */
}
.about__copy p {
  margin: 0.7rem 0;
}

/* Lieux */
.locations {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 1.6rem;
}
.loc {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.loc h3 {
  margin: 0.2rem 0 0.5rem;
}
.map-embed {
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0.4rem 0 0.9rem;
}
.map-embed iframe {
  width: 100%;
  height: 200px; /* petit plan */
  display: block;
}
.list {
  margin: 0 0 0.8rem;
  padding-left: 1.1rem;
}
.list li {
  margin: 0.25rem 0;
}

/* Contact */
.contact {
  text-align: center;
  background: linear-gradient(180deg, #e7f3f3, #fff);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.contact h3 {
  margin: 0.2rem 0 0.3rem;
}
/* Centrer les boutons du bloc contact */
.contact .cta {
  justify-content: center;
}

.zones {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}
.zones__box {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  text-align: center;
  width: min(100%, 860px);
  position: relative;
  overflow: hidden;
}
.zones__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(45, 106, 79, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.zones__box h3 {
  margin: 0 0 0.45rem;
}
.zones__box p {
  margin: 0;
  color: var(--muted);
}

.seo-highlight {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(45, 106, 79, 0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(233, 126, 64, 0.08), transparent 45%);
  pointer-events: none;
}
.seo-highlight p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #0f2a22;
  color: #e8f2ef;
  padding: 1.2rem 0;
  margin-top: 1rem;
}
.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}
.site-footer a {
  color: #a7efe7;
  font-weight: 600;
}
.site-footer a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.site-footer .footer-legal-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.footer-logo {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 6px;
}
.foot-inst {
  opacity: 0.95;
}
.foot-inst:hover {
  opacity: 1;
}

/* Bannière de consentement */
.consent-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 120;
  background: rgba(15, 38, 31, 0.96);
  color: #dff2ec;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(12, 26, 21, 0.35);
  padding: 1.3rem 1.4rem;
  max-width: min(420px, calc(100% - 2rem));
}
.consent-banner__content {
  display: grid;
  gap: 1rem;
}
.consent-banner p {
  margin: 0;
  line-height: 1.6;
}
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.consent-banner .btn {
  box-shadow: none;
  border-color: transparent;
  padding: 0.7rem 1.1rem;
}
.consent-banner .btn.btn--ghost {
  color: #dff2ec;
  border-color: rgba(223, 242, 236, 0.5);
}
.consent-banner .btn.btn--ghost:hover {
  color: var(--teal);
  background: rgba(223, 242, 236, 0.15);
  border-color: rgba(223, 242, 236, 0.8);
}
.consent-banner__link {
  color: #8de7d6;
  font-weight: 600;
}
.consent-banner__link:hover {
  color: #5cd5bf;
}

/* Bouton flottant mobile */
.float-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(233, 141, 63, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.06);
}
.float-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12), 0 10px 22px rgba(0, 0, 0, 0.22);
  background: var(--orange-hover);
}
.float-call:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.5), 0 10px 24px rgba(233, 141, 63, 0.4);
}

/* =========
   Responsive
   ========= */
@media (max-width: 920px) {
  .hero {
    background: var(--bg);
    padding-bottom: 0.75rem;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "art"
      "lead"
      "cta";
    text-align: center;
    gap: 0.8rem;
  }
  .hero__copy {
    display: contents;
  }
  .hero__copy h1 {
    grid-area: headline;
  }
  .hero__art {
    justify-self: center;
    max-width: min(320px, 80vw);
    grid-area: art;
  }
  .hero__copy .lead {
    grid-area: lead;
    margin: 0.4rem auto 0.6rem;
  }
  .hero__copy .cta {
    grid-area: cta;
    justify-content: center;
  }
  .section--faq {
    background: var(--bg);
  }
  .section--faq .wrap {
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    padding: 1.6rem 1.2rem 2rem;
    box-shadow: var(--shadow);
  }
  .section--faq .faq__intro {
    margin: 0 0 1.4rem;
  }
  .about {
    grid-template-columns: 1fr;
  }
  /* Centrer les CTAs (boutons d'appel) en mobile */
  .cta {
    justify-content: center;
  }
  /* Cacher le bouton de dépliage sur mobile (toute la carte est cliquable) */
  .card-toggle {
    display: none;
  }
  /* Services: 2 colonnes en version mobile */
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav {
    display: none; /* cachée tant que fermée */
  }
  .nav.is-open {
    display: flex;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    gap: 0.2rem;
    min-width: 240px; /* un peu plus large pour éviter les retours à la ligne */
    background: var(--paper);
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    z-index: 70;
  }
  .nav.is-open .btn--icon span {
    white-space: nowrap;
  }
  .nav.is-open a {
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
  }
  .nav.is-open a:hover {
    background: rgba(74, 163, 164, 0.12);
    color: var(--teal);
    text-decoration: none;
  }

  /* Services: texte repliable sur mobile, déroulé au clic sur la carte */
  .cards .card {
    cursor: pointer;
    padding-bottom: 30px; /* espace pour l'indicateur */
  }

  /* Indicateur visuel d'interaction sur mobile */
  .cards .card::after {
    content: "Voir la description ▾";
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: var(--teal);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    line-height: 1;
    box-shadow: var(--shadow);
    pointer-events: none; /* ne bloque pas le clic */
  }
  .cards .card.open::after {
    content: "Masquer la description ▴";
    background: var(--green);
  }
}

@media (max-width: 720px) {
  .site-footer .wrap {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
  .consent-banner__actions {
    justify-content: center;
  }
}
/* (Supprimé) Services restent en 2 colonnes même sur petits écrans */
