/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 14px color-mix(in srgb, var(--accent) 35%, transparent);
}

.btn-primary:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent) 85%, #000);
  box-shadow: 0 5px 18px color-mix(in srgb, var(--accent) 45%, transparent);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 3px 14px color-mix(in srgb, var(--wa-green) 35%, transparent);
}

.btn-wa:hover {
  color: #fff;
  background: color-mix(in srgb, var(--wa-green) 85%, #000);
  box-shadow: 0 5px 18px color-mix(in srgb, var(--wa-green) 45%, transparent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Rating badge (COPY-4 preuve sociale hero) */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: .88rem;
  font-family: var(--ff-ui);
  transition: background var(--t-fast);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.rating-badge:hover { background: rgba(255,255,255,1); color: var(--text); }

.rating-badge .stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #F59E0B;
}

.rating-badge .stars svg { width: 13px; height: 13px; }

.rating-badge strong { font-weight: 700; color: var(--text); }

.rating-badge .google-logo { width: 14px; height: 14px; flex-shrink: 0; }

/* Section heading */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Section title */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-sub {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  max-width: 54ch;
  line-height: 1.7;
}

/* Card row (LAY-4 card = row) */
.c-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
}

.c-row__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.c-row__icon svg { width: 22px; height: 22px; }

.c-row__content {}
.c-row__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}

.c-row__text { font-size: .92rem; color: var(--text-2); line-height: 1.6; }

/* Galerie slider (LAY-4 gallery = slider) */
.gal-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
  cursor: grab;
}

.gal-slider:active { cursor: grabbing; }

.gal-slider::-webkit-scrollbar { height: 4px; }
.gal-slider::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.gal-slider img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(240px, 62vw, 380px);
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  transition: transform var(--t-base);
}

.gal-slider img:hover { transform: scale(1.02); }

/* Avis carousel (LAY-4 avis = carousel) */
.avis-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.avis-carousel::-webkit-scrollbar { height: 4px; }
.avis-carousel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.avis-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(88vw, 420px);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avis-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #F59E0B;
}

.avis-stars svg { width: 15px; height: 15px; }

.avis-quote {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.avis-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.avis-author {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--ff-ui);
}

.avis-date { font-size: .8rem; color: var(--text-mute); }

.avis-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: var(--text-mute);
  font-family: var(--ff-ui);
}

.avis-google-badge svg { width: 13px; height: 13px; }

/* FAQ accordion */
.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}

.faq-trigger h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--text);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-fast);
  color: var(--accent);
}

.faq-chevron svg { width: 12px; height: 12px; transition: transform var(--t-base); }

.faq-trigger[aria-expanded="true"] .faq-chevron { background: var(--accent); color: #fff; }
.faq-trigger[aria-expanded="true"] .faq-chevron svg { transform: rotate(180deg); }

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.faq-body.is-open { max-height: 400px; }

.faq-body p {
  padding: 0 0 20px;
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Modal mentions légales */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.ml-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1;
}

.ml-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
}

.ml-close:hover { background: var(--text-mute); color: #fff; }

.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-right: 40px;
}

.ml-box p { font-size: .9rem; color: var(--text-2); margin-bottom: 10px; max-width: unset; }
.ml-box strong { color: var(--text); }

/* Chips zone */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .83rem;
  font-family: var(--ff-ui);
  font-weight: 500;
}

/* Badge ouvert */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-family: var(--ff-ui);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
}

.open-badge--open { background: color-mix(in srgb, #16A34A 12%, transparent); color: #16A34A; }
.open-badge--closed { background: color-mix(in srgb, #DC2626 10%, transparent); color: #DC2626; }

.open-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.open-badge--open .open-badge__dot { animation: pulse-dot 2s ease infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

@media (prefers-reduced-motion: reduce) {
  .open-badge__dot { animation: none; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
}

.lightbox__nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lightbox__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  transition: background var(--t-fast);
}

.lightbox__btn:hover { background: rgba(255,255,255,.3); }
.lightbox__btn svg { width: 18px; height: 18px; }

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  font-size: 1.4rem;
  transition: background var(--t-fast);
}

.lightbox__close:hover { background: rgba(255,255,255,.3); }
