/* ============================================================
   LOK-ALL EVENTS — Pages légales
   ============================================================ */

/* ── Bandeau page (style clair, cohérent avec l'index) ── */
.legal-hero {
  padding: 104px 0 40px;
  background: var(--c-creme, #faf8f5);
  border-bottom: 1px solid var(--c-gris-clair, #f1ede6);
  position: relative;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-rouge, #e20612);
}
.legal-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted, #6b6258);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color .2s;
}
.legal-hero__back:hover { color: var(--c-rouge, #e20612); }
.legal-hero__kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-rouge, #e20612);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-hero__kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--c-rouge, #e20612);
  flex-shrink: 0;
}
.legal-hero h1 {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--c-noir, #0a0a0a);
  line-height: 1.1;
  margin: 0 0 12px;
}
.legal-hero__meta {
  font-size: 12px;
  color: var(--c-text-muted, #6b6258);
}

.page-breadcrumb,
.legal-breadcrumb {
  background: var(--c-creme, #faf8f5);
  border-bottom: 1px solid var(--c-gris-clair, #f1ede6);
  border-top: 1px solid var(--c-gris-clair, #f1ede6);
  margin-bottom: 15px;
}
.page-breadcrumb__list,
.legal-breadcrumb__list {
  max-width: 860px;
  margin: 0;
  padding-top: 12px;
  padding-right: clamp(20px, 4vw, 40px);
  padding-bottom: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 12px;
  color: #888;
}
.page-breadcrumb__list::-webkit-scrollbar,
.legal-breadcrumb__list::-webkit-scrollbar { display: none; }
.page-breadcrumb__item,
.legal-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.page-breadcrumb__item:not(:last-child)::after,
.legal-breadcrumb__item:not(:last-child)::after {
  content: '>';
  color: #c9c2b8;
}
.page-breadcrumb__item a,
.legal-breadcrumb__item a {
  color: #777;
  text-decoration: none;
}
.page-breadcrumb__item a:hover,
.legal-breadcrumb__item a:hover { color: var(--c-rouge, #e20612); }
.page-breadcrumb__item span,
.legal-breadcrumb__item span { color: #1a1a1a; font-weight: 600; }

/* ── Navigation interne ── */
.legal-nav {
  background: var(--c-creme, #faf8f5);
  border-bottom: 1px solid var(--c-gris-clair, #f1ede6);
  position: sticky;
  top: 64px;
  z-index: 10;
}
.legal-nav__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.legal-nav__inner::-webkit-scrollbar { display: none; }
.legal-nav a {
  display: inline-block;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.legal-nav a:hover { color: #1a1a1a; border-color: #ddd; }
.legal-nav a.active { color: var(--c-rouge, #e20612); border-color: var(--c-rouge, #e20612); }

/* ── Corps du contenu ── */
.legal-body {
  max-width: 860px;
  margin: 40px auto;
  padding: 35px clamp(20px, 4vw, 40px) 40px;
  background: #fff;
  border: 1.5px solid #ece8df;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(10, 10, 10, .04);
}

/* Sections */
.legal-section {
  margin: 30px 0 30px 0;
}

.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2 .legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--c-rouge, #e20612);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--font-mono, 'DM Mono', monospace);
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 8px;
}

.legal-section p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 14px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 8px 0 14px 0;
  padding-left: 20px;
}
.legal-section ul li {
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* Encarts info */
.legal-info {
  background: #f7f9ff;
  border: 1.5px solid #c7d9f5;
  border-left: 4px solid #185fa5;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.65;
}
.legal-info strong { color: #185fa5; }

.legal-warn {
  background: #fff8f8;
  border: 1.5px solid #fde0e0;
  border-left: 4px solid var(--c-rouge, #e20612);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.65;
}
.legal-warn strong { color: var(--c-rouge, #e20612); }

/* Tableau récapitulatif */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 16px 0;
}
.legal-table th {
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.legal-table th:first-child { border-radius: 8px 0 0 0; }
.legal-table th:last-child  { border-radius: 0 8px 0 0; }
.legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  vertical-align: top;
  line-height: 1.55;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: #fafafa; }

/* Coordonnées */
.legal-contact-card {
  background: #fafafa;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}
.legal-contact-card__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #bbb;
  margin-bottom: 12px;
}
.legal-contact-card__line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.legal-contact-card__line i {
  color: var(--c-rouge, #e20612);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.legal-contact-card__line a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}
.legal-contact-card__line a:hover { border-color: var(--c-rouge, #e20612); color: var(--c-rouge, #e20612); }

/* Pages inter-liens */
.legal-pages-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
}
.legal-pages-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: all .15s;
  background: #fff;
}
.legal-pages-nav a:hover {
  border-color: var(--c-rouge, #e20612);
  color: var(--c-rouge, #e20612);
}

/* Responsive */
@media (max-width: 700px) {
  .legal-hero { padding: 80px 0 32px; }
  .legal-hero h1 { font-size: 28px; }
  .legal-body { padding: 36px 18px 60px; }
  .legal-table { font-size: 12.5px; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}
