/*
 * DESIGN BLEU NUIT — PEAK STATE
 *
 * Cette feuille adapte l’identité visuelle du site de référence sans reprendre
 * ses contenus ni son fonctionnement. Elle est chargée après l’apparence de
 * base afin de garder les composants et les protections du site LANG Endurance.
 */

/* 1. Polices hébergées dans le projet : aucun appel à Google Fonts. */
@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* 2. Couleurs et bases typographiques. */
:root {
  color-scheme: light;
  --paper: #d8e0e3;
  --ink: #13283b;
  --muted: #526775;
  --line: #aebdc6;
  --lime: #2f6f9d;
  --accent-light: #9dc9ee;
  --white: #eff4fa;
  --panel: #d8e0e3;
  --panel-strong: #c7d7e1;
  --panel-deep: #101f30;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}
h1,
h2,
h3,
.wordmark,
.main-nav > a:not(.menu-contact) {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}
h1,
h2,
h3 {
  font-weight: 600;
}
em {
  color: var(--lime);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}
::selection {
  background: var(--lime);
  color: #0c2035;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline-color: var(--lime);
}
.container {
  width: min(1320px, calc(100% - 12%));
}
.eyebrow {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.15em;
}
.display-heading {
  font-size: clamp(52px, 5.5vw, 82px);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

/* 3. En-tête et menu latéral. */
.site-header {
  height: 94px;
  z-index: 60;
  background: rgba(12, 22, 35, 0.94);
  border-color: var(--line);
  /* Évite que le panneau fixe soit limité à la hauteur de l’en-tête. */
  backdrop-filter: none;
}
.header-inner {
  max-width: none;
  padding: 0 6%;
}
.wordmark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--white);
  line-height: 1;
}
.wordmark-logo {
  width: 62px;
  height: 40px;
  object-fit: contain;
  filter: invert(1) brightness(1.35);
}
.wordmark-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.wordmark > .wordmark-copy {
  color: var(--white);
}
.wordmark-copy strong {
  color: inherit;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.wordmark-copy small {
  color: #a8b8ca;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 10px 0 10px 16px;
  color: var(--white);
  border: 0;
  font-size: 13px;
}
.menu-toggle:hover {
  color: var(--accent-light);
}
.menu-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 9px;
}
.menu-lines::before,
.menu-lines::after {
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-4px) rotate(-45deg);
}
html.js .main-nav {
  position: fixed;
  top: 94px;
  right: 0;
  bottom: 0;
  z-index: 55;
  width: min(620px, 100%);
  padding: 44px 6% 36px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  overflow-y: auto;
  background: var(--panel-deep);
  border-left: 1px solid var(--line);
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.25s ease,
    visibility 0.25s;
}
html.js .main-nav.is-open {
  visibility: visible;
  transform: translateX(0);
}
.menu-title {
  margin-bottom: 30px;
  color: #a8b8ca;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.main-nav > a:not(.menu-contact) {
  padding: 16px 0;
  color: var(--white);
  border-bottom: 0;
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}
.main-nav > a:not(.menu-contact)::after {
  display: none;
}
.main-nav > a:not(.menu-contact):hover,
.main-nav > a[aria-current="page"] {
  color: var(--accent-light);
}
.menu-contact {
  margin-top: auto;
  padding-top: 32px;
  color: #a8b8ca;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.menu-backdrop {
  position: fixed;
  inset: 94px 0 0;
  z-index: 50;
  background: rgba(2, 10, 21, 0.7);
  backdrop-filter: blur(4px);
}
.menu-backdrop[hidden] {
  display: none;
}
body.menu-open {
  overflow: hidden;
}

/* 4. Boutons et liens. */
.button {
  min-height: 52px;
  padding: 16px 21px;
  color: #0c2035;
  background: #a5cef0;
  border-radius: 0;
}
.button:hover {
  color: #0c2035;
  background: #c6e3fa;
}
.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: #5f7180;
}
.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}
.button-light {
  color: #0c2035;
  background: var(--white);
}
.quiet-link {
  color: var(--lime);
}
.quiet-link:hover {
  color: var(--white);
}

/* 5. Accueil : grand visuel puis contenu déroulant. */
.runner-frame.hero {
  top: 94px;
  min-height: max(700px, calc(100svh - 94px));
  background: var(--paper);
}
.runner-image {
  object-position: center;
  filter: none;
}
.runner-frame .hero-shade,
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 34, 0.88), rgba(7, 20, 34, 0.18) 72%),
    linear-gradient(0deg, rgba(7, 20, 34, 0.8), transparent 58%);
}
.hero-content {
  padding-top: 74px;
}
.hero .eyebrow {
  color: var(--accent-light);
}
.live-dot {
  background: var(--accent-light);
}
.hero h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(74px, 8vw, 126px);
  letter-spacing: -0.035em;
  line-height: 0.88;
}
.hero h1 em {
  color: var(--accent-light);
  letter-spacing: inherit;
}
.hero-lead {
  max-width: 550px;
  color: #d0ddec;
  font-size: 17px;
}
.hero-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-caption {
  color: #cfdbeb;
}
.discipline-band {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.discipline-band i,
.terrain-tag {
  color: var(--lime);
}
.home-disciplines {
  padding-top: 88px;
  padding-bottom: 88px;
}
.home-local-intro {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: var(--muted);
}
.home-section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}
.discipline-grid article {
  padding-top: 24px;
  border-top: 1px solid #59738e;
}
.discipline-grid h3 {
  margin: 18px 0 16px;
  font-size: 46px;
}
.discipline-grid p {
  max-width: 510px;
  color: var(--muted);
}
.terrain-tag {
  display: block;
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
#approche {
  width: 100%;
  max-width: none;
  padding: 100px 8%;
  background: var(--panel);
}
.section-intro > p,
.process-card p {
  color: var(--muted);
}
.process-card {
  border-color: #59738e;
}
.large-number {
  color: var(--lime);
}
.process-card h3 {
  font-size: 29px;
}
.home-plans {
  padding: 100px 0;
  background: var(--paper);
}
.home-plans,
.home-plans .display-heading {
  color: var(--ink);
}
.home-section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.home-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-plan-grid article {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--line);
}
.home-plan-grid h3 {
  font-size: 42px;
}
.home-plan-grid article > p:not(.eyebrow, .home-plan-price) {
  color: var(--muted);
}
.home-plan-price {
  margin: 24px 0 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 68px;
  line-height: 1;
}
.home-plan-price span {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}
.home-plan-grid .button {
  width: 100%;
  margin-top: auto;
}
.home-plan-featured {
  background: var(--panel-strong) !important;
  border-color: var(--lime) !important;
}
.home-extras {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-extras article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--line);
}
.home-extras span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.home-extras strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
}
.home-extras a {
  color: var(--lime);
  font-size: 13px;
}
.team-band {
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-band p:not(.eyebrow) {
  color: var(--muted);
}
.closing-cta {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* 6. Pages intérieures. */
.page-intro {
  padding-top: 100px;
  padding-bottom: 70px;
}
.page-intro h1 {
  font-size: clamp(62px, 6.5vw, 102px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.page-lead,
.story-copy > p:not(.eyebrow),
.contact-note,
.service-note,
.legal-copy p {
  color: var(--muted);
}
.notice {
  color: #344a5e;
  background: var(--panel);
  border-color: var(--lime);
}
.manifesto {
  background: var(--panel-strong);
}
.manifesto > span,
.price-featured .eyebrow {
  color: var(--lime);
}
.team-photo-copy > p:last-child {
  color: #d0ddec;
}
.team-photo-copy em {
  color: var(--accent-light);
}
.runner-scene-compact .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 34, 0.9), rgba(7, 20, 34, 0.3)),
    linear-gradient(0deg, rgba(7, 20, 34, 0.75), transparent 60%);
}
.team-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 90px;
}
.coach-profile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--line);
}
.coach-photo {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--panel-strong);
}
.coach-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.coach-photo-baptiste img {
  object-position: 52% center;
}
.coach-photo-tristan img {
  object-position: 50% 42%;
}
.coach-profile-content {
  flex: 1;
  padding: clamp(28px, 3.5vw, 48px);
}
.coach-profile-content h2 {
  margin: 12px 0 28px;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 0.95;
}
.coach-profile-content > p:not(.eyebrow, .coach-intro) {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.coach-profile-content > p:last-child {
  margin-bottom: 0;
}
.coach-intro {
  margin-bottom: 26px;
  color: var(--ink);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}
.price-card,
.contact-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--line);
  border-radius: 0;
}
.price-card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}
.price-featured {
  color: var(--ink);
  background: var(--panel-strong);
  border-color: var(--lime);
}
.price-card .plan-description,
.price-card .price > span,
.price-card .plan-footnote {
  color: var(--muted);
}
.price-featured .plan-description,
.price-featured .price > span,
.price-featured .plan-footnote {
  color: var(--muted);
}
.home-plans .button-outline,
.price-featured .button-outline {
  color: var(--ink);
  border-color: #5f7180;
}
.home-plans .button-outline:hover,
.price-featured .button-outline:hover {
  color: var(--white);
  background: var(--ink);
}
.price-card ul,
.price-featured ul {
  border-color: var(--line);
}
.services {
  border-color: var(--line);
}
.service-price,
.service-price span {
  color: var(--lime);
}
.faq details,
.faq details:first-child {
  border-color: var(--line);
}
.faq details > p {
  color: var(--muted);
}
.contact-topics a {
  border-color: var(--line);
}
.contact-topics a:hover {
  color: #0c2035;
  background: var(--lime);
}
.contact-email {
  color: var(--lime);
}

/* 7. Formulaire de contact sans stockage ni envoi automatique. */
.contact-layout {
  display: block;
  margin-bottom: 100px;
}
.contact-form {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}
.contact-form-heading {
  max-width: 680px;
  margin-bottom: 38px;
}
.contact-form-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
}
.contact-form-heading > p:last-child {
  color: var(--muted);
}
.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.contact-fields label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
}
.contact-field-wide {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #aebac2;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font: inherit;
}
.contact-form input,
.contact-form select {
  min-height: 54px;
  padding: 0 15px;
}
.contact-form textarea {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4d8aba;
  outline: 3px solid rgba(157, 201, 238, 0.42);
  outline-offset: 2px;
}
.contact-form textarea::placeholder {
  color: #788690;
}
.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin: 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.consent-field input {
  width: 19px;
  min-height: 19px;
  margin-top: 2px;
  accent-color: #4d8aba;
}
.contact-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.contact-status {
  min-height: 1.5em;
  color: #3c6585;
  font-size: 13px;
}
.contact-form > .contact-note {
  max-width: 720px;
  margin-top: 20px;
}
.contact-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
.contact-topic-fieldset {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}
.contact-topic-fieldset legend {
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 600;
}
.contact-topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-topic-tabs label {
  cursor: pointer;
}
.contact-topic-tabs input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}
.contact-topic-tabs span {
  display: block;
  padding: 11px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.contact-topic-tabs input:checked + span {
  background: var(--panel-strong);
  border-color: var(--lime);
  box-shadow: inset 0 -3px 0 var(--lime);
}
.contact-topic-tabs input:focus-visible + span {
  outline: 3px solid rgba(47, 111, 157, 0.32);
  outline-offset: 2px;
}
.service-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(2, 10, 21, 0.7);
  backdrop-filter: blur(4px);
}
.service-panel-backdrop[hidden],
.service-panel[hidden] {
  display: none;
}
.service-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  width: min(580px, 100%);
  max-width: 100%;
  padding: 36px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--white);
  background: var(--panel-deep);
  border-left: 1px solid #47617e;
  box-shadow: -24px 0 60px rgba(2, 10, 21, 0.2);
}
.service-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}
.service-panel-top .eyebrow {
  margin: 0;
  color: var(--accent-light);
}
.service-panel-close {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  color: var(--white);
  border: 1px solid #607a95;
  font-size: 14px;
}
.service-panel-close span {
  font-size: 24px;
  line-height: 1;
}
.service-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 0.95;
}
.service-panel h3 {
  margin: 24px 0 12px;
  font-size: 28px;
}
.service-panel > p,
.service-panel-details,
.service-panel-pricing {
  color: #b9c9d9;
}
.service-panel-lead {
  color: var(--white) !important;
  font-size: 20px;
  line-height: 1.5;
}
.service-panel ul {
  margin: 18px 0 30px;
  padding-left: 20px;
}
.service-panel li {
  margin-bottom: 10px;
}
.service-panel-details,
.service-panel-pricing {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #47617e;
}
.service-panel-price {
  margin-bottom: 22px;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}
.service-panel-price span {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.service-panel-note {
  font-size: 13px;
}
.service-panel > .button {
  width: fit-content;
  margin-top: 28px;
}
body.service-panel-open {
  overflow: hidden;
}
/* 8. Pied de page. */
.site-footer {
  color: var(--white);
  background: #09121d;
  border-color: var(--line);
}
.footer-top p,
.footer-bottom {
  color: #a8b8ca;
}
.footer-bottom {
  border-color: var(--line);
}

/* 9. Tablette et mobile. */
@media (max-width: 900px) {
  .home-plan-grid {
    grid-template-columns: 1fr;
  }
  .home-plan-grid article {
    min-height: 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .team-profiles {
    grid-template-columns: 1fr;
  }
  .home-extras,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .service-panel {
    padding: 24px;
  }
  .service-panel-top {
    margin-bottom: 32px;
  }
  .service-panel h2 {
    font-size: 48px;
  }
  .container {
    width: calc(100% - 12%);
  }
  .site-header {
    height: 82px;
  }
  .header-inner {
    padding: 0 6%;
  }
  .wordmark {
    gap: 7px;
  }
  .wordmark-logo {
    width: 48px;
    height: 32px;
  }
  .wordmark-copy strong {
    font-size: 20px;
  }
  html.js .main-nav {
    top: 82px;
    padding: 34px 7% 28px;
  }
  .menu-backdrop {
    inset: 82px 0 0;
  }
  .main-nav > a:not(.menu-contact) {
    padding: 13px 0;
    font-size: 38px;
  }
  .runner-frame.hero {
    top: 82px;
    min-height: max(660px, calc(100svh - 82px));
  }
  .runner-image {
    object-position: center;
  }
  .hero-content {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: clamp(53px, 15vw, 79px);
    line-height: 0.9;
  }
  .hero-lead {
    max-width: 330px;
    font-size: 15px;
  }
  .hero .intro-actions {
    align-items: flex-start;
  }
  .hero .button {
    min-width: 0;
  }
  .discipline-band > .container {
    grid-template-columns: 1fr auto 1fr;
  }
  .discipline-band span {
    font-size: 11px;
  }
  .discipline-grid,
  .home-extras {
    grid-template-columns: 1fr;
  }
  .discipline-grid {
    gap: 36px;
  }
  .discipline-grid h3 {
    font-size: 38px;
  }
  .home-section-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-plan-grid article {
    padding: 28px 24px;
  }
  .home-extras article {
    grid-template-columns: 1fr;
  }
  .contact-fields {
    grid-template-columns: 1fr;
  }
  .contact-field-wide {
    grid-column: auto;
  }
  .contact-layout {
    margin-bottom: 70px;
  }
  .contact-form {
    padding: 28px 22px;
  }
  #approche,
  .home-plans {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #approche {
    padding-inline: 6%;
  }
  .page-intro h1 {
    font-size: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .main-nav {
    transition: none;
  }
}

/* Le site reste navigable si JavaScript est désactivé. */
html:not(.js) .menu-toggle,
html:not(.js) .menu-backdrop {
  display: none;
}
html:not(.js) .main-nav {
  display: flex;
}
