/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  border: 1.5px solid transparent;
  min-height: 48px;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--primary); color: #fff; }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { background: var(--wa-green-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 22%, transparent);
}
.btn-ghost:hover { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--text); }

.btn-ghost-inverse {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-inverse:hover { background: rgba(255,255,255,0.10); color: #fff; }

/* Eyebrow / small label */
.eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--inverse { color: var(--accent-on-dark); }
.eyebrow--inverse::before { background: var(--accent-on-dark); }

/* Section base */
.section {
  padding: 64px 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--primary);
  color: #fff;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.85); }

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  margin: 12px 0 14px;
  line-height: 1.1;
}
.section-head p {
  font-size: 1.02rem;
  max-width: 56ch;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-left: 12px;
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-head { margin-bottom: 56px; }
}

/* CARDS — radius-asym (LAY-6) */
.c-asym {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: 28px 26px;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.c-asym:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(35,39,31,0.18);
}
.c-asym--lead {
  background: var(--primary);
  color: #fff;
}
.c-asym--lead,
.c-asym--lead :where(h1, h2, h3, h4, p, li, span, a, small, strong) {
  color: #fff;
}
.c-asym--lead p { color: rgba(255,255,255,0.86); }
.c-asym--lead .svc-num { color: var(--accent-on-dark); }

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
}
.chip--solid { background: var(--accent); color: #fff; }
.chip--outline {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  color: var(--text-2);
}
.section--dark .chip--outline {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.86);
}
.section--dark .chip--solid {
  background: var(--accent-on-dark);
  color: var(--primary);
}
.section--dark .chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

/* Form fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label {
  font-size: 0.8rem;
  font-family: var(--ff-ui);
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  min-width: 0;
  min-height: 46px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* Dark form (contact section) */
.section--dark .field label { color: var(--accent-on-dark); }
.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder { color: rgba(255,255,255,0.55); }
.section--dark .field input:focus,
.section--dark .field select:focus,
.section--dark .field textarea:focus {
  border-color: var(--accent-on-dark);
  box-shadow: 0 0 0 3px rgba(200,217,204,0.22);
}

/* Modal mentions legales */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 20px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.ml-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  max-width: 560px;
  width: 100%;
  max-height: 88dvh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  margin-bottom: 18px;
}
.ml-box h3 {
  font-size: 0.95rem;
  margin: 18px 0 6px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--ff-ui);
  font-weight: 700;
}
.ml-box p { font-size: 0.94rem; line-height: 1.55; }
.ml-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 10%, transparent);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
}
.ml-close:hover { background: color-mix(in srgb, var(--text) 18%, transparent); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.92);
  display: grid;
  place-items: center;
  padding: 20px;
}
.lb-image {
  max-width: 92vw;
  max-height: 88dvh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  transition: background var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (min-width: 720px) {
  .lb-prev { left: 30px; }
  .lb-next { right: 30px; }
}
