/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { background: color-mix(in srgb, var(--wa-green) 88%, #000); color: #fff; }

.btn-ghost {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }

.btn-ghost-light {
  background: transparent;
  border-color: var(--text-on-dark);
  color: var(--text-on-dark);
}
.btn-ghost-light:hover { background: var(--text-on-dark); color: var(--text); }

/* USP pills */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.chip svg { width: 12px; height: 12px; color: var(--accent); }

/* Card plain (LAY-2) */
.c-plain {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: var(--r-lg);
  padding: 28px;
}

/* Sections head (titres) */
.sec-head {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 720px;
}
.sec-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.sec-head .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.1;
}
.sec-head h2 em { font-style: italic; color: var(--accent); }
.sec-head .lede {
  margin-top: 14px;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 56ch;
}

/* Star rating SVG */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #DAA520;
}
.stars svg { width: 16px; height: 16px; }

/* Badge Google */
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-2);
}
.badge-google svg { width: 14px; height: 14px; }

/* Forms */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form-field label {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(20, 18, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: var(--ff-ui);
  transition: background var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-close { top: 12px; right: 12px; }
  .lb-prev { left: 8px; bottom: 18px; top: auto; transform: none; }
  .lb-next { right: 8px; bottom: 18px; top: auto; transform: none; }
}

/* Modal mentions */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 12, 0.55);
}
.ml-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  max-width: 520px;
  width: 100%;
  max-height: 86dvh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.ml-box h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.ml-box h3 {
  font-size: 1rem;
  margin: 16px 0 4px;
  font-family: var(--ff-ui);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ml-box p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }
.ml-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-family: var(--ff-ui);
}
.ml-close:hover { background: color-mix(in srgb, var(--text) 14%, transparent); }

/* Hero rating badge */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  margin-top: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
}
.hero-rating-badge strong { font-size: 0.95rem; }
.hero-rating-badge .stars { color: #DAA520; }
.hero-rating-badge svg { width: 14px; height: 14px; }
