/* ---------- Jetons ---------- */
  :root {
    color-scheme: light;
    --paper:      #F6F3EC;
    --paper-2:    #FBF9F5;
    --paper-3:    #EFEBE1;
    --ink:        #232019;
    --ink-soft:   #46413A;
    --muted:      #6E6961;
    --pine:       #1F3A2A;
    --pine-deep:  #141A15;
    --sand:       #BFA88C;
    --line:       rgba(35, 32, 25, 0.14);
    --line-soft:  rgba(35, 32, 25, 0.08);
    --on-dark:    #F2EFE8;
    --on-dark-mu: rgba(242, 239, 232, 0.88);

    --shell: 1180px;
    --pad: clamp(22px, 5vw, 64px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  * { box-sizing: border-box; }
  img { display: block; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Jost', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 300;
    margin: 0;
    text-wrap: balance;
  }

  p { margin: 0; }

  a { color: var(--pine); text-decoration: none; }
  a:hover { color: var(--pine-deep); }

  :focus-visible {
    outline: 1px solid var(--pine);
    outline-offset: 4px;
  }

  /* ---------- Éléments communs ---------- */
  section[id] { scroll-margin-top: 92px; }

  /* Lu par Google et les lecteurs d'écran, invisible à l'œil */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding-inline: var(--pad);
  }

  .eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pine);
    padding-left: 0.3em;
  }
  .eyebrow.on-dark { color: var(--sand); }

  .rule {
    height: 1px;
    background: var(--line);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.4s var(--ease);
  }
  .is-in .rule, .rule.is-in { transform: scaleX(1); }

  .lede {
    font-size: clamp(15px, 1.15vw, 16.5px);
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 46ch;
  }

  /* Bouton : remplissage qui monte du bas */
  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: none;
    font: inherit;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
  }
  .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform 0.55s var(--ease);
    z-index: -1;
  }
  .btn:hover { color: var(--paper); }
  .btn:hover::before { transform: translateY(0); }
  .btn .arw { transition: transform 0.55s var(--ease); }
  .btn:hover .arw { transform: translateX(4px); }

  .btn.on-dark { border-color: rgba(242, 239, 232, 0.5); color: var(--on-dark); }
  .btn.on-dark::before { background: var(--on-dark); }
  .btn.on-dark:hover { color: var(--pine-deep); }

  /* Zones photo */
  .photo {
    position: relative;
    overflow: hidden;
    background: var(--paper-3);
  }
  .photo .par {
    position: absolute;
    inset: -6%;
    will-change: transform;
  }
  .photo .fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .photo::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 96px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(12, 16, 12, 0) 0%, rgba(12, 16, 12, 0.42) 100%);
  }
  .photo .tag {
    position: absolute;
    left: 16px;
    bottom: 13px;
    z-index: 2;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
  }

  /* ---------- En-tête ---------- */
  .hdr {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px var(--pad);
    color: var(--on-dark);
    transition: padding 0.6s var(--ease), background-color 0.6s var(--ease), color 0.6s var(--ease), border-color 0.6s var(--ease);
    border-bottom: 1px solid transparent;
  }
  .hdr.compact {
    padding: 13px var(--pad);
    background: rgba(246, 243, 236, 0.9);
    backdrop-filter: blur(14px) saturate(120%);
    color: var(--ink);
    border-bottom-color: var(--line);
  }
  .hdr-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
    color: currentColor;
    text-decoration: none;
  }
  .hdr-logo:hover { color: currentColor; }
  .hdr-mark { width: 62px; height: 40px; transition: width 0.6s var(--ease), height 0.6s var(--ease); }
  .hdr.compact .hdr-mark { width: 46px; height: 30px; }
  .hdr-wm {
    font-size: 12.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1.4;
  }
  .hdr-nav { display: flex; align-items: center; gap: 26px; }
  .lang {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: currentColor;
    opacity: 0.75;
  }
  .lang b { font-weight: 400; opacity: 1; }
  a.nav-pro {
    color: currentColor;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.75;
  }
  .lbl-s { display: none; }
  a.nav-pro:hover, a.nav-pro.on { opacity: 1; color: currentColor; }
  .hdr .btn {
    border-color: currentColor;
    color: currentColor;
    padding: 11px 22px;
    font-size: 11px;
  }
  .hdr .btn::before { background: currentColor; }
  .hdr .btn:hover { color: var(--pine-deep); }
  .hdr.compact .btn:hover { color: var(--paper); }

  /* ---------- Ouverture ---------- */
  .hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--on-dark);
    overflow: hidden;
    background: var(--pine-deep);
  }
  .hero-img {
    position: absolute;
    inset: -4%;
    width: 108%;
    height: 108%;
    object-fit: cover;
    object-position: center 42%;
    will-change: transform;
  }
  .hero-scrim {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(64% 48% at 50% 47%, rgba(10, 14, 10, 0.54) 0%, rgba(10, 14, 10, 0) 72%),
      linear-gradient(180deg, rgba(14, 19, 14, 0.66) 0%, rgba(16, 21, 16, 0.30) 22%, rgba(16, 21, 16, 0.16) 40%, rgba(16, 21, 16, 0.34) 68%, rgba(12, 16, 12, 0.76) 100%);
  }
  .hero-inner { position: relative; z-index: 2; padding-inline: var(--pad); }
  .hero-mark { width: 168px; height: 108px; margin: 0 auto 26px; display: block; }
  .hero .hero-claim {
    font-size: clamp(33px, 5.4vw, 61px);
    font-style: italic;
    line-height: 1.16;
    letter-spacing: 0.005em;
    margin-inline: auto;
  }
  .hero .eyebrow { color: rgba(242, 239, 232, 0.8); display: block; margin-bottom: 20px; }

  .cue {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(242, 239, 232, 0.7);
  }
  .cue-line { width: 1px; height: 46px; background: rgba(242, 239, 232, 0.35); position: relative; overflow: hidden; }
  .cue-line::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 46px;
    background: var(--on-dark);
    animation: cue 2.6s var(--ease) infinite;
  }
  @keyframes cue {
    0%   { transform: translateY(-100%); }
    55%  { transform: translateY(0); }
    100% { transform: translateY(100%); }
  }

  /* ---------- Sections ---------- */
  .intro {
    padding: clamp(80px, 11vw, 132px) 0 clamp(64px, 9vw, 104px);
    text-align: center;
  }
  .intro p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(21px, 2.5vw, 30px);
    line-height: 1.62;
    color: var(--ink);
    max-width: 24ch;
    margin: 0 auto;
  }
  .intro p em { font-style: italic; color: var(--pine); }

  .chapter { padding: clamp(64px, 8.5vw, 104px) 0; }
  .chapter-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
  }
  .chapter-grid.flip .chapter-text { order: 2; }
  .chapter-grid.flip .chapter-art { order: 1; }
  .chapter h2 {
    font-size: clamp(27px, 3.4vw, 41px);
    line-height: 1.22;
    margin: 16px 0 22px;
  }
  .chapter-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pine);
  }
  .chapter-art { height: clamp(300px, 40vw, 470px); }
  .chapter-art.whole { height: auto; aspect-ratio: 2 / 3; max-height: 760px; }
  .chapter-art.whole .par { inset: 0; }

  /* Ornement : un pin seul entre les chapitres */
  .ornament {
    display: grid;
    place-items: center;
    gap: 0;
    padding: 8px 0;
  }
  .ornament svg { width: 26px; height: 30px; color: var(--muted); }

  /* Bande sombre — l'art de vivre */
  .band {
    background: #17281C;
    color: var(--on-dark);
    padding: clamp(76px, 10vw, 124px) 0;
  }
  .band h2 { color: var(--on-dark); font-size: clamp(27px, 3.4vw, 41px); margin-top: 16px; }
  .band .lede { color: var(--on-dark-mu); }
  .band-head { text-align: center; margin-bottom: clamp(40px, 5vw, 62px); }
  .moments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
  }
  .moment-art { height: clamp(230px, 26vw, 320px); margin-bottom: 22px; }
  .moment h3 { font-size: 23px; font-style: italic; color: var(--on-dark); margin-bottom: 9px; }
  .moment p { font-size: 15px; line-height: 1.72; color: var(--on-dark-mu); max-width: 32ch; }

  /* Galerie */
  .gal-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .gal-head h2 { font-size: clamp(25px, 3.1vw, 37px); margin-top: 16px; max-width: 14ch; }
  /* Matériaux */
  .mats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(22px, 3.4vw, 44px) clamp(20px, 3vw, 38px);
  }
  .mat-art { height: clamp(230px, 26vw, 330px); margin-bottom: 20px; }
  .mat h3 {
    font-size: clamp(25px, 2.5vw, 31px);
    font-style: italic;
    color: var(--on-dark);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .mat h3 .hl { color: var(--sand); font-style: normal; letter-spacing: 0.01em; }
  .mat p { font-size: 15.5px; line-height: 1.78; color: var(--on-dark-mu); max-width: 44ch; }
  .mat .eyeb {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(242, 239, 232, 0.5);
    margin-bottom: 12px;
    padding-left: 0.26em;
  }

  /* Questions fréquentes */
  .faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(26px, 3vw, 40px) clamp(32px, 4.5vw, 68px);
  }
  .faq-i { border-top: 1px solid var(--line); padding-top: 20px; }
  .faq-i h3 { font-size: 21px; font-style: italic; margin-bottom: 11px; }
  .faq-i p { font-size: 14.5px; line-height: 1.78; color: var(--ink-soft); }
  .faq-i a { border-bottom: 1px solid var(--sand); }

  /* Art de vivre */
  .wide-art { height: clamp(280px, 44vw, 540px); }
  .vivre {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    margin-top: clamp(32px, 4.5vw, 62px);
  }
  .vivre-art { height: clamp(420px, 56vw, 720px); }
  .vivre-art .fill { object-position: center 24%; }

  /* Chiffres */
  .facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(34px, 4.4vw, 58px) clamp(18px, 3vw, 36px);
    text-align: center;
    font-variant-numeric: tabular-nums;
  }
  .facts-note {
    max-width: 62ch;
    margin: clamp(40px, 5vw, 60px) auto 0;
    text-align: center;
    font-size: 14.5px;
    line-height: 1.78;
    color: var(--ink-soft);
  }
  .fact-v {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 2.3vw, 27px);
    line-height: 1.2;
  }
  .fact-l {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }
  .fact svg { margin: 0 auto 14px; display: block; color: var(--pine); }
  .fact.price .fact-v { color: var(--pine); }

  /* Contact */
  .visit {
    background: var(--pine-deep);
    color: var(--on-dark);
    padding: clamp(84px, 11vw, 132px) 0;
    text-align: center;
  }
  .visit h2 {
    color: var(--on-dark);
    font-size: clamp(28px, 3.7vw, 44px);
    font-style: italic;
    line-height: 1.3;
    max-width: 17ch;
    margin: 16px auto 0;
  }
  .visit .lede { color: var(--on-dark-mu); margin: 24px auto 0; text-align: center; max-width: 44ch; }
  .ligne-tel { margin-top: clamp(38px, 4.6vw, 52px); }
  .tel-num {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: 0.02em;
    color: var(--on-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 239, 232, 0.22);
    padding-bottom: 6px;
    transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  .tel-num:hover, .tel-num:focus-visible { color: var(--sand); border-color: var(--sand); }
  .tel-sub {
    display: block;
    margin-top: 14px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--on-dark-mu);
  }
  .form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 480px;
    margin: clamp(44px, 5.4vw, 62px) auto 0;
    text-align: left;
  }
  .form-act { grid-column: span 2; margin-top: 18px; text-align: center; }
  .form-note {
    max-width: 46ch;
    margin: 22px auto 0;
    font-size: 12.5px;
    line-height: 1.72;
    color: var(--on-dark-mu);
  }
  .field input[aria-invalid="true"] { border-bottom-color: var(--sand); }
  .field { position: relative; }
  .field.wide { grid-column: span 2; }
  .field input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(242, 239, 232, 0.3);
    color: var(--on-dark);
    font: inherit;
    font-size: 14px;
    padding: 10px 2px;
  }
  .field input::placeholder { color: rgba(242, 239, 232, 0.45); }
  .field input:focus { outline: none; }
  .field::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--sand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
  }
  .field:focus-within::after { transform: scaleX(1); }

  /* Pied de page */
  .ftr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 34px 0 40px;
    font-size: 12px;
    color: var(--muted);
  }
  .ftr-logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
  .ftr-wm { font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase; }

  /* Rail de chapitres */
  .rail {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 55;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
  }
  .rail[hidden] { display: none; }
  .rail a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
  }
  .rail .lbl {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    white-space: nowrap;
  }
  .rail a:hover .lbl, .rail a:focus-visible .lbl { opacity: 0.75; transform: translateX(0); }
  .rail .dot {
    width: 6px; height: 6px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.4;
    transition: opacity 0.4s var(--ease), background-color 0.4s var(--ease);
  }
  .rail a.on .dot { opacity: 1; background: currentColor; }
  .rail.on-dark a { color: var(--on-dark); }

  /* ---------- Sous-page promoteur ---------- */
  .p-hero {
    background: #17281C;
    color: var(--on-dark);
    padding: clamp(128px, 14vw, 178px) 0 clamp(64px, 8vw, 96px);
    text-align: center;
  }
  .p-hero .p-claim {
    font-size: clamp(31px, 4.2vw, 52px);
    margin: 18px auto 0;
    max-width: 20ch;
    color: var(--on-dark);
    line-height: 1.24;
  }
  .p-hero .p-claim em { font-style: italic; color: var(--sand); display: block; }
  .p-hero .rule-c { width: 44px; height: 1px; background: var(--sand); margin: 26px auto 0; }

  .p-sec { padding: clamp(56px, 7vw, 88px) 0; }
  .p-sec h2 { font-size: clamp(25px, 3vw, 36px); margin: 16px 0 24px; }
  .p-sec h2 em { font-style: italic; color: var(--pine); }

  .p-prose { max-width: 62ch; margin: 0 auto; }
  .p-prose .lede { max-width: none; }
  .p-prose p + p { margin-top: 18px; }
  .p-prose strong { font-weight: 400; color: var(--ink); border-bottom: 1px solid var(--sand); }

  .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  .value { background: var(--paper); padding: clamp(24px, 2.6vw, 34px); }
  .value svg { color: var(--pine); margin-bottom: 16px; display: block; }
  .value h3 { font-size: 21px; margin-bottom: 10px; }
  .value p { font-size: 13.5px; line-height: 1.72; color: var(--ink-soft); }

  .p-close { text-align: center; padding: clamp(52px, 6.5vw, 82px) 0 clamp(60px, 8vw, 92px); }
  .p-logo { width: 190px; height: auto; margin: 0 auto 30px; }
  .p-close p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(19px, 2.1vw, 25px); max-width: 34ch; margin: 0 auto 28px; }
  .contact-line { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .lien-retour { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--line); padding-bottom: 3px; }
  .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ---------- Contact permanent (WhatsApp) ---------- */
  .wa-float {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 60;
    display: flex;
    align-items: center;
    height: 54px;
    padding: 0 15px;
    border-radius: 999px;
    background: var(--pine);
    color: var(--paper);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(20, 26, 21, 0.14), 0 12px 30px rgba(20, 26, 21, 0.18);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  }
  .wa-float svg { flex: none; display: block; }
  .wa-float .wa-lbl {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transition: max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease, margin-left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .wa-float:hover, .wa-float:focus-visible {
    background: var(--pine-deep);
    color: var(--paper);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(20, 26, 21, 0.18), 0 16px 38px rgba(20, 26, 21, 0.24);
  }
  .wa-float:hover .wa-lbl, .wa-float:focus-visible .wa-lbl { max-width: 200px; opacity: 1; margin-left: 12px; }
  .js .wa-float { animation: wa-in 0.8s ease 1s backwards; }
  @keyframes wa-in { from { opacity: 0; } to { opacity: 1; } }
  @media (max-width: 700px) {
    .wa-float { right: 16px; bottom: 16px; height: 50px; padding: 0 13px; }
  }

  /* ---------- Mouvement ---------- */
  /* État au repos : tout est visible. Le JS n'installe l'état masqué que s'il tourne. */
  .js .rev {
    opacity: 0;
    transform: translateY(22px);
  }
  .js .rev.is-in {
    opacity: 1;
    transform: none;
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    transition-delay: var(--d, 0ms);
  }
  /* Le voile se lève sur le calque intérieur, jamais sur la boîte observée :
     un élément découpé à zéro n'est plus « visible » pour l'observateur. */
  .js .veil .fill {
    clip-path: inset(0 0 100% 0);
    transform: scale(1.06);
  }
  .js .veil.is-in .fill {
    clip-path: inset(0 0 0 0);
    transform: none;
    transition: clip-path 1.35s var(--ease), transform 2.2s var(--ease);
    transition-delay: var(--d, 0ms);
  }
  .js .veil .tag { opacity: 0; }
  .js .veil.is-in .tag { opacity: 1; transition: opacity 1s var(--ease) 0.5s; }

  /* Ouverture : le pin se dessine, puis le titre monte */
  .js .hero-mark path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw 1.05s var(--ease) forwards;
  }
  .js .hero-mark g:nth-child(1) path { animation-delay: 0.06s; }
  .js .hero-mark g:nth-child(2) path { animation-delay: 0.16s; }
  .js .hero-mark g:nth-child(3) path { animation-delay: 0.26s; }
  @keyframes draw { to { stroke-dashoffset: 0; } }

  .js .hero-line { display: block; overflow: hidden; }
  .js .hero-line > span {
    display: block;
    transform: translateY(102%);
    animation: rise 1.15s var(--ease) forwards;
  }
  .js .hero-line:nth-of-type(1) > span { animation-delay: 0.62s; }
  .js .hero-line:nth-of-type(2) > span { animation-delay: 0.74s; }
  @keyframes rise { to { transform: translateY(0); } }

  .js .hero .eyebrow, .js .cue {
    opacity: 0;
    animation: soft 1.3s var(--ease) forwards;
  }
  .js .hero .eyebrow { animation-delay: 0.32s; }
  .js .cue { animation-delay: 1.25s; }
  @keyframes soft { to { opacity: 1; } }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .rev, .js .veil .fill, .js .veil .tag, .js .hero-line > span, .js .hero .eyebrow, .js .cue {
      opacity: 1 !important;
      transform: none !important;
      clip-path: none !important;
      animation: none !important;
      transition: none !important;
    }
    .js .hero-mark path { stroke-dashoffset: 0; animation: none; }
    .js .wa-float { animation: none; }
    .wa-float, .wa-float .wa-lbl { transition: none; }
    .rule { transform: scaleX(1); }
    .cue-line::after { animation: none; transform: translateY(0); }
  }

  /* ---------- Écrans étroits ---------- */
  @media (max-width: 1180px) { .rail { display: none; } }
  @media (max-width: 860px) {
    /* La navigation reste utilisable : le mot-symbole cède la place, pas les liens */
    .hdr .lang { display: none; }
    .hdr-wm { display: none; }
    .hdr-nav { gap: 14px; }
    .hdr .btn { padding: 9px 15px; font-size: 10px; letter-spacing: 0.1em; gap: 8px; }
    .lbl-l { display: none; }
    .lbl-s { display: inline; }
    a.nav-pro { font-size: 10px; letter-spacing: 0.12em; }
    .hdr-mark { width: 44px; height: 28px; }
    .hdr.compact .hdr-mark { width: 38px; height: 24px; }
    .values { grid-template-columns: 1fr; }
    .chapter-grid { grid-template-columns: 1fr; }
    .chapter-grid.flip .chapter-text { order: 2; }
    .chapter-grid.flip .chapter-art { order: 1; }
    .faq { grid-template-columns: 1fr; }
    .mats { grid-template-columns: 1fr; }
    .vivre { grid-template-columns: 1fr; }
    .facts { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
    .form { grid-template-columns: 1fr; }
    .field.wide { grid-column: span 1; }
    .form-act { grid-column: span 1; }
    .hero { height: 84vh; }
  }
