
:root {
  --blanc: #FAF8F5;
  --noir: #0A0A0A;
  --noir-doux: #161214;
  --noir-profond: #050505;
  --papier: #F2EFE9;
  --gris-trait: rgba(10,10,10,0.08);
  --violet: #3D1F6E;
  --serif: 'Cormorant Garamond','Times New Roman',serif;
  --sans: 'Jost','Helvetica Neue',sans-serif;
  --ease: cubic-bezier(0.22,1,0.36,1);
}

::selection { background: var(--violet); color: var(--blanc); }
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body {
  background: var(--blanc);
  color: var(--noir);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
img,video { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* =============================================
   LOADER. Entry screen
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--noir-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo { display:none; }
.loader-trait {
  width: 1px;
  height: 0;
  background: var(--violet);
  animation: loaderTrait 1s var(--ease) 0.9s forwards;
}
@keyframes loaderRise {
  to { opacity:1; transform:translateY(0); }
}
@keyframes loaderTrait {
  to { height:48px; }
}

/* =============================================
   TRANSITION INTER-PAGES
   ============================================= */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--noir-profond);
  z-index: 8888;
  transform: scaleX(0);
  transform-origin: right center;
  pointer-events: none;
}
#page-transition.active {
  animation: pageSweep 0.7s var(--ease) forwards;
}
@keyframes pageSweep {
  0%   { transform: scaleX(0); transform-origin: left center; }
  50%  { transform: scaleX(1); transform-origin: left center; }
  51%  { transform: scaleX(1); transform-origin: right center; }
  100% { transform: scaleX(0); transform-origin: right center; }
}

/* =============================================
   MENU OVERLAY PLEIN ÉCRAN
   ============================================= */
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--noir-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.menu-overlay-inner {
  text-align: center;
}
.menu-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-overlay-links li {
  overflow: hidden;
}
.menu-overlay-links a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px,6vw,80px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--blanc);
  display: block;
  transform: translateY(100%);
  transition: transform 0.7s var(--ease), color 0.3s;
  padding: 4px 0;
}
#menu-overlay.open .menu-overlay-links a {
  transform: translateY(0);
}
#menu-overlay.open .menu-overlay-links li:nth-child(1) a { transition-delay: 0.08s; }
#menu-overlay.open .menu-overlay-links li:nth-child(2) a { transition-delay: 0.16s; }
#menu-overlay.open .menu-overlay-links li:nth-child(3) a { transition-delay: 0.24s; }
#menu-overlay.open .menu-overlay-links li:nth-child(4) a { transition-delay: 0.32s; }
.menu-overlay-links a:hover { color: var(--violet); }
.menu-overlay-trait {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--violet), transparent);
  margin: 40px auto;
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.4s;
}
#menu-overlay.open .menu-overlay-trait { opacity: 1; }
.menu-close {
  position: absolute;
  top: 28px;
  right: 56px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.6);
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
}
.menu-close::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--violet);
}
.menu-close:hover { color: var(--blanc); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.9s var(--ease), background 0.9s var(--ease), border-color 0.9s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 56px;
  border-color: var(--gris-trait);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--blanc);
  transition: color 0.9s var(--ease);
}
.nav.solid .nav-logo { color: var(--violet); }
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.92);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.9s var(--ease);
}
.nav.solid .nav-links a { color: var(--noir); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom:0; left:0; right:0;
  height: 1px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s var(--ease);
}
.nav-links a:hover::after { transform:scaleX(1); transform-origin:left; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width:22px; height:1px;
  background: var(--blanc);
  transition: background 0.9s var(--ease);
  display: block;
}
.nav.solid .nav-burger span { background: var(--noir); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir-profond) url(/images/manifeste.jpg) center/cover no-repeat;
}
.hero-media { position:absolute; inset:0; z-index:1; }
.hero-media video {
  width:100%; height:100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInVideo 2.4s var(--ease) 0.4s forwards;
}
@keyframes fadeInVideo { to { opacity:1; } }
.hero-media video.fade-out {
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.defile-manifeste {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,248,245,0.55);
  margin-top: 40px;
  letter-spacing: 0.03em;
}

.hero-voile {
  position: absolute; inset:0; z-index:2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.30) 30%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.60) 100%);
}
.hero-content {
  position: relative; z-index:3;
  text-align: center;
  color: var(--blanc);
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealHero 2s var(--ease) 1.4s forwards;
}
@keyframes revealHero { to { opacity:1; transform:translateY(0); } }
.hero-logo-svg {
  width: clamp(280px,52vw,620px);
  margin: 0 auto;
  color: var(--blanc);
  opacity: 0;
  transform: translateY(10px);
  animation: revealHero 2s var(--ease) 1.2s forwards;
  filter: drop-shadow(0 0 18px rgba(0,0,0,0.9)) drop-shadow(0 2px 40px rgba(0,0,0,0.7));
}
.hero-logo-svg svg { width:100%; height:auto; display:block; }
/* Indicateur scroll */
.hero-decouvrir {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--blanc);
  opacity: 0;
  animation: revealHero 1.6s var(--ease) 2.8s forwards;
}
.hero-decouvrir span {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.scroll-pulse {
  width: 1px; height: 40px;
  background: rgba(250,248,245,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-pulse::after {
  content:'';
  position: absolute; top:-100%; left:0;
  width:100%; height:100%;
  background: var(--violet);
  animation: scrollDown 2s var(--ease) infinite;
}
@keyframes scrollDown { 0%{top:-100%;} 100%{top:100%;} }

/* =============================================
   REVEAL AU SCROLL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
.reveal.en-vue { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.12s; }
.d2 { transition-delay:0.26s; }
.d3 { transition-delay:0.4s; }

/* =============================================
   LABELS PARTAGÉS
   ============================================= */
.label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content:'';
  width:28px; height:1px;
  background: var(--violet);
  flex-shrink:0;
}
.label-centre {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.label-centre::before,
.label-centre::after {
  content:'';
  width:28px; height:1px;
  background: var(--violet);
}

/* =============================================
   MANIFESTE
   ============================================= */
.manifeste { background: var(--blanc); }
.manifeste-image-bandeau {
  width: 100%;
  height: 90vh;
  background-image: url('./images/manifeste.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--noir-doux);
  position: relative;
  overflow: hidden;
}
/* Trait violet gauche sur l'image. fil conducteur */
.manifeste-image-bandeau::after {
  content:'';
  position: absolute;
  top:8%; bottom:8%;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--violet) 25%, var(--violet) 75%, transparent);
}
/* Parallaxe au scroll */
.manifeste-image-bandeau::before {
  content:'';
  position: absolute; inset:0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.6s var(--ease);
}
.manifeste-image-bandeau.en-vue::before { transform:scale(1); }
.manifeste-corps {
  max-width: 880px;
  margin: 0 auto;
  padding: 130px 56px;
  text-align: center;
  position: relative;
}
/* Trait violet horizontal centré au-dessus du texte */
.manifeste-corps::before {
  content:'';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  margin: 0 auto 40px;
}
.manifeste-titre {
  font-family: var(--serif);
  font-size: clamp(28px,3.4vw,48px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}
.manifeste-titre em { font-style:italic; color:var(--violet); }
.manifeste-detail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(10,10,10,0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   DÉFILÉ
   ============================================= */
.defile {
  position: relative;
  min-height: 90vh;
  background: var(--noir-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  overflow: hidden;
}
.defile-contenu {
  position: relative; z-index:2;
  text-align: center;
  color: var(--blanc);
  max-width: 920px;
}
.defile-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px,2.2vw,30px);
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  color: rgba(250,248,245,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.defile-label::before,
.defile-label::after {
  content:'';
  width:44px; height:1px;
  background: var(--violet);
}
.defile-titre {
  font-family: var(--serif);
  font-size: clamp(56px,9vw,132px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 32px;
}
.defile-italique {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px,1.9vw,26px);
  font-weight: 300;
  color: rgba(250,248,245,0.88);
}

/* =============================================
   CHRONIQUES
   ============================================= */
.chroniques {
  padding: 140px 56px;
  background: var(--blanc);
}
.chroniques-entete {
  max-width: 1480px;
  margin: 0 auto 90px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gris-trait);
  gap: 40px;
}
.chroniques-titre {
  font-family: var(--serif);
  font-size: clamp(38px,4.5vw,62px);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-top: 22px;
}
.chroniques-titre em { font-style:italic; color:var(--violet); }
.chroniques-grille {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 44px;
}
.chronique { display:block; cursor:pointer; position:relative; }

/* Chiffre romain en filigrane */
.chronique-romain {
  position: absolute;
  top: -12px;
  left: -8px;
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(61,31,110,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  letter-spacing: -0.02em;
}

.chronique-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 26px;
  background-color: var(--papier);
  position: relative;
  z-index: 1;
}
/* Trait violet gauche sur l'image au survol */
.chronique-img::after {
  content:'';
  position: absolute;
  top:0; bottom:0; left:0;
  width: 2px;
  background: var(--violet);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s var(--ease);
}
.chronique:hover .chronique-img::after { transform:scaleY(1); transform-origin:top; }
.chronique-img-inner {
  width:100%; height:100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.8s var(--ease);
}
.chronique:hover .chronique-img-inner { transform:scale(1.06); }
.c-img-1 { background-image: url('./images/chronique-raffinement.jpg'); }
.c-img-2 { background-image: url('./images/chronique-heritage.jpg'); }

/* Chronicle On luxury. typographique */
.chronique-typo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--noir-profond);
  position: relative;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  overflow: hidden;
  transition: background 1.4s var(--ease);
  z-index: 1;
}
/* Trait violet diagonal sur la chronique luxe */
.chronique-typo::before {
  content:'';
  position: absolute;
  top:0; left:50%;
  width:1px; height:60%;
  background: linear-gradient(to bottom, var(--violet), transparent);
  opacity: 0.5;
}
.chronique-typo::after {
  content:'';
  position: absolute;
  bottom:0; left:50%;
  width:1px; height:40%;
  background: linear-gradient(to top, var(--violet), transparent);
  opacity: 0.5;
}
.chronique-typo-contenu { text-align:center; color:var(--blanc); position:relative; z-index:2; }
.chronique-typo-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px,1.9vw,26px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250,248,245,0.92);
}
.chronique:hover .chronique-typo { background: var(--noir); }
.chronique-meta { position:relative; z-index:1; }
.chronique-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--violet);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.chronique-nom {
  font-family: var(--serif);
  font-size: clamp(26px,2.4vw,34px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.chronique-nom em { font-style:italic; }
.chronique-haiku {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: rgba(10,10,10,0.7);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.chronique-extrait {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(10,10,10,0.65);
  margin-bottom: 24px;
}
.chronique-lire {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--violet);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.5s var(--ease), opacity 0.4s;
}
.chronique-lire::after { content:'→'; font-size:13px; }
.chronique:hover .chronique-lire { gap:16px; opacity:0.75; }

/* =============================================
   ACADEMY. violet top/bottom borders restored
   ============================================= */
.academie {
  background: var(--papier);
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.academie::before {
  content:'';
  position: absolute;
  top: 0; left:50%;
  width:1px; height:80px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  transform: translateX(-50%);
}
.academie::after {
  content:'';
  position: absolute;
  bottom:0; left:50%;
  width:1px; height:80px;
  background: linear-gradient(to top, var(--violet), transparent);
  transform: translateX(-50%);
}
.academie-contenu {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.academie-label { margin-bottom:36px; }
.academie-titre {
  font-family: var(--serif);
  font-size: clamp(42px,5.5vw,76px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.academie-titre em { font-style:italic; color:var(--violet); }
.academie-texte {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px,1.55vw,21px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(10,10,10,0.7);
  max-width: 580px;
  margin: 0 auto 48px;
}
.btn-academie {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--violet);
  display: inline-block;
  padding: 18px 44px;
  border: 1px solid var(--violet);
  position: relative;
  overflow: hidden;
  transition: color 0.7s var(--ease);
  z-index: 1;
}
.btn-academie::before {
  content:'';
  position: absolute; inset:0;
  background: var(--blanc);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s var(--ease);
  z-index: -1;
}
.btn-academie:hover { color:var(--violet); }
.btn-academie:hover::before { transform:scaleX(1); transform-origin:left; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  background: var(--noir);
  color: var(--blanc);
  padding: 130px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-contenu { max-width:660px; margin:0 auto; }
.newsletter-label { margin-bottom:32px; }
.newsletter-titre {
  font-family: var(--serif);
  font-size: clamp(28px,3.4vw,44px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 26px;
  color: var(--blanc);
}
.newsletter-titre em { font-style:italic; color:var(--violet); }
.newsletter-texte {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,248,245,0.85);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form { display:flex; flex-direction:column; gap:20px; }
.newsletter-civilite {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.newsletter-civilite label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.newsletter-civilite input[type="radio"] {
  appearance:none; -webkit-appearance:none;
  width:18px; height:18px;
  border: 1.5px solid rgba(250,248,245,0.65);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.4s;
}
.newsletter-civilite input[type="radio"]:checked { border-color: var(--blanc); }
.newsletter-civilite input[type="radio"]:checked::after {
  content:'';
  position: absolute;
  inset: 4px;
  background: var(--blanc);
  border-radius: 50%;
}
.newsletter-input-row {
  display: flex;
  border-bottom: 1px solid rgba(250,248,245,0.3);
  transition: border-color 0.4s var(--ease);
}
.newsletter-input-row:focus-within { border-bottom-color:var(--violet); }
.newsletter-input-row input[type="email"] {
  flex:1; background:transparent; border:none; outline:none;
  padding: 16px 4px;
  font-family: var(--sans); font-size:14px; font-weight:300;
  color: var(--blanc); letter-spacing:0.04em;
}
.newsletter-input-row input[type="email"]::placeholder {
  color: rgba(250,248,245,0.4);
  font-family: var(--serif); font-style:italic;
}
.newsletter-submit {
  background:transparent; color:var(--blanc);
  font-family:var(--sans); font-size:10.5px; font-weight:300;
  letter-spacing:0.4em; text-transform:uppercase;
  padding:0 12px; cursor:pointer;
  transition: color 0.4s var(--ease);
}
.newsletter-submit:hover { color:var(--violet); }
.newsletter-mentions {
  font-family:var(--sans); font-size:10px; font-weight:300;
  line-height:1.7; color:rgba(250,248,245,0.6);
  margin-top:14px; letter-spacing:0.04em;
}
.newsletter-mentions a {
  color:rgba(250,248,245,0.85);
  border-bottom:1px solid rgba(250,248,245,0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--noir-profond);
  color: var(--blanc);
  padding: 90px 56px 32px;
}
/* Trait violet haut du footer */
.footer-grid {
  max-width: 1480px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,248,245,0.08);
}
.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo { margin-bottom:16px; max-width:260px; text-align:center; }
.footer-logo svg { width:100%; height:auto; display:block; margin:0 auto; }
.footer-grid > div:first-child { text-align:center; }
.footer-baseline {
  font-family: var(--serif); font-style:italic;
  font-size: 14px; font-weight:300;
  color: rgba(250,248,245,0.75);
  line-height: 1.7;
  text-align: center;
}
.footer-col-titre {
  font-family: var(--sans);
  font-size: 11px; font-weight:500;
  letter-spacing: 0.26em; text-transform:uppercase;
  color: var(--blanc);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(61,31,110,0.6);
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:13px; }
.footer-col ul a {
  font-family:var(--sans); font-size:13.5px; font-weight:300;
  color: rgba(250,248,245,0.88);
  transition: color 0.4s var(--ease); letter-spacing:0.05em;
}
.footer-col ul a:hover { color:var(--blanc); }
.footer-bas {
  max-width: 1480px; margin:0 auto;
  display: flex; justify-content:space-between; align-items:center;
  font-family:var(--sans); font-size:11px; font-weight:300;
  letter-spacing:0.16em; color:rgba(250,248,245,0.6);
}
.footer-signature { display:flex; align-items:center; gap:12px; }
.point-violet { width:7px; height:7px; border-radius:50%; background:var(--violet); flex-shrink:0; }
.footer-bas-droit { display:flex; gap:28px; }
.footer-bas-droit a { color:rgba(250,248,245,0.65); transition:color 0.4s; letter-spacing:0.1em; }
.footer-bas-droit a:hover { color:var(--blanc); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:1080px) {
  .nav { padding:22px 32px; } .nav.solid { padding:16px 32px; }
  .nav-links { gap:32px; }
  .manifeste-image-bandeau { height:70vh; }
  .manifeste-corps { padding:90px 32px; }
  .chroniques { padding:100px 32px; } .chroniques-grille { gap:28px; }
  .academie { padding:110px 32px; }
  .newsletter { padding:100px 32px; }
  .footer { padding:70px 32px 28px; }
  .footer-grid { grid-template-columns:1fr 1fr 1fr; gap:36px; }
  .footer-grid > *:first-child { grid-column:1/-1; margin-bottom:24px; }
}
@media (max-width:720px) {
  .nav { padding:16px 22px; } .nav.solid { padding:14px 22px; }
  .nav-links { display:none; } .nav-burger { display:flex; }
  .menu-close { right:22px; top:20px; }
  .hero-logo-svg { width:clamp(240px,80vw,360px); }
  .manifeste-image-bandeau { height:55vh; }
  .manifeste-corps { padding:70px 24px; }
  .chroniques-grille { grid-template-columns:1fr; gap:56px; }
  .chroniques-entete { flex-direction:column; align-items:flex-start; gap:24px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-bas { flex-direction:column; gap:14px; }
  .footer-bas-droit { flex-wrap:wrap; justify-content:center; gap:16px; }
  .chronique-romain { font-size:140px; }
}

/* ═══════════════ MOBILE ACCUEIL ≤ 480px ═══════════════ */
@media (max-width: 480px) {
  .hero { padding-bottom: 70px; }
  .hero-titre { font-size: clamp(32px, 9vw, 52px); letter-spacing: 0.05em; }
  .hero-baseline { font-size: clamp(13px, 3.5vw, 17px); }
  .hero-sur-titre { font-size: 9px; letter-spacing: 0.3em; margin-bottom: 18px; }

  .manifeste { grid-template-columns: 1fr; }
  .manifeste-photo { min-height: 55vw; }
  .manifeste-corps { padding: 48px 20px; border-left: none; border-top: 3px solid var(--violet); }
  .manifeste-titre { font-size: clamp(22px, 6vw, 32px); margin: 20px 0 24px; }

  .defile { height: 85vh; }
  .defile-titre { font-size: clamp(44px, 14vw, 80px); }
  .defile-italique { font-size: clamp(15px, 4vw, 20px); }
  .defile-manifeste { font-size: 14px; margin-top: 28px; }
  .defile-contenu { padding: 0 20px; }

  .chroniques { padding: 64px 20px 80px; }
  .chroniques-entete { flex-direction: column; gap: 16px; padding-bottom: 20px; margin-bottom: 40px; }
  .chroniques-titre { font-size: clamp(28px, 7vw, 40px); }
  .chroniques-grille { grid-template-columns: 1fr; gap: 40px; }

  .academie { grid-template-columns: 1fr; }
  .academie-corps { padding: 48px 20px; border-right: none; border-bottom: 3px solid var(--violet); }
  .academie-photo { background-color: #1E1A2E; min-height: 55vw; order: -1; }
  .academie-titre { font-size: clamp(28px, 7vw, 40px); }

  .footer { padding: 56px 20px 28px; }
  .footer-haut { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .footer-marque { font-size: 18px; }
  .footer-bas { flex-direction: column; gap: 10px; font-size: 10px; }

  .menu-overlay-links li a { font-size: clamp(32px, 9vw, 52px); }
}


/* ─── DÉFILÉ MOBILE : contraste amélioré ─── */
@media (max-width: 720px) {
  .defile { background-color: #0A0A0A; }
  .defile-titre { font-size: clamp(48px, 13vw, 72px) !important; color: rgba(250,248,245,1) !important; }
  .defile-italique { color: rgba(250,248,245,0.92) !important; font-size: clamp(16px, 4.5vw, 22px) !important; }
  .defile-manifeste { color: rgba(250,248,245,0.65) !important; font-size: 14px !important; }
  .defile-label { color: rgba(250,248,245,0.8) !important; }
}


.loader-inner { text-align: center; }
.loader-lys-row {
  display: flex; justify-content: center; gap: 1.2rem;
  margin-bottom: 1.5rem;
  animation: lysAppear 0.7s ease forwards;
  opacity: 0;
}
.loader-lys-row span {
  color: #C39A5B; font-size: 1.6rem;
  display: inline-block;
}
.loader-lys-row span:nth-child(1) { animation: lysUp 0.6s 0.1s ease forwards; opacity: 0; }
.loader-lys-row span:nth-child(2) { animation: lysUp 0.6s 0.25s ease forwards; opacity: 0; transform: scale(1.2); }
.loader-lys-row span:nth-child(3) { animation: lysUp 0.6s 0.4s ease forwards; opacity: 0; }
.loader-academie {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: loaderFadeUp 0.8s 0.6s ease forwards;
}
.loader-sous-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: #C39A5B;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: loaderFadeUp 0.8s 0.85s ease forwards;
}
.loader-ligne {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, #C39A5B, transparent);
  margin: 1.2rem auto;
  animation: loaderLigne 0.8s 1.1s ease forwards;
}
@keyframes lysUp {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLigne {
  from { width: 0; }
  to   { width: 90px; }
}

/* Transition inter-pages */
body { transition: opacity 0.35s ease; }
body.page-out { opacity: 0; }

/* Animation héro après loader */
.hero-gauche .hero-lys,
.hero-gauche .hero-titre,
.hero-gauche .hero-accroche,
.hero-gauche .hero-cta {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.loaded .hero-gauche .hero-lys   { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
body.loaded .hero-gauche .hero-titre { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
body.loaded .hero-gauche .hero-accroche { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
body.loaded .hero-gauche .hero-cta   { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
