/* ============================================
   STYLE GLASSMORPHISM — bounafberte.com
   Direction : Sobre · Autoritaire · Prestige
   Fond noir profond · Verre · Zéro or
   ============================================ */

/* ===== FONTS ===== */
@font-face {
  font-family: 'LTWave';
  src: url('../fonts/LTWaveAlt-Thin.otf') format('opentype');
  font-weight: 100;
}
@font-face {
  font-family: 'LTWave';
  src: url('../fonts/LTWaveAlt-Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'LTWave';
  src: url('../fonts/LTWaveAlt-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'LTWave';
  src: url('../fonts/LTWaveAlt-Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'LTWave';
  src: url('../fonts/LTWaveAlt-Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'LTWave';
  src: url('../fonts/LTWaveAlt-Black.otf') format('opentype');
  font-weight: 900;
}

/* ===== VARIABLES ===== */
:root {
  /* Fond noir très chaud — légère teinte brun profond */
  --bg: #0C0A09;
  --bg-2: #111009;
  --bg-3: #17140F;

  /* Crème / terracotta */
  --cream: #EDE0CC;           /* crème principal */
  --cream-dim: #B5A48A;       /* crème atténué */
  --terra: #C4875A;           /* terracotta moyen */
  --terra-soft: #A86840;      /* terracotta foncé */

  /* Glass warm — teinte crème */
  --glass: rgba(237,224,204,0.05);
  --glass-hover: rgba(237,224,204,0.09);
  --glass-border: rgba(237,224,204,0.12);
  --glass-border-subtle: rgba(237,224,204,0.07);

  /* Aliases crème pour compatibilité code existant */
  --white: #EDE0CC;
  --white-90: rgba(237,224,204,0.90);
  --white-70: rgba(237,224,204,0.70);
  --white-50: rgba(237,224,204,0.50);
  --white-30: rgba(237,224,204,0.30);
  --white-15: rgba(237,224,204,0.15);
  --white-10: rgba(237,224,204,0.10);
  --white-05: rgba(237,224,204,0.05);

  /* Textes secondaires */
  --steel: #C4A882;
  --steel-dim: #8A7860;

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.40);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.65);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s ease;
  --t-base: 0.35s ease;
  --t-slow: 0.7s var(--ease);

  --max-w: 1240px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'LTWave', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Subtle noise + vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196,135,90,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4 {
  font-family: 'LTWave', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--terra);
  font-weight: 300;
}
.section-sub {
  font-size: 1rem;
  color: var(--steel-dim);
  line-height: 1.85;
  max-width: 540px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--terra-soft);
  opacity: 0.6;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  padding: 0 var(--space-sm) 0 var(--space-lg);
  height: 60px;
  width: calc(100% - 80px);
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--t-base);
}
nav.scrolled {
  background: rgba(8,8,8,0.80);
  border-color: var(--glass-border-subtle);
  top: 10px;
}
.nav-logo img { height: 36px; width: auto; filter: brightness(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white-50);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--white-05);
}
.nav-cta-pill {
  background: var(--white-10) !important;
  color: var(--white) !important;
  border: 1px solid var(--glass-border) !important;
  padding: 8px 22px !important;
  border-radius: var(--r-full) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  transition: all var(--t-fast) !important;
}
.nav-cta-pill:hover {
  background: var(--white-15) !important;
  border-color: var(--white-30) !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--white-05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white-70);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
}
.nav-mobile-overlay a {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white-60, var(--white-70));
  padding: 14px 32px;
  border-radius: var(--r-lg);
  transition: all var(--t-fast);
  text-decoration: none;
  display: block;
  text-align: center;
}
.nav-mobile-overlay a:hover {
  color: var(--white);
  background: var(--white-05);
}
.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white-05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--white);
  font-size: 1rem;
}
.nav-overlay-close:hover { background: var(--white-10); }

/* ===== HERO ===== */
.hero-premium {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px var(--space-xl) var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-40, var(--white-50));
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.1s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--white-30);
}
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--white-30);
}

.hero-premium-title {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.25s forwards;
}

.hero-premium-sub {
  font-size: 0.88rem;
  color: var(--steel-dim);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.35s forwards;
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: var(--space-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  background: var(--glass);
  color: var(--white-50);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.1s forwards;
}
.hero-premium-badge strong {
  color: var(--cream);
  font-weight: 500;
}
.text-accent {
  color: var(--terra);
  font-style: italic;
}

.hero-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.45s forwards;
}

.hero-premium-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.55s forwards;
}

/* Separateur hero */
.hero-rule {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  right: var(--space-xl);
  height: 1px;
  background: var(--glass-border-subtle);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-slow);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-15);
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: var(--r-full);
  font-family: 'LTWave', serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--t-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--terra);
  color: #0C0A09;
}
.btn-primary:hover {
  background: #d4965f;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,135,90,0.30);
}
.btn-outline {
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  background: var(--white-05);
  border-color: var(--white-30);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--white-70);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: var(--glass-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SECTIONS COMMUNES ===== */
.section-wrap {
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-divider {
  border: none;
  height: 1px;
  background: var(--glass-border-subtle);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ===== MANIFESTE (ESCO / BIO) ===== */
.manifeste-section {
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}
.manifeste-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.manifeste-card {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
  transition: background var(--t-base), border-color var(--t-base);
}
.manifeste-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-15);
}
.manifeste-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-lg) 0;
}
.manifeste-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.87rem;
  color: var(--white-70);
}
.manifeste-feature i {
  width: 20px;
  color: var(--white-40, var(--white-50));
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ===== RÉSEAU ===== */
.reseau-section {
  padding: var(--space-3xl) var(--space-xl);
}
.reseau-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--space-lg) 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  color: var(--white-60, var(--white-70));
  backdrop-filter: blur(10px);
}
.tag i { font-size: 0.73rem; color: var(--white-40, var(--white-50)); }

/* ===== ÉVÉNEMENTS ===== */
.events-section {
  padding: var(--space-3xl) var(--space-xl);
}
.events-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.events-cta-block {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
}

/* ===== MÉDIA ===== */
.media-section {
  padding: var(--space-3xl) var(--space-xl);
}
.media-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.media-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--space-lg) 0;
}
.media-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  color: var(--white-60, var(--white-70));
  backdrop-filter: blur(10px);
}
.media-feature i { font-size: 0.73rem; color: var(--white-40, var(--white-50)); }
.media-btns {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ===== ESCO SECTION ===== */
.esco-section {
  padding: var(--space-3xl) var(--space-xl);
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--glass-border-subtle);
  border-bottom: 1px solid var(--glass-border-subtle);
}
.esco-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.esco-text {}
.esco-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-lg) 0;
}
.esco-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.87rem;
  color: var(--white-70);
}
.esco-feature i {
  width: 20px;
  color: var(--white-40, var(--white-50));
  font-size: 0.82rem;
  flex-shrink: 0;
}
.esco-image-wrapper {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--glass-border);
}
.esco-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  filter: brightness(0.85);
}
.esco-image-wrapper:hover img { transform: scale(1.03); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: var(--space-3xl) var(--space-xl);
  border-top: 1px solid var(--glass-border-subtle);
}
.newsletter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border-subtle);
  padding: var(--space-3xl) var(--space-xl);
  margin-top: var(--space-3xl);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo-wrap {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--glass-border-subtle);
  display: flex;
  justify-content: center;
}
.footer-logo-wrap img {
  height: 48px;
  width: auto;
  opacity: 0.75;
  filter: brightness(1);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--glass-border-subtle);
  margin-bottom: var(--space-xl);
}
.footer-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-90);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--steel-dim);
  line-height: 1.7;
}
.footer-contact { margin-top: var(--space-lg); }
.footer-contact a {
  color: var(--white-40, var(--white-50));
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--white-90); }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.83rem;
  color: var(--white-50);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white-90); }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white-50);
  transition: all var(--t-fast);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social:hover {
  background: var(--glass-hover);
  border-color: var(--white-30);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom p {
  font-size: 0.68rem;
  color: var(--white-30);
  letter-spacing: 0.06em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* ===== VISION PAGE (portrait) ===== */
.vision-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px var(--space-xl) var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
}
.vision-layout {
  padding: var(--space-3xl) var(--space-xl);
}
.vision-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.vision-portrait-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--glass-border);
}
.vision-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85) contrast(1.05);
  transition: filter var(--t-slow);
}
.vision-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.1);
  pointer-events: none;
}
.vision-portrait-wrap:hover img { filter: grayscale(100%) brightness(0.90) contrast(1.08); }
.vision-text-block {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
}
.vision-text-block:hover {
  background: var(--glass-hover);
  border-color: var(--white-15);
}

/* ===== EDITORIAL LIST ===== */
.editorial-list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--glass-border);
}
.editorial-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--glass-border-subtle);
}
.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-40, var(--white-50));
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.editorial-copy h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 6px;
}
.editorial-copy p {
  color: var(--steel-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}
.editorial-meta {
  color: var(--white-40, var(--white-50)) !important;
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.editorial-status,
.editorial-link {
  justify-self: end;
  white-space: nowrap;
  color: var(--white-50);
  text-decoration: none;
  font-size: 0.78rem;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== FORMULAIRES MODALS ===== */
.form-error-message {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,99,99,0.35);
  color: #ffb4b4;
  background: rgba(255,99,99,0.08);
  font-size: 0.85rem;
}

/* ===== PROGRAMMES (pages event) ===== */
.programmes-section {
  padding: var(--space-3xl) var(--space-xl);
}
.programmes-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.prog-card-3d {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: all var(--t-slow);
  border: 1px solid var(--glass-border);
}
.prog-card-3d:hover {
  transform: translateY(-6px);
  border-color: var(--white-20);
}
.prog-card-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.prog-card-bg-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  filter: brightness(0.7) saturate(0.8);
}
.prog-card-3d:hover .prog-card-bg-3d { transform: scale(1.04); }
.prog-card-content-3d {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 2;
}
.prog-card-icon-3d {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--white-70);
  font-size: 0.95rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.prog-card-title-3d {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.prog-card-sub-3d {
  font-size: 0.66rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.prog-card-desc-3d {
  font-size: 0.83rem;
  color: var(--white-65, var(--white-70));
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.prog-card-link-3d {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white-70);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: gap var(--t-fast), color var(--t-fast);
}
.prog-card-link-3d:hover { gap: 10px; color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --space-3xl: 80px;
    --space-2xl: 56px;
  }
  .manifeste-inner,
  .esco-inner,
  .reseau-inner,
  .events-inner,
  .newsletter-inner,
  .vision-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .programmes-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-overlay { display: flex; }
  .hero-premium-title { font-size: clamp(2.8rem, 6vw, 4.5rem); }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-2xl: 40px;
    --space-xl: 32px;
  }
  nav {
    width: calc(100% - 32px);
    padding: 0 var(--space-sm);
    height: 54px;
  }
  .hero-premium {
    padding: 100px var(--space-md) var(--space-xl);
    min-height: auto;
  }
  .hero-rule { left: var(--space-md); right: var(--space-md); }
  .section-wrap,
  .manifeste-section,
  .reseau-section,
  .events-section,
  .media-section,
  .esco-section,
  .newsletter-section,
  .vision-layout,
  .programmes-section {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
  footer { padding-left: var(--space-md); padding-right: var(--space-md); }
  .programmes-grid { grid-template-columns: 1fr; }
  .prog-card-3d { aspect-ratio: auto; min-height: 320px; }
  .editorial-item { grid-template-columns: 1fr; gap: 10px; align-items: start; }
  .editorial-status, .editorial-link { justify-self: start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-premium-btns { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
}

@media (max-width: 480px) {
  nav {
    width: calc(100% - 20px);
    height: 52px;
    border-radius: 16px;
    top: 10px;
  }
  .nav-logo img { height: 28px; }
  .hero-premium-title { font-size: 2rem; letter-spacing: -0.03em; }
  .section-title { font-size: 1.75rem !important; }
  .footer-logo-wrap img { height: 36px; }
  .footer-socials { gap: 8px; }
  .footer-social { width: 36px; height: 36px; }
}

/* ===== MEDIA-BTNS COMPAT ===== */
.media-btns-separated {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.btn-phone-notify { border-style: dashed; opacity: 0.88; }
.btn-phone-notify:hover { opacity: 1; }

/* ===== SECTION-LABEL ICON FIX ===== */
.section-label i { font-size: 0.72rem; line-height: 1; }
.btn i { font-size: 0.82rem; }

/* ===== TOAST ===== */
.site-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.site-toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.site-toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-70);
  flex: 0 0 auto;
}
.site-toast.is-error .site-toast-dot { background: #ff8a8a; }
.site-toast-message { font-size: 0.84rem; color: var(--white-80, var(--white-90)); line-height: 1.4; }


/* ===== ENRICHISSEMENTS ANIMATIONS SECTIONS ===== */

/* Reveal avec slide depuis la gauche */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Esco/manifeste card lift au hover */
.esco-image-wrapper {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color var(--t-base);
}
.esco-image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border-color: var(--white-15);
}

/* Tags hover */
.tag {
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.tag:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  color: var(--white-90);
}

/* Bouton outline hover flèche slide */
.btn-outline i { transition: transform var(--t-fast); }
.btn-outline:hover i { transform: translateX(4px); }

/* Section label animation */
.section-label {
  transition: color var(--t-base);
}

/* ===== FULL RESPONSIVE AUDIT ===== */

/* Tablette portrait 768–1024 */
@media (max-width: 1024px) {
  .hero-split-left { padding: 120px var(--space-lg) var(--space-lg); }
}

/* Mobile large 600–768 */
@media (max-width: 768px) {
  .section-sub { max-width: 100%; }
  .manifeste-inner, .esco-inner, .reseau-inner,
  .events-inner, .newsletter-inner, .vision-inner {
    grid-template-columns: 1fr !important;
  }
  .manifeste-section,
  .esco-section,
  .reseau-section,
  .events-section,
  .media-section,
  .newsletter-section {
    padding-left: var(--space-md) !important;
    padding-right: var(--space-md) !important;
  }
  footer { padding-left: var(--space-md) !important; padding-right: var(--space-md) !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .programmes-grid { grid-template-columns: 1fr !important; }
  .prog-card-3d { aspect-ratio: auto !important; min-height: 320px !important; }
  .editorial-item { grid-template-columns: 1fr !important; gap: 10px !important; }
  .editorial-status, .editorial-link { justify-self: start !important; }
  .nav-links { display: none !important; }
  .nav-burger { display: flex !important; }
}

/* Mobile petit < 480 */
@media (max-width: 480px) {
  :root {
    --space-3xl: 56px;
    --space-2xl: 36px;
    --space-xl: 28px;
    --space-lg: 32px;
  }
  nav {
    width: calc(100% - 20px) !important;
    height: 52px !important;
    border-radius: 16px !important;
    top: 10px !important;
  }
  .nav-logo img { height: 28px !important; }
  .section-title { font-size: 1.7rem !important; }
  .btn { font-size: 0.78rem !important; padding: 12px 24px !important; }
  .footer-logo-wrap img { height: 36px !important; }
  .footer-socials { gap: 8px; }
  .footer-social { width: 36px !important; height: 36px !important; }
  .prog-card-3d { min-height: 280px !important; }
  .prog-card-content-3d { padding: 20px 16px !important; }
}

/* Très petit < 360px */
@media (max-width: 360px) {
  .hero-premium-title { font-size: 1.6rem !important; }
  .section-title { font-size: 1.5rem !important; }
  nav { height: 48px !important; }
}


/* ===== VARIATIONS FOND CRÈME / CHAUD ===== */

/* Section fond crème chaleureux */
.section-cream {
  background: #F5EAD8;
  color: #1A1208;
}
.section-cream .section-title { color: #1A1208; }
.section-cream .section-title em { color: var(--terra-soft); }
.section-cream .section-sub { color: #5C4A30; }
.section-cream .section-label { color: rgba(26,18,8,0.50); }
.section-cream .section-label::before { background: var(--terra-soft); }
.section-cream .btn-outline {
  color: #3A2810;
  border-color: rgba(26,18,8,0.20);
}
.section-cream .btn-outline:hover {
  background: rgba(26,18,8,0.06);
  border-color: rgba(26,18,8,0.35);
  color: #1A1208;
}
.section-cream .tag {
  background: rgba(26,18,8,0.06);
  border-color: rgba(26,18,8,0.12);
  color: #3A2810;
  backdrop-filter: none;
}
.section-cream .manifeste-card {
  background: rgba(26,18,8,0.05);
  border-color: rgba(26,18,8,0.12);
  backdrop-filter: none;
}
.section-cream .manifeste-card:hover {
  background: rgba(26,18,8,0.09);
  border-color: rgba(26,18,8,0.20);
}
.section-cream .esco-feature,
.section-cream .manifeste-feature {
  color: rgba(26,18,8,0.70);
}
.section-cream .esco-feature i,
.section-cream .manifeste-feature i {
  color: rgba(26,18,8,0.40);
}
/* Fond crème moyen — légèrement moins clair */
.section-warm {
  background: #1F1710;
  border-top: 1px solid rgba(237,224,204,0.06);
  border-bottom: 1px solid rgba(237,224,204,0.06);
}
/* Accent terracotta section */
.section-terra-accent {
  background: linear-gradient(135deg, #1A1008 0%, #231508 50%, #1A1008 100%);
  border-top: 1px solid rgba(196,135,90,0.15);
  border-bottom: 1px solid rgba(196,135,90,0.15);
}
.section-terra-accent .section-title em { color: var(--cream); }

/* ===== FORMULAIRES AUX COULEURS DU SITE ===== */

/* Variables compat pour pages utilisant l'ancien système */
:root {
  --noir: #0C0A09;
  --gris-anthracite: #17140F;
  --gris-fonce: rgba(237,224,204,0.04);
  --gris-moyen: rgba(237,224,204,0.03);
  --gris-text: #8A7860;
  --blanc: #EDE0CC;
  --blanc-70: rgba(237,224,204,0.70);
  --blanc-10: rgba(237,224,204,0.10);
  --blanc-05: rgba(237,224,204,0.05);
  --accent-primary: #C4875A;
  --radius-2xl: var(--r-2xl);
  --radius-xl: var(--r-xl);
  --radius-lg: var(--r-lg);
  --radius-md: var(--r-md);
  --radius-sm: var(--r-sm);
  --radius-full: var(--r-full);
  --transition-base: 0.35s ease;
  --transition-fast: 0.2s ease;
  --shadow-glow: 0 8px 32px rgba(196,135,90,0.30);
}

/* Formulaire — styles harmonisés */
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(237,224,204,0.05) !important;
  border: 1px solid rgba(237,224,204,0.12) !important;
  border-radius: var(--r-md) !important;
  color: var(--cream) !important;
  font-family: 'LTWave', serif !important;
  transition: border-color var(--t-fast), background var(--t-fast) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none !important;
  border-color: var(--terra) !important;
  background: rgba(237,224,204,0.08) !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8A7860 !important;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7860' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-color: rgba(237,224,204,0.05) !important;
}
.form-group label {
  color: rgba(237,224,204,0.70) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}
.form-group .required {
  color: var(--terra) !important;
}

/* Format selector harmonisé */
.format-selector,
.reservation-form {
  background: rgba(237,224,204,0.04) !important;
  border: 1px solid rgba(237,224,204,0.10) !important;
  border-radius: var(--r-2xl) !important;
}
.format-option {
  background: rgba(237,224,204,0.03) !important;
  border: 2px solid rgba(237,224,204,0.10) !important;
  border-radius: var(--r-lg) !important;
  transition: all var(--t-fast) !important;
}
.format-option:hover {
  border-color: var(--terra) !important;
  background: rgba(196,135,90,0.07) !important;
}
.format-option.active {
  border-color: var(--terra) !important;
  background: rgba(196,135,90,0.10) !important;
}
.format-option input[type="radio"] {
  accent-color: var(--terra) !important;
}
.format-option-label strong { color: var(--cream) !important; }
.format-option-label span { color: #8A7860 !important; }
.format-title { color: var(--cream) !important; }
.format-title i { color: var(--terra) !important; }

/* Submit button harmonisé */
.submit-btn {
  background: var(--terra) !important;
  color: #0C0A09 !important;
  font-family: 'LTWave', serif !important;
  font-weight: 600 !important;
  border-radius: var(--r-full) !important;
  transition: all var(--t-base) !important;
}
.submit-btn:hover {
  background: #d4965f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(196,135,90,0.30) !important;
}

/* Info badge harmonisé */
.info-badge {
  background: rgba(196,135,90,0.07) !important;
  border: 1px solid rgba(196,135,90,0.18) !important;
  border-radius: var(--r-lg) !important;
  color: rgba(237,224,204,0.70) !important;
  font-size: 0.82rem !important;
}
.info-badge i { color: var(--terra) !important; }

/* Form header */
.form-header {
  border-bottom: 1px solid rgba(237,224,204,0.08) !important;
}
.form-header h3 { color: var(--cream) !important; }
.form-header p { color: #8A7860 !important; }

/* Reservation hero harmonisé */
.reservation-hero {
  background: linear-gradient(135deg, #0C0A09 0%, #17140F 100%) !important;
  position: relative;
}
.reservation-hero::before {
  background: radial-gradient(ellipse at 70% 30%, rgba(196,135,90,0.08) 0%, transparent 70%) !important;
}
.reservation-hero-title em {
  color: var(--terra) !important;
  font-style: italic !important;
}
.required-note { color: #8A7860 !important; }

/* Autres pages formulaires */
.reseau-form input,
.reseau-form textarea,
.reseau-form select,
.event-form input,
.event-form textarea,
.event-form select {
  background: rgba(237,224,204,0.05) !important;
  border: 1px solid rgba(237,224,204,0.12) !important;
  color: var(--cream) !important;
}


/* section-warm — fond noir légèrement plus chaud */
.section-warm .section-title { color: var(--cream); }
.section-warm .section-title em { color: var(--terra); }
.section-warm .section-sub { color: var(--steel-dim); }
.section-warm .manifeste-card {
  background: rgba(237,224,204,0.05);
  border-color: rgba(237,224,204,0.12);
}
.section-warm .manifeste-card p { color: var(--steel-dim); }
.section-warm .btn-primary { background: var(--terra); color: #0C0A09; }

/* section-terra-accent (événements) */
.section-terra-accent .manifeste-card {
  background: rgba(237,224,204,0.04);
  border-color: rgba(196,135,90,0.15);
}
.section-terra-accent .manifeste-card:hover {
  border-color: rgba(196,135,90,0.30);
}
.section-terra-accent .manifeste-card p { color: var(--steel-dim); }
.section-terra-accent .section-label { color: rgba(237,224,204,0.50); }
.section-terra-accent .section-title { color: var(--cream); }
.section-terra-accent .section-title em { color: var(--terra); }
.section-terra-accent .section-sub { color: var(--steel-dim); }

/* Bouton dans section crème */
.section-cream .btn-primary {
  background: #1A1208;
  color: var(--cream);
}
.section-cream .btn-primary:hover {
  background: #2A1E0E;
  box-shadow: 0 8px 32px rgba(26,18,8,0.25);
}
/* Esco image dans section crème */
.section-cream .esco-image-wrapper {
  border-color: rgba(26,18,8,0.18);
}
