/* Accueil v7 — Visuel dense, factuel
   Reprend la richesse visuelle de v4 (alternance ivoire / bleu encre,
   hero plein-cadre avec photo, photo avec ombre or, cercles signalétiques)
   + le contenu factuel de v6 + le logo Rébecca avec le chat.
   Palette : bleu marine encre / vert sapin / or / ivoire / blanc cassé.
*/

/* NB: tokens & font imports désormais centralisés dans rlg-tokens.css.
   Ces alias maintiennent la compat avec les classes locales .v7__*. */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

:root {
  --rlg-encre:        #0E2540;
  --rlg-nuit:         #16314F;
  --rlg-marine:       #1F3F5C;
  --rlg-ardoise:      #2C4A6B;
  --rlg-brume:        #C8D2DF;
  --rlg-pale:         #E8EBF0;
  --rlg-sapin:        #26466B;
  --rlg-sapin-mid:    #5A7A9E;
  --rlg-sapin-pale:   #B8CADC;
  --rlg-sapin-light:  #DDE6F1;
  --rlg-sapin-deep:   #15304F;
  --rlg-or:           #C9A86C;
  --rlg-or-deep:      #A8884B;
  --rlg-or-pale:      #E8D7AA;
  --rlg-casse:        #FBF8F1;
  --rlg-ivoire:       #F4ECDC;
  --rlg-ivoire-soft:  #FAF4E6;
  --rlg-ivoire-deep:  #EBDFC4;
  --rlg-gris-1:       #E8E5DD;
  --rlg-gris-2:       #6B6B6B;
  --rlg-noir:         #0A0A0A;
  --rlg-blanc:        #FFFFFF;
  --rlg-f-display:    'DM Serif Display', Georgia, serif;
  --rlg-f-sans:       'Manrope', system-ui, sans-serif;
  --rlg-f-serif:      'Cormorant Garamond', Georgia, serif;
  --rlg-fs-display-xl: clamp(96px, 13vw, 200px);
  --rlg-fs-display-lg: clamp(56px, 7vw, 96px);
  --rlg-fs-display-md: clamp(40px, 5vw, 72px);
  --rlg-fs-display-sm: clamp(28px, 3vw, 44px);
  --rlg-ease-soft:      cubic-bezier(.2,.7,.2,1);
  --rlg-ease-narrative: cubic-bezier(.16,.84,.3,1);
  --rlg-ease-snap:      cubic-bezier(.5,0,.1,1);
  --rlg-sp-section:    144px;
  --rlg-sp-section-sm: 96px;
  --rlg-sp-bridge:     112px;
  --rlg-hairline:        rgba(14,37,64,.10);
  --rlg-hairline-or:     rgba(168,136,75,.30);
  --rlg-hairline-on-dark: rgba(244,236,220,.16);
  --rlg-shadow-sm:    0 6px 18px rgba(14,37,64,.08);
  --rlg-shadow-md:    0 10px 24px rgba(14,37,64,.12);
  --rlg-shadow-lg:    0 18px 40px rgba(14,37,64,.18);
  --rlg-shadow-or:    0 10px 24px rgba(201,168,108,.28);
  --rlg-shadow-logo:  0 12px 36px rgba(14,37,64,.28), 0 0 0 1px rgba(217,168,95,.35) inset;
  --rlg-shadow-logo-sm: 0 6px 18px rgba(14,37,64,.12), 0 0 0 1px rgba(217,168,95,.25) inset;
  --rlg-dur-fast:    .25s;
  --rlg-dur-base:    .35s;
  --rlg-dur-slow:    .5s;
  --rlg-dur-reveal:  .9s;
  --rlg-container:    1240px;
  --rlg-container-sm: 980px;
  --rlg-bp-tablet:    1100px;
  --rlg-focus-ring:   0 0 0 3px rgba(201,168,108,.4);
  --rlg-z-rail: 30;
  --rlg-z-nav:  50;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }

:root {
  /* Aliases vers les tokens partagés --rlg-* */
  --b-encre: var(--rlg-encre);
  --b-nuit: var(--rlg-nuit);
  --b-marine: var(--rlg-marine);
  --b-ardoise: var(--rlg-ardoise);
  --b-brume: var(--rlg-brume);
  --b-pale: var(--rlg-pale);

  --v-sapin: var(--rlg-sapin);
  --v-mid: var(--rlg-sapin-mid);
  --v-pale: var(--rlg-sapin-pale);
  --v-light: var(--rlg-sapin-light);

  --or: var(--rlg-or);
  --or-deep: var(--rlg-or-deep);
  --or-pale: var(--rlg-or-pale);

  --casse: var(--rlg-casse);
  --ivoire: var(--rlg-ivoire);
  --ivoire-soft: var(--rlg-ivoire-soft);
  --ivoire-deep: var(--rlg-ivoire-deep);
  --gris-1: var(--rlg-gris-1);
  --gris-2: var(--rlg-gris-2);

  --noir: var(--rlg-noir);
  --blanc: var(--rlg-blanc);

  --f-display: 'DM Serif Display', Georgia, serif;
  --f-sans: 'Manrope', system-ui, sans-serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--f-sans); color: var(--b-encre); background: var(--ivoire); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== NAV (sticky over hero) ===== */
.v7__nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 40px;
  color: var(--ivoire);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.v7__nav.is-scrolled {
  background: rgba(251,248,241,0.95);
  backdrop-filter: blur(10px);
  color: var(--b-encre);
  border-bottom-color: var(--gris-1);
}
.v7__nav-logo { display: flex; align-items: center; gap: 12px; }
.v7__nav-logo-badge {
  background: #fff; padding: 14px 22px;
  border-radius: 10px;
  display: inline-flex; align-items: center;
  box-shadow: 0 12px 36px rgba(14,37,64,.28), 0 0 0 1px rgba(217,168,95,.35) inset;
}
.v7__nav.is-scrolled .v7__nav-logo-badge {
  background: #fff; padding: 10px 16px;
  box-shadow: 0 6px 18px rgba(14,37,64,.12), 0 0 0 1px rgba(217,168,95,.25) inset;
}
.v7__nav-logo img { height: 72px; width: auto; display: block; transition: height .3s ease; }
.v7__nav.is-scrolled .v7__nav-logo img { height: 52px; }
.v7__nav-c { display: flex; gap: 26px; justify-content: center; }
.v7__nav-c a { color: inherit; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: .04em; padding: 6px 0; border-bottom: 1px solid transparent; }
.v7__nav-c a:hover { border-bottom-color: var(--or); }
.v7__nav-r { display: flex; justify-content: flex-end; gap: 16px; align-items: center; }
.v7__nav-cta {
  background: var(--or); color: var(--b-encre);
  padding: 10px 20px; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px;
}
.v7__nav-cta:hover { background: var(--ivoire); }

/* ===== HERO (plein cadre, photo cabinet, voile bleu) ===== */
.v7__hero {
  position: relative; min-height: 100vh;
  background-image: url('../../assets/cabinet-paris-18.jpg');
  background-size: cover; background-position: center;
  overflow: hidden; isolation: isolate;
}
.v7__hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(14,37,64,.85) 0%, rgba(14,37,64,.55) 50%, rgba(14,37,64,.2) 100%),
    linear-gradient(180deg, rgba(14,37,64,.5) 0%, rgba(14,37,64,.4) 40%, rgba(14,37,64,.85) 100%);
  z-index: 1;
}
.v7__hero-inner {
  position: relative; z-index: 2;
  min-height: 100vh; padding: 130px 64px 64px;
  display: grid; grid-template-rows: 1fr auto;
  color: var(--ivoire);
  max-width: 1480px; margin: 0 auto;
}
.v7__hero-h1-wrap { max-width: 1100px; align-self: end; }
.v7__hero-eb {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-sans); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--or); margin-bottom: 24px;
}
.v7__hero-eb::before { content: ""; width: 32px; height: 1px; background: var(--or); }
.v7__hero-pipes {
  font-family: var(--f-display); font-style: italic;
  color: var(--or); font-size: 96px; line-height: 1; letter-spacing: -.04em;
  margin-bottom: 4px;
}
.v7__hero-h1 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(72px, 10vw, 160px);
  line-height: .9; letter-spacing: -0.03em;
  color: var(--ivoire); margin: 0;
  font-weight: 400;
}
.v7__hero-slog {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.15;
  color: var(--or-pale); margin: 18px 0 0;
  max-width: 26ch;
  font-weight: 400;
  text-wrap: balance;
}
.v7__hero-bottom {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px;
  align-items: end;
  border-top: 1px solid rgba(244,236,220,.25);
  padding-top: 28px;
  margin-top: 28px;
}
.v7__hero-intro {
  font-family: var(--f-sans);
  font-size: 17px; line-height: 1.55; color: var(--ivoire);
  max-width: 60ch; margin: 0;
  opacity: .95;
}
.v7__hero-id {
  border-left: 1px solid rgba(217,168,95,.5);
  padding-left: 24px;
}
.v7__hero-id .nm { font-family: var(--f-display); font-size: 22px; line-height: 1.1; color: var(--ivoire); font-style: italic; margin-bottom: 8px; }
.v7__hero-id .ln { font-size: 13px; line-height: 1.55; color: var(--b-brume); letter-spacing: .02em; }
.v7__hero-id .ln strong { color: var(--or); font-weight: 600; }

.v7__hero-circle {
  position: absolute; right: 56px; top: 130px; z-index: 2;
  width: 170px; height: 170px; border: 1.5px solid var(--or);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center;
  font-family: var(--f-sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--or);
  rotate: -8deg;
  background: rgba(14,37,64,.45);
  backdrop-filter: blur(4px);
  padding: 16px;
  line-height: 1.5;
}
.v7__hero-circle .big { font-family: var(--f-display); font-style: italic; font-size: 24px; letter-spacing: -.01em; text-transform: none; color: var(--ivoire); display: block; margin: 4px 0; line-height: 1; }

/* ===== INTRO (ivoire foncé, plus apaisé) ===== */
.v7__intro {
  background: var(--ivoire-deep); color: var(--b-encre);
  padding: 72px 48px; text-align: center;
  position: relative;
}
.v7__intro::before, .v7__intro::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--or);
}
.v7__intro::before { top: 28px; }
.v7__intro::after { bottom: 28px; }
.v7__intro p {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3;
  color: var(--b-encre); margin: 0 auto;
  max-width: 56ch;
  text-wrap: pretty;
}
.v7__intro p .or { color: var(--or-deep); }
.v7__intro-attr {
  display: block; margin-top: 18px;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--or-deep);
  font-style: normal;
}

/* ===== SECTION HEADER (numéros romains dorés) ===== */
.v7__sec-h {
  text-align: center;
  max-width: 760px; margin: 0 auto 80px; padding: 0 32px;
}
.v7__sec-h .eb {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--or-deep);
  display: inline-flex; align-items: center; gap: 14px;
}
.v7__sec-h.on-dark .eb { color: var(--or); }
.v7__sec-h .eb::before, .v7__sec-h .eb::after { content: ""; width: 32px; height: 1px; background: currentColor; }
.v7__sec-h h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(56px, 7vw, 96px); line-height: .96; color: var(--b-encre);
  margin: 18px 0 0; font-weight: 400; letter-spacing: -0.02em;
  text-wrap: balance;
}
.v7__sec-h.on-dark h2 { color: var(--ivoire); }
.v7__sec-h p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; color: var(--gris-2); line-height: 1.4;
  margin: 22px auto 0; max-width: 56ch;
}
.v7__sec-h.on-dark p { color: var(--or-pale); }

/* ===== APPROCHE (Section III, ivoire, 2 cols asym + aside bleu) ===== */
.v7__approche { padding: 144px 48px; background: var(--ivoire); }
.v7__approche-in { max-width: 1240px; margin: 0 auto; }
.v7__approche-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 96px; align-items: start; margin-top: 64px; }
.v7__approche-prose h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: 36px; color: var(--b-encre); line-height: 1.1; margin: 0 0 24px;
  font-weight: 400; letter-spacing: -.01em;
}
.v7__approche-prose h3 .underline { background: linear-gradient(transparent 88%, var(--or) 88%, var(--or) 98%, transparent 98%); padding: 0 4px; }
.v7__approche-prose p {
  font-family: var(--f-sans); font-size: 18px; line-height: 1.7; color: var(--b-encre);
  margin: 0 0 22px; max-width: 60ch; text-wrap: pretty;
}
.v7__approche-prose p strong { color: var(--b-encre); font-weight: 700; }
.v7__approche-pull {
  font-family: var(--f-display); font-style: italic;
  font-size: 32px; line-height: 1.2; color: var(--v-sapin);
  margin: 36px 0; padding: 28px 0;
  border-top: 2px solid var(--or); border-bottom: 2px solid var(--or);
  max-width: 28ch; text-wrap: balance;
}
.v7__approche-trans {
  font-family: var(--f-serif); font-style: italic;
  font-size: 20px; color: var(--b-ardoise);
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.v7__approche-trans::before { content: "→"; color: var(--or); font-style: normal; }
.v7__approche-trans:hover { color: var(--b-encre); }

.v7__approche-aside {
  background: var(--b-encre); color: var(--ivoire);
  padding: 48px 36px; position: sticky; top: 110px;
  border-radius: 4px; position: relative;
}
.v7__approche-aside::before {
  content: ""; position: absolute; left: -1px; top: 32px; bottom: 32px; width: 4px;
  background: var(--or);
}
.v7__approche-aside-eb { font-family: var(--f-sans); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--or); margin-bottom: 18px; }
.v7__approche-aside h4 {
  font-family: var(--f-display); font-style: italic; font-size: 26px; line-height: 1.2;
  color: var(--ivoire); margin: 0 0 18px; font-weight: 400;
}
.v7__approche-aside h5 {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--or); margin: 22px 0 10px; font-weight: 700;
}
.v7__approche-aside ul { list-style: none; padding: 0; margin: 0; }
.v7__approche-aside li {
  padding: 12px 0; border-bottom: 1px solid rgba(244,236,220,.16);
  font-size: 14px; line-height: 1.5; color: var(--b-brume);
  display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: baseline;
}
.v7__approche-aside li:last-child { border-bottom: 0; }
.v7__approche-aside li .num { font-family: var(--f-display); font-style: italic; color: var(--or); font-size: 15px; }

/* ===== TROIS MOUVEMENTS (alternance bleu/ivoire/bleu, photos pleines) ===== */
.v7__mvts { background: var(--ivoire); padding: 144px 0 0; }
.v7__mvts-h-wrap { padding: 0 32px; }
.v7__mvt {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  width: 100%;
}
.v7__mvt-img { aspect-ratio: 4/5; background-size: cover; background-position: center; min-height: 580px; }

/* Illustrative panels — typographic plates */
.v7__plate {
  min-height: 580px;
  padding: 72px 56px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.v7__plate-eb {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 36px;
}
.v7__plate-eb::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.v7__plate-foot {
  margin-top: auto; padding-top: 24px;
  font-family: var(--f-serif); font-style: italic; font-size: 17px;
  line-height: 1.4; max-width: 36ch;
  border-top: 1px solid currentColor;
  opacity: .7;
}

/* Plate 01 — Nommer (ivoire, relabel exercise) */
.v7__plate--nommer { background: var(--ivoire); color: var(--b-encre); }
.v7__plate--nommer .v7__plate-eb { color: var(--or-deep); }
.v7__plate--nommer .v7__plate-foot { color: var(--gris-2); border-color: var(--ivoire-deep); }
.v7__plate--nommer .relabel { display: flex; flex-direction: column; gap: 18px; }
.v7__plate--nommer .pair {
  display: grid; grid-template-columns: 1fr 24px 1.3fr;
  align-items: baseline; gap: 12px;
}
.v7__plate--nommer .pair .from {
  font-family: var(--f-serif); font-style: italic;
  font-size: 17px; line-height: 1.25; color: var(--gris-2);
  text-decoration: line-through; text-decoration-color: rgba(168,136,75,.6); text-decoration-thickness: 1.5px;
  text-align: right;
}
.v7__plate--nommer .pair .arr {
  font-family: var(--f-display); font-style: italic;
  color: var(--or); font-size: 18px; line-height: 1; text-align: center;
}
.v7__plate--nommer .pair .to {
  font-family: var(--f-display); font-style: italic;
  font-size: 20px; line-height: 1.2; color: var(--b-encre);
  letter-spacing: -.01em;
}

/* Plate 02 — Trier (bleu nuit, manuscript) */
.v7__plate--trier { background: var(--b-nuit); color: var(--ivoire); padding: 72px 64px; }
.v7__plate--trier .v7__plate-eb { color: var(--or); }
.v7__plate--trier .v7__plate-foot { color: var(--b-brume); border-color: rgba(217,168,95,.3); }
.v7__plate--trier .ms {
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  padding-left: 28px;
}
.v7__plate--trier .ms::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: rgba(217,168,95,.35);
}
.v7__plate--trier .ms-row {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: baseline;
}
.v7__plate--trier .ms-mark {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; line-height: 1; color: var(--or);
  text-align: center;
}
.v7__plate--trier .ms-text {
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; line-height: 1.2;
  color: var(--ivoire);
}
.v7__plate--trier .ms-row.is-strike .ms-text {
  color: var(--b-brume); text-decoration: line-through;
  text-decoration-color: rgba(217,168,95,.7);
}
.v7__plate--trier .ms-row.is-strike .ms-mark { color: rgba(217,168,95,.5); }
.v7__plate--trier .ms-row.is-keep .ms-text { color: var(--or-pale); }

/* Plate 03 — Choisir (ivoire, conjugation) */
.v7__plate--choisir { background: var(--ivoire-deep); color: var(--b-encre); }
.v7__plate--choisir .v7__plate-eb { color: var(--or-deep); }
.v7__plate--choisir .v7__plate-foot { color: var(--gris-2); border-color: rgba(14,37,64,.18); }
.v7__plate--choisir .conj {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  gap: 6px;
}
.v7__plate--choisir .conj .verb {
  font-family: var(--f-display); font-style: italic;
  font-size: 30px; line-height: 1.15; letter-spacing: -.01em;
  color: var(--b-encre); margin: 0; font-weight: 400;
}
.v7__plate--choisir .conj .verb .pron {
  color: var(--or-deep); font-style: italic;
  display: inline-block; min-width: 1.6em;
}
.v7__plate--choisir .conj .verb.faded { color: rgba(14,37,64,.32); }
.v7__plate--choisir .conj .verb.faded .pron { color: rgba(168,136,75,.4); }
.v7__plate--choisir .conj-rule {
  margin: 12px 0; height: 1px; background: var(--or); opacity: .5; width: 80px;
}
.v7__mvt-text {
  padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 580px; position: relative;
}
.v7__mvt:nth-of-type(1) .v7__mvt-text { background: var(--b-encre); color: var(--ivoire); }
.v7__mvt:nth-of-type(2) .v7__mvt-text { background: var(--ivoire-deep); color: var(--b-encre); }
.v7__mvt:nth-of-type(2) .v7__mvt-img { order: -1; }
.v7__mvt:nth-of-type(3) .v7__mvt-text { background: var(--b-nuit); color: var(--ivoire); }

.v7__mvt-num {
  font-family: var(--f-display); font-style: italic;
  font-size: 180px; line-height: .82; letter-spacing: -.04em;
  margin: 0 0 28px; color: var(--or);
  opacity: .95;
}
.v7__mvt:nth-of-type(2) .v7__mvt-num { color: var(--or-deep); }
.v7__mvt-text h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(40px, 4vw, 56px); line-height: 1.02; margin: 0 0 14px;
  font-weight: 400; text-wrap: balance; letter-spacing: -0.01em;
}
.v7__mvt-sub {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; margin: 0 0 28px; opacity: .92;
  line-height: 1.3; max-width: 36ch;
}
.v7__mvt-text p {
  font-family: var(--f-sans); font-size: 16px; line-height: 1.7;
  margin: 0; max-width: 48ch;
}

/* ===== À QUI S'ADRESSE (bleu encre, grille 2 cols) ===== */
.v7__aqui {
  background: var(--b-encre); color: var(--ivoire);
  padding: 144px 48px; position: relative; overflow: hidden;
}
.v7__aqui::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(217,168,95,.18);
  transform: translateX(-50%);
}
.v7__aqui::after {
  content: ""; position: absolute; right: -200px; top: 80px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(217,168,95,.14);
  pointer-events: none;
}
.v7__aqui-in { max-width: 1100px; margin: 0 auto; position: relative; }
.v7__aqui-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.v7__aqui-list li {
  padding: 36px 32px;
  border-top: 1px solid rgba(244,236,220,.16);
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  align-items: start;
}
.v7__aqui-list li:nth-child(odd) { border-right: 1px solid rgba(244,236,220,.16); }
.v7__aqui-list li:last-child, .v7__aqui-list li:nth-last-child(2) { border-bottom: 1px solid rgba(244,236,220,.16); }
.v7__aqui-list .n {
  font-family: var(--f-display); font-style: italic;
  font-size: 44px; line-height: .8; color: var(--or);
}
.v7__aqui-list h3 { font-family: var(--f-display); font-style: italic; font-size: 24px; line-height: 1.2; color: var(--ivoire); margin: 0 0 10px; font-weight: 400; text-wrap: balance; }
.v7__aqui-list p { font-family: var(--f-sans); font-size: 14.5px; line-height: 1.6; color: var(--b-brume); margin: 0; }

/* ===== CADRES & TARIFS (vert sapin pâle) ===== */
.v7__cadres { padding: 144px 48px; background: var(--v-light); position: relative; }
.v7__cadres-in { max-width: 1240px; margin: 0 auto; }
.v7__cadres-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px;
}
.v7__cadre {
  background: var(--ivoire); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 4px solid var(--v-sapin);
  position: relative;
}
.v7__cadre.is-main { border-top-color: var(--or); background: var(--ivoire-soft); }
.v7__cadre-eb {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--v-sapin);
}
.v7__cadre.is-main .v7__cadre-eb { color: var(--or-deep); }
.v7__cadre h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: 32px; color: var(--b-encre); line-height: 1.05;
  margin: 0; font-weight: 400; letter-spacing: -.01em;
}
.v7__cadre-price {
  display: flex; align-items: baseline; gap: 10px; padding: 14px 0;
  border-top: 1px solid var(--gris-1); border-bottom: 1px solid var(--gris-1);
}
.v7__cadre-price .amt {
  font-family: var(--f-display); font-style: italic; font-size: 38px;
  color: var(--b-encre); line-height: 1;
}
.v7__cadre-price .duree { font-family: var(--f-sans); font-size: 13px; color: var(--gris-2); }
.v7__cadre p { font-family: var(--f-sans); font-size: 15px; line-height: 1.65; color: var(--b-encre); margin: 0; }
.v7__cadre-note { font-family: var(--f-serif); font-style: italic; font-size: 14px; color: var(--gris-2); margin-top: auto; padding-top: 8px; }

.v7__cadres-meta {
  margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 32px; background: var(--ivoire); border-left: 4px solid var(--or);
}
.v7__cadres-meta div { font-family: var(--f-sans); font-size: 13px; color: var(--b-encre); line-height: 1.6; }
.v7__cadres-meta b { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--or-deep); font-weight: 700; margin-bottom: 4px; }

/* ===== ABOUT (ivoire, photo avec ombre or, cercle Sciences Po) ===== */
.v7__about { padding: 144px 48px; background: var(--ivoire); }
.v7__about-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: start; }
.v7__about-photo { position: relative; aspect-ratio: 4/5; }
.v7__about-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.v7__about-photo::before {
  content: ""; position: absolute; left: -16px; bottom: -16px; width: 100%; height: 100%;
  background: var(--or); z-index: 0;
}
.v7__about-photo-circle {
  position: absolute; right: -32px; top: -32px; z-index: 2;
  width: 130px; height: 130px; border: 1.5px solid var(--or-deep);
  border-radius: 50%; background: var(--ivoire);
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center;
  font-family: var(--f-sans); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--b-encre);
  line-height: 1.4; rotate: 8deg;
}
.v7__about-photo-circle em {
  font-style: italic; font-family: var(--f-display); font-size: 22px;
  color: var(--or-deep); display: block; line-height: 1; margin: 4px 0;
  letter-spacing: -0.01em; text-transform: none; font-weight: 400;
}
.v7__about-prose .eb {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--or-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.v7__about-prose .eb::before { content: ""; width: 24px; height: 1px; background: var(--or-deep); }
.v7__about-prose h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(48px, 5vw, 72px); line-height: .98; color: var(--b-encre);
  margin: 16px 0 32px; font-weight: 400; letter-spacing: -.02em; text-wrap: balance;
}
.v7__about-prose p { font-family: var(--f-sans); font-size: 17px; line-height: 1.7; color: var(--b-encre); margin: 0 0 18px; max-width: 56ch; }
.v7__about-prose em { font-style: italic; color: var(--b-encre); font-family: var(--f-serif); font-size: 19px; }
.v7__about-meta {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 24px; background: var(--blanc); border-left: 4px solid var(--or);
}
.v7__about-meta div { font-family: var(--f-sans); font-size: 13px; line-height: 1.5; color: var(--b-encre); }
.v7__about-meta b { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--or-deep); font-weight: 700; margin-bottom: 4px; }
.v7__about-cta {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans); font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--b-encre); text-decoration: none;
  padding: 14px 0; border-bottom: 2px solid var(--or);
}
.v7__about-cta:hover { color: var(--or-deep); border-bottom-color: var(--or-deep); }

/* ===== LIVRE (bleu encre profond, couverture, formulaire) ===== */
.v7__book { padding: 144px 48px; background: var(--b-encre); color: var(--ivoire); position: relative; overflow: hidden; }
.v7__book::before {
  content: ""; position: absolute; right: -180px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(201,168,108,.18);
}
.v7__book::after {
  content: ""; position: absolute; left: -120px; bottom: -120px;
  width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(201,168,108,.12);
}
.v7__book-in { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: center; }
.v7__book-cover {
  background: var(--ivoire); color: var(--b-encre);
  padding: 56px 36px; aspect-ratio: 2/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border: 2px solid var(--or); position: relative;
  box-shadow: 16px 16px 0 var(--b-nuit);
}
.v7__book-cover::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--or); pointer-events: none; }
.v7__book-cover .eb { font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--or-deep); margin-bottom: 28px; font-weight: 700; }
.v7__book-cover h3 { font-family: var(--f-display); font-style: italic; font-size: 38px; line-height: .95; margin: 0 0 12px; color: var(--b-encre); font-weight: 400; }
.v7__book-cover .sub { font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--b-ardoise); line-height: 1.2; padding: 0 12px; }
.v7__book-cover .rule { width: 48px; height: 2px; background: var(--or); margin: 24px 0; }
.v7__book-cover .author { font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--b-encre); font-weight: 600; }

.v7__book-text .eb {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--or);
  display: inline-flex; align-items: center; gap: 12px;
}
.v7__book-text .eb::before { content: ""; width: 24px; height: 1px; background: var(--or); }
.v7__book-text h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(48px, 5vw, 72px); line-height: .98; color: var(--ivoire);
  margin: 16px 0 24px; font-weight: 400; letter-spacing: -.02em; text-wrap: balance;
}
.v7__book-pitch {
  font-family: var(--f-display); font-style: italic;
  font-size: 26px; line-height: 1.25; color: var(--or-pale);
  margin: 0 0 24px; max-width: 32ch; font-weight: 400;
}
.v7__book-cartouche {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700; color: var(--or);
  padding: 8px 14px; border: 1px solid var(--or); border-radius: 999px;
  margin-bottom: 24px;
}
.v7__book p { font-family: var(--f-sans); font-size: 15px; line-height: 1.7; color: var(--ivoire); opacity: .92; margin: 0 0 16px; max-width: 54ch; }
.v7__book p em { color: var(--or-pale); font-style: italic; font-family: var(--f-serif); font-size: 17px; }
.v7__book-form-wrap { margin-top: 28px; padding: 24px; background: rgba(244,236,220,.05); border: 1px solid rgba(201,168,108,.3); max-width: 540px; }
.v7__book-form-l { font-family: var(--f-sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--or); margin-bottom: 12px; }
.v7__book-form { display: flex; gap: 6px; }
.v7__book-form input { flex: 1; padding: 12px 16px; border: 1px solid rgba(201,168,108,.4); background: rgba(244,236,220,.06); color: var(--ivoire); font-family: var(--f-sans); font-size: 14px; }
.v7__book-form input::placeholder { color: rgba(244,236,220,.5); }
.v7__book-form input:focus { outline: 1px solid var(--or); }
.v7__book-form button { background: var(--or); color: var(--b-encre); border: 0; padding: 12px 22px; font-family: var(--f-sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.v7__book-form button:hover { background: var(--ivoire); }
.v7__book-form-note { font-family: var(--f-sans); font-size: 12px; color: var(--b-brume); margin-top: 10px; line-height: 1.5; }
.v7__book-prelivre { font-family: var(--f-sans); font-size: 13px; line-height: 1.6; color: var(--or-pale); margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(201,168,108,.2); }
.v7__book-prelivre b { font-weight: 700; color: var(--ivoire); }

/* ===== FAQ (ivoire, accordéon) ===== */
.v7__faq { padding: 144px 48px; background: var(--ivoire); }
.v7__faq-in { max-width: 980px; margin: 0 auto; }
.v7__faq details { border-top: 1px solid rgba(14,37,64,.12); }
.v7__faq details:last-of-type { border-bottom: 1px solid rgba(14,37,64,.12); }
.v7__faq summary {
  cursor: pointer; padding: 28px 0; list-style: none;
  display: grid; grid-template-columns: 40px 1fr 32px; gap: 20px; align-items: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 26px; line-height: 1.2; color: var(--b-encre);
  text-wrap: balance;
}
.v7__faq summary::-webkit-details-marker { display: none; }
.v7__faq summary .num { font-family: var(--f-sans); font-size: 12px; letter-spacing: .14em; color: var(--or-deep); font-weight: 700; font-style: normal; }
.v7__faq summary .plus {
  width: 30px; height: 30px; border: 1.5px solid var(--b-encre); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-size: 16px; font-style: normal; font-weight: 500;
  transition: transform .25s ease;
}
.v7__faq details[open] summary .plus { transform: rotate(45deg); background: var(--b-encre); color: var(--ivoire); }
.v7__faq-body { padding: 0 0 32px 60px; }
.v7__faq-body p { font-family: var(--f-sans); font-size: 16px; line-height: 1.7; color: var(--b-encre); margin: 0 0 12px; max-width: 64ch; }
.v7__faq-body p:last-child { margin-bottom: 0; }
.v7__faq-body em, .v7__faq-body strong { font-style: italic; color: var(--b-encre); }
.v7__faq-body strong { font-weight: 700; font-style: normal; }

/* ===== CTA FINAL (bleu encre, fort) ===== */
.v7__cta {
  padding: 144px 48px; background: var(--b-encre); color: var(--ivoire);
  text-align: center; position: relative; overflow: hidden;
}
.v7__cta::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: rgba(217,168,95,.2); transform: translateX(-50%);
}
.v7__cta-in { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.v7__cta-pp { font-family: var(--f-display); font-style: italic; color: var(--or); font-size: 64px; line-height: 1; letter-spacing: -.04em; margin-bottom: 16px; }
.v7__cta h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(56px, 6vw, 88px); line-height: 1;
  color: var(--ivoire); margin: 0 0 24px; font-weight: 400; letter-spacing: -.02em;
}
.v7__cta-lede {
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; color: var(--or-pale); line-height: 1.4; margin: 0 0 40px;
}
.v7__cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.v7__btn-primary { background: var(--or); color: var(--b-encre); padding: 16px 32px; font-family: var(--f-sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; border-radius: 999px; }
.v7__btn-primary:hover { background: var(--ivoire); }
.v7__btn-secondary { background: transparent; color: var(--ivoire); padding: 16px 32px; font-family: var(--f-sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; border: 1.5px solid var(--ivoire); border-radius: 999px; }
.v7__btn-secondary:hover { background: var(--ivoire); color: var(--b-encre); }

/* ===== PRESSE (ivoire, juste avant footer) ===== */
.v7__press {
  background: var(--ivoire); padding: 64px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.v7__press-l { font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--gris-2); }
.v7__press-logos {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: center; max-width: 1100px;
}
.v7__press-logos span { font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--b-encre); letter-spacing: -0.01em; line-height: 1; opacity: .75; }
.v7__press-logos .sep { font-family: var(--f-display); font-size: 18px; color: var(--or-deep); opacity: .6; }

/* ===== DISCLAIMER + FOOTER ===== */
.v7__mentions { background: var(--ivoire); padding: 0 48px 64px; }
.v7__mentions-in { max-width: 760px; margin: 0 auto; padding: 32px 0 0; border-top: 1px solid rgba(14,37,64,.12); }
.v7__mentions h3 { font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gris-2); font-weight: 700; margin: 0 0 16px; }
.v7__mentions p { font-family: var(--f-sans); font-size: 13px; line-height: 1.65; color: var(--gris-2); margin: 0; max-width: 70ch; }

.v7__foot { background: var(--rlg-encre); color: var(--ivoire); padding: 80px 48px 28px; } /* MAJ 2026-05-12 clip 181 : ex var(--noir), bleu marine */
.v7__foot-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
.v7__foot h4 { font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--or); margin: 0 0 18px; font-weight: 700; }
.v7__foot a, .v7__foot p { font-family: var(--f-sans); font-size: 14px; color: var(--ivoire); display: block; margin-bottom: 8px; text-decoration: none; line-height: 1.6; }
.v7__foot a:hover { color: var(--or); }
.v7__foot-logo {
  display: inline-flex; background: var(--ivoire);
  padding: 16px 20px; border-radius: 8px;
  margin-bottom: 18px;
}
.v7__foot-logo img { height: 72px; width: auto; display: block; }
.v7__foot-tag { font-family: var(--f-serif); font-style: italic; color: var(--b-brume); font-size: 16px; max-width: 30ch; }
.v7__foot-bottom { max-width: 1240px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(244,236,220,.16); display: flex; justify-content: space-between; font-size: 12px; color: var(--b-brume); flex-wrap: wrap; gap: 12px; }

/* ===== Micro-interactions & finitions ===== */

/* Scroll reveal */
.v7-reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.v7-reveal.is-in { opacity: 1; transform: none; }
.v7-reveal--d1 { transition-delay: .08s; }
.v7-reveal--d2 { transition-delay: .16s; }
.v7-reveal--d3 { transition-delay: .24s; }

/* Hero — slow ken-burns on the cabinet photo */
@keyframes v7kb { 0% { transform: scale(1.04); } 100% { transform: scale(1.12); } }
.v7__hero { background-attachment: scroll; }
.v7__hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../../assets/cabinet-paris-18.jpg');
  background-size: cover; background-position: center;
  z-index: 0; animation: v7kb 22s ease-in-out infinite alternate;
}
.v7__hero { background-image: none; }
.v7__hero::before { z-index: 1; }
.v7__hero-inner, .v7__hero-circle { z-index: 2; }

/* Nav links — animated underline */
.v7__nav-c a { position: relative; border-bottom: 0; }
.v7__nav-c a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--or);
  transition: right .35s cubic-bezier(.2,.7,.2,1);
}
.v7__nav-c a:hover::after { right: 0; }

/* Nav CTA — refined hover */
.v7__nav-cta { transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease; }
.v7__nav-cta:hover { background: var(--b-encre); color: var(--ivoire); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(14,37,64,.25); }

/* Buttons — lift */
.v7__btn-primary, .v7__btn-secondary { transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.v7__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,168,108,.28); }
.v7__btn-secondary:hover { transform: translateY(-2px); }

/* À qui list — cells brighten on hover */
.v7__aqui-list li { transition: background .35s ease; }
.v7__aqui-list li:hover { background: rgba(217,168,95,.06); }
.v7__aqui-list li .n { transition: transform .35s cubic-bezier(.2,.7,.2,1), color .25s ease; display: inline-block; }
.v7__aqui-list li:hover .n { transform: translateX(4px) translateY(-2px); color: var(--or-pale); }

/* Cadres — lift */
.v7__cadre { transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }
.v7__cadre:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,37,64,.10); }

/* Mouvement plates — cinematic pan on hover for plate--nommer pairs */
.v7__plate--nommer .pair { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.v7__plate--nommer .pair:hover { transform: translateX(6px); }
.v7__plate--nommer .pair:hover .arr { color: var(--or-deep); }
.v7__plate--nommer .pair .arr { transition: color .25s ease; }

/* Trier — tick the kept ones on hover */
.v7__plate--trier .ms-row { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.v7__plate--trier .ms-row.is-keep:hover { transform: translateX(4px); }
.v7__plate--trier .ms-row.is-keep:hover .ms-mark { color: var(--ivoire); }
.v7__plate--trier .ms-mark { transition: color .25s ease; }

/* FAQ summary hover */
.v7__faq summary { transition: padding .25s ease; }
.v7__faq summary:hover { padding-left: 6px; }
.v7__faq summary:hover .plus { background: var(--or); border-color: var(--or); color: var(--b-encre); }
.v7__faq summary .plus { transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }

/* Press marquee */
.v7__press { overflow: hidden; padding: 56px 0; }
.v7__press-l { padding: 0 48px; }
.v7__press-track {
  display: flex; gap: 48px; flex-wrap: nowrap;
  width: max-content;
  animation: v7marquee 48s linear infinite;
  margin-top: 4px;
}
.v7__press:hover .v7__press-track { animation-play-state: paused; }
.v7__press-track > * { flex: 0 0 auto; }
.v7__press-track .sep { color: var(--or-deep); opacity: .55; font-family: var(--f-display); font-style: italic; font-size: 18px; }
.v7__press-track span:not(.sep) {
  font-family: var(--f-display); font-style: italic; font-size: 22px;
  color: var(--b-encre); letter-spacing: -.01em; line-height: 1; opacity: .78;
  transition: opacity .25s ease, color .25s ease;
}
.v7__press-track span:not(.sep):hover { opacity: 1; color: var(--or-deep); }
@keyframes v7marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Footer links — subtle slide */
.v7__foot a { transition: color .25s ease, transform .25s ease; display: inline-block; }
.v7__foot a:hover { transform: translateX(2px); }

/* Logo nav — gentle pulse on hover */
.v7__nav-logo-badge { transition: background .3s ease, padding .3s ease, box-shadow .3s ease, transform .3s ease; }
.v7__nav-logo-badge:hover { transform: rotate(-2deg) scale(1.05); box-shadow: 0 12px 32px rgba(14,37,64,.28), 0 0 0 1px var(--or) inset; }

/* About photo — lift */
.v7__about-photo { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.v7__about-photo:hover { transform: translate(-4px, -4px); }

/* Book cover — gentle tilt */
.v7__book-cover { transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease; }
.v7__book-cover:hover { transform: rotate(-1.5deg) translateY(-4px); box-shadow: 20px 20px 0 var(--b-nuit); }

/* Form input focus glow */
.v7__book-form input:focus { outline: 0; border-color: var(--or); box-shadow: 0 0 0 3px rgba(201,168,108,.18); }

/* Section headers — subtle eb expansion on reveal */
.v7__sec-h .eb { transition: letter-spacing .8s ease; }
.v7-reveal.is-in .v7__sec-h .eb { letter-spacing: .26em; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .v7-reveal { opacity: 1; transform: none; transition: none; }
  .v7__hero::after, .v7__hero-pipes, .v7__press-track { animation: none; }
}
@media (max-width: 1100px) {
  .v7__nav-c { display: none; }
  .v7__nav { grid-template-columns: 1fr auto; }
  .v7__hero-circle { display: none; }
  .v7__hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .v7__approche-grid, .v7__about-in, .v7__book-in { grid-template-columns: 1fr; gap: 48px; }
  .v7__approche-aside { position: relative; top: 0; }
  .v7__mvt { grid-template-columns: 1fr; }
  .v7__mvt:nth-of-type(2) .v7__mvt-img { order: 0; }
  .v7__mvt-text { padding: 64px 32px; min-height: auto; }
  .v7__aqui-list { grid-template-columns: 1fr; }
  .v7__aqui-list li:nth-child(odd) { border-right: 0; }
  .v7__cadres-grid { grid-template-columns: 1fr; }
  .v7__cadres-meta { grid-template-columns: 1fr 1fr; }
  .v7__about-meta { grid-template-columns: 1fr; }
  .v7__foot-in { grid-template-columns: 1fr 1fr; }
  .v7__hero-inner { padding: 100px 32px 48px; }
  .v7__nav-logo img { height: 56px; }
  .v7__nav.is-scrolled .v7__nav-logo img { height: 42px; }
}
