/* ============================================================
 *  Braid Makeur — Styles des pages SEO locales
 *  E-E-A-T + outils interactifs (FAQ, estimation, avis, accès)
 * ============================================================ */

/* Trust badges (hero) */
.bm-trust-row {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px;
}
.bm-trust {
  display: inline-flex; flex-direction: column; padding: 10px 16px;
  background: var(--bm-surface); border: 1px solid var(--bm-border-soft);
  border-radius: 12px; min-width: 110px;
}
.bm-trust span { font-size: 16px; font-weight: 700; color: var(--bm-text); }
.bm-trust small { font-size: 11.5px; color: var(--bm-text-mute); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.bm-trust:first-child span { color: #f5b400; }

/* E-E-A-T : Notre coiffeuse */
.bm-pro-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, var(--bm-bg) 0%, var(--bm-surface) 100%);
  border-top: 1px solid var(--bm-border-soft);
  border-bottom: 1px solid var(--bm-border-soft);
}
.bm-pro {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center;
}
.bm-pro__avatar img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 50%; border: 4px solid var(--bm-accent-l);
  box-shadow: var(--bm-shadow);
}
.bm-pro__bio h2 { font-size: 28px; }
.bm-pro__bio p { color: var(--bm-text-soft); line-height: 1.7; font-size: 16px; margin-bottom: 12px; }
.bm-pro__creds { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bm-pro__creds li { padding: 8px 12px; background: var(--bm-surface); border: 1px solid var(--bm-border-soft); border-radius: 10px; font-size: 14px; }
@media (max-width: 720px) {
  .bm-pro { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .bm-pro__avatar img { max-width: 200px; margin: 0 auto; }
  .bm-pro__creds { grid-template-columns: 1fr; }
}

/* Comment se passe le RDV */
.bm-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.bm-step-card {
  background: var(--bm-surface); border: 1px solid var(--bm-border-soft);
  border-radius: var(--bm-radius); padding: 22px 18px;
  position: relative;
}
.bm-step-card .num {
  position: absolute; top: -16px; left: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bm-accent); color: var(--bm-text);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  border: 3px solid var(--bm-bg);
}
.bm-step-card h3 { font-size: 17px; margin: 8px 0 6px; font-family: var(--bm-font-sans) !important; font-weight: 600 !important; }
.bm-step-card p { color: var(--bm-text-soft); font-size: 14px; line-height: 1.55; margin: 0; }
@media (max-width: 980px) { .bm-steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bm-steps-grid { grid-template-columns: 1fr; } }

/* Tableau d'estimation interactif */
.bm-estim {
  background: var(--bm-bg);
  border-radius: var(--bm-radius);
  overflow: hidden;
  border: 1px solid var(--bm-border);
}
.bm-estim__row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 22px;
  background: var(--bm-surface);
  border: none; border-bottom: 1px solid var(--bm-border-soft);
  cursor: pointer; font: inherit; text-align: left;
  transition: background .15s;
}
.bm-estim__row:last-child { border-bottom: none; }
.bm-estim__row:hover { background: #fff; }
.bm-estim__row.is-open {
  background: linear-gradient(90deg, #fffaef 0%, var(--bm-surface) 100%);
  border-left: 4px solid var(--bm-accent);
}
.bm-estim__cat { font-size: 16px; font-weight: 600; color: var(--bm-text); }
.bm-estim__time { font-size: 15px; color: var(--bm-accent-d); font-weight: 700; white-space: nowrap; }

/* Avis clients */
.bm-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bm-review {
  background: var(--bm-surface); border: 1px solid var(--bm-border-soft);
  border-radius: var(--bm-radius); padding: 22px 22px;
}
.bm-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bm-review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bm-accent), var(--bm-accent-d));
  color: var(--bm-text); font-weight: 700; font-size: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bm-review__author { font-weight: 600; font-size: 15px; }
.bm-review__meta { font-size: 12.5px; color: var(--bm-text-mute); margin-top: 2px; }
.bm-review__text { color: var(--bm-text-soft); font-size: 14.5px; line-height: 1.55; margin: 0; font-style: italic; }
@media (max-width: 980px) { .bm-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bm-reviews-grid { grid-template-columns: 1fr; } }

/* FAQ accordéon */
.bm-faq { display: flex; flex-direction: column; gap: 10px; }
.bm-faq__item {
  background: var(--bm-bg);
  border: 1px solid var(--bm-border-soft);
  border-radius: var(--bm-radius);
  overflow: hidden;
}
.bm-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--bm-text);
}
.bm-faq__item summary::-webkit-details-marker { display: none; }
.bm-faq__arrow {
  font-size: 22px; font-weight: 300; color: var(--bm-text-mute);
  transition: transform .2s;
}
.bm-faq__item[open] .bm-faq__arrow { transform: rotate(45deg); color: var(--bm-accent); }
.bm-faq__a {
  padding: 0 22px 18px; color: var(--bm-text-soft); font-size: 15px; line-height: 1.65;
}
.bm-faq__a a { color: var(--bm-accent-d); font-weight: 600; }

/* Accès */
.bm-access {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start;
}
.bm-access__city-info {
  background: var(--bm-bg); border: 1px solid var(--bm-border-soft);
  border-radius: var(--bm-radius); padding: 22px 24px;
}
.bm-access__city-info ul { list-style: none; padding: 0; margin: 0; }
.bm-access__city-info li { padding: 6px 0; border-bottom: 1px dashed var(--bm-border-soft); font-size: 14px; color: var(--bm-text-soft); }
.bm-access__city-info li:last-child { border-bottom: none; }
.bm-access__city-info strong { color: var(--bm-text); }
@media (max-width: 720px) { .bm-access { grid-template-columns: 1fr; } }

/* Liens prestations (compact avec image) */
.bm-svc-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.bm-svc-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--bm-bg);
  border: 1px solid var(--bm-border-soft);
  border-radius: 14px;
  text-decoration: none; color: var(--bm-text);
  transition: all .15s;
}
.bm-svc-link:hover { border-color: var(--bm-text); transform: translateY(-1px); box-shadow: var(--bm-shadow-sm); }
.bm-svc-link img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.bm-svc-link__title { font-weight: 600; font-size: 14px; line-height: 1.3; }
.bm-svc-link__price { font-size: 13px; color: var(--bm-accent-d); margin-top: 2px; font-weight: 600; }

/* Breadcrumbs */
.bm-breadcrumb { padding: 100px 20px 0; max-width: 1080px; margin: 0 auto; }
.bm-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--bm-text-mute); }
.bm-breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; color: var(--bm-border); }
.bm-breadcrumb a { color: var(--bm-text-soft); text-decoration: none; }
.bm-breadcrumb a:hover { color: var(--bm-accent-d); }
.bm-breadcrumb li[aria-current="page"] { color: var(--bm-text); font-weight: 600; }

/* TL;DR */
.bm-tldr { margin-top: 26px; padding: 18px 22px; background: #fffaef; border: 1px solid var(--bm-accent-l); border-left: 4px solid var(--bm-accent); border-radius: var(--bm-radius); }
.bm-tldr strong { display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bm-accent-d); margin-bottom: 8px; }
.bm-tldr ul { margin: 0; padding-left: 20px; font-size: 14.5px; color: var(--bm-text); line-height: 1.7; }
.bm-tldr ul strong { display: inline; font-size: inherit; letter-spacing: 0; text-transform: none; color: var(--bm-text); margin: 0; }

/* Meta info */
.bm-meta-info { margin-top: 18px; font-size: 12.5px; color: var(--bm-text-mute); display: flex; flex-wrap: wrap; gap: 10px; }
.bm-meta-info span { display: inline-block; }

/* Storytelling Vérancia */
.bm-story { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.bm-story__step { display: flex; gap: 16px; align-items: flex-start; }
.bm-story__num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--bm-accent); color: var(--bm-text); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.bm-story__step strong { font-size: 16px; color: var(--bm-text); display: block; margin-bottom: 4px; }
.bm-story__step p { color: var(--bm-text-soft); font-size: 15px; line-height: 1.65; margin: 0; }

/* Personas (Pour qui ?) */
.bm-personas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bm-persona { background: var(--bm-surface); border: 1px solid var(--bm-border-soft); border-radius: var(--bm-radius); padding: 22px 18px; text-align: center; transition: all .2s; }
.bm-persona:hover { border-color: var(--bm-accent-l); transform: translateY(-2px); box-shadow: var(--bm-shadow-sm); }
.bm-persona__icon { font-size: 32px; margin-bottom: 8px; }
.bm-persona h3 { font-size: 16px; margin: 6px 0 8px; font-family: var(--bm-font-sans) !important; font-weight: 600 !important; }
.bm-persona p { color: var(--bm-text-soft); font-size: 13.5px; line-height: 1.5; margin: 0; }
@media (max-width: 980px) { .bm-personas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bm-personas { grid-template-columns: 1fr; } }

/* Tableau comparatif */
.bm-compare-wrap { overflow-x: auto; border-radius: var(--bm-radius); border: 1px solid var(--bm-border-soft); }
.bm-compare { width: 100%; border-collapse: collapse; background: var(--bm-bg); font-size: 14px; }
.bm-compare th { background: var(--bm-text); color: #fff; text-align: left; padding: 12px 14px; font-size: 12.5px; letter-spacing: 0.04em; font-weight: 600; text-transform: uppercase; }
.bm-compare td { padding: 14px; border-bottom: 1px solid var(--bm-border-soft); color: var(--bm-text); }
.bm-compare tbody tr:last-child td { border-bottom: none; }
.bm-compare tbody tr:hover { background: #fffdf6; }
.bm-compare tr.is-current { background: #fffaef; }
.bm-compare a { color: var(--bm-accent-d); text-decoration: none; font-weight: 600; }
.bm-compare a:hover { text-decoration: underline; }

/* HowTo entretien */
.bm-howto { list-style: none; padding: 0; margin: 0; counter-reset: howto; display: grid; gap: 14px; }
.bm-howto li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 22px; background: var(--bm-surface); border: 1px solid var(--bm-border-soft); border-radius: var(--bm-radius); }
.bm-howto__num { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--bm-accent), var(--bm-accent-d)); color: var(--bm-text); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.bm-howto h3 { font-size: 16px; margin: 0 0 6px; font-family: var(--bm-font-sans) !important; font-weight: 600 !important; }
.bm-howto p { color: var(--bm-text-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Lexique */
.bm-lex { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0; margin: 0; }
.bm-lex > div { background: var(--bm-bg); border: 1px solid var(--bm-border-soft); border-radius: 12px; padding: 14px 18px; }
.bm-lex dt { font-weight: 700; color: var(--bm-text); font-size: 14.5px; margin-bottom: 4px; }
.bm-lex dd { color: var(--bm-text-soft); font-size: 13.5px; line-height: 1.55; margin: 0; }
@media (max-width: 720px) { .bm-lex { grid-template-columns: 1fr; } }

/* Pills villes */
.bm-city-pill {
  padding: 8px 14px;
  background: var(--bm-bg);
  border: 1px solid var(--bm-border-soft);
  border-radius: 999px;
  font-size: 13.5px; color: var(--bm-text-soft);
  text-decoration: none;
  transition: all .15s;
}
.bm-city-pill:hover { background: var(--bm-text); color: #fff !important; border-color: var(--bm-text); }
