/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(94,107,59,0.25);
}
.btn-primary:hover { background: oklch(40% 0.11 145); border-color: oklch(40% 0.11 145); box-shadow: 0 6px 20px rgba(94,107,59,0.35); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
  box-shadow: 0 2px 12px rgba(37,211,102,0.2);
}
.btn-wa:hover { background: #1da851; border-color: #1da851; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* Cards services (LAY-1 card:line) */
.svc-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 16px;
  align-items: start;
  transition: background 0.2s;
}
.svc-card:first-child { border-top: 1px solid var(--border); }
.svc-card:hover .svc-icon { background: var(--accent); color: #fff; }
.svc-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  color: var(--accent);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-icon svg { width: 20px; height: 20px; }
.svc-body h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.svc-body p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Cards avis */
.avis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.avis-stars { display: flex; gap: 3px; }
.avis-stars svg { width: 16px; height: 16px; fill: #F59E0B; }
.avis-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.avis-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.avis-author-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.avis-author-date { font-size: 0.78rem; color: var(--text-mute); }
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mute);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 50px;
}
.badge-google svg { width: 12px; height: 12px; }

/* Gallery items */
.gal-item {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,42,32,0);
  transition: background 0.3s;
}
.gal-item:hover::after { background: rgba(44,42,32,0.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-inner { position: relative; max-width: 90vw; max-height: 90dvh; }
.lb-image { max-width: 90vw; max-height: 88dvh; object-fit: contain; border-radius: var(--r-md); }
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 16px; right: 16px; font-size: 1.2rem; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* 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,0.55);
  backdrop-filter: blur(2px);
}
.ml-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  max-height: 85dvh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ml-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: var(--text-mute);
  background: var(--bg-alt);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.ml-close:hover { background: var(--accent); color: #fff; }
.ml-box h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text);
}
.ml-box p, .ml-box address {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-2);
  font-style: normal;
  margin-bottom: 12px;
}
.ml-box strong { color: var(--text); }

/* Chips zone */
.zone-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.zone-chip {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* Horaires table */
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table tr { border-bottom: 1px solid var(--border); }
.horaires-table td { padding: 10px 0; font-size: 0.88rem; }
.horaires-table td:first-child { color: var(--text-2); font-weight: 600; text-transform: capitalize; }
.horaires-table td:last-child { text-align: right; color: var(--text); }
.horaires-table .ferme td { color: var(--text-mute); }
.horaires-table tr.today td { color: var(--accent); font-weight: 700; }

/* Badge "ouvert maintenant" */
.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}
.badge-open.open { background: #d1f0da; color: #166534; }
.badge-open.closed { background: #fde8e8; color: #991b1b; }
.badge-open .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge-open.open .dot { animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* FAQaccordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer.is-open { max-height: 500px; }
.faq-answer p { padding-bottom: 20px; font-size: 0.92rem; color: var(--text-2); line-height: 1.7; }

/* Rating badge hero */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 7px 14px;
  border-radius: 50px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-flex;
  width: fit-content;
  transition: background 0.2s;
}
.hero-rating:hover { background: rgba(255,255,255,0.28); }
.hero-rating .stars { display: flex; gap: 2px; }
.hero-rating .stars svg { width: 13px; height: 13px; fill: #F59E0B; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* Lien Google avis */
.lien-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.lien-google:hover { opacity: 0.75; }

/* Formulaire contact */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-width: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  min-height: 48px;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(94,107,59,0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 4px; }

/* Section h2 générique */
.section-header { margin-bottom: clamp(28px, 5vw, 48px); }
.section-header h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.12;
}
.section-header p {
  margin-top: 14px;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: var(--text-2);
  max-width: 54ch;
}
