:root {
  --bg: #ffffff;
  --bg-soft: #f3f3f3;

  --dark: #0c0c0c;
  --dark-soft: #171717;

  --text: #1f1f1f;
  --muted: #6a6a6a;

  --accent: #d71920;
  --accent-dark: #b70f15;

  --border: #dedede;

  --radius: 22px;

  --container: 1180px;
}


/* ======================================================
   RESET
====================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}


/* ======================================================
   GLOBAL
====================================================== */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--dark);
  color: #ffffff;
}

.eyebrow {
  margin-bottom: 18px;

  color: var(--accent);

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  font-size: clamp(64px, 8vw, 110px);
  letter-spacing: -5px;
  font-weight: 900;
}

h2 {
  max-width: 900px;

  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -2.5px;
  font-weight: 900;
}

h3 {
  font-size: 28px;
  font-weight: 800;
}

.large-text {
  font-size: 23px;
  line-height: 1.5;
}

.btn {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border-radius: 100px;

  background: var(--accent);
  color: #ffffff;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-small {
  min-height: 42px;
  padding: 0 20px;
}

.btn-large {
  min-height: 60px;
  padding: 0 34px;
}

.btn-outline {
  background: transparent;
  color: var(--dark);

  border: 1px solid var(--dark);
}

.btn-outline:hover {
  color: #ffffff;
  background: var(--dark);
}


/* ======================================================
   HEADER
====================================================== */
.brand-logo {
  display: block;
  height: 80px;
  width: auto;
}

.brand {
  display: flex;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;

  z-index: 100;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

.brand-text {
  font-size: 26px;
  font-weight: 900;

  letter-spacing: -1.6px;
}

.brand-two {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;

  gap: 22px;

  font-size: 14px;
  font-weight: 700;
}

.nav > a {
  white-space: nowrap;
}

.nav > a:not(.btn) {
  position: relative;
}

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  font-size: 30px;
  cursor: pointer;
}


/* ======================================================
   HERO
====================================================== */

.hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding: 115px 0;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 63%,
      #f4f4f4 63%,
      #f4f4f4 100%
    );
}

.hero-background-number {
  position: absolute;

  right: -20px;
  top: 50%;

  transform: translateY(-50%);

  font-size: clamp(450px, 42vw, 700px);
  font-weight: 900;

  line-height: 0.8;

  color: rgba(215, 25, 32, 0.055);

  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  gap: 90px;
  align-items: center;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-subtitle {
  margin-top: 32px;

  font-size: 24px;
  font-weight: 800;

  color: var(--dark);
}

.hero-text {
  max-width: 650px;

  margin-top: 18px;

  color: var(--muted);

  font-size: 18px;
}

.hero-actions {
  margin-top: 36px;

  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}


/* ======================================================
   HERO DATA CARD
====================================================== */

.hero-visual {
  display: flex;
  justify-content: center;
}

.data-card {
  width: min(100%, 430px);

  padding: 34px;

  border-radius: 30px;

  color: #ffffff;
  background: var(--dark);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.22);
}

.data-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.data-label {
  color: #9d9d9d;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.data-status {
  padding: 7px 12px;

  border-radius: 100px;

  background: var(--accent);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1px;
}

.data-main {
  margin-top: 38px;

  display: flex;
  align-items: flex-start;
}

.data-value {
  font-size: 96px;
  font-weight: 900;

  line-height: 0.9;
}

.data-unit {
  margin: 8px 0 0 8px;

  color: var(--accent);

  font-size: 26px;
  font-weight: 900;
}

.data-title {
  margin-top: 14px;

  color: #cfcfcf;

  font-size: 16px;
}

.data-bars {
  margin-top: 35px;
}

.data-row {
  margin-top: 19px;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  font-size: 14px;
}

.data-row span {
  color: #b5b5b5;
}

.data-progress {
  height: 7px;

  margin-top: 8px;

  overflow: hidden;

  border-radius: 100px;

  background: #303030;
}

.data-progress div {
  height: 100%;

  border-radius: inherit;

  background: var(--accent);
}

.data-note {
  margin-top: 28px;

  color: #707070;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ======================================================
   INTRO
====================================================== */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;

  gap: 100px;
  align-items: center;
}

.intro-content {
  max-width: 620px;
}

.intro-description {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.intro-pillars {
  margin-top: 40px;
  display: grid;
  gap: 22px;
}

.intro-pillar {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.intro-pillar span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.intro-pillar strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.intro-pillar p {
  margin-top: 6px;
  color: var(--muted);
}

.expertise-tags {
  margin-top: 38px;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.expertise-tags span {
  padding: 10px 15px;

  border-radius: 100px;

  background: var(--bg-soft);

  color: var(--dark);

  font-size: 13px;
  font-weight: 700;
}


/* ======================================================
   SECTION HEADING
====================================================== */

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;

  gap: 80px;
  align-items: end;

  margin-bottom: 65px;
}

.section-heading > p {
  color: var(--muted);
}

.section-dark .section-heading > p {
  color: #9e9e9e;
}


/* ======================================================
   TESTS FONCTIONNELS
====================================================== */

.functional-tests {
  background: var(--bg-soft);
}

.functional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.functional-card {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #ffffff;
}

.functional-card-dark {
  color: #ffffff;
  background: var(--dark);
  border-color: var(--dark);
}

.functional-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.functional-card h3 {
  max-width: 480px;
  margin-top: 55px;
  font-size: clamp(28px, 3vw, 39px);
}

.functional-card p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.functional-card-dark p {
  color: #a8a8a8;
}

.functional-visual {
  position: relative;
  height: 105px;
  margin-top: auto;
  padding-top: 35px;
}

.visual-force {
  display: flex;
  align-items: end;
  gap: 9px;
}

.visual-force span {
  width: 18px;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
}

.visual-force span:nth-child(1) {
  height: 34px;
}

.visual-force span:nth-child(2) {
  height: 62px;
}

.visual-force span:nth-child(3) {
  height: 82px;
}

.visual-force span:nth-child(4) {
  height: 53px;
}

.visual-jump {
  border-bottom: 1px solid #dedede;
}

.jump-line {
  position: absolute;
  left: 2%;
  bottom: 17px;
  width: 96%;
  height: 3px;
  transform: rotate(-7deg);
  transform-origin: left center;
  background: var(--accent);
}

.jump-point {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
}

.point-a {
  left: 7%;
  bottom: 18px;
}

.point-b {
  left: 48%;
  bottom: 53px;
}

.point-c {
  right: 5%;
  bottom: 67px;
}

.visual-balance {
  display: grid;
  place-items: center;
}

.balance-circle {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
}

.balance-axis {
  position: absolute;
  background: #d8d8d8;
}

.axis-x {
  width: 130px;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 100px;
}

.balance-point {
  position: absolute;
  width: 13px;
  height: 13px;
  transform: translate(15px, -12px);
  border-radius: 50%;
  background: var(--accent);
}

.functional-protocols {
  margin-top: auto;
  padding-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.functional-protocols span {
  padding: 10px 14px;
  border: 1px solid #3b3b3b;
  border-radius: 100px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.functional-footer {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;
  align-items: center;
}

.functional-footer-line {
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.functional-footer p {
  max-width: 780px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

/* Responsive pour les tests fonctionnels */

@media (max-width: 850px) {
  .functional-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .functional-card {
    min-height: 360px;
    padding: 26px;
  }

  .functional-footer {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .functional-footer-line {
    width: 70px;
  }
}



/* ======================================================
   RÉATHLÉTISATION
====================================================== */

.rehab {
  background: #ffffff;
}

.rehab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rehab-card {
  min-height: 340px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #ffffff;
}

.rehab-card-featured {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.rehab-number {
  color: var(--accent);

  font-size: 12px;
  font-weight: 900;
}

.rehab-card h3 {
  margin-top: 85px;

  font-size: clamp(30px, 3vw, 40px);
}

.rehab-card p {
  margin-top: auto;

  padding-top: 40px;

  color: var(--muted);

  font-size: 16px;
}

.rehab-card-featured p {
  color: #aaaaaa;
}

.rehab-message {
  margin-top: 55px;

  display: grid;
  grid-template-columns: 90px 1fr;

  gap: 25px;
  align-items: center;
}

.rehab-message span {
  width: 100%;
  height: 3px;

  background: var(--accent);
}

.rehab-message p {
  max-width: 850px;

  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}

/* Décalage pour le header fixe lors de la navigation */
section[id] {
  scroll-margin-top: 80px;
}

/* ======================================================
   RETOUR AU SPORT & PERFORMANCE
====================================================== */

.return-performance {
  background: #ffffff;
}

.rp-continuum {
  margin: 15px 0 55px;
  padding: 30px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rp-step {
  flex: 1;
}

.rp-step span {
  display: block;
  margin-bottom: 8px;

  color: #aaaaaa;
  font-size: 11px;
  font-weight: 900;
}

.rp-step p {
  margin: 0;

  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.rp-step-active span {
  color: var(--accent);
}

.rp-step-active p {
  color: var(--dark);
}

.rp-arrow {
  padding: 0 18px;

  color: #cccccc;
  font-size: 22px;
}


/* Deux blocs */

.rp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rp-block {
  min-height: 360px;
  padding: 38px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);
  border-radius: 26px;

  background: #ffffff;
}

.rp-block-dark {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.rp-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.rp-block h3 {
  margin-top: 75px;

  font-size: clamp(32px, 4vw, 48px);
}

.rp-block p {
  max-width: 520px;

  margin-top: auto;
  padding-top: 35px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.6;
}

.rp-block-dark p {
  color: #aaaaaa;
}


/* Message final */

.rp-message {
  margin-top: 55px;

  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;

  align-items: center;
}

.rp-message > span {
  width: 100%;
  height: 3px;

  background: var(--accent);
}

.rp-message p {
  max-width: 850px;

  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}


/* Responsive */

@media (max-width: 850px) {

  .rp-continuum {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .rp-arrow {
    padding: 0;
    transform: rotate(90deg);
  }

  .rp-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 580px) {

  .rp-continuum {
    padding: 25px;
  }

  .rp-block {
    min-height: 310px;
    padding: 26px;
  }

  .rp-message {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .rp-message > span {
    width: 70px;
  }

}

/* ======================================================
   SERVICES
====================================================== */

.services-list {
  border-top: 1px solid #363636;
}

.service-line {
  min-height: 100px;

  display: grid;
  grid-template-columns: 70px 1fr auto;

  gap: 20px;
  align-items: center;

  border-bottom: 1px solid #363636;
}

.service-number {
  color: var(--accent);

  font-size: 12px;
  font-weight: 900;
}

.service-line h3 {
  font-size: clamp(25px, 3vw, 38px);
}

.service-arrow {
  color: #666666;

  font-size: 34px;
}


/* ======================================================
   LE CENTRE & L'ÉQUIPE
====================================================== */

.centre-team {
  background: var(--dark);
  color: #ffffff;
}


/* CENTRE */

.centre-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: center;
}

.centre-image {
  overflow: hidden;
  border-radius: 26px;
}

.centre-image img {
  width: 100%;
  height: 520px;

  display: block;

  object-fit: cover;
  object-position: center;
}

.centre-content h2 {
  margin-top: 10px;
}

.centre-intro {
  margin-top: 30px;

  color: #aaaaaa;

  font-size: 18px;
  line-height: 1.6;
}

.centre-tags {
  margin-top: 40px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.centre-tags span {
  padding: 10px 16px;

  border: 1px solid #444444;
  border-radius: 100px;

  font-size: 13px;
  font-weight: 800;
}


/* ÉQUIPE */

.team-section {
  margin-top: 120px;
  padding-top: 100px;

  border-top: 1px solid #333333;
}

.team-heading {
  margin-bottom: 55px;

  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 70px;

  align-items: end;
}

.team-heading > p {
  max-width: 500px;

  color: #aaaaaa;

  font-size: 17px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  position: relative;

  min-height: 270px;
  padding: 26px;

  display: flex;
  flex-direction: column;

  border: 1px solid #333333;
  border-radius: 22px;

  background: #202020;
}

.team-founder {
  border-color: #555555;
}

.team-role-label {
  position: absolute;

  top: 25px;
  right: 25px;

  color: var(--accent);

  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-initial {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--accent);

  color: #ffffff;

  font-size: 17px;
  font-weight: 900;
}

.team-card h3 {
  margin-top: auto;

  font-size: 25px;
}

.team-card p {
  margin-top: 7px;

  color: #aaaaaa;

  font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 850px) {

  .centre-grid,
  .team-heading {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .centre-image img {
    height: 420px;
  }

  .team-section {
    margin-top: 80px;
    padding-top: 70px;
  }

}

@media (max-width: 580px) {

  .centre-image img {
    height: 300px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 220px;
  }

}

/* ======================================================
   CTA
====================================================== */

.contact-cta {
  padding-top: 40px;
}

.contact-cta-inner {
  padding: 65px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 60px;

  border-radius: 30px;

  color: #ffffff;
  background: var(--dark);
}

.contact-cta-inner h2 {
  max-width: 700px;
}

.contact-cta-inner p:not(.eyebrow) {
  max-width: 650px;

  margin-top: 20px;

  color: #a9a9a9;
}


/* ======================================================
   CONTACT
====================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;
}

.contact-details {
  border-top: 1px solid var(--border);
}

.contact-item {
  min-height: 115px;

  display: grid;
  grid-template-columns: 130px 1fr;

  gap: 25px;
  align-items: center;

  border-bottom: 1px solid var(--border);
}

.contact-item span {
  color: var(--muted);

  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item strong {
  font-size: 20px;
}

a.contact-item:hover strong {
  color: var(--accent);
}


/* ======================================================
   FOOTER
====================================================== */

.footer {
  padding: 55px 0;

  color: #ffffff;
  background: var(--dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;

  gap: 50px;
  align-items: start;
}

.footer-brand {
  font-size: 25px;
  font-weight: 900;
}

.footer-brand span {
  color: var(--accent);
}

.footer p {
  margin-top: 6px;

  color: #7d7d7d;

  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 25px;

  color: #aaaaaa;

  font-size: 13px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-legal a {
  color: #aaaaaa;
  font-size: 13px;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1050px) {

  .nav {
    gap: 16px;
  }

  .nav > a:not(.btn) {
    font-size: 12px;
  }

  .hero-grid,
  .intro-grid,
  .contact-grid {
    gap: 55px;
  }

  .testing-grid,
  .measure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}


@media (max-width: 850px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;

    position: absolute;

    top: 82px;
    left: 0;

    width: 100%;

    padding: 25px;

    flex-direction: column;
    align-items: stretch;

    background: #ffffff;

    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .nav > a {
    padding: 8px 0;
  }

  .nav .btn {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;

    padding: 80px 0;

    background: #ffffff;
  }

  .hero-grid,
  .intro-grid,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-background-number {
    right: -80px;
    top: 30%;

    font-size: 500px;
  }

  h1 {
    letter-spacing: -3px;
  }

  .section-heading {
    gap: 25px;
  }

  .mission-grid,
  .continuum-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    border-right: none;
    border-bottom: 1px solid #343434;
  }

  .mission-card:last-child {
    border-bottom: none;
  }

  .continuum-line {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    text-align: left;
  }

}


@media (max-width: 580px) {

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 80px 0;
  }

  h1 {
    font-size: 55px;
    letter-spacing: -2.5px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .data-card {
    padding: 25px;
  }

  .data-value {
    font-size: 76px;
  }

  .testing-grid,
  .measure-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .testing-card,
  .measure-card {
    min-height: auto;
  }

  .testing-card h3 {
    margin-top: 50px;
  }

  .testing-card ul {
    padding-top: 35px;
  }

  .measure-card h3 {
    margin-top: 50px;
  }

  .continuum-card {
    min-height: auto;
  }

  .contact-cta-inner {
    padding: 36px 28px;
  }

  .contact-cta-inner .btn {
    width: 100%;
  }

  .contact-item {
    grid-template-columns: 1fr;

    gap: 8px;

    padding: 25px 0;
  }

}

/* ======================================================
   MENTIONS LÉGALES
====================================================== */

.legal-page {
  background: #ffffff;
}

.legal-container {
  max-width: 920px;
}

.legal-nav a {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.legal-nav a:hover {
  color: var(--accent);
}


/* HERO */

.legal-hero {
  padding: 110px 0 80px;
  background: var(--dark);
  color: #ffffff;
}

.legal-hero h1 {
  max-width: 900px;

  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.legal-intro {
  max-width: 650px;

  margin-top: 30px;

  color: #aaaaaa;

  font-size: 18px;
  line-height: 1.6;
}


/* CONTENU */

.legal-content {
  padding: 100px 0;
}

.legal-section {
  padding: 55px 0;

  border-bottom: 1px solid var(--border);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-number {
  display: block;

  margin-bottom: 20px;

  color: var(--accent);

  font-size: 12px;
  font-weight: 900;
}

.legal-section h2 {
  margin-bottom: 30px;

  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.5px;
}

.legal-section h3 {
  margin-top: 35px;
  margin-bottom: 10px;

  font-size: 20px;
}

.legal-section p {
  max-width: 800px;

  margin-top: 16px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

.legal-section strong {
  color: var(--dark);
}

.legal-section a {
  color: var(--dark);
  font-weight: 700;
}

.legal-section a:hover {
  color: var(--accent);
}

.legal-update {
  margin-top: 45px;

  color: var(--muted);

  font-size: 13px;
}


/* MOBILE */

@media (max-width: 580px) {

  .legal-hero {
    padding: 80px 0 60px;
  }

  .legal-content {
    padding: 65px 0;
  }

  .legal-section {
    padding: 40px 0;
  }

}
