   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── Header fix ─── */
.header, .header.scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 24px rgba(11,47,107,.07) !important;
}

.legal-page {
  background: #f0f4fb;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #0d1f3c;
}

/* ─── Hero ─── */
.legal-hero {
  min-height: 36vh;
  background: linear-gradient(135deg, #071e3d 0%, #0b2f6b 60%, #1a4f8a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,200,232,.12) 0%, transparent 60%);
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #a8c8e8, transparent);
}
.legal-hero__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  animation: legal-fadeUp 0.7s ease both;
}
.legal-hero__breadcrumb {
  font-size: 0.7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a8c8e8;
  margin-bottom: 1.2rem;
}
.legal-hero__breadcrumb a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.legal-hero__breadcrumb a:hover { color: #a8c8e8; }
.legal-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.8rem;
}
.legal-hero__title em { font-style: italic; color: #c5ddf5; }
.legal-hero__divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #a8c8e8, #4a7fad);
  border-radius: 2px;
  margin: 1.2rem auto;
}
.legal-hero__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ─── Section ─── */
.legal-section {
  padding: 4rem 0 6rem;
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Intro ─── */
.legal-intro {
  font-size: 0.95rem;
  color: #4a6080;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid #d0dcef;
  border-radius: 16px;
  border-left: 4px solid #0b2f6b;
}

/* ─── Block ─── */
.legal-block {
  background: #ffffff;
  border: 1px solid #d0dcef;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(11,47,107,.04);
}

.legal-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #0b2f6b;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e8eef8;
}

.legal-block h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0b2f6b;
  margin: 1.4rem 0 0.5rem;
}

.legal-block p {
  font-size: 0.88rem;
  color: #4a6080;
  line-height: 1.9;
  margin-bottom: 0.8rem;
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-block ol,
.legal-block ul {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0.8rem 0;
}
.legal-block li {
  font-size: 0.88rem;
  color: #4a6080;
  line-height: 1.85;
}
.legal-block a {
  color: #0b2f6b;
  text-decoration: underline;
}
.legal-block a:hover { color: #1a4f8a; }

/* ─── Adresse ─── */
.legal-address {
  background: #f0f4fb;
  border: 1px solid #d0dcef;
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-top: 0.8rem;
}
.legal-address p {
  margin-bottom: 0.4rem !important;
}

/* ─── Stand ─── */
.legal-stand {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  color: #8a9ab0 !important;
  font-style: italic;
}

/* ─── Animation ─── */
@keyframes legal-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .legal-hero { padding: 5rem 1.5rem 3rem; }
  .legal-section { padding: 3rem 0 4rem; }
  .legal-block { padding: 1.5rem; }
}