/* boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--r-md); border: 0;
  font-family: var(--ff-ui); font-size: 0.93rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 18px -10px rgba(36, 74, 58, 0.65);
}
.btn-primary:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--text); border: 1.5px solid var(--text);
}
.btn-secondary:hover { background: var(--text); color: var(--bg); }
.btn-wa {
  background: var(--wa-green); color: #fff;
  box-shadow: 0 6px 18px -10px rgba(37, 211, 102, 0.6);
}
.btn-wa:hover { background: #1ea854; color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--accent); border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: #fff; }

/* CARDS (LAY-6 / card = radius-asym) */
.c-asym {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: 24px;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.c-asym:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -22px rgba(35,39,31,0.35); }
.c-asym__num {
  display: inline-block;
  font-family: var(--ff-display);
  color: var(--accent-2); font-size: 1rem; font-weight: 600;
  margin-bottom: 14px; letter-spacing: 0.04em;
}
.c-asym__title {
  font-family: var(--ff-display); font-size: 1.32rem; font-weight: 500;
  color: var(--text); margin-bottom: 10px; line-height: 1.2;
}
.c-asym__text { color: var(--text-2); font-size: 0.95rem; margin: 0; }

/* variante card a fond fonce (PIEGE PROD #10) */
.c-asym--dark {
  background: var(--accent);
  border-radius: 22px 4px 22px 4px;
}
.c-asym--dark,
.c-asym--dark :where(h2, h3, h4, p, li, span) { color: #fff; }
.c-asym--dark .c-asym__num { color: var(--accent-2); }
.c-asym--dark .c-asym__title { color: #fff; }
.c-asym--dark .c-asym__text { color: color-mix(in srgb, #fff 82%, transparent); }
.c-asym--dark .c-asym__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 12px 18px;
  background: var(--accent-2); color: #fff; border-radius: var(--r-sm);
  font-family: var(--ff-ui); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: background var(--dur) var(--ease);
}
.c-asym--dark .c-asym__cta:hover { background: #fff; color: var(--accent); }

/* chips / tags */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em;
}

/* form */
.form-grid {
  display: grid; gap: 14px; grid-template-columns: 1fr;
}
@media (min-width: 600px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: 0.85rem; color: var(--text-2); font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%; min-width: 0;
  padding: 14px 16px; min-height: 48px;
  font-family: var(--ff-body); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.form-feedback {
  margin-top: 12px; padding: 12px 16px; border-radius: var(--r-md);
  font-size: 0.93rem; display: none;
}
.form-feedback.is-shown { display: block; }
.form-feedback.is-success { background: color-mix(in srgb, var(--wa-green) 12%, var(--bg)); color: #166e3a; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(15, 18, 13, 0.94);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lb-image { max-width: 92vw; max-height: 88vh; 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; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; font-size: 1.4rem;
  transition: background var(--dur) var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* modal (mentions legales) */
.ml-modal {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.ml-modal[hidden] { display: none !important; }
.ml-overlay { position: absolute; inset: 0; background: rgba(15, 18, 13, 0.55); }
.ml-box {
  position: relative; background: var(--bg); color: var(--text);
  max-width: 520px; width: 100%; padding: 32px 28px 26px;
  border-radius: var(--r-lg); max-height: 88dvh; overflow-y: auto;
  box-shadow: 0 28px 60px -18px rgba(0,0,0,0.4);
}
.ml-box h2 { font-family: var(--ff-display); font-size: 1.45rem; margin-bottom: 18px; }
.ml-box h3 { font-family: var(--ff-display); font-size: 1.02rem; margin: 18px 0 8px; }
.ml-box p { font-size: 0.92rem; line-height: 1.6; color: var(--text-2); margin-bottom: 12px; }
.ml-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; background: transparent; border: 0;
  font-size: 1.4rem; color: var(--text); cursor: pointer;
  border-radius: 50%;
}
.ml-close:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }

/* badge note Google */
.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.83rem; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.hero-rating-badge strong { font-weight: 700; }
.hero-rating-badge .stars { display: inline-flex; gap: 1px; color: #F4B400; }
.hero-rating-badge .stars svg { width: 14px; height: 14px; fill: currentColor; }
.hero-rating-badge:hover { background: #fff; color: var(--accent); }
