/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #42403a;
  background: #F6F4EE;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: 'Baloo 2', 'Quicksand', system-ui, sans-serif; font-weight: 700; color: #16150F; }

.mono { font-family: 'Baloo 2', system-ui, sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* ============ LAYOUT ============ */
.container { max-width: 1320px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.section { padding-block: clamp(64px, 9vw, 112px); }
main { display: block; }

h1 { font-weight: 600; font-size: clamp(2.6rem, 1.4rem + 4.6vw, 4.6rem); line-height: 1.06; letter-spacing: -0.01em; }
h2 { font-weight: 600; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.85rem); line-height: 1.1; letter-spacing: -0.008em; }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem); line-height: 1.2; letter-spacing: -0.005em; }

.label { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; }
.intro { font-size: 1.1875rem; line-height: 1.6; color: #42403a; max-width: 38ch; }
.section__head { margin-bottom: 48px; }
.section__head h2 { max-width: 20ch; }
.section__head .intro { margin-top: 16px; }

/* ============ SKIP LINK / FOCUS ============ */
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: #16150F; color: #F6F4EE; padding: 10px 18px; border-radius: 4px;
  font-size: 0.95rem; transition: top 150ms cubic-bezier(0.4,0,0.2,1);
}
.skip-link:focus { top: 16px; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid #0C7A57; outline-offset: 2px; border-radius: 2px; }

/* ============ HEADER / NAV ============ */
#nav-sentinel { height: 8px; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #F6F4EE;
  transition: background-color 200ms cubic-bezier(0.4,0,0.2,1), box-shadow 200ms cubic-bezier(0.4,0,0.2,1), border-color 200ms cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246,244,238,0.82);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(22,21,15,0.08);
  box-shadow: 0 1px 0 rgba(22,21,15,0.04);
}
@supports not ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .site-header.is-scrolled { background: #F6F4EE; }
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.04em; color: #16150F; }
.brand i { color: #0C7A57; font-style: normal; }
.brand sup { font-size: 0.42em; top: -0.85em; color: #0C7A57; }
.nav__links { display: none; align-items: center; gap: 32px; }
.nav__links a { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; color: #42403a; position: relative; padding: 4px 0; }
.nav__links a.nav__cta { font-family: 'Nunito Sans', sans-serif; font-weight: 500; font-size: 0.875rem; background: #0C7A57; color: #F6F4EE; padding: 11px 18px; border-radius: 4px; }
.nav__link-line::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #0C7A57; transform: scaleX(0); transform-origin: left; transition: transform 150ms cubic-bezier(0.4,0,0.2,1); }
.nav__links a[aria-current="true"] { color: #16150F; }
.nav__links a[aria-current="true"].nav__link-line::after { transform: scaleX(1); }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; cursor: pointer;
}
.burger span { display: block; height: 2px; width: 100%; background: #16150F; border-radius: 2px; transition: transform 220ms cubic-bezier(0.4,0,0.2,1), opacity 180ms; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: #F6F4EE;
  display: flex; flex-direction: column; padding: 88px clamp(20px, 5vw, 64px) 40px;
  transform: translateY(-100%); visibility: hidden; transition: transform 250ms cubic-bezier(0.4,0,0.2,1), visibility 250ms;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.9rem; letter-spacing: -0.03em; color: #16150F; padding: 14px 0; border-bottom: 1px solid rgba(22,21,15,0.12); }
.mobile-menu .mobile-cta { font-family: 'Nunito Sans', sans-serif; font-weight: 500; font-size: 1.0625rem; background: #0C7A57; color: #F6F4EE; text-align: center; padding: 16px; border-radius: 4px; border-bottom: 0; margin-top: 24px; }
body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero { padding-block: clamp(56px, 8vw, 96px); }
.hero__inner { max-width: 48rem; }
.chip { display: inline-block; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: #57544a; border: 1px solid rgba(22,21,15,0.12); padding: 6px 12px; border-radius: 3px; }
.hero h1 { margin-top: 24px; max-width: 18ch; }
.hero__sub { margin-top: 24px; font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.25rem); line-height: 1.5; color: #42403a; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; font-family: 'Nunito Sans', sans-serif; font-weight: 500; font-size: 0.95rem;
  background: #0C7A57; color: #F6F4EE; padding: 14px 22px; border-radius: 4px; min-height: 44px;
  transition: background-color 150ms cubic-bezier(0.4,0,0.2,1), transform 150ms cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:active { transform: translateY(0); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.875rem; color: #16150F; padding: 12px 0; min-height: 44px; }
.link-arrow u { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(22,21,15,0.4); }
.link-arrow .arw, .link-inline .arw { display: inline-block; transition: transform 150ms cubic-bezier(0.4,0,0.2,1); }

/* trust band */
.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 64px; border-top: 1px solid rgba(22,21,15,0.12); }
.trust li { padding: 24px 24px 24px 0; border-bottom: 1px solid rgba(22,21,15,0.12); }
.trust li + li { padding-left: 24px; }
.trust li:nth-child(2n) { border-left: 1px solid rgba(22,21,15,0.12); }
.stat__num { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); color: #16150F; letter-spacing: -0.01em; display: inline-block; }
.stat__label { font-size: 0.8125rem; color: #57544a; margin-top: 6px; }
.stars { margin-top: 8px; height: 12px; }

/* ============ DEFINITION ============ */
.def p { font-size: 1.1875rem; line-height: 1.6; color: #42403a; max-width: 60ch; margin-top: 16px; }

/* ============ MODULES ============ */
.modules { background: #F6F4EE; }
.module { padding-block: 64px; border-top: 1px solid rgba(22,21,15,0.12); }
.module:first-of-type { border-top: 1px solid #16150F; }
.module__grid { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
.module__num { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; color: #57544a; }
.module__rule { width: 32px; height: 1px; background: rgba(22,21,15,0.4); margin: 12px 0 16px; }
.module__body h3 { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.module__phrase { font-size: 1.1875rem; line-height: 1.55; color: #42403a; margin-top: 12px; max-width: 46ch; }
.bullets { display: grid; gap: 12px; margin-top: 24px; max-width: 48ch; }
.bullets li { position: relative; padding-left: 26px; font-size: 1rem; line-height: 1.5; color: #42403a; }
.bullets li::before { content: "\2192"; position: absolute; left: 0; top: 0; font-family: 'Nunito Sans', system-ui, sans-serif; color: #0C7A57; }
.bullets--ambre li::before { color: #C2571B; }

.badge { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 3px; }
.badge--free { color: #0C7A57; border: 1px solid #0C7A57; }
.badge--new { color: #FF7B3A; border: 1px solid rgba(255,123,58,0.5); }

/* device (composited iPhone PNG, detoured on transparent) */
.device { margin-inline: auto; max-width: 480px; }
.device__img { display: block; width: 100%; height: auto; border-radius: 10px; transition: transform 240ms cubic-bezier(0.4,0,0.2,1); }
.device__caption { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; color: #57544a; margin-top: 16px; text-align: center; }

/* aero card (module 004 visual) */
.aero-card { background: #16150F; color: #F6F4EE; border: 1px solid rgba(246,244,238,0.14); border-radius: 5px; padding: 32px; }
.aero-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.aero-card__big { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: 2.6rem; line-height: 1; color: #FF7B3A; letter-spacing: -0.04em; }
.aero-card__big span { font-size: 1rem; color: rgba(246,244,238,0.55); }
.aero-card__note { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.7rem; color: rgba(246,244,238,0.5); text-align: right; max-width: 14ch; }
.aero-card__rows { margin-top: 24px; display: grid; gap: 0; }
.aero-card__row { display: grid; grid-template-columns: 1fr auto; padding: 11px 0; border-top: 1px solid rgba(246,244,238,0.12); font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: 0.875rem; color: rgba(246,244,238,0.78); letter-spacing: -0.02em; }
.aero-card__row--best { color: #FF7B3A; }
.aero-card__illus { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.7rem; color: rgba(246,244,238,0.5); margin-top: 18px; }
.aero-card__cap { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.7rem; color: rgba(246,244,238,0.45); margin-top: 6px; opacity: 0.6; }
.link-inline { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.875rem; margin-top: 24px; padding: 6px 0; min-height: 44px; }
.link-inline.is-ambre { color: #C2571B; }
.link-inline.is-ambre u { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ============ STEPS ============ */
.steps__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.step { border-top: 1px solid rgba(22,21,15,0.4); padding-top: 16px; }
.step__num { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: 1.6rem; color: #0C7A57; }
.step h3 { margin-top: 12px; }
.step p { font-size: 1rem; line-height: 1.5; color: #42403a; margin-top: 8px; }

/* ============ DISCIPLINES ============ */
.disciplines { display: flex; flex-wrap: wrap; align-items: center; gap: 0; padding-block: 8px; }
.disciplines li { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; padding: 8px 28px; position: relative; }
.disciplines li + li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: rgba(22,21,15,0.18); }
.disciplines li:first-child { padding-left: 0; }

/* ============ TARIFS ============ */
.plans { display: grid; grid-template-columns: 1fr; gap: 24px; }
.plan { background: #F6F4EE; border: 1px solid rgba(22,21,15,0.12); border-radius: 5px; padding: 28px 24px; display: flex; flex-direction: column; }
.plan--reco { border: 1.5px solid #0C7A57; background: rgba(12,122,87,0.04); position: relative; }
.plan__badge { align-self: flex-start; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; background: #0C7A57; color: #F6F4EE; padding: 4px 10px; border-radius: 3px; margin-bottom: 16px; }
.plan h3 { font-size: 1.25rem; }
.plan__price { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem); color: #16150F; margin-top: 12px; letter-spacing: -0.01em; }
.plan__price small { font-size: 0.95rem; color: #57544a; font-weight: 400; }
.plan__desc { font-size: 0.95rem; color: #57544a; margin-top: 8px; }
.plan .bullets { margin-top: 20px; gap: 10px; }
.plan .bullets li { font-size: 0.95rem; }
.plan__cta { margin-top: 24px; }
.plan__spacer { flex: 1; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 44px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 500; font-size: 0.9rem; color: #16150F;
  border: 1px solid #16150F; border-radius: 4px; padding: 12px 18px; background: transparent;
  transition: background-color 150ms cubic-bezier(0.4,0,0.2,1), color 150ms cubic-bezier(0.4,0,0.2,1), transform 150ms cubic-bezier(0.4,0,0.2,1);
}
.btn-full { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 44px; font-family: 'Nunito Sans', sans-serif; font-weight: 500; font-size: 0.9rem; background: #0C7A57; color: #F6F4EE; border-radius: 4px; padding: 12px 18px; transition: background-color 150ms cubic-bezier(0.4,0,0.2,1), transform 150ms cubic-bezier(0.4,0,0.2,1); }
.tarifs__note { font-size: 0.9375rem; color: #57544a; margin-top: 24px; }

/* ============ EXPERTISE ============ */
.expertise__grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.photo-frame { aspect-ratio: 4 / 5; max-width: 360px; border: 1px solid rgba(22,21,15,0.12); border-radius: 4px; background: #EDEAE1; display: flex; align-items: flex-end; padding: 16px; }
.photo-frame span { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.72rem; letter-spacing: 0.06em; color: #57544a; }
.expertise__body h3 { margin-top: 4px; }
.expertise__body p { margin-top: 16px; max-width: 52ch; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tags span { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; color: #57544a; border: 1px solid rgba(22,21,15,0.18); padding: 6px 12px; border-radius: 3px; }
.cabinet-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; color: #0C7A57; margin-top: 24px; padding: 4px 0; }
.cabinet-link u { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ============ FAQ ============ */
.faq__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.faq__item { padding: 26px 0; border-top: 1px solid rgba(22,21,15,0.12); }
.faq__item:first-child { border-top: 1px solid #16150F; }
.faq__item h3 { font-size: 1.2rem; }
.faq__item p { margin-top: 10px; color: #42403a; max-width: 70ch; }

/* ============ CTA FINAL ============ */
.cta-final { background: #0B0C0B; color: #F6F4EE; text-align: center; }
.cta-final h2 { color: #F6F4EE; }
.cta-final p { color: rgba(246,244,238,0.7); margin-top: 16px; }
.cta-final .btn-primary { margin-top: 32px; background: #0C7A57; }

/* ============ FOOTER ============ */
.site-footer { background: #F6F4EE; border-top: 1px solid rgba(22,21,15,0.12); padding-block: 40px; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; justify-content: space-between; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; color: #42403a; }
.footer__group { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.footer__brand { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.04em; color: #16150F; }
.footer__brand i { color: #0C7A57; font-style: normal; }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; color: #6b685f; }

/* ============ REVEAL (JS-applied: only below-fold is hidden) ============ */
.reveal { transition: opacity 220ms cubic-bezier(0.4,0,0.2,1), transform 220ms cubic-bezier(0.4,0,0.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.pre-hide { opacity: 0; transform: translateY(16px); }

/* ============ HOVER (fine pointer only) ============ */
@media (hover: hover) and (pointer: fine) {
  .nav__links a.nav__link-line:hover::after { transform: scaleX(1); }
  .nav__links a:hover { color: #16150F; }
  .btn-primary:hover, .btn-full:hover { background: #0a6549; transform: translateY(-1px); }
  .btn-outline:hover { background: #16150F; color: #F6F4EE; }
  .link-arrow:hover .arw, .link-inline:hover .arw { transform: translateX(3px); }
  .cabinet-link:hover { color: #0a6549; }
  .module__grid:hover .device__img { transform: translateY(-4px); }
}

/* ============ RESPONSIVE ============ */
@media (min-width: 860px) {
  .nav__links { display: flex; }
  .burger { display: none; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .trust li, .trust li + li { padding: 24px 24px 0 0; border-bottom: 0; }
  .trust li + li { border-left: 1px solid rgba(22,21,15,0.12); padding-left: 24px; }
  .trust li:nth-child(2n) { border-left: 1px solid rgba(22,21,15,0.12); }
  .plans { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .plan--reco { transform: translateY(-8px); }
  .expertise__grid { grid-template-columns: 360px 1fr; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .module__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .module--reverse .module__visual { order: -1; }
  .steps__grid { grid-template-columns: repeat(4, 1fr); }
  .faq__grid { grid-template-columns: repeat(2, 40px); grid-template-columns: repeat(2, 1fr); column-gap: 48px; }
  .faq__item:nth-child(2) { border-top: 1px solid #16150F; }
}
@media (max-width: 519px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn-primary { width: 100%; justify-content: center; }
  .container { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.pre-hide { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============ PAGES INTERIEURES ============ */
.breadcrumb { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; color: #57544a; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(22,21,15,0.3); }
.breadcrumb span[aria-current] { color: #16150F; }

.page-hero { padding-top: 32px; padding-bottom: clamp(40px, 6vw, 72px); }
.page-hero h1 { max-width: 22ch; margin-top: 20px; font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.6rem); }
.page-hero .intro { margin-top: 24px; max-width: 62ch; font-size: 1.125rem; }

.prose { max-width: 72ch; }
.prose p { margin-top: 18px; }
.prose h3 { margin-top: 36px; }
.prose strong { color: #16150F; font-weight: 700; }
.prose ul { margin-top: 18px; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: "\2192"; position: absolute; left: 0; top: 0; font-family: 'Nunito Sans', system-ui, sans-serif; color: #0C7A57; }
.prose a { color: #0C7A57; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.rule-top { border-top: 1px solid #16150F; }
.card { border: 1px solid rgba(22,21,15,0.12); border-radius: 5px; padding: 26px 24px; background: #F6F4EE; }
.card h3 { font-size: 1.15rem; }
.card p { margin-top: 10px; font-size: 1rem; line-height: 1.55; color: #42403a; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }

/* liste de guides */
.guide-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid #16150F; }
.guide-item { display: block; padding: 28px 0; border-bottom: 1px solid rgba(22,21,15,0.12); }
.guide-item__top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.guide-item h3 { margin-top: 12px; max-width: 30ch; }
.guide-item p { margin-top: 10px; max-width: 68ch; font-size: 1rem; line-height: 1.55; }
.guide-item__go { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; color: #0C7A57; margin-top: 16px; }

/* calculateur */
.calc { border: 1px solid rgba(22,21,15,0.16); border-radius: 6px; background: #FBFAF6; padding: clamp(20px, 3vw, 32px); display: grid; gap: 28px; }
.calc__field label { display: block; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; margin-bottom: 12px; }
.calc__stepper { display: flex; align-items: center; gap: 14px; }
.calc__stepper button { width: 44px; height: 44px; border: 1px solid rgba(22,21,15,0.3); border-radius: 4px; background: transparent; font-size: 1.3rem; line-height: 1; color: #16150F; cursor: pointer; font-family: 'Nunito Sans', system-ui, sans-serif; }
.calc__val { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: 1.6rem; color: #16150F; min-width: 7ch; }
.calc__val small { font-size: 0.85rem; color: #57544a; }
.calc input[type="range"] { width: 100%; margin-top: 16px; accent-color: #0C7A57; }
.calc select { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 1rem; padding: 12px 14px; min-height: 44px; border: 1px solid rgba(22,21,15,0.3); border-radius: 4px; background: #F6F4EE; color: #16150F; width: 100%; max-width: 260px; }
.calc__out { border-top: 1px solid rgba(22,21,15,0.16); padding-top: 24px; display: grid; gap: 20px; }
.calc__main { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: clamp(2.6rem, 2rem + 3vw, 4rem); line-height: 1; color: #0C7A57; letter-spacing: -0.03em; }
.calc__main small { font-size: 0.28em; color: #57544a; letter-spacing: 0; }
.calc__rows { display: grid; gap: 0; }
.calc__row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 11px 0; border-top: 1px solid rgba(22,21,15,0.12); font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; font-variant-numeric: tabular-nums; }
.calc__row span:last-child { color: #16150F; }
.calc__note { font-size: 0.9rem; color: #57544a; }

/* tableau valeurs */
.dl-rows { border-top: 1px solid #16150F; }
.dl-row { padding: 22px 0; border-bottom: 1px solid rgba(22,21,15,0.12); display: grid; gap: 8px; }
.dl-row__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.dl-row__head h3 { font-size: 1.1rem; }
.dl-row__num { font-family: 'Nunito Sans', system-ui, sans-serif; font-variant-numeric: tabular-nums; font-size: 1.25rem; color: #0C7A57; white-space: nowrap; }
.dl-row p { font-size: 1rem; line-height: 1.55; max-width: 70ch; }

/* diagnostic */
.diag { border: 1px solid rgba(22,21,15,0.12); border-radius: 5px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.diag__tag { align-self: flex-start; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 3px; border: 1px solid rgba(22,21,15,0.25); color: #57544a; }
.diag__tag--haute { color: #C2571B; border-color: rgba(194,87,27,0.5); }
.diag__tag--basse { color: #0C7A57; border-color: rgba(12,122,87,0.5); }
.diag h3 { font-size: 1.1rem; }
.diag p { font-size: 1rem; line-height: 1.55; }

.note { border-left: 2px solid #0C7A57; padding: 4px 0 4px 18px; font-size: 1rem; line-height: 1.6; color: #42403a; max-width: 74ch; margin-top: 32px; }

/* etapes numerotees */
.numsteps { display: grid; gap: 28px; counter-reset: st; }
.numsteps > li { border-top: 1px solid rgba(22,21,15,0.4); padding-top: 16px; }
.numsteps > li::before { counter-increment: st; content: "0" counter(st); font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 1.4rem; color: #0C7A57; }
.numsteps h3 { margin-top: 10px; font-size: 1.15rem; }
.numsteps p { margin-top: 8px; font-size: 1rem; line-height: 1.55; }

/* bande CTA */
.cta-band { background: #0B0C0B; color: #F6F4EE; border-radius: 6px; padding: clamp(28px, 4vw, 48px); }
.cta-band h2 { color: #F6F4EE; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); max-width: 26ch; }
.cta-band p { color: rgba(246,244,238,0.7); margin-top: 14px; max-width: 56ch; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 28px; }
.cta-band .link-arrow { color: #F6F4EE; }
.cta-band__foot { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(246,244,238,0.5); margin-top: 24px; }

@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .calc { grid-template-columns: repeat(2, 1fr); }
  .calc__out { grid-column: 1 / -1; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; gap: 32px; }
  .numsteps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============ TABLEAU ============ */
.tbl-wrap { overflow-x: auto; border-top: 1px solid #16150F; }
.tbl { width: 100%; border-collapse: collapse; min-width: 640px; }
.tbl th { text-align: left; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; padding: 14px 20px 14px 0; }
.tbl td { padding: 16px 20px 16px 0; border-top: 1px solid rgba(22,21,15,0.12); font-size: 0.98rem; line-height: 1.5; vertical-align: top; }
.tbl td:first-child { color: #16150F; font-weight: 700; white-space: nowrap; }
.tbl td:last-child { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.85rem; color: #0C7A57; }
.zone { display: grid; gap: 10px; border: 1px solid rgba(22,21,15,0.12); border-radius: 5px; padding: 26px 24px; }
.zone__loc { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; display: flex; align-items: center; gap: 10px; }
.zone__loc b { width: 8px; height: 8px; border-radius: 50%; background: #0C7A57; display: inline-block; }
.zone--ant b { background: #C2571B; }
.zone--post b { background: #B08900; }
.zone--lat b { background: #2C6E9B; }
.zone--med b { background: #6E4B9B; }
.zone h3 { font-size: 1.1rem; }
.zone p { font-size: 1rem; line-height: 1.55; }
.zone__fix { border-top: 1px solid rgba(22,21,15,0.12); padding-top: 12px; font-size: 0.95rem; }
.zone__fix strong { color: #0C7A57; }

/* ============ TIMELINE ============ */
.tl { display: grid; gap: 0; border-top: 1px solid #16150F; }
.tl-item { padding: 26px 0; border-bottom: 1px solid rgba(22,21,15,0.12); display: grid; gap: 8px; }
.tl-item__place { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; }
.tl-item h3 { font-size: 1.15rem; }
.tl-item p { font-size: 1rem; line-height: 1.55; max-width: 72ch; }
.profile-head { display: grid; gap: 28px; align-items: start; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.profile-tags span { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.75rem; color: #57544a; border: 1px solid rgba(22,21,15,0.18); padding: 6px 12px; border-radius: 3px; }
.profile-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.addr { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #57544a; margin-top: 28px; }
@media (min-width: 900px) { .profile-head { grid-template-columns: 340px 1fr; gap: 56px; } }

/* ============ LEGAL ============ */
.legal .prose h2 { font-family: 'Baloo 2', 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.7rem); line-height: 1.15; color: #16150F; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(22,21,15,0.12); }
.legal .prose h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.legal .prose h3 { font-size: 1.1rem; margin-top: 30px; }
.updated { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.78rem; color: #57544a; margin-top: 20px; }
.contact-grid { display: grid; gap: 20px; }
.contact-card { border: 1px solid rgba(22,21,15,0.12); border-radius: 5px; padding: 26px 24px; display: grid; gap: 8px; }
.contact-card .label { margin-bottom: 4px; }
.contact-card a { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 1rem; color: #0C7A57; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; word-break: break-word; }
.contact-card p { font-size: 0.95rem; color: #57544a; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ CHIFFRES ET LIBELLES : meme famille arrondie que les titres ============ */
.stat__num, .calc__main, .calc__val, .plan__price, .aero-card__big, .step__num,
.dl-row__num, .module__num, .numsteps > li::before, .aero-card__row, .calc__row span:last-child,
.tbl td:last-child, .updated, .footer__inner, .breadcrumb, .nav__links a, .label, .chip,
.disciplines li, .tags span, .badge, .plan__badge, .zone__loc, .tl-item__place, .addr,
.device__caption, .photo-frame span, .link-arrow, .link-inline, .cabinet-link, .guide-item__go,
.contact-card a, .aero-card__note, .aero-card__illus, .aero-card__cap, .tbl th, .cta-band__foot,
.bullets li::before, .prose ul li::before, .calc__stepper button, .calc select {
  font-family: 'Nunito Sans', system-ui, sans-serif;
}
.stat__num, .calc__main, .calc__val, .plan__price, .aero-card__big, .step__num,
.dl-row__num, .numsteps > li::before {
  font-family: 'Baloo 2', 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat__num, .calc__main { letter-spacing: -0.02em; }
.calc__val { font-weight: 700; }
.label, .chip, .zone__loc, .tl-item__place, .addr, .tbl th, .cta-band__foot, .badge, .plan__badge, .disciplines li, .photo-frame span, .device__caption { font-weight: 600; }
.nav__links a, .footer__inner, .breadcrumb, .link-arrow, .link-inline, .cabinet-link, .guide-item__go, .tags span, .contact-card a { font-weight: 500; }
.nav__links a { font-size: 0.9375rem; letter-spacing: -0.005em; }
.footer__inner { font-size: 0.9rem; }
.breadcrumb { font-size: 0.8125rem; letter-spacing: 0; }
.link-arrow, .link-inline, .cabinet-link, .guide-item__go, .contact-card a { font-size: 0.95rem; }
.calc__row, .tbl td:last-child, .aero-card__row { font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.updated { font-size: 0.85rem; font-weight: 500; }
.mono { letter-spacing: 0; font-weight: 600; }

/* ============ AERO ============ */
/* selects du comparateur de positions */
#comparateur h3 { grid-column: 1 / -1; font-size: 1.2rem; }
.calc__field select {
  appearance: none; -webkit-appearance: none;
  width: 100%; max-width: 420px; min-height: 48px;
  padding: 13px 44px 13px 15px;
  font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 1rem; font-weight: 500; color: #16150F;
  background-color: #F6F4EE;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23C2571B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  border: 1px solid rgba(22,21,15,0.3); border-radius: 4px;
  cursor: pointer;
  transition: border-color 150ms cubic-bezier(0.4,0,0.2,1), background-color 150ms cubic-bezier(0.4,0,0.2,1);
}
.calc__field select:focus-visible { outline: 2px solid #C2571B; outline-offset: 2px; border-color: #C2571B; }
@media (hover: hover) and (pointer: fine) { .calc__field select:hover { border-color: #C2571B; background-color: #FBFAF6; } }
/* accents ambre propres a la page aero */
.nav__links a[aria-current="page"] { color: #16150F; }
.nav__links a[aria-current="page"].nav__link-line::after { transform: scaleX(1); background: #C2571B; }
#comparateur .calc__main { color: #C2571B; }
#comparateur .btn-full, #comparateur a.btn-full { background: #C2571B; }
.aero-card .label { color: rgba(246,244,238,0.55); }
.tbl caption { text-align: left; font-size: 0.85rem; font-weight: 500; color: #57544a; padding-bottom: 14px; }
.tbl th[scope="row"] { color: #16150F; font-weight: 700; white-space: nowrap; padding: 16px 20px 16px 0; border-top: 1px solid rgba(22,21,15,0.12); text-align: left; }
.guide-list li.guide-item { padding: 26px 0; }
.guide-list li.guide-item h3 a { color: #16150F; }
@media (hover: hover) and (pointer: fine) { .guide-list li.guide-item h3 a:hover { color: #C2571B; } }
.page-hero p:has(> .chip) { margin-top: 24px; }
.page-hero p:has(> .btn-primary) { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
main > .cta-band { border-radius: 0; padding-block: clamp(48px, 7vw, 88px); }
.aero-card__note { text-align: left; max-width: 46ch; margin-top: 20px; line-height: 1.5; }
main > .cta-band .btn-outline { width: auto; color: #F6F4EE; border-color: rgba(246,244,238,0.4); }
@media (hover: hover) and (pointer: fine) { main > .cta-band .btn-outline:hover { background: #F6F4EE; color: #16150F; } }
main > .cta-band .cta-band__foot { margin-top: 28px; }
section[aria-labelledby="h2-limites"] .bullets { max-width: none; column-gap: 48px; row-gap: 16px; }
@media (min-width: 900px) { section[aria-labelledby="h2-limites"] .bullets { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.nav__links { gap: 22px; }
@media (min-width: 1120px) { .nav__links { gap: 28px; } }

/* ============ PIED DE PAGE : PLAN DU SITE ============ */
.site-footer { padding-block: 48px 32px; }
.footer__nav { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col-t { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #57544a; margin-bottom: 4px; }
.footer__col a { font-size: 0.95rem; font-weight: 500; color: #42403a; padding: 3px 0; }
.footer__col a[aria-current="page"] { color: #16150F; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(22,21,15,0.12); font-size: 0.85rem; font-weight: 500; color: #57544a; }
@media (hover: hover) and (pointer: fine) { .footer__col a:hover { color: #0C7A57; } }
@media (min-width: 640px) { .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; } }
@media (min-width: 960px) { .footer__nav { grid-template-columns: repeat(4, 1fr); } }

/* ============ NAV DROPDOWN : GUIDES ============ */
.nav__drop { position: relative; display: flex; align-items: center; }
.nav__drop::after { content: ""; position: absolute; left: -14px; right: -14px; top: 100%; height: 16px; }
.nav__panel {
  position: absolute; top: calc(100% + 14px); left: -18px; z-index: 110;
  width: 316px; padding: 6px;
  background: #FBFAF6; border: 1px solid #E4E0D4; border-radius: 8px;
  box-shadow: 0 14px 36px rgba(22,21,15,0.12), 0 2px 8px rgba(22,21,15,0.06);
  opacity: 0; visibility: hidden; transform: translateY(6px); pointer-events: none;
  transition: opacity 160ms cubic-bezier(0.4,0,0.2,1), transform 160ms cubic-bezier(0.4,0,0.2,1), visibility 160ms;
}
.nav__drop:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
@media (hover: hover) and (pointer: fine) {
  .nav__drop:hover .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav__links .nav__panel a:hover { background: #F0EDE2; }
}
.nav__links .nav__panel a { display: flex; gap: 12px; align-items: baseline; padding: 11px 12px; border-radius: 5px; }
.nav__panel-k { font-size: 0.72rem; color: #0C7A57; flex: none; }
.nav__panel-t strong { display: block; font-weight: 700; font-size: 0.875rem; color: #16150F; line-height: 1.3; }
.nav__panel-t em { display: block; font-style: normal; font-weight: 400; font-size: 0.78rem; color: #57544a; margin-top: 2px; }
.nav__links a.nav__panel-all { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; border-top: 1px solid #E4E0D4; border-radius: 0 0 5px 5px; font-size: 0.8125rem; font-weight: 600; color: #0C7A57; }
@media (prefers-reduced-motion: reduce) { .nav__panel { transition: none; transform: none; } }

/* ============ GEO : réponse directe + byline ============ */
.answer-box { margin-top: 28px; padding: 20px 24px; background: #FBFAF6; border: 1px solid #E4E0D4; border-radius: 8px; max-width: 72ch; }
.answer-box > p:last-child { margin: 8px 0 0; font-size: 1rem; line-height: 1.7; color: #42403a; }
.byline { margin-top: 16px; font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 0.8125rem; color: #57544a; }
.byline a { color: #0C7A57; text-decoration: underline; text-underline-offset: 2px; }


/* ============ MAQUETTES D'APP EN PORTRAIT ============ */
/* Captures iPhone (895x1825 recadrees, fond transparent) : le conteneur
   .device par defaut fait 480px, ce qui donnerait ~1000px de haut. */
.device--portrait { max-width: 300px; }
.device--portrait .device__img { border-radius: 0; }
.device--solo { max-width: 340px; }
.device-shot { padding-block: 8px clamp(48px, 7vw, 88px); }
.device-shot__panel {
  max-width: 720px; margin-inline: auto;
  background: #EDEAE1; border: 1px solid rgba(22,21,15,0.12); border-radius: 6px;
  padding: clamp(28px, 4vw, 48px);
}
.device-shot__panel .device__caption { margin-top: 20px; }
@media (max-width: 560px) {
  .device--portrait, .device--solo { max-width: 260px; }
}

/* Portrait de la section Expertise : reprend le gabarit de .photo-frame */
.photo-portrait {
  display: block; width: 100%; max-width: 360px; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid rgba(22,21,15,0.12); border-radius: 4px;
}

/* Hero à deux colonnes : la capture passe à droite du texte dès 1040px */
.page-hero__visual { margin-top: 40px; }
@media (min-width: 1040px) {
  .page-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }
  .page-hero--split .page-hero__visual { margin-top: 0; }
}

/* ── Titres de section sur deux colonnes (28/08/2026) ──────────────────
   Sur grand écran, le surtitre et le titre restent à gauche et le chapô
   passe à droite, au lieu d'empiler trois blocs étroits alignés à gauche
   avec un grand vide. Sous 1080 px, tout revient empilé, inchangé.
   Les textes longs (.prose des pages légales) ne sont PAS concernés :
   leur largeur limitée est une largeur de lecture, pas un défaut. */
@media (min-width: 1080px) {
  .section__head:has(.intro) {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: clamp(40px, 5vw, 88px);
    align-items: start;
  }
  .section__head:has(.intro) > .label { grid-column: 1; grid-row: 1; }
  .section__head:has(.intro) > h2     { grid-column: 1; grid-row: 2; max-width: 17ch; }
  .section__head:has(.intro) > .intro { grid-column: 2; grid-row: 2; margin-top: 8px; max-width: 46ch; }
  /* variante sans surtitre : titre et chapô sur la premiere ligne */
  .section__head:not(:has(.label)):has(.intro) > h2,
  .section__head:not(:has(.label)):has(.intro) > .intro { grid-row: 1; }

  /* Definition « Qu'est-ce que le bike fitting ? » (accueil FR + EN) */
  .def {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(40px, 5vw, 88px);
    align-items: start;
  }
  .def h2 { max-width: 15ch; }
  .def p  { margin-top: 8px; max-width: 50ch; }
}


/* ── Tableau entrejambe / hauteur de selle (28/08/2026) ────────────────
   Ce tableau repete DEUX FOIS le meme couple de colonnes, cote a cote
   (entrejambe, hauteur | entrejambe, hauteur). Or les regles generiques
   de .tbl visent la PREMIERE et la DERNIERE colonne : seule la colonne 1
   ressortait en gras et seule la colonne 4 en vert. Les deux colonnes du
   milieu se confondaient, et on ne savait plus laquelle lire.
   Ici on cible le ROLE de la colonne, pas sa position :
   impaires = entrejambe (gras), paires = hauteur de selle (vert).
   Reserve a ce tableau : les autres .tbl du site (3, 8 et 10 colonnes)
   gardent la regle generique, qui est correcte pour eux. */
.tbl--pairs td:nth-child(odd) {
  color: #16150F;
  font-weight: 700;
  white-space: nowrap;
}
.tbl--pairs td:nth-child(even) {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #0C7A57;
  font-variant-numeric: tabular-nums;
}

/* Mention en petit au pied d'une carte tarifaire (28/08/2026) : ce que le
   gratuit offre une seule fois, et le tarif de passage à l'année. Dit dans
   la carte plutôt qu'en note de bas de page, là où la question se pose. */
.plan__fine {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(22,21,15,0.12);
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 0.85rem; line-height: 1.45; color: #57544a;
}

/* ── Sélecteur de langue dans la barre (28/08/2026) ────────────────────
   Le lien existait déjà en pied de page, personne ne descendait le chercher.
   Un seul élément sert les deux dispositions : sur grand écran il se place
   après le bouton Télécharger, séparé par un filet ; sous 860 px, quand la
   navigation se replie, il reste visible à côté du burger. Corriger sa
   langue ne doit pas obliger à ouvrir un menu.
   La marge automatique est portée par la MARQUE, seul élément toujours
   présent et toujours premier : elle pousse tout le reste à droite, que le
   sélecteur existe ou non, que la navigation soit repliée ou non. */
.nav { gap: 14px; }
.brand { margin-right: auto; }
.nav__lang {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #57544a; white-space: nowrap;
  padding: 0 2px;
}
@media (min-width: 860px) {
  .nav__lang { padding-left: 16px; border-left: 1px solid rgba(22,21,15,0.16); }
}
@media (hover: hover) and (pointer: fine) {
  .nav__lang:hover { color: #16150F; }
}
.nav__lang:focus-visible { outline: 2px solid #0C7A57; outline-offset: 3px; border-radius: 3px; }
