/* ==========================================================================
   Other Level Market — VERSION SUBTILE
   Esprit clair conservé (palette actuelle), modernisé avec les éléments
   appréciés de la version audacieuse : hero image plein cadre + texte,
   libellés de piliers, bande de valeurs (défilement continu), rail
   d'élévation (un peu plus large), grand CTA final, mots-clés mis en valeur.
   ========================================================================== */

:root {
  --cream:      #F7F4EF;
  --cream-2:    #FBFAF7;
  --ink:        #2B2B2E;
  --ink-soft:   #52514C;
  --muted:      #6B6862;
  --gold:       #C9A24B;
  --gold-deep:  #9C7A2A;
  --gold-bright:#B8902F;
  --dark:       #2B2B2E;
  --dark-2:     #232326;
  --cream-on-dark: #F4EFE6;
  --line:       rgba(43, 43, 46, 0.10);
  --line-2:     rgba(43, 43, 46, 0.14);
  --line-gold:  rgba(201, 162, 75, 0.34);
  --maxw:       1280px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Hanken Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.serif { font-family: 'Cormorant Garamond', serif; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); display: block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--gold); display: block; }
.eyebrow.on-dark { color: var(--gold); }

/* --------------------------------------------------------------------------
   SIGNATURE — rail d'élévation (un peu plus large qu'en version audacieuse)
   -------------------------------------------------------------------------- */
.rail {
  position: fixed; right: clamp(14px, 2.4vw, 30px); top: 50%;
  transform: translateY(-50%); z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 12px; pointer-events: none;
}
.rail__track {
  position: relative; width: 4px; height: 38vh; max-height: 360px;
  background: rgba(43, 43, 46, 0.12); border-radius: 4px; overflow: hidden;
  pointer-events: auto; cursor: pointer; touch-action: none;
}
.rail__track::before {
  /* zone de prise élargie, invisible, pour faciliter le clic et le glisser */
  content: ""; position: absolute; top: 0; bottom: 0; left: -10px; right: -10px;
}
.rail__track:hover { background: rgba(43, 43, 46, 0.2); }
.rail__fill {
  position: absolute; left: 0; top: 0; width: 100%; height: var(--scroll, 0%);
  background: linear-gradient(180deg, var(--gold), var(--gold-bright));
  border-radius: 4px; transition: height 0.1s linear;
}
.rail__pct { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold-deep); writing-mode: vertical-rl; }
.rail__label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }
@media (max-width: 1100px) { .rail { display: none; } }

/* --------------------------------------------------------------------------
   HEADER (transparent sur le hero, clair au scroll)
   -------------------------------------------------------------------------- */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background 0.4s var(--ease), border-color 0.4s var(--ease); border-bottom: 1px solid transparent; }
.hdr.is-scrolled { background: rgba(251, 250, 247, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px clamp(20px, 5vw, 64px); }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand__a { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 25px; font-style: italic; color: var(--cream-on-dark); transition: color 0.4s var(--ease); }
.brand__b { font-size: 13px; font-weight: 700; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 4px; text-align: center; }
.hdr.is-scrolled .brand__a { color: var(--ink); }
.nav { display: flex; align-items: center; gap: 16px; }
.nav a { position: relative; font-size: 13.5px; font-weight: 500; color: rgba(244, 239, 230, 0.86); text-decoration: none; padding: 4px 0; transition: color 0.3s var(--ease); white-space: nowrap; }
.hdr.is-scrolled .nav a { color: var(--ink-soft); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold); transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--gold); }
.hdr.is-scrolled .nav a:hover { color: var(--gold-deep); }
.nav a:hover::after { width: 100%; }
.btn-head { display: inline-flex; align-items: center; font-size: 14px; font-weight: 700; color: var(--ink); background: var(--gold); padding: 11px 22px; border-radius: 999px; text-decoration: none; white-space: nowrap; transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.btn-head:hover { background: var(--gold-bright); transform: translateY(-1px); }
.menubtn { display: none; }
@media (max-width: 900px) {
  .nav { display: none; }
  .menubtn { display: inline-flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(251,250,247,0.6); border: 1px solid var(--line-2); border-radius: 10px; cursor: pointer; }
  .menubtn span { width: 18px; height: 1.6px; background: var(--ink); display: block; }
}
.mobile {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.98); border-bottom: 1px solid transparent;
  max-height: 0; overflow: hidden; visibility: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease), visibility 0s linear 0.5s;
}
.mobile.is-open {
  max-height: 640px; visibility: visible;
  padding: 8px clamp(20px, 5vw, 64px) 20px;
  border-bottom-color: var(--line);
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease), visibility 0s;
}
.mobile a { color: var(--ink); text-decoration: none; font-size: 17px; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* --------------------------------------------------------------------------
   HERO — grande image avec texte par-dessus
   -------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,24,18,0.38) 0%, rgba(28,24,18,0.10) 30%, rgba(28,24,18,0.46) 62%, rgba(247,244,239,0.55) 88%, var(--cream) 100%),
    linear-gradient(90deg, rgba(28,24,18,0.5) 0%, rgba(28,24,18,0) 60%);
}
.hero__in { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(54px, 8vw, 104px); padding-top: 140px; color: var(--cream-on-dark); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(44px, 7.4vw, 104px); line-height: 1.0; letter-spacing: -0.018em; margin: 22px 0 26px; max-width: 15ch; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero__lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7; color: rgba(244, 239, 230, 0.9); max-width: 540px; margin: 0 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { margin-top: 24px; display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(244, 239, 230, 0.78); }
.hero__note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* Boutons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; font-weight: 700; text-decoration: none; padding: 16px 32px; border-radius: 999px; transition: all 0.28s var(--ease); }
.btn--gold { background: #D8B768; color: var(--ink); box-shadow: 0 10px 28px -12px rgba(201,162,75,0.55); }
.btn--gold:hover { background: var(--gold); transform: translateY(-2px); }
.btn--ghost-light { border: 1px solid rgba(244,239,230,0.4); color: var(--cream-on-dark); }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost-dark { border: 1px solid var(--line-2); color: var(--ink); }
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   SECTIONS
   -------------------------------------------------------------------------- */
.sec { padding: clamp(72px, 10vw, 150px) 0; }
.sec--tight { padding: clamp(60px, 7vw, 104px) 0; }
.bg-2 { background: var(--cream-2); border-top: 1px solid var(--line); }
.bg-dark { background: var(--dark); color: var(--cream-on-dark); }

/* Constat — mots-clés mis en valeur */
.statement { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(25px, 3.8vw, 46px); line-height: 1.32; letter-spacing: -0.01em; max-width: 22ch; margin: 26px 0 0; color: var(--ink); }
.statement .pop { color: var(--gold-deep); font-style: italic; }
.statement .big { display: block; font-size: 1.16em; }

/* Notre réponse — piliers libellés */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: clamp(38px, 5vw, 60px); }
.pillar { background: var(--cream-2); padding: clamp(30px, 3.4vw, 46px); transition: background 0.4s var(--ease); }
.pillar:hover { background: #fff; }
.pillar__k { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px; }
.pillar h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(24px, 2.6vw, 31px); color: var(--ink); margin: 0 0 12px; }
.pillar p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* Manifeste — section sombre d'accent */
.manifesto { text-align: center; }
.manifesto__top { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(22px, 3vw, 36px); line-height: 1.4; color: var(--cream-on-dark); max-width: 24ch; margin: 24px auto 18px; }
.manifesto__punch { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: clamp(30px, 5.6vw, 70px); line-height: 1.1; letter-spacing: -0.015em; background: linear-gradient(120deg, #E7CA84, var(--gold) 60%, #A07C2C); -webkit-background-clip: text; background-clip: text; color: transparent; max-width: 20ch; margin: 0 auto 30px; }
.manifesto__sub { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.7; color: rgba(244,239,230,0.72); max-width: 56ch; margin: 0 auto 36px; }

/* Réassurance */
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 24px 40px; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__item svg { color: var(--gold-deep); flex: none; margin-top: 1px; }
.trust__item p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

/* Vision 2027 */
.vision { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.vision__num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(92px, 16vw, 210px); line-height: 0.86; letter-spacing: -0.03em; background: linear-gradient(160deg, var(--gold), #8E6E27); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vision__cap { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.vision h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.14; color: var(--ink); margin: 18px 0; }
.vision p { font-size: clamp(16px, 1.1vw, 18px); line-height: 1.72; color: var(--ink-soft); max-width: 46ch; margin: 0 0 26px; }
.link-gold { display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 600; color: var(--gold-deep); text-decoration: none; transition: gap 0.25s var(--ease); }
.link-gold:hover { gap: 13px; }
@media (max-width: 860px) { .vision { grid-template-columns: 1fr; } }

/* Valeurs — bande à défilement CONTINU (sans saut) */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; background: var(--cream-2); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__track > span { padding-right: 56px; white-space: nowrap; font-family: 'Cormorant Garamond', serif; font-size: clamp(23px, 3vw, 36px); font-weight: 500; color: var(--ink); }
.marquee__track i { color: var(--gold); font-style: normal; margin: 0 8px; }
/* Deux copies identiques + translation de -50% = boucle parfaitement continue */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Pourquoi — deux colonnes */
.adv { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.adv__row { display: grid; grid-template-columns: 30px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); }
.adv__row svg { color: var(--gold); margin-top: 4px; }
.adv__row strong { display: block; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.adv__row span { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 820px) { .adv { grid-template-columns: 1fr; } }

/* Étapes */
.steps { position: relative; max-width: 920px; margin: 0 auto; }
.steps::before { content: ""; position: absolute; left: 27px; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(180deg, var(--gold), var(--line-gold)); }
.step-row { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding: 20px 0; }
.step-row__n { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 1px solid var(--gold); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; }
.bg-2 .step-row__n { background: var(--cream-2); }
.step-row h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); color: var(--ink); margin: 6px 0 8px; }
.step-row p { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* Écosystème — phrases sur une seule ligne */
.eco { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.eco__card { display: block; border: 1px solid var(--line-gold); border-radius: 14px; padding: 32px; text-decoration: none; background: var(--cream-2); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.eco__card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 18px 40px -26px rgba(43,43,46,0.4); }
.eco__k { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.eco__name { font-family: 'Cormorant Garamond', serif; font-size: 25px; color: var(--ink); margin-bottom: 10px; }
.eco__card p { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; white-space: nowrap; }
.eco__card.is-soon { border-color: var(--line-2); background: transparent; }
.eco__card.is-soon .eco__k, .eco__card.is-soon .eco__name { color: var(--muted); }
@media (max-width: 920px) { .eco__card p { white-space: normal; } }
@media (max-width: 860px) { .eco { grid-template-columns: 1fr; } }

/* CTA final — grand titre */
.final { text-align: center; }
.final h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(40px, 7vw, 92px); line-height: 1.0; letter-spacing: -0.02em; color: var(--ink); margin: 20px 0 22px; }
.final p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; color: var(--ink-soft); max-width: 52ch; margin: 0 auto 36px; }
.final__mail { margin-top: 26px; font-size: 15px; color: var(--muted); }
.final__mail a { color: var(--gold-deep); text-decoration: none; font-weight: 600; }

/* Footer (sombre, comme le site actuel) */
.ft { background: var(--dark-2); color: rgba(244, 239, 230, 0.7); }
.ft__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px 32px; padding: clamp(56px, 7vw, 84px) 0 36px; }
.ft__logo { height: 58px; width: auto; margin-bottom: 22px; }
.ft p.tag { font-size: 15px; line-height: 1.65; color: rgba(244,239,230,0.6); max-width: 300px; margin: 0 0 18px; }
.ft a.mail { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 15px; }
.ft__h { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-on-dark); margin-bottom: 18px; }
.ft__col { display: flex; flex-direction: column; gap: 12px; }
.ft__col a, .ft__col span { font-size: 15px; color: rgba(244,239,230,0.7); text-decoration: none; transition: color 0.25s var(--ease); }
.ft__col a:hover { color: var(--gold); }
.ft__bar { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid rgba(244,239,230,0.1); }
.ft__bar span { font-size: 13px; color: rgba(244,239,230,0.45); }
@media (max-width: 900px) { .ft__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft__grid { grid-template-columns: 1fr; } }

/* Reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  /* Exception : la bande décorative « Nos valeurs » continue de défiler,
     même quand « Réduire les animations » (iOS/iPadOS) est activé. */
  .marquee__track { animation: marquee 38s linear infinite !important; }
}

/* ==========================================================================
   AJUSTEMENTS (retours BOSS)
   ========================================================================== */

/* 3) Hero : titre sur deux lignes, « équipe » décalée et dorée (façon audacieux) */
.hero h1 .step { display: block; }
.hero h1 .step--up { padding-left: clamp(20px, 6vw, 96px); color: var(--gold); font-style: italic; }

/* 4) Note hero : texte seul + puce dorée (sans pastille) */
.hero__note {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
}

/* 2) Bande de valeurs agrandie */
.marquee { padding: 30px 0; }
.marquee__track > span { font-size: clamp(28px, 4vw, 48px); padding-right: 64px; }

/* 7) Réassurance : 6 blocs en 2 lignes de 3, texte un peu plus grand */
.trust__grid { grid-template-columns: repeat(3, 1fr); }
.trust__item p { font-size: 16px; line-height: 1.6; }
@media (max-width: 820px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust__grid { grid-template-columns: 1fr; } }

/* 6) Section « ce que nous ne sommes pas » sur fond bien noir */
.bg-black { background: #0F0D0A; color: var(--cream-on-dark); }

/* 1) Bouton ascenseur (retour en haut) */
.totop {
  position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 55;
  width: 50px; height: 50px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px -4px rgba(43, 43, 46, 0.45);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s var(--ease);
}
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--gold-bright); }

/* Bouton secondaire du hero : ivoire plein (look premium) */
.btn--cream {
  background: var(--cream-on-dark);
  color: var(--ink);
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, 0.5);
}
.btn--cream:hover { background: #fff; transform: translateY(-2px); }

/* ==========================================================================
   PAGES INTÉRIEURES (pas de grande image hero)
   Header collant et toujours clair, contenu qui suit normalement.
   ========================================================================== */
body.page-light .hdr {
  position: sticky;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
body.page-light .brand__a { color: var(--ink); }
body.page-light .nav a { color: var(--ink-soft); }
body.page-light .nav a:hover { color: var(--gold-deep); }
/* Le contenu réutilisé des pages actuelles fixe lui-même ses fonds/typos. */

/* ==========================================================================
   RETRAIT GAUCHE — sections clés de l'accueil (lisibilité tablette / mobile)
   Le constat · Notre réponse · Vision 2027 · Pourquoi nous rejoindre
   ========================================================================== */
.sec-shift { --shift: clamp(16px, 4vw, 22px); padding-left: calc(clamp(20px, 5vw, 64px) + var(--shift)); }
/* Les piliers de « Notre réponse » (Le principe / La méthode / L'ambition)
   ne suivent pas le retrait : ils reviennent à la largeur normale. */
.sec-shift .pillars { margin-left: calc(-1 * var(--shift)); }

/* ==========================================================================
   V3 — FINITIONS
   ========================================================================== */

/* Sélection de texte et focus clavier dorés (repris de la v2) */
::selection { background: var(--gold); color: var(--dark); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Système d'ombres et rayon unifiés */
:root {
  --shadow-1: 0 8px 22px -14px rgba(43, 43, 46, 0.25);
  --shadow-2: 0 18px 44px -24px rgba(43, 43, 46, 0.35);
  --shadow-3: 0 26px 60px -30px rgba(43, 43, 46, 0.45);
  --radius: 14px;
  --line-gold: rgba(201, 162, 75, 0.28); /* filet doré plus discret (0.34 -> 0.28) */
}
.pillars { border-radius: var(--radius); }
.eco__card { border-radius: var(--radius); }
.menubtn { border-radius: 12px; }
.btn--gold { box-shadow: var(--shadow-1), 0 10px 28px -12px rgba(201, 162, 75, 0.45); }
.totop { box-shadow: var(--shadow-2); }

/* Micro-réglages typographiques */
.eyebrow { letter-spacing: 0.24em; }

/* ==========================================================================
   V3 — ANIMATIONS
   ========================================================================== */

/* Révélations : courbe un peu plus lente et plus élégante */
.reveal { transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* Cartes : élévation progressive, l'ombre accompagne le mouvement */
.eco__card { transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.45s var(--ease); }
.eco__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.pillar { transition: background 0.4s var(--ease), box-shadow 0.45s var(--ease); }
.pillar:hover { box-shadow: inset 0 0 0 1px var(--line-gold); }
.pillar p, .step-row p { line-height: 1.7; }

/* ==========================================================================
   V3 — NAVIGATION « PLUS »
   ========================================================================== */
.nav__more { position: relative; display: flex; align-items: center; }
.nav__morebtn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 13.5px; font-weight: 500;
  color: rgba(244, 239, 230, 0.86); background: none; border: none;
  padding: 4px 0; cursor: pointer; transition: color 0.3s var(--ease);
}
.nav__morebtn svg { transition: transform 0.3s var(--ease); }
.hdr.is-scrolled .nav__morebtn, body.page-light .nav__morebtn { color: var(--ink-soft); }
.nav__morebtn:hover, .nav__more.is-open .nav__morebtn { color: var(--gold); }
.hdr.is-scrolled .nav__morebtn:hover, .hdr.is-scrolled .nav__more.is-open .nav__morebtn,
body.page-light .nav__morebtn:hover, body.page-light .nav__more.is-open .nav__morebtn { color: var(--gold-deep); }
.nav__more.is-open .nav__morebtn svg { transform: rotate(180deg); }
.nav__panel {
  position: absolute; top: calc(100% + 16px); right: 0; min-width: 250px;
  display: flex; flex-direction: column; padding: 10px 0;
  background: rgba(251, 250, 247, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  opacity: 0; transform: translateY(8px); pointer-events: none; visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.nav__more.is-open .nav__panel {
  opacity: 1; transform: none; pointer-events: auto; visibility: visible;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s;
}
/* Spécificité (0,3,1) : ce bloc étant en fin de fichier, il l'emporte sur
   .hdr.is-scrolled .nav a pour les liens du panneau. */
.hdr .nav .nav__panel a { font-size: 14px; font-weight: 500; color: var(--ink-soft); padding: 10px 22px; white-space: nowrap; }
.hdr .nav .nav__panel a:hover { color: var(--gold-deep); background: rgba(201, 162, 75, 0.08); }
.hdr .nav .nav__panel a::after { display: none; }
/* Pont invisible entre le bouton et le panneau (survol continu) */
.nav__more::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 18px; }

/* ==========================================================================
   V3 — IMAGES
   ========================================================================== */
/* Zoom lent sur les images cliquables (wrappers en overflow:hidden) */
a[href] img { transition: transform 0.9s var(--ease); }
a[href]:hover img { transform: scale(1.03); }
/* Les dimensions déclarées ne doivent pas déformer les images fluides */
img[width][loading="lazy"] { height: auto; }
@media (prefers-reduced-motion: reduce) {
  a[href]:hover img { transform: none; }
}

/* Réduction des animations : les nouveaux menus s'ouvrent sans transition */
@media (prefers-reduced-motion: reduce) {
  .mobile, .mobile.is-open, .nav__panel, .nav__more.is-open .nav__panel { transition: none; }
}

/* ==========================================================================
   V3 — INVITATION AU-DESSUS D'UNE IMAGE CLIQUABLE (page Nos sites)
   Bande discrète signalant que la photo mène à la boutique. L'image, elle,
   possède déjà son zoom au survol via la règle a[href]:hover img.
   ========================================================================== */
.shop-teaser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  text-align: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.shop-teaser:hover { background: rgba(201, 162, 75, 0.10); color: var(--ink); }
/* La flèche avance au survol de toute la carte, pas seulement de la bande */
.shop-teaser__arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.shop-card:hover .shop-teaser__arrow { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  .shop-teaser, .shop-teaser__arrow { transition: none; }
  .shop-card:hover .shop-teaser__arrow { transform: none; }
}
