/* style.css */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sky: #5aafe0;
  --sky-light: #a8d8f0;
  --sky-deep: #2d7fb8;
  --sky-pale: #e8f5fc;
  --ink: #0f1e2b;
  --ink-soft: #2c4358;
  --cream: #f7fbfe;
  --white: #ffffff;
  --gold: #c8a96e;
  --shadow: 0 4px 32px rgba(45, 127, 184, 0.13);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SKIP LINK (WCAG) ─── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--sky-deep);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  font-family: var(--font-body);
}
.skip-link:focus {
  top: 1rem;
}

/* ─── NAV ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 20px rgba(45, 127, 184, 0.12);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  line-height: 1.2;
}
header.scrolled .logo-text {
  color: var(--ink);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sky-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
nav a:hover::after,
nav a:focus::after {
  transform: scaleX(1);
}
nav a:focus {
  outline: 2px solid var(--sky-light);
  outline-offset: 4px;
  border-radius: 2px;
}
header.scrolled nav a {
  color: var(--ink-soft);
}

.nav-cta {
  background: var(--sky);
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-weight: 500 !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--sky-deep);
}
header.scrolled .nav-cta {
  background: var(--sky);
  color: #fff !important;
}

/* ─── HERO ─── */
#accueil {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../img/background.webp") center center / cover no-repeat;
  background-size: cover, cover;
}

/* Grain overlay */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 760px;
  animation: heroIn 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-light);
  display: block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.hero-title em {
  font-style: italic;
  color: var(--sky-light);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  margin-bottom: 2.8rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn:focus-visible {
  outline: 3px solid var(--sky-light);
  outline-offset: 3px;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--white);
  color: var(--sky-deep);
}
.btn-primary:hover {
  background: var(--sky-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 175, 224, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: heroIn 1.4s 0.4s both;
}
.scroll-indicator::before {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── INTRODUCTION SEO ─── */
.intro-seo {
  background: var(--white);
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--sky-light);
}
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.intro-title em {
  font-style: italic;
  color: var(--sky);
}
.intro-text {
  text-align: left;
  columns: 1;
}
.intro-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.intro-text p:last-child {
  margin-bottom: 0;
}
.intro-text strong {
  color: var(--ink);
  font-weight: 500;
}

@media (min-width: 700px) {
  .intro-text {
    columns: 2;
    column-gap: 2.5rem;
  }
  .intro-text p {
    break-inside: avoid;
  }
}

/* ─── SECTION COMMUNE ─── */
section {
  padding: 6rem 1.5rem;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--sky);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  padding: 2rem;
  border: 1px solid var(--sky-light);
  border-radius: 8px;
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--sky-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sky-deep);
  fill: none;
  stroke-width: 1.8;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Service mis en avant (parapente) */
.service-card--featured {
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--white) 100%);
  border-color: var(--sky);
  grid-column: span 2;
}
.service-card--featured::before {
  transform: scaleX(1);
}
.service-card--featured .service-icon {
  background: var(--sky);
}
.service-card--featured .service-icon svg {
  stroke: white;
}

/* Tarif dans les cartes service */
.service-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sky-light);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.service-price .price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sky-deep);
}
.service-price .price-detail {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 600px) {
  .service-card--featured {
    grid-column: span 1;
  }
}

/* ─── ZONE ─── */
#zone {
  background: var(--sky-pale);
}
.zone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.zone-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--sky) 100%);
  position: relative;
}
.zone-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.zone-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}
.zone-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.zone-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.zone-list li:first-child {
  color: var(--sky-deep);
  font-weight: 500;
}
.zone-list li:first-child::before {
  background: var(--sky-deep);
  width: 8px;
  height: 8px;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--ink);
}
#contact .section-label {
  color: var(--sky-light);
}
#contact .section-title {
  color: var(--white);
}
#contact .section-title em {
  color: var(--sky-light);
}
#contact .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 1rem;
}
.contact-card:hover {
  background: rgba(90, 175, 224, 0.12);
  border-color: var(--sky);
  transform: translateX(4px);
}
.contact-card:focus-visible {
  outline: 2px solid var(--sky-light);
  outline-offset: 3px;
  border-radius: 12px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.contact-card-text {
  flex: 1;
}
.contact-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.contact-card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-card-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-block {
  padding: 1.8rem;
  background: rgba(90, 175, 224, 0.1);
  border: 1px solid rgba(90, 175, 224, 0.2);
  border-radius: 12px;
}
.hours-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span:last-child {
  color: var(--sky-light);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: #07131d;
  padding: 2rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}
footer a {
  color: var(--sky-light);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer a:focus-visible {
  outline: 2px solid var(--sky-light);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  header {
    padding: 1rem 1.5rem;
  }
  header nav {
    gap: 1.2rem;
  }
  header nav a:not(.nav-cta) {
    display: none;
  }
  .zone-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  section {
    padding: 4rem 1.2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  /* Contact cards mobile */
  .contact-card {
    padding: 1.2rem;
    gap: 1rem;
  }
  .contact-card-icon {
    width: 44px;
    height: 44px;
  }
  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-card-value {
    font-size: 1.1rem;
  }
  .contact-card-hint {
    font-size: 0.75rem;
  }
  .hours-block {
    padding: 1.2rem;
  }
}

/* ─── ANIMATIONS SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

nav.ml-toc {
  flex-wrap: wrap;
}

.ml-hero {
  padding-top: calc(80px + 4rem);
  /* hauteur header fixe + marge */
  padding-bottom: 3rem;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  text-align: center;
}

.ml-hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 0.8rem;
}

.ml-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.ml-hero-title em {
  font-style: italic;
  color: var(--sky-light);
}

.ml-hero-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--sky-pale);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--sky-light);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--sky);
  margin-right: 0.5rem;
}

.breadcrumb a {
  color: var(--sky-deep);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb a:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
  border-radius: 2px;
}

.breadcrumb [aria-current="page"] {
  color: var(--ink-soft);
}

/* ─── CONTENU ─── */
.ml-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

/* Table des matières */
.ml-toc {
  background: var(--sky-pale);
  border: 1px solid var(--sky-light);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin-bottom: 3.5rem;
}

.ml-toc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ml-toc-title svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky-deep);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.ml-toc ol {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
  counter-reset: toc;
}

.ml-toc li {
  counter-increment: toc;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.ml-toc li::before {
  content: counter(toc) ".";
  color: var(--sky);
  font-weight: 600;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.ml-toc a {
  color: var(--sky-deep);
  text-decoration: none;
  line-height: 1.4;
}

.ml-toc a:hover {
  text-decoration: underline;
}

.ml-toc a:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Sections */
section.ml-section {
  padding: 1rem;
  scroll-margin-top: 100px;
  /* offset pour le header fixe */
}

.ml-section-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--sky-light);
}

.ml-section-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--sky);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.ml-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.ml-section p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

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

.ml-section strong {
  color: var(--ink);
  font-weight: 500;
}

/* Info card */
.ml-info-card {
  background: var(--white);
  border: 1px solid var(--sky-light);
  border-left: 3px solid var(--sky);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.ml-info-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

/* Lien mail/tel dans le texte */
.ml-section a {
  color: var(--sky-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.ml-section a:hover {
  color: var(--sky);
}

.ml-section a:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Note RGPD */
.ml-rgpd-note {
  background: linear-gradient(135deg, var(--sky-pale) 0%, #fff 100%);
  border: 1px solid var(--sky-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.ml-rgpd-note p + p {
  margin-top: 0.6rem;
}

/* Retour accueil */
.ml-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sky-deep);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 2rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--sky-light);
  border-radius: 999px;
  transition: all var(--transition);
}

.ml-back:hover {
  background: var(--sky-pale);
  border-color: var(--sky);
}

.ml-back:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 999px;
}

.ml-back svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 600px) {
  .ml-toc ol {
    grid-template-columns: 1fr;
  }

  .ml-content {
    padding: 2.5rem 1.2rem 4rem;
  }
}
