/* ==========================================================================
   École de Musique de Navenne — feuille de style principale
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons de design
   -------------------------------------------------------------------------- */
:root {
  --navy-900: #06304A;
  --navy-700: #0A3A57;
  --navy-600: #12466A;
  --navy-500: #1E5375;
  --ink:      #14212B;
  --slate:    #4A6373;
  --slate-2:  #5C7280;
  --muted:    #8195A2;
  --gold:     #F2C464;
  --ochre:    #B87D14;
  --paper:    #FDFCFA;
  --white:    #ffffff;
  --line:     #E7EDF1;
  --line-2:   #E3EAEF;
  --line-3:   #D6E0E7;
  --wash:     #EEF3F7;
  --wash-2:   #F7F9FB;
  --sky:      #CFE0EA;
  --sky-2:    #BFD4E2;
  --sky-3:    #8FB0C4;
  --sky-4:    #9FBDCF;
  --sky-5:    #7FA3B8;
  --sky-6:    #EAF2F7;

  --ff-head: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --ff-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1280px;
  --gut: 24px;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --shadow-card: 0 30px 60px -30px rgba(6, 48, 74, .45);
  --radius-lg: 32px;
  --radius-md: 26px;
  --radius-sm: 22px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--ochre); }
button { font: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy-900);
  color: #fff;
  padding: 14px 22px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Typographie
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--ff-head);
  font-stretch: 82%;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre);
}
.eyebrow--gold { color: var(--gold); }

.display {
  font-family: var(--ff-head);
  font-stretch: 76%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: .93;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.display--xl { font-size: clamp(44px, 6.2vw, 92px); line-height: .92; }

.h2 {
  font-family: var(--ff-head);
  font-stretch: 76%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
  color: var(--navy-700);
}
.h2--sm { font-size: clamp(28px, 3.2vw, 44px); line-height: 1; }
.h2--md { font-size: clamp(30px, 3.6vw, 50px); line-height: 1; }

.h3 {
  font-family: var(--ff-head);
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.05;
  color: var(--navy-700);
}

.lede {
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--sky);
  max-width: 58ch;
  text-wrap: pretty;
}
.txt { font-size: 16.5px; line-height: 1.7; color: var(--slate); text-wrap: pretty; }
.txt--sm { font-size: 15px; color: var(--slate-2); line-height: 1.6; }
.on-dark { color: #fff; }
.on-dark .txt { color: var(--sky); }

/* --------------------------------------------------------------------------
   4. Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-family: var(--ff-head);
  font-stretch: 82%;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.btn--primary { background: var(--navy-700); color: #fff; box-shadow: 0 10px 24px -12px rgba(10, 58, 87, .6); }
.btn--primary:hover { background: var(--ochre); color: #fff; transform: translateY(-2px); }

.btn--gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 18px 40px -18px rgba(242, 196, 100, .7); }
.btn--gold:hover { color: var(--navy-900); transform: translateY(-3px); box-shadow: 0 26px 50px -18px rgba(242, 196, 100, .85); }

.btn--ghost { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.btn--ghost-dark { border-color: var(--line-3); color: var(--navy-700); background: transparent; }
.btn--ghost-dark:hover { background: var(--wash); color: var(--navy-700); }

.btn--lg { padding: 19px 30px; font-size: 16px; }
.btn--block { display: flex; justify-content: space-between; width: 100%; border-radius: 16px; padding: 20px 28px; }

.dot { width: 5px; height: 5px; border-radius: 99px; background: var(--gold); display: inline-block; flex-shrink: 0; }
.dot--gold { width: 6px; height: 6px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-stretch: 82%;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ochre);
}
.link-underline {
  display: inline-flex;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy-700);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

/* --------------------------------------------------------------------------
   5. En-tête
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; }

.topbar { background: var(--navy-900); color: var(--sky-2); font-size: 12.5px; letter-spacing: .04em; }
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 8px; padding-bottom: 8px;
}
.topbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__phone { color: var(--sky-6); display: flex; align-items: center; gap: 7px; }
.topbar__mail { color: var(--sky-2); }
.topbar a:hover { color: var(--gold); }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__place { color: var(--sky-3); }
.topbar__social { display: flex; gap: 12px; }
.topbar__social a { color: var(--sky-2); }

.navbar {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .35s ease;
}
.navbar.is-stuck { box-shadow: 0 12px 30px -18px rgba(6, 48, 74, .45); }
.navbar__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.navbar__logo { flex-shrink: 0; }
.navbar__logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 10px 14px;
  border-radius: 99px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.nav__link:hover { background: var(--wash); color: var(--navy-700); }
.nav__link.is-active { background: var(--wash); color: var(--navy-700); box-shadow: inset 0 -2px 0 0 var(--ochre); }
.nav__cta { margin-left: 10px; padding: 13px 22px; font-size: 14px; }

.burger {
  display: none;
  width: 46px; height: 42px;
  border: 1px solid var(--line-3);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--navy-700); transition: transform .3s var(--ease), opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Sections génériques
   -------------------------------------------------------------------------- */
.section { padding: 96px 0; background: var(--paper); }
.section--tight { padding: 24px 0 104px; }
.section--flush-top { padding-top: 0; }
.section--navy { background: var(--navy-700); position: relative; overflow: hidden; padding: 104px 0; }
.section--navy .h2 { color: #fff; }
.section--deep { background: var(--navy-900); padding: 88px 0 96px; }

.section__head { max-width: 60ch; margin-bottom: 48px; }
.section__head .h2 { margin-top: 16px; }
.section__head--split {
  max-width: none;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap; margin-bottom: 52px;
}
.section__head--split > div { max-width: 56ch; }
.section__aside { max-width: 38ch; font-size: 16.5px; line-height: 1.7; color: var(--sky-2); }

.watermark {
  position: absolute; top: -40px; right: -20px;
  font-family: var(--ff-head); font-stretch: 62%; font-weight: 900;
  font-size: 280px; line-height: 1; color: rgba(255, 255, 255, .035);
  pointer-events: none; user-select: none;
}

/* --------------------------------------------------------------------------
   7. Animations d'apparition
   -------------------------------------------------------------------------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
@keyframes drift { 0% { transform: translateX(-4%); } 50% { transform: translateX(4%); } 100% { transform: translateX(-4%); } }
@keyframes floaty { 0% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-26px) rotate(6deg); } 100% { transform: translateY(0) rotate(-4deg); } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseRing { 0% { opacity: .55; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(2.2); } }
@keyframes eqBar { 0%, 100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.rise { animation: riseIn .9s var(--ease) both; }
.rise--1 { animation-delay: .1s; }
.rise--2 { animation-delay: .2s; }
.rise--3 { animation-delay: .3s; }

/* --------------------------------------------------------------------------
   8. Hero d'accueil
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  background: var(--navy-900);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 96px 0 72px;
}
.hero__bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; opacity: .34; filter: saturate(.7); max-width: none; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(105deg, #06304A 8%, rgba(6, 48, 74, .86) 46%, rgba(6, 48, 74, .35) 100%); }
.hero__staff { position: absolute; inset: 0; opacity: .5; animation: drift 22s ease-in-out infinite; }
.hero__staff i {
  position: absolute; left: -5%; width: 110%; height: 1px;
  background: linear-gradient(90deg, transparent, #4E86A8, transparent);
}
.hero__staff i:nth-child(1) { top: 26%; }
.hero__staff i:nth-child(2) { top: 34%; }
.hero__staff i:nth-child(3) { top: 42%; }
.hero__staff i:nth-child(4) { top: 50%; }
.hero__staff i:nth-child(5) { top: 58%; }

.note { position: absolute; animation: floaty 9s ease-in-out infinite; pointer-events: none; }
.note--1 { top: 18%; right: 16%; font-size: 74px; color: var(--gold); opacity: .5; }
.note--2 { bottom: 22%; right: 34%; font-size: 52px; color: var(--sky-3); opacity: .42; animation-duration: 11s; animation-delay: 1.5s; }
.note--3 { top: 56%; right: 8%; font-size: 40px; color: var(--gold); opacity: .35; animation-duration: 13s; animation-delay: .7s; }

.hero__in {
  position: relative; width: 100%;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero__title { margin: 26px 0 0; color: #fff; }
.hero__title .accent { color: var(--gold); }
.hero__text { margin: 28px 0 0; max-width: 52ch; font-size: 19px; line-height: 1.65; color: var(--sky); text-wrap: pretty; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.hero__note { margin-top: 26px; font-size: 14.5px; color: var(--sky-3); }

.badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 18px 9px 12px; border-radius: 99px;
  background: rgba(242, 196, 100, .14);
  border: 1px solid rgba(242, 196, 100, .45);
  color: var(--gold);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.badge__pulse { position: relative; display: inline-flex; width: 9px; height: 9px; }
.badge__pulse i { position: absolute; inset: 0; border-radius: 99px; background: var(--gold); }
.badge__pulse i:first-child { animation: pulseRing 2.4s ease-out infinite; }

.glass {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 32px;
}
.glass__label { font-family: var(--ff-head); font-stretch: 80%; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: 12.5px; color: var(--gold); }
.glass__date { margin-top: 14px; font-family: var(--ff-head); font-stretch: 78%; font-weight: 800; text-transform: uppercase; font-size: 34px; line-height: 1; color: #fff; }
.glass__text { margin-top: 16px; font-size: 15.5px; line-height: 1.6; color: var(--sky); }
.glass__link { display: inline-flex; margin-top: 20px; color: var(--gold); font-weight: 700; font-size: 15px; border-bottom: 1px solid rgba(242, 196, 100, .4); padding-bottom: 2px; }
.glass hr { border: 0; height: 1px; background: rgba(255, 255, 255, .16); margin: 24px 0; }

.eq { display: flex; align-items: flex-end; gap: 5px; height: 44px; margin-bottom: 22px; }
.eq span { flex: 1; border-radius: 3px; height: 100%; transform-origin: bottom; animation: eqBar 1.4s ease-in-out infinite; }
.eq span:nth-child(odd) { background: var(--gold); }
.eq span:nth-child(even) { background: #7FB3D0; }
.eq span:nth-child(2) { animation-delay: .2s; }
.eq span:nth-child(3) { animation-delay: .4s; }
.eq span:nth-child(4) { animation-delay: .1s; }
.eq span:nth-child(5) { animation-delay: .5s; }
.eq span:nth-child(6) { animation-delay: .3s; }

/* --------------------------------------------------------------------------
   9. Bandeau défilant
   -------------------------------------------------------------------------- */
.marquee { background: var(--navy-700); padding: 18px 0; overflow: hidden; border-top: 1px solid var(--navy-600); }
.marquee__track { display: flex; width: 200%; animation: marq 30s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 44px; width: 50%; flex-shrink: 0; padding-right: 44px; }
.marquee__word {
  font-family: var(--ff-head); font-stretch: 76%; font-weight: 800;
  text-transform: uppercase; font-size: 26px; color: rgba(255, 255, 255, .92); white-space: nowrap;
}
.marquee__sep { color: var(--gold); font-size: 22px; }

/* --------------------------------------------------------------------------
   10. Chiffres clés
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 34px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.stat--navy { background: var(--navy-700); border-color: var(--navy-700); }
.stat__n { font-family: var(--ff-head); font-stretch: 74%; font-weight: 800; font-size: 64px; line-height: 1; color: var(--navy-700); }
.stat--navy .stat__n { color: var(--gold); }
.stat__label { margin-top: 10px; font-size: 15px; color: var(--slate-2); line-height: 1.5; }
.stat--navy .stat__label { color: var(--sky-2); }

/* --------------------------------------------------------------------------
   11. Cartes
   -------------------------------------------------------------------------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.card {
  display: block; position: relative; overflow: hidden;
  border-radius: 28px; background: #fff; border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.card__media { position: relative; height: 280px; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold); color: var(--navy-900);
  padding: 8px 14px; border-radius: 99px;
  font-family: var(--ff-head); font-stretch: 82%; font-weight: 800;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}
.card__tag--navy { background: var(--navy-700); color: var(--gold); }
.card__body { padding: 32px; }
.card__body .h3 { font-size: 30px; line-height: 1; }
.card__body .txt { margin-top: 14px; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { font-size: 13.5px; font-weight: 600; color: var(--navy-700); background: var(--wash); padding: 7px 13px; border-radius: 99px; }
.pill--dark { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: var(--sky); font-size: 15px; padding: 10px 18px; font-weight: 500; }

/* Grille des disciplines */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.tile {
  position: relative; display: block; border-radius: var(--radius-sm);
  overflow: hidden; height: 300px;
  transition: transform .5s var(--ease), box-shadow .5s ease;
}
.tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.tile:hover img { transform: scale(1.07); }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 48, 74, .92) 0%, rgba(6, 48, 74, .18) 55%, rgba(6, 48, 74, .05) 100%); }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; }
.tile__body .h3 { color: #fff; }
.tile__age { margin-top: 6px; font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }

/* Cartes « étapes » numérotées */
.step { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px 32px; }
.step--navy { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }
.step__n { font-family: var(--ff-head); font-stretch: 74%; font-weight: 900; font-size: 15px; letter-spacing: .1em; color: var(--ochre); }
.step--navy .step__n { color: var(--gold); }
.step .h3 { margin-top: 18px; font-size: 27px; }
.step--navy .h3 { color: #fff; }
.step__meta { margin-top: 8px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-2); }
.step--navy .step__meta { color: var(--sky-3); }
.step .txt { margin-top: 16px; }
.step--navy .txt { color: var(--sky); }
.step__price { margin-top: 22px; font-family: var(--ff-head); font-stretch: 76%; font-weight: 800; font-size: 32px; color: var(--navy-700); }
.step--navy .step__price { color: var(--gold); }
.step__price small { font-family: var(--ff-body); font-size: 15px; font-weight: 600; color: var(--slate-2); }
.step--navy .step__price small { color: var(--sky-3); }

/* --------------------------------------------------------------------------
   12. Bloc « pourquoi nous »
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--wide { grid-template-columns: .9fr 1.1fr; align-items: start; }

.figure { position: relative; border-radius: 28px; overflow: hidden; height: 520px; }
.figure img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; max-width: none; }
.figure__caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  background: rgba(6, 48, 74, .86);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 18px; padding: 20px 24px;
}
.figure__caption strong { display: block; font-family: var(--ff-head); font-stretch: 80%; font-weight: 800; text-transform: uppercase; font-size: 15px; letter-spacing: .06em; color: var(--gold); }
.figure__caption p { margin-top: 8px; font-size: 14.5px; color: var(--sky); line-height: 1.55; }

.reasons { display: flex; flex-direction: column; margin-top: 36px; }
.reason { display: flex; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line-2); }
.reason:last-child { border-bottom: 1px solid var(--line-2); }
.reason__n { font-family: var(--ff-head); font-stretch: 74%; font-weight: 900; font-size: 14px; color: var(--ochre); padding-top: 4px; }
.reason h3 { font-family: var(--ff-head); font-stretch: 80%; font-weight: 800; text-transform: uppercase; font-size: 21px; color: var(--navy-700); }
.reason p { margin-top: 8px; font-size: 16.5px; line-height: 1.65; color: var(--slate); }

/* --------------------------------------------------------------------------
   13. Blocs d'appel à l'action
   -------------------------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--navy-900); border-radius: var(--radius-lg);
  padding: 72px 56px; color: #fff;
}
.cta--flat { padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta__note { position: absolute; top: -70px; right: -30px; font-size: 300px; color: rgba(242, 196, 100, .07); line-height: 1; pointer-events: none; }
.cta__in { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.cta .h2 { color: #fff; margin-top: 18px; }
.cta .h2 .soft { color: var(--sky-3); }
.cta__text { margin-top: 22px; max-width: 54ch; font-size: 17.5px; line-height: 1.65; color: var(--sky); }
.cta__actions { display: flex; flex-direction: column; gap: 14px; }
.cta__tel { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--sky-3); padding: 6px 26px 0; font-size: 15px; }
.cta__tel:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 26px; }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--ff-head); font-stretch: 82%; font-weight: 800;
  font-size: 18px; text-transform: uppercase; color: var(--navy-700);
  list-style: none; cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--ochre); font-size: 22px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 14px; font-size: 16px; line-height: 1.7; color: var(--slate); }

/* --------------------------------------------------------------------------
   15. Carte / plan
   -------------------------------------------------------------------------- */
.map { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); height: 320px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map--tall { height: 340px; border-radius: var(--radius-md); }

.panel { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 52px; }
.panel--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.panel--wash { background: var(--wash); border-color: #DCE6EC; }

/* --------------------------------------------------------------------------
   16. Page Tarifs
   -------------------------------------------------------------------------- */
.price {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 42px 38px;
}
.price--navy { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }
.price__label { font-family: var(--ff-head); font-stretch: 80%; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .12em; color: var(--ochre); }
.price--navy .price__label { color: var(--gold); }
.price .h3 { margin-top: 16px; font-size: 32px; line-height: 1; }
.price--navy .h3 { color: #fff; }
.price__amount { margin-top: 24px; font-family: var(--ff-head); font-stretch: 74%; font-weight: 800; font-size: 72px; line-height: 1; color: var(--navy-700); }
.price--navy .price__amount { color: var(--gold); }
.price__amount small { font-family: var(--ff-body); font-size: 17px; font-weight: 600; color: var(--slate-2); }
.price--navy .price__amount small { color: var(--sky-3); }

.checks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.checks p { font-size: 16px; color: var(--slate); display: flex; gap: 12px; }
.checks p::before { content: '✓'; color: var(--ochre); font-weight: 800; }
.price--navy .checks p { color: var(--sky); }
.price--navy .checks p::before { color: var(--gold); }

.mini { background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.mini img { width: 100%; height: 180px; object-fit: cover; }
.mini__body { padding: 32px 30px; }
.mini__meta { margin-top: 10px; font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--slate-2); }
.mini__price { margin-top: 22px; font-family: var(--ff-head); font-stretch: 74%; font-weight: 800; font-size: 48px; line-height: 1; color: var(--navy-700); }
.mini__price small { font-family: var(--ff-body); font-size: 15px; font-weight: 600; color: var(--slate-2); }

.rows { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; background: var(--wash-2); border-radius: 14px;
}
.row span:first-child { font-size: 16px; color: var(--slate); }
.row b { font-family: var(--ff-head); font-stretch: 78%; font-weight: 800; font-size: 22px; color: var(--navy-700); }

/* --------------------------------------------------------------------------
   17. Page Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }

.ccard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 32px 30px;
  display: block; transition: transform .3s ease, border-color .3s ease;
}
.ccard:hover { transform: translateY(-3px); border-color: var(--ochre); }
.ccard--navy { background: var(--navy-700); border-color: var(--navy-700); }
.ccard--navy:hover { border-color: var(--navy-700); }
.ccard__label { display: block; font-family: var(--ff-head); font-stretch: 80%; font-weight: 800; text-transform: uppercase; font-size: 12.5px; letter-spacing: .14em; color: var(--ochre); }
.ccard--navy .ccard__label { color: var(--gold); }
.ccard__big { display: block; margin-top: 12px; font-family: var(--ff-head); font-stretch: 76%; font-weight: 800; font-size: 34px; color: #fff; line-height: 1; }
.ccard__value { display: block; margin-top: 12px; font-weight: 700; font-size: 19px; color: var(--navy-700); line-height: 1.3; word-break: break-word; }
.ccard__hint { display: block; margin-top: 10px; font-size: 14.5px; color: var(--slate-2); }
.ccard--navy .ccard__hint { color: var(--sky-2); }
.ccard__list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.ccard__list a { font-size: 15.5px; font-weight: 600; color: var(--navy-700); }

/* Formulaire */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 40px; margin-top: 24px; }
.form-card .h2 { font-size: 30px; line-height: 1.02; }
.form-card > .txt { margin-top: 14px; max-width: 52ch; font-size: 16px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field > span, .field > label {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate-2);
}
.field .req { color: var(--ochre); }
.field input, .field select, .field textarea {
  padding: 15px 16px;
  border: 1px solid var(--line-3);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(10, 58, 87, .12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent-row { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; }
.consent-row input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy-700); }
.consent-row label { font-size: 14.5px; line-height: 1.6; color: var(--slate); }

.form-card button[type="submit"] {
  margin-top: 24px; width: 100%; justify-content: center;
  border-radius: 16px; padding: 20px 28px; font-size: 15.5px;
}
.form-note { margin-top: 14px; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.form-note a { color: var(--slate-2); text-decoration: underline; }

.alert { border-radius: 16px; padding: 20px 24px; margin-bottom: 24px; font-size: 15.5px; line-height: 1.65; }
.alert--ok { background: #EAF6EF; border: 1px solid #B7DEC6; color: #17553A; }
.alert--error { background: #FDEDED; border: 1px solid #F3C7C7; color: #8A2020; }
.alert ul { margin: 8px 0 0; padding-left: 20px; }
.alert strong { display: block; margin-bottom: 4px; font-size: 17px; }

/* --------------------------------------------------------------------------
   18. Pages légales (prose)
   -------------------------------------------------------------------------- */
.prose { max-width: 76ch; }
.prose h2 {
  font-family: var(--ff-head); font-stretch: 78%; font-weight: 800;
  text-transform: uppercase; font-size: 26px; line-height: 1.1;
  color: var(--navy-700); margin: 44px 0 0;
}
.prose h3 { font-size: 19px; font-weight: 800; color: var(--navy-700); margin: 26px 0 0; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.75; color: var(--slate); }
.prose p { margin-top: 14px; }
.prose ul { margin: 14px 0 0; padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose a { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 15.5px; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); color: var(--slate); }
.prose th { color: var(--navy-700); font-weight: 700; }

/* --------------------------------------------------------------------------
   19. Page 404
   -------------------------------------------------------------------------- */
.notfound { padding: 120px 0; text-align: center; }
.notfound .display { color: var(--navy-700); }
.notfound .txt { margin: 22px auto 0; max-width: 52ch; }
.notfound__links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* --------------------------------------------------------------------------
   20. Pied de page
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: var(--sky-2); padding: 72px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.footer__brand img { width: 150px; height: auto; }
.footer__brand p { font-size: 14.5px; line-height: 1.65; color: var(--sky-4); max-width: 34ch; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 99px; border: 1px solid var(--navy-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-2); font-size: 12px; font-weight: 700;
  transition: background .25s ease, color .25s ease;
}
.footer__social a:hover { background: var(--ochre); color: #fff; }

.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__title {
  font-family: var(--ff-head); font-stretch: 80%; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--gold);
}
.footer__col a, .footer__col span { color: var(--sky-2); font-size: 14.5px; }
.footer__col a:hover { color: var(--gold); }
.footer__contact address { font-style: normal; font-size: 14.5px; line-height: 1.6; color: var(--sky-4); }
.footer__phone { font-size: 19px; font-weight: 700; color: var(--sky-6) !important; }
.footer__map { color: var(--gold) !important; font-size: 14px; font-weight: 600; }

.footer__zones {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--navy-600);
  font-size: 13px; color: var(--sky-5);
}
.footer__zone {
  padding: 6px 13px; border-radius: 99px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  color: var(--sky-2);
}

.footer__legal {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--navy-600);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--sky-5);
}
.footer__legal-links { display: flex; gap: 18px; }
.footer__legal a { color: var(--sky-5); }
.footer__legal a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   21. Bandeau de consentement
   -------------------------------------------------------------------------- */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: 0 24px 60px -24px rgba(6, 48, 74, .5);
  padding: 20px 22px;
}
.consent[hidden] { display: none; }
.consent__in {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.consent__text { font-size: 14.5px; line-height: 1.6; color: var(--slate); max-width: 74ch; }
.consent__text a { text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent__actions .btn { padding: 13px 22px; font-size: 13px; }

/* --------------------------------------------------------------------------
   22. Adaptatif
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__in { grid-template-columns: 1fr; gap: 44px; }
  .hero { min-height: 0; padding: 72px 0 64px; }
  .split, .split--wide, .panel--grid, .cta__in, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .figure { height: 400px; }
  .watermark { font-size: 180px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line-2);
    padding: 14px var(--gut) 22px;
    box-shadow: 0 24px 40px -28px rgba(6, 48, 74, .5);
    display: none;
  }
  .nav.is-open { display: flex; }
  .navbar { position: relative; }
  .nav__link { padding: 14px 16px; font-size: 16px; }
  .nav__cta { margin: 10px 0 0; justify-content: center; }
  .topbar__right { display: none; }
  .topbar__in { justify-content: center; }
}

@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .section--navy, .section--tight { padding: 64px 0; }
  .duo, .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .cta, .cta--flat { padding: 44px 28px; border-radius: 24px; }
  .panel { padding: 32px 26px; }
  .form-card { padding: 28px 24px; }
  .price { padding: 32px 26px; }
  .price__amount { font-size: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .note--1, .note--2, .note--3 { display: none; }
  .cta__note { font-size: 190px; top: -40px; right: -20px; }
  .marquee__word { font-size: 20px; }
  .consent__in { justify-content: stretch; }
  .consent__actions { width: 100%; }
  .consent__actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 560px) {
  :root { --gut: 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar { font-size: 12px; }
  .topbar__left { gap: 12px; justify-content: center; }
  .navbar__logo img { height: 38px; }
  .card__media { height: 220px; }
  .figure { height: 320px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   23. Impression
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .consent, .marquee, .hero__bg, .hero__staff, .note { display: none !important; }
  body { background: #fff; color: #000; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 11px; }
}
