/* =====================================================
   CORTILIUM Espaces Verts — main.css
   PAY-13 Émeraude sombre / Architecture Cuivre
   TEX-3 Points (appliqué sur body)
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
figure  { margin: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h-mobile);
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  /* TEX-3 — Points */
  background-image: radial-gradient(
    color-mix(in srgb, var(--text) 9%, transparent) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  overflow-x: clip;
  line-height: 1.6;
}

/* Micro-détails propres */
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 3px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- TYPOGRAPHIE ---- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: .92rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.14); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn:hover { transform: none; box-shadow: none; } }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 85%, #000); border-color: color-mix(in srgb, var(--accent) 85%, #000); }

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-wa {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { background: #1da851; border-color: #1da851; }

.btn-call {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-size: .85rem;
  padding: .6rem 1.1rem;
}

/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; width: 100%; }

/* Section padding */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--alt { background: var(--surface); }
.section--dark {
  background: var(--accent);
  background-image: none;
}
.section--dark, .section--dark :where(h1,h2,h3,h4,p,li,span,a,small,em) { color: #fff; }
.section--dark .text-mute { color: rgba(255,255,255,.72); }

.section-eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub {
  font-size: clamp(.96rem, 1.4vw, 1.1rem);
  color: var(--text-2);
  max-width: 56ch;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h-mobile);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: var(--z-header);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--ff-ui);
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-mute);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-family: var(--ff-ui);
  font-size: .86rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .18s;
}
.nav-desktop a:hover { color: var(--accent); }

.header-cta { flex-shrink: 0; }

/* ---- BURGER (enfant direct du body, fixe top-right) ---- */
.burger {
  position: fixed;
  top: calc((var(--header-h-mobile) - 44px) / 2);
  right: 16px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1150; /* STRICT > --z-header (1100) */
  padding: 0;
}
.burger-lines {
  width: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: gap .3s;
}
.burger-lines span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease;
  transform-origin: center;
}
.burger.is-open .burger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger-lines span:nth-child(2) { opacity: 0; }
.burger.is-open .burger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MENU MOBILE (enfant direct du body) ---- */
.menu-mobile {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg);
  z-index: var(--z-menu); /* 1000 < 1100 (header) < 1150 (burger) */
  padding: calc(var(--header-h-mobile) + 32px) 28px 48px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s;
}
.menu-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .35s ease, opacity .35s ease;
}
.menu-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.menu-mobile a:last-child { border-bottom: 0; }
.menu-mobile a.btn {
  font-family: var(--ff-ui);
  font-size: .92rem;
  justify-content: center;
  gap: 10px;
  border-bottom: 0;
  padding: .95rem 1.6rem;
  min-height: 52px;
  margin-top: .5rem;
  border-radius: var(--r-md);
}
.menu-mobile a.btn-wa { color: #fff; }
.menu-mobile a.btn-primary { color: #fff; }
.menu-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: .5rem 0;
}

/* ---- HERO-EDITORIAL-CENTRE ---- */
.hero-centre {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: calc(var(--header-h-mobile) + 56px) 24px clamp(28px, 4vw, 48px);
}
.hero-centre__eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-centre__eyebrow::before,
.hero-centre__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-centre__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-centre__title em {
  font-style: italic;
  color: var(--accent);
}
.hero-centre__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-2);
  margin: 0 auto 32px;
  max-width: 56ch;
  line-height: 1.65;
}
.hero-centre__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-centre__band {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: clamp(32px, 5vw, 60px);
  margin-left: 24px;
  margin-right: 24px;
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.hero-centre__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--accent);
  background-image: none;
  padding: clamp(32px, 5vw, 52px) 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: rgba(255,255,255,.7);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
  display: block;
}

/* ---- À PROPOS ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 20px;
}
.about-body {
  font-size: .98rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-2);
}
.about-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, var(--bg));
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231F5B4E'%3E%3Cpath d='M7 10l2.5 2.5L13 7'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
}

/* ---- SERVICES (grid-asym + card radius-asym) ---- */
.svc-asym {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 20px);
}
.svc-card {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.09); }
@media (prefers-reduced-motion: reduce) { .svc-card { transition: none; } .svc-card:hover { transform: none; box-shadow: none; } }
.svc-card--span2 { grid-column: span 2; }
.svc-card--span3 { grid-column: span 3; }
.svc-card--span4 { grid-column: span 4; }
.svc-card__num {
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text);
  line-height: 1.2;
}
.svc-card__desc {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

/* ---- RÉALISATIONS (galerie index) ---- */
.gal-feat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gal-feat__item {
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.gal-feat__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
  filter: saturate(1.04);
}
.gal-feat__item:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .gal-feat__item:hover img { transform: none; } }
.gal-feat__big {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-feat__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: var(--accent);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  cursor: default;
}
.gal-feat__cta, .gal-feat__cta :where(h3, p, span) { color: #fff; }
.gal-feat__cta h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.25;
}
.gal-feat__cta p { font-size: .82rem; opacity: .82; }
.gal-feat__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem .9rem;
  transition: background .2s;
  text-decoration: none;
}
.gal-feat__cta a:hover { background: rgba(255,255,255,.28); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.lightbox__inner { position: relative; max-width: 90vw; max-height: 90dvh; }
.lightbox__img { max-width: 90vw; max-height: 85dvh; border-radius: 8px; display: block; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background .2s;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.25); }

/* ---- AVIS (row-sep) ---- */
.avis-rows { display: flex; flex-direction: column; }
.avis-rows__item {
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 1px solid var(--border);
}
.avis-rows__item:last-child { border-bottom: 1px solid var(--border); }
.avis-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #f59e0b; }
.avis-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  max-width: 72ch;
}
.avis-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-mute);
}
.avis-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--text) 6%, var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 3px 8px;
  font-size: .72rem;
  color: var(--text-mute);
}
.avis-cta-google {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.avis-silent {
  font-size: .84rem;
  color: var(--text-mute);
  font-style: italic;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: clamp(.96rem, 1.6vw, 1.1rem);
  color: var(--text);
  font-weight: 600;
}
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .3s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-a-inner {
  padding: 0 0 18px;
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.is-open .faq-a { max-height: 300px; }

/* ---- ZONE D'INTERVENTION ---- */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.map-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--r-md);
  overflow: hidden;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.communes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.commune-chip {
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 500;
  font-family: var(--ff-ui);
}
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: .88rem;
}
.horaires-table tr {
  border-bottom: 1px solid var(--border);
}
.horaires-table td { padding: 9px 0; color: var(--text-2); }
.horaires-table td:last-child { text-align: right; color: var(--text-mute); }
.horaires-table tr.is-today td { color: var(--accent); font-weight: 600; }
.horaires-table tr.is-closed td:last-child { color: var(--text-mute); }

/* Badge ouvert maintenant */
.ouvert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ouvert-badge--open  { background: #d1fae5; color: #065f46; }
.ouvert-badge--close { background: #fee2e2; color: #991b1b; }
.ouvert-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ouvert-badge--open  .ouvert-dot { background: #10b981; }
.ouvert-badge--close .ouvert-dot { background: #ef4444; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.contact-intro {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.62);
  display: block;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: .96rem;
  color: #fff;
  font-weight: 500;
}
.contact-ctas { display: flex; flex-direction: column; gap: 12px; }
.btn-contact-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s, background .18s;
  text-decoration: none;
  color: #fff;
}
.btn-contact-primary:hover { transform: translateY(-2px); }
.btn-contact-call { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.btn-contact-call:hover { background: rgba(255,255,255,.25); }
.btn-contact-wa   { background: var(--wa-green); color: #fff; }
.btn-contact-wa:hover { background: #1da851; }

/* ---- FOOTER ---- */
.site-footer {
  background: color-mix(in srgb, var(--text) 90%, transparent);
  background-image: none;
  color: rgba(255,255,255,.75);
  margin-top: 0;
  padding: clamp(32px, 5vw, 52px) 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.footer-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.footer-info { font-size: .82rem; line-height: 1.8; }
.footer-info a { color: rgba(255,255,255,.75); }
.footer-info a:hover { color: #fff; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  max-width: var(--container);
  margin: 20px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .74rem;
  color: rgba(255,255,255,.4);
}

/* ---- MODAL MENTIONS LÉGALES ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.modal-box {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 560px;
  width: 100%;
  max-height: 80dvh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-mute);
  font-size: 1.1rem;
}
.modal-close:hover { background: var(--border); }
.modal-box h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--text);
}
.modal-box h3 {
  font-size: .95rem;
  font-weight: 600;
  margin: 16px 0 6px;
  color: var(--text);
}
.modal-box p, .modal-box li { font-size: .86rem; color: var(--text-2); line-height: 1.7; }

/* ---- SECTION INTRO ---- */
.section-intro { max-width: 60ch; }
.section-intro-center { text-align: center; margin: 0 auto; }

/* ---- CARD "À propos" highlight ---- */
.diffText {
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: .92rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.65;
}

/* Scrollbar inside modal */
.menu-mobile::-webkit-scrollbar,
.modal-box::-webkit-scrollbar { width: 4px; }
.menu-mobile::-webkit-scrollbar-thumb,
.modal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  font-size: .85rem;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }
