/* Distinction Esthétique Auto — Section Styles
   Responsibility: header, footer, nav + layout-level section styles.
   Section styles for Tasks 5–9 are appended below this file's existing rules.
   Depends on: tokens.css, base.css, components.css.
*/

/* ══════════════════════════════════════════════════════════════════
   LOGO
   ══════════════════════════════════════════════════════════════════ */

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__badge {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* Logo image — version horizontale full-wordmark (distinction-logo-white.png 500×135).
   Ratio ~3.7:1. Hauteur cible 44-48px header / 40px footer. */
.site-logo__img {
  width: auto;
  height: 44px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.site-logo--footer .site-logo__img {
  width: auto;
  height: 40px;
}

@media (max-width: 768px) {
  .site-logo__img { height: 36px; }
}

.site-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-logo__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  /* Couleur brand (orange Distinction) — comme la silhouette du logo */
  color: var(--gold);
  line-height: 1;
}

.site-logo__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  /* WCAG AA fix — --text-dim (#797c82) tombait à 4.03 sur --bg-deep.
     #95979C donne 5.1:1, lisible en small text 11px. */
  color: #95979C;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════════
   TOP BAR (barre utilitaire)
   ══════════════════════════════════════════════════════════════════ */

.topbar {
  background: var(--bg-chrome);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  gap: 24px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.topbar__address {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__hours {
  white-space: nowrap;
  color: var(--text-dim);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar__sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--line-strong);
}

.topbar__phone {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.topbar__phone:hover {
  color: var(--gold);
}

/* ── Sélecteur de langue ─────────────────────────────────────────── */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0;
  transition: color .18s var(--ease);
  min-width: 44px;  /* tap target */
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-switcher__btn--active,
.lang-switcher__btn:hover {
  color: var(--text-cream);
}

.lang-switcher__div {
  color: var(--text-dim);
  font-size: 11px;
}

/* ══════════════════════════════════════════════════════════════════
   SITE NAV (navigation principale)
   ══════════════════════════════════════════════════════════════════ */

/* Sticky header : topbar + nav + bandeau réassurance, tout colle en haut.
   Le tout est natif CSS (`position: sticky`) — pas de JS, pas de saut de mise en page. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 29, 33, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
/* Petite ombre après le 1er scroll, pour détacher visuellement le header du contenu */
.site-header--scrolled {
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.45);
}
/* WP admin bar : décale le header de 32px (admin bar height) */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.site-nav {
  background: transparent;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  gap: 32px;
}

/* ── Liens de navigation ─────────────────────────────────────────── */

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-decoration: none;
  transition: color .18s var(--ease);
  white-space: nowrap;
  /* tap target */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav__link:hover {
  color: var(--text-cream);
}
.site-nav__link[aria-current="page"] {
  color: var(--gold);
}

/* CTA Réserver dans la nav */
.site-nav__cta {
  height: 44px;
  padding: 0 22px;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Bouton hamburger (mobile) ───────────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-cream);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

/* Animation X quand menu est ouvert */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════════
   MENU MOBILE (plein écran)
   ══════════════════════════════════════════════════════════════════ */

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-deep);
  overflow-y: auto;
  overscroll-behavior: contain;
  /* Animation smooth — fermé par défaut, ouvert via .mobile-menu--open */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
  pointer-events: none;
}
.mobile-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s linear 0s;
}
.mobile-menu__inner > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu--open .mobile-menu__inner > * {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu--open .mobile-menu__inner > *:nth-child(1) { transition-delay: .08s; }
.mobile-menu--open .mobile-menu__inner > *:nth-child(2) { transition-delay: .14s; }
.mobile-menu--open .mobile-menu__inner > *:nth-child(3) { transition-delay: .20s; }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 32px 48px;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--text-cream);
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  transition: color .18s var(--ease);
}

.mobile-menu__close:hover {
  color: var(--gold);
}

.mobile-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

/* Les liens du menu mobile sont rendus par le Walker avec .site-nav__link.
   On les re-style dans le contexte du menu mobile pour la lisibilité tactile. */
.mobile-menu__link,
.mobile-menu .site-nav__link,
.mobile-menu__links > li > a {
  display: block;
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-cream);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  min-height: auto;
  line-height: 1.1;
  width: 100%;
  transition: color .18s var(--ease);
  min-height: 44px;
}

.mobile-menu__link:hover,
.mobile-menu .site-nav__link:hover,
.mobile-menu__links > li > a:hover,
.mobile-menu .site-nav__link[aria-current="page"],
.mobile-menu__links > li.current-menu-item > a {
  color: var(--gold);
}

/* Reset le li wrapper qui pourrait avoir des marges */
.mobile-menu__links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

/* Sélecteur de langue dans le menu mobile : 2 boutons FR / EN */
.mobile-menu__lang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
/* Variante "top" : placé en haut du menu sous le bouton fermer, pas de border-top */
.mobile-menu__lang--top {
  padding-top: 0;
  margin-top: 8px;
  margin-bottom: 32px;
  border-top: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  justify-content: flex-start;
}
.mobile-menu__lang-btn {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xs, 4px);
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease), background .18s var(--ease);
}
.mobile-menu__lang-btn:hover,
.mobile-menu__lang-btn:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}
.mobile-menu__lang-btn.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(213, 64, 21, 0.08);
}
.mobile-menu__lang-sep {
  color: var(--text-dim);
  font-family: var(--f-mono);
  font-size: 14px;
}

.mobile-menu__phone,
.mobile-menu__email {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-decoration: none;
  transition: color .18s var(--ease);
  text-align: center;
}

.mobile-menu__phone:hover,
.mobile-menu__email:hover {
  color: var(--text-cream);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--bg-footer);
  color: var(--text-mute);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 80px 80px 64px;
}

/* ── Colonne marque ──────────────────────────────────────────────── */

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-logo--footer .site-logo__name {
  font-size: 16px;
}

.site-footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  color: var(--text-mute);
  margin: 0;
}

/* ── Colonnes de liens ───────────────────────────────────────────── */

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__col-title {
  color: var(--text-dim);
  margin: 0;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  font-size: 14px;
  color: var(--text-mute);
  text-decoration: none;
  transition: color .18s var(--ease);
  display: inline-block;
  min-height: 32px;
  line-height: 32px;
}

.site-footer__links a:hover {
  color: var(--text-cream);
}

/* ── Coordonnées ─────────────────────────────────────────────────── */

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__contact a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color .18s var(--ease);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.site-footer__contact a:hover {
  color: var(--gold);
}

.site-footer__contact span {
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ── Horaires ────────────────────────────────────────────────────── */

.site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.site-footer__hours dt,
.site-footer__hours dd {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0;
}

.site-footer__hours dd {
  color: var(--text-mute);
  text-align: right;
}

/* ── Bas de page ─────────────────────────────────────────────────── */

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding: 0 80px;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /* WCAG fix : --text-dim donnait 4.03:1 — couleur explicite 5:1+ */
  color: #95979C;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color .18s var(--ease);
}
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--text-cream);
}
.site-footer__legal span {
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Masquer la barre utilitaire sur mobile */
  .topbar {
    display: none;
  }

  /* Nav mobile */
  .site-nav__inner {
    padding: 16px 24px;
  }

  .site-nav__links,
  .site-nav__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Footer mobile */
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 40px;
  }

  .site-footer__bottom {
    padding: 0 24px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 0;
  }

  .site-footer__tagline {
    max-width: 100%;
  }

}

/* Tablette (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .topbar__inner {
    padding: 10px 32px;
  }

  .topbar__address {
    display: none; /* trop long — masqué sur tablette */
  }

  .site-nav__inner {
    padding: 20px 32px;
  }

  .site-nav__links {
    gap: 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 64px 32px 48px;
  }

  .site-footer__bottom {
    padding: 0 32px;
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION HERO — Tâche 5
   Layout : 2 colonnes sur desktop, colonne unique sur mobile.
   Contraintes : coins ≤ 2px, 1px hairlines, gradient = vignettes image uniquement.
   ══════════════════════════════════════════════════════════════════ */

/* ── Coquille de section ──────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
}

/* ── Image de fond plein-cadre ────────────────────────────────────── */

.hero__img {
  position: absolute;
  inset: 0;
  /* dea-img fournit déjà background + motif diagonal + ::before label */
}

/* ── Vignetages (gradients autorisés sur image overlay uniquement) ── */

.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Axe horizontal — opacité forte à gauche pour lisibilité du texte */
.hero__vignette--h {
  background: linear-gradient(
    90deg,
    rgba(27, 29, 33, 0.92) 0%,
    rgba(27, 29, 33, 0.60) 48%,
    rgba(27, 29, 33, 0.18) 100%
  );  /* updated to match new --bg-deep #1a1814 */
}

/* Axe vertical — fondu haut (nav) + bas (barre de confiance) */
.hero__vignette--v {
  background: linear-gradient(
    180deg,
    rgba(27, 29, 33, 0.30) 0%,
    transparent 28%,
    transparent 68%,
    rgba(27, 29, 33, 0.82) 100%
  );  /* updated to match new --bg-deep #1a1814 */
}

/* ── Grille éditoriale 2 colonnes ─────────────────────────────────── */

.hero__grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 80px;
  align-items: center;
  /* espace vertical réduit (mai 2026) : hero plus compact */
  padding-top: 64px;
  padding-bottom: 80px;
}

/* Widget "Prochaine disponibilité" désactivé tant que Square reste
   maître de la réservation (juin 2026). Le content prend toute la largeur. */
.hero__aside { display: none !important; }
.hero__grid { grid-template-columns: 1fr; }

/* ── Contenu gauche ───────────────────────────────────────────────── */

/* Colonne gauche de la grille : empile verticalement eyebrow → headline → lead → CTAs */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__headline {
  font-size: clamp(64px, 7.2vw, 104px);
  font-weight: 300;
  margin: 0;
  color: var(--text-cream);
  line-height: 0.93;
}

/* Deuxième ligne en or — accent éditorial */
.hero__headline-accent {
  color: var(--gold);
  font-weight: 200;
  font-style: italic;
  display: block;
}

.hero__lead {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 480px;
  margin: 40px 0 48px;
}

/* Différenciateur clé — stationnement — mise en évidence */
.hero__lead-strong {
  color: var(--text-cream);
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── Colonne droite — carte disponibilité ─────────────────────────── */

.hero__aside {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  /* Descend la carte vers le bas de la colonne */
  align-self: flex-end;
  padding-bottom: 0;
}

/* Carte glassmorphique (sans ombre douce — seulement bordure hairline) */
.hero__avail-card {
  border: 1px solid var(--line-strong);
  background: rgba(27, 29, 33, 0.75);   /* updated to match new --bg-deep */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px 28px;
  width: 100%;
  max-width: 320px;
  border-radius: var(--r-xs); /* 2px max */
}

.hero__avail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero__avail-count {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Grille de 4 créneaux */
.hero__avail-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.hero__slot {
  border: 1px solid var(--line);
  padding: 12px 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-cream);
  border-radius: 0; /* pas de coins arrondis */
}

/* Créneau pris — barré, atténué */
.hero__slot--taken {
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.5;
}

/* Créneau sélectionné / mis en avant */
.hero__slot--active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--text-cream);
}

.hero__avail-footer {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ── Slots live (Square branché) — clickable, hover gold ──────────── */
.hero__slot--live {
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}
.hero__slot--live:hover,
.hero__slot--live:focus-visible {
  border-color: var(--gold);
  background: rgba(213, 64, 21, 0.12);
  color: var(--text-cream);
  transform: translateY(-1px);
}
.hero__slot--live:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skeleton (pendant le fetch initial) — pulse subtil */
.hero__slot--skeleton {
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 100%
  );
  background-size: 200% 100%;
  animation: hero-skel-shimmer 1.4s ease-in-out infinite;
  border-color: var(--line);
}
@keyframes hero-skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slot--skeleton { animation: none; }
}

/* Empty state (aucun créneau dans 7 jours) */
.hero__avail-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 0;
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
  line-height: 1.5;
}

/* ── Barre de confiance — épinglée en bas ─────────────────────────── */

.hero__trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(15, 16, 21, 0.82);   /* updated to match new bg-chrome */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 80px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  flex-wrap: wrap;
  row-gap: 8px;
}

.hero__trust-item {
  padding: 0 28px;
}

.hero__trust-item--gold {
  color: var(--gold);
}

/* Séparateur hairline vertical entre items */
.hero__trust-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--line-strong);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   HERO — Responsive mobile (≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .hero {
    min-height: auto;
  }

  /* Grille : une seule colonne */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px 80px;
  }

  /* Colonne image : vignetage plus fort sur mobile pour lisibilité */
  .hero__vignette--h {
    background: rgba(27, 29, 33, 0.82);   /* updated to match new --bg-deep */
  }

  .hero__headline {
    font-size: clamp(48px, 13vw, 72px);
    line-height: 1.02; /* plus aéré que le 0.93 desktop pour la lisibilité mobile */
  }

  .hero__lead {
    font-size: 15px;
    margin: 24px 0 32px;
    max-width: 100%;
  }

  /* CTAs pleine largeur sur mobile + tap target ≥ 44px */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .dea-btn {
    width: 100%;
    min-height: 52px; /* ≥ 44px tap target — dea-btn déjà 52px */
    justify-content: center;
  }

  /* Masquer la carte disponibilité sur mobile (non essentielle) */
  .hero__aside {
    display: none;
  }

  /* Barre de confiance : colonne sur mobile */
  .hero__trust-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 8px;
  }

  .hero__trust-item {
    padding: 0;
  }

  .hero__trust-sep {
    display: none;
  }

}

/* ══════════════════════════════════════════════════════════════════
   HERO — Tablette (769px–1024px)
   ══════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) and (max-width: 1024px) {

  .hero__grid {
    gap: 40px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__headline {
    font-size: clamp(52px, 6vw, 80px);
  }

  .hero__avail-card {
    max-width: 260px;
  }

  .hero__trust-inner {
    padding: 18px 32px;
  }

}

/* ══════════════════════════════════════════════════════════════════
   Primitives de section réutilisables
   Partagées par les sections Tâches 6–9.
   ══════════════════════════════════════════════════════════════════ */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-headline-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 200;
}

/* ── Adaptations surface claire (cream) ──────────────────────────────
   Sur les sections claires de l'accueil (.services, .avis), les
   primitives décoratives doivent passer en encres sombres :
   --gold échoue le contraste WCAG sur --bg-cream. */
.services .dea-rule,
.avis .dea-rule {
  background: var(--gold-on-cream);
}

.services .dea-label,
.avis .dea-label {
  color: var(--text-ink-2);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION POURQUOI DISTINCTION — Tâche 6
   3 différenciateurs en grille. Desktop 3 col, mobile 1 col.
   Hairlines verticales entre colonnes (aucun shadow).
   ══════════════════════════════════════════════════════════════════ */

.pourquoi {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

/* ── En-tête ─────────────────────────────────────────────────────── */

.pourquoi__headline {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  margin: 0;
  max-width: 720px;
  color: var(--text-cream);
  line-height: 0.93;
}

/* ── Grille 3 colonnes ───────────────────────────────────────────── */

.pourquoi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

/* ── Item individuel ─────────────────────────────────────────────── */

.pourquoi__item {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--line);
}

/* Premier item — pas de padding gauche */
.pourquoi__item:first-child {
  padding-left: 0;
}

/* Deuxième et troisième — padding gauche pour séparer de la hairline */
.pourquoi__item:not(:first-child) {
  padding-left: 40px;
}

/* Dernier item — pas de bordure droite */
.pourquoi__item:last-child {
  border-right: none;
  padding-right: 0;
}

.pourquoi__num {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 28px;
  display: block;
}

.pourquoi__item-title {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
  color: var(--text-cream);
  line-height: 1.05;
}

.pourquoi__item-body {
  margin: 0;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

/* ══════════════════════════════════════════════════════════════════
   POURQUOI — Responsive mobile (≤ 390px / ≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .pourquoi {
    padding: 80px 24px;   /* bumped from 72px */
  }

  .pourquoi__grid {
    grid-template-columns: 1fr;
  }

  .pourquoi__item,
  .pourquoi__item:first-child,
  .pourquoi__item:not(:first-child),
  .pourquoi__item:last-child {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pourquoi__item:last-child {
    border-bottom: none;
  }

  .pourquoi__item-body {
    max-width: 100%;
  }

  .pourquoi__headline {
    font-size: clamp(36px, 10vw, 52px);
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .pourquoi {
    padding: 96px 32px;
  }

  .pourquoi__item:first-child {
    padding-left: 0;
  }

  .pourquoi__item:not(:first-child) {
    padding-left: 24px;
  }

  .pourquoi__item {
    padding-right: 24px;
  }

  .pourquoi__item:last-child {
    padding-right: 0;
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION SERVICES — page d'accueil (remplace Paliers)
   Section CLAIRE et aérée. En-tête centré, 4 tuiles de catégories
   en grille (4 col desktop → 1 col mobile), un CTA dessous.
   Eyebrow en --gold-on-cream (WCAG AA sur --bg-cream).
   ══════════════════════════════════════════════════════════════════ */

.services {
  background: var(--bg-cream);
  color: var(--text-ink);
  border-top: 1px solid var(--line-ink);
  text-align: center;
}

/* ── En-tête ─────────────────────────────────────────────────────── */

.services__head {
  max-width: 680px;
  margin: 0 auto 56px;
}

/* L'eyebrow est centré : on ré-aligne le .section-eyebrow flex */
.services__head .section-eyebrow {
  justify-content: center;
}

.services__headline {
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 300;
  margin: 0;
  color: var(--text-ink);
  line-height: 0.95;
}

.services__intro {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-ink-2);
}

/* ── Grille 4 tuiles ─────────────────────────────────────────────── */

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-ink);
  border-left: 1px solid var(--line-ink);
  text-align: left;
}

/* ── Tuile de catégorie ──────────────────────────────────────────── */

.service-tile {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  display: flex;
  flex-direction: column;
  background: var(--bg-cream);
  transition: background .22s var(--ease);
}

.service-tile:hover {
  background: var(--bg-cream-2);
}

.service-tile__title {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
  color: var(--text-ink);
  line-height: 1.05;
}

.service-tile__desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.55;
  /* WCAG AA fix — --text-mute échoue le contraste sur --bg-cream.
     --text-mute-on-cream donne 7.4:1, safe pour les paragraphes 14px. */
  color: var(--text-mute-on-cream);
  flex: 1; /* pousse le prix en bas */
}

.service-tile__price {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-ink);
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--text-ink);
}

.service-tile__from {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-cream);
  margin-right: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   PROS BAND — Section "Professionnels & résidents Solar Uniquartier"
   Insérée après services, levier de conversion clé pour le marché
   bureaux + résidents (brief stratégique V3, mai 2026).
   ══════════════════════════════════════════════════════════════════ */

.pros-band {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 100px 80px;
}

.pros-band__inner {
  max-width: 1280px;
  margin-inline: auto;
}

.pros-band__text {
  max-width: 720px;
  margin-bottom: 56px;
}

.pros-band__headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-cream);
  margin: 16px 0 24px;
  line-height: 1.02;
}

.pros-band__lead {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.7;
  margin: 0;
}

.pros-band__grid {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 6 cartes → 2 rangées de 3 sur desktop */
  gap: 24px;
}

.pros-band__item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros-band__num {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.20em;
}

.pros-band__item-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-cream);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.15;
}

.pros-band__item-body {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.65;
  margin: 0;
}

.pros-band__cta-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* Mobile — pros-band */

@media (max-width: 980px) {
  .pros-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pros-band {
    padding: 72px 24px;
  }

  .pros-band__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pros-band__cta-wrap {
    flex-direction: column;
  }

  .pros-band__cta-wrap .dea-btn {
    width: 100%;
  }
}


/* ── Tuile vedette (Signature — "Le plus demandé") ───────────────── */

.service-tile--featured {
  position: relative;
  background: var(--bg-cream-2, var(--bg-cream));
  outline: 2px solid var(--gold-on-cream);
  outline-offset: -2px;
  box-shadow: 0 6px 28px -16px rgba(0, 0, 0, 0.25);
}

.service-tile--featured .service-tile__title {
  /* Slight emphasis on the headline of the featured card */
  color: var(--text-ink);
}

.service-tile__badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-cream);
  border: 1px solid var(--gold-on-cream);
  border-radius: 2px;
}

/* ── Tuile saisonnière (Bye Bye l'Hiver) — badge plus discret ─── */

.service-tile--seasonal {
  position: relative;
  background: var(--bg-cream);
}

.service-tile__badge--seasonal {
  color: var(--text-mute);
  border-color: var(--line-ink);
  background: transparent;
}

/* ── CTA ─────────────────────────────────────────────────────────── */

.services__cta-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.services__cta-wrap .dea-btn {
  min-height: 52px; /* ≥ 44px tap target */
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES — Responsive (≤ 1024px tablette / ≤ 768px / ≤ 480px)
   ══════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) and (max-width: 1024px) {

  .services {
    padding: 96px 32px;
  }

  /* 2 × 2 sur tablette */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .services {
    padding: 80px 24px;   /* bumped from 72px */
  }

  .services__head {
    margin-bottom: 40px;
  }

  /* Tuiles empilées : 1 colonne */
  .services__grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .service-tile {
    padding: 28px 24px;
    border-right: none;
  }

  .services__cta-wrap {
    margin-top: 36px;
  }

  .services__cta-wrap .dea-btn {
    width: 100%;
    justify-content: center;
  }

}

@media (max-width: 480px) {

  .services {
    padding: 56px 20px;
  }

  .service-tile__title {
    font-size: 22px;
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION LE STUDIO — Tâche 7
   2 colonnes desktop (image | texte), empilées sur mobile.
   Fond cream : le studio est un espace physique, lumière inversée.
   Valet conditionnel et dépose externe clairement séparés.
   ══════════════════════════════════════════════════════════════════ */

.studio {
  background: var(--bg-cream);
  color: var(--text-ink);
  border-top: 1px solid var(--line-ink);
  /* dea-section fournit padding: 120px 80px */
}

/* ── Grille 2 colonnes ─────────────────────────────────────────── */

.studio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Colonne image ─────────────────────────────────────────────── */

.studio__img-col {
  /* Permet à l'image de s'étirer sur toute la hauteur de la colonne */
  align-self: stretch;
}

.studio__img {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ── Colonne texte ─────────────────────────────────────────────── */

.studio__text-col {
  display: flex;
  flex-direction: column;
}

/* Surcharge section-eyebrow pour le contexte cream (texte sombre) */
.studio .section-eyebrow .dea-rule {
  background: var(--gold-on-cream);
}

.studio .section-eyebrow .dea-eyebrow {
  color: var(--gold-on-cream); /* --gold-on-cream: 6.00:1 on cream — WCAG AA ✓ */
}

/* ── Titre ─────────────────────────────────────────────────────── */

.studio__headline {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  margin: 0 0 28px;
  color: var(--text-ink);
  line-height: 0.96;
}

/* Accent or chaud sur fond clair */
.studio .section-headline-accent {
  color: var(--gold-on-cream); /* 6.00:1 on cream — WCAG AA ✓ (large text ≥ 3:1) */
}

/* ── Corps principal ───────────────────────────────────────────── */

.studio__body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.60;
  color: var(--text-ink-2);
  margin: 0 0 32px;
  max-width: 480px;
}

.studio__strong {
  color: var(--text-ink);
  font-weight: 600;
}

/* ── Bloc valet ────────────────────────────────────────────────── */

.studio__valet-block {
  border-top: 1px solid var(--line-ink);
  border-left: 2px solid var(--gold-warm);
  padding: 20px;
  margin-bottom: 20px;
  background: rgba(164, 130, 74, 0.06);
}

.studio__valet-header {
  margin-bottom: 10px;
}

.studio__valet-header .dea-label {
  color: var(--gold-on-cream); /* 6.00:1 on cream — WCAG AA ✓ */
}

.studio__valet-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-ink-2);
  margin: 0;
}

.studio__valet-body strong {
  color: var(--text-ink);
}

/* ── Bloc clients externes ─────────────────────────────────────── */

.studio__drop-block {
  border-top: 1px solid var(--line-ink);
  border-left: 2px solid var(--line-ink);
  padding: 20px;
  background: rgba(15, 16, 21, 0.04);
}

.studio__drop-header {
  margin-bottom: 10px;
}

.studio__drop-header .dea-label {
  color: var(--text-ink-2);
}

.studio__drop-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-ink-2);
  margin: 0;
}

.studio__drop-body strong {
  color: var(--text-ink);
}

/* ══════════════════════════════════════════════════════════════════
   LE STUDIO — Responsive mobile (≤ 390px / ≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .studio {
    padding: 80px 24px;   /* bumped from 72px */
  }

  .studio__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .studio__img {
    min-height: 280px;
    height: 280px;
  }

  .studio__img-col {
    align-self: auto;
  }

  .studio__headline {
    font-size: clamp(36px, 10vw, 52px);
  }

  .studio__body {
    font-size: 15px;
    max-width: 100%;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .studio {
    padding: 96px 32px;
  }

  .studio__grid {
    gap: 48px;
  }

  .studio__headline {
    font-size: clamp(36px, 5vw, 52px);
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION LE PROCESSUS — Tâche 8
   4 étapes en ligne desktop, empilées sur mobile.
   Ligne de connexion horizontale entre les marqueurs.
   Aucune heure littérale — durée adaptée à chaque forfait.
   ══════════════════════════════════════════════════════════════════ */

.processus {
  background: var(--bg-ink);
  border-top: 1px solid var(--line);
}

/* ── En-tête ─────────────────────────────────────────────────────── */

.processus__headline {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  margin: 0;
  color: var(--text-cream);
  line-height: 0.93;
}

/* ── Conteneur de la timeline ────────────────────────────────────── */

.processus__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ── Ligne de connexion horizontale (desktop uniquement) ─────────── */

.processus__timeline::before {
  content: '';
  position: absolute;
  /* Centrée sur les marqueurs : hauteur marqueur = 80px → top = 40px */
  top: 40px;
  left: 40px;    /* demi-largeur du premier marqueur */
  right: 40px;   /* demi-largeur du dernier marqueur */
  height: 1px;
  background: var(--line);
  pointer-events: none;
  z-index: 0;
}

/* ── Étape individuelle ──────────────────────────────────────────── */

.processus__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* ── Marqueur circulaire ─────────────────────────────────────────── */

.processus__marker {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  background: var(--bg-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 32px;
  /* marqueur décoratif (aria-hidden) — non interactif */
}

.processus__marker-num {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ── Contenu texte de l'étape ────────────────────────────────────── */

.processus__step-body {
  flex: 1;
}

.processus__step-title {
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
  color: var(--text-cream);
  line-height: 1.1;
}

.processus__step-desc {
  margin: 0;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
  max-width: 240px;
}

/* ══════════════════════════════════════════════════════════════════
   LE PROCESSUS — Responsive mobile (≤ 390px / ≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .processus {
    padding: 80px 24px;   /* bumped from 72px */
  }

  .processus__headline {
    font-size: clamp(36px, 10vw, 52px);
  }

  /* Colonne unique sur mobile */
  .processus__timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Cacher la ligne horizontale desktop */
  .processus__timeline::before {
    display: none;
  }

  /* Ligne verticale latérale sur mobile */
  .processus__step {
    flex-direction: row;
    gap: 24px;
    padding-bottom: 40px;
    border-left: 1px solid var(--line);
    padding-left: 24px;
    margin-left: 40px; /* aligne avec le centre du marqueur */
  }

  .processus__step:last-child {
    border-left: none;
    padding-bottom: 0;
  }

  .processus__marker {
    position: absolute;
    left: -40px;  /* -40px = demi-largeur du marqueur (56px/2 ≈ 28px) + margin-left de l'étape (40px) → aligne le centre du marqueur sur le filet vertical */
    top: 0;
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .processus__marker-num {
    font-size: 15px;
  }

  .processus__step-body {
    padding-top: 8px;
  }

  .processus__step-desc {
    max-width: 100%;
  }

  .processus__step-title {
    font-size: 22px;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .processus {
    padding: 96px 32px;
  }

  .processus__timeline {
    gap: 20px;
  }

  .processus__step-title {
    font-size: 22px;
  }

  .processus__step-desc {
    max-width: 100%;
  }

}

/* ══════════════════════════════════════════════════════════════════
   COMPLÉMENTS — classes partagées avec services.html
   (addon-card, addons__grid, addons__intro)
   Section shell (.addons) et headline supprimés : section retirée
   de l'accueil, compléments disponibles sur services.html.
   ══════════════════════════════════════════════════════════════════ */

.addons__intro {
  max-width: 280px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
  line-height: 1.55;
  margin: 0;
}

/* ── Grille 4 compléments ────────────────────────────────────────── */

.addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line); /* hairlines visibles entre cellules */
  border: 1px solid var(--line);
}

/* ── Carte de complément ─────────────────────────────────────────── */

.addon-card {
  background: var(--bg-deep);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

/* ── Partie haute : référence + nom + description ────────────────── */

.addon-card__top {
  flex: 1;
}

.addon-card__ref {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.addon-card__name {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  color: var(--text-cream);
  line-height: 1.2;
}

.addon-card__desc {
  margin: 0;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.5;
}

/* ── Partie basse : prix ─────────────────────────────────────────── */

.addon-card__bottom {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  /* hauteur min pour aligner visuellement prix et unité */
  min-height: 44px;
}

.addon-card__price {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.addon-card__unit {
  font-size: 11px;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════════════
   COMPLÉMENTS — Responsive mobile (≤ 390px / ≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .addons__intro {
    text-align: left;
    max-width: 100%;
  }

  /* 1 colonne sur mobile */
  .addons__grid {
    grid-template-columns: 1fr;
  }

  .addon-card {
    min-height: auto;
    padding: 28px 20px;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  /* 2 colonnes sur tablette */
  .addons__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons__intro {
    max-width: 100%;
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION AVIS — page d'accueil
   Section CLAIRE (cream). En-tête avec note réelle (5,0 ★ · 19 avis).
   Aucune carte fabriquée — lien vers Google Business.
   ══════════════════════════════════════════════════════════════════ */

.avis {
  background: var(--bg-cream);
  color: var(--text-ink);
  border-top: 1px solid var(--line-ink);
}

/* ── En-tête ─────────────────────────────────────────────────────── */

.avis__headline {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  margin: 0;
  color: var(--text-ink);
  line-height: 0.93;
}

/* Accent (★ 5,0) — gold WCAG-safe sur cream */
.avis__headline .section-headline-accent {
  color: var(--gold-on-cream);
}

.avis__source {
  text-align: right;
}

.avis__source-note {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-ink-2);
}

/* ── État vide élégant ───────────────────────────────────────────── */

.avis__empty-state {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line-ink);
  flex-wrap: wrap;
}

.avis__empty-text {
  flex: 1;
  min-width: 260px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-ink-2);
  margin: 0;
}

.avis__cta {
  min-height: 52px; /* ≥ 44px tap target */
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   AVIS — Responsive mobile (≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .avis {
    padding: 80px 24px;   /* bumped from 72px */
  }

  .avis__headline {
    font-size: clamp(36px, 10vw, 52px);
  }

  .avis__source {
    text-align: left;
  }

  .avis__empty-state {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
  }

  .avis__cta {
    width: 100%;
    justify-content: center;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .avis {
    padding: 96px 32px;
  }

  .avis__headline {
    font-size: clamp(36px, 5vw, 52px);
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION FAQ — Tâche 9
   Accordéon 6 questions. Desktop 2 colonnes (1fr 2fr), mobile 1 col.
   Toggles ≥ 44px tap target. Accessible : aria-expanded, aria-controls.
   ══════════════════════════════════════════════════════════════════ */

.faq {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

/* ── Mise en page 2 colonnes ─────────────────────────────────────── */

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

/* ── Colonne en-tête ─────────────────────────────────────────────── */

.faq__headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  margin: 0;
  color: var(--text-cream);
  line-height: 0.95;
}

.faq__contact-prompt {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__contact-link {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color .18s var(--ease);
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.faq__contact-link:hover {
  color: var(--gold-hover);
}

/* ── Accordéon — items ───────────────────────────────────────────── */

.faq__item {
  border-bottom: 1px solid var(--line);
}

/* ── Bouton toggle ───────────────────────────────────────────────── */

.faq__toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  color: var(--text-cream);
  gap: 16px;
  min-height: 44px; /* tap target ≥ 44px */
}

.faq__toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq__question {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  flex: 1;
}

/* Icône + / × */
.faq__icon {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--gold);
  transition: transform .22s var(--ease);
  display: inline-block;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

/* Rotation → × quand ouvert */
.faq__toggle[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

/* ── Réponse ─────────────────────────────────────────────────────── */

.faq__answer {
  padding-bottom: 28px;
  max-width: 85%;
}

.faq__answer p {
  margin: 0 0 12px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.6;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__answer strong {
  color: var(--text-cream);
}

.faq__answer a {
  color: var(--gold);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.faq__answer a:hover {
  color: var(--gold-hover);
}

/* ── État caché (géré par JS via l'attribut hidden) ──────────────── */
/* hidden est natif HTML — pas besoin de règle CSS supplémentaire    */

/* ══════════════════════════════════════════════════════════════════
   FAQ — Responsive mobile (≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .faq {
    padding: 80px 24px;   /* bumped from 72px */
  }

  /* 1 colonne sur mobile */
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__headline {
    font-size: clamp(34px, 10vw, 48px);
  }

  .faq__contact-prompt {
    margin-top: 24px;
  }

  .faq__toggle {
    padding: 20px 0;
  }

  .faq__answer {
    max-width: 100%;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .faq {
    padding: 96px 32px;
  }

  .faq__layout {
    gap: 48px;
  }

  .faq__headline {
    font-size: clamp(32px, 4vw, 48px);
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION CTA FINAL — Tâche 9
   Section de conversion de clôture. Fond bg-deep, bordures hairline.
   Titre éditorial + message de facilité de réservation + CTA primaire.
   ══════════════════════════════════════════════════════════════════ */

.cta-final {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-final__inner {
  padding: 120px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-final__content {
  max-width: 680px;
  width: 100%;
}

/* ── Titre display ─────────────────────────────────────────────── */

.cta-final__headline {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  margin: 0;
  line-height: 0.95;
  color: var(--text-cream);
}

/* ── Corps ─────────────────────────────────────────────────────── */

.cta-final__body {
  margin: 32px 0 40px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 520px;
}

/* ── Actions ───────────────────────────────────────────────────── */

.cta-final__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-final__cta {
  min-height: 52px; /* ≥ 44px tap target */
}

.cta-final__or {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cta-final__phone {
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color .18s var(--ease);
}

.cta-final__phone:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   CTA FINAL — Responsive mobile (≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .cta-final__inner {
    padding: 80px 24px;
  }

  .cta-final__headline {
    font-size: clamp(48px, 14vw, 72px);
  }

  .cta-final__body {
    font-size: 16px;
    margin: 24px 0 32px;
    max-width: 100%;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-final__cta {
    width: 100%;
    justify-content: center;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .cta-final__inner {
    padding: 96px 32px;
  }

  .cta-final__headline {
    font-size: clamp(48px, 6vw, 72px);
  }

}

/* ══════════════════════════════════════════════════════════════════
   SECTION L'EXPÉRIENCE — page d'accueil
   Section SOMBRE. Structure : en-tête → panneau studio (image +
   parking/valet, surface --bg-elev) → bande processus 4 étapes.
   ══════════════════════════════════════════════════════════════════ */

.experience {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

/* ── En-tête ─────────────────────────────────────────────────────── */

.experience__headline {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  margin: 0;
  color: var(--text-cream);
  line-height: 0.93;
}

.experience__intro {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
  max-width: 280px;
  margin: 0;
  line-height: 1.55;
}

/* ── Grille studio : image + texte parking/valet ──────────────────── */
/* Panneau sombre élevé : reste dans la section sombre, distingué par
   une surface --bg-elev et des hairlines claires. */

.experience__studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  /* Déborde du padding de .dea-section pour couvrir pleine largeur */
  margin-left: -80px;
  margin-right: -80px;
  padding: 72px 80px;
}

/* ── Colonne image ─────────────────────────────────────────────── */

.experience__img-col {
  align-self: stretch;
}

.experience__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ── Colonne texte ─────────────────────────────────────────────── */

.experience__studio-text {
  display: flex;
  flex-direction: column;
}

.experience__body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.60;
  color: var(--text-mute);
  margin: 0 0 32px;
  max-width: 480px;
}

.experience__strong {
  color: var(--text-cream);
  font-weight: 600;
}

/* ── Bloc valet ─────────────────────────────────────────────────── */

.experience__valet-block {
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--gold-warm);
  padding: 20px;
  margin-bottom: 20px;
  background: var(--gold-soft);
}

.experience__valet-header {
  margin-bottom: 10px;
}

.experience__valet-header .dea-label {
  color: var(--gold);
}

.experience__valet-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
  margin: 0;
}

.experience__valet-body strong {
  color: var(--text-cream);
}

/* ── Bloc clients externes ──────────────────────────────────────── */

.experience__drop-block {
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--line-strong);
  padding: 20px;
  background: var(--bg-card);
}

.experience__drop-header {
  margin-bottom: 10px;
}

.experience__drop-header .dea-label {
  color: var(--text-mute);
}

.experience__drop-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
  margin: 0;
}

.experience__drop-body strong {
  color: var(--text-cream);
}

/* ── (Bloc « 3 différenciateurs » retiré de l'accueil — CSS supprimé) ─ */

/* ── Bande processus ─────────────────────────────────────────────── */

.experience__processus {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.experience__processus-header {
  margin-bottom: 48px;
}

.experience__processus-label {
  display: block;
  margin-bottom: 12px;
  color: var(--text-dim);
}

.experience__processus-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  margin: 0;
  color: var(--text-cream);
  line-height: 0.95;
}

/* ── 4 étapes en grille ─────────────────────────────────────────── */

.experience__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Ligne de connexion horizontale desktop */
.experience__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 1px;
  background: var(--line);
  pointer-events: none;
  z-index: 0;
}

.experience__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.experience__step-marker {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  background: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 24px;
}

.experience__step-num {
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.experience__step-body {
  flex: 1;
}

.experience__step-title {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  color: var(--text-cream);
  line-height: 1.1;
}

.experience__step-desc {
  margin: 0;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
  max-width: 220px;
}

/* ══════════════════════════════════════════════════════════════════
   L'EXPÉRIENCE — Responsive mobile (≤ 768px)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .experience {
    padding: 80px 24px;   /* bumped from 72px */
  }

  .experience__headline {
    font-size: clamp(36px, 10vw, 52px);
  }

  .experience__intro {
    text-align: left;
    max-width: 100%;
  }

  /* Studio grid : 1 colonne */
  .experience__studio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 48px 24px;
  }

  .experience__img {
    min-height: 260px;
    height: 260px;
  }

  .experience__img-col {
    align-self: auto;
  }

  .experience__body {
    font-size: 15px;
    max-width: 100%;
  }

  /* Processus : 1 colonne empilée */
  .experience__processus {
    margin-top: 48px;
  }

  .experience__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .experience__steps::before {
    display: none;
  }

  .experience__step {
    flex-direction: row;
    gap: 20px;
    padding-bottom: 36px;
    border-left: 1px solid var(--line);
    padding-left: 20px;
    margin-left: 36px;
  }

  .experience__step:last-child {
    border-left: none;
    padding-bottom: 0;
  }

  .experience__step-marker {
    position: absolute;
    left: -36px;
    top: 0;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .experience__step-num {
    font-size: 14px;
  }

  .experience__step-body {
    padding-top: 6px;
  }

  .experience__step-desc {
    max-width: 100%;
  }

  .experience__step-title {
    font-size: 20px;
  }

}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {

  .experience {
    padding: 96px 32px;
  }

  .experience__headline {
    font-size: clamp(36px, 5vw, 52px);
  }

  .experience__studio-grid {
    gap: 48px;
    margin-left: -32px;
    margin-right: -32px;
    padding: 64px 32px;
  }

  .experience__studio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience__steps {
    gap: 20px;
  }

  .experience__step-title {
    font-size: 20px;
  }

  .experience__step-desc {
    max-width: 100%;
  }

}

/* ══ ACCUEIL — BANDEAU DE RÉASSURANCE (sous le header)
   Version atténuée : fond anthracite avec icône + texte plus discrets,
   pour réduire l'agressivité visuelle au-dessus de la ligne. */
.home-reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--bg-chrome);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.home-reassure__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 9px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ══ ACCUEIL — SOUS-LIGNE DU CTA RÉSERVER ════════════════════════════ */
.hero__cta-primary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__cta-sub {
  color: var(--text-mute);
  text-align: center;
  font-size: 10px;
}

@media (max-width: 768px) {
  .home-reassure { font-size: 12px; padding: 11px 16px; }
}
