/* =====================================================
   CET ART QUE J'AIME — Feuille de style principale
   Charte graphique Premium — Crème & Ambre
   ===================================================== */

/* ---- 1. VARIABLES ---- */
:root {
  /* Fonds */
  --bg:           #F7F3EE;
  --bg-section:   #EFE6DC;
  --bg-card:      #FDFAF7;

  /* Textes */
  --text:         #2E2A27;
  --text-sec:     #5C4635;
  --text-light:   #8A7B70;
  --text-pale:    #B5A89A;

  /* Accent */
  --accent:       #E97A2B;
  --accent-lt:    #F2B38A;
  --accent-dk:    #C45F15;

  /* Boutons */
  --btn-bg:       #9B7B5A;
  --btn-hov:      #7A5D47;
  --btn-txt:      #F7F3EE;

  /* Bordures */
  --border:       rgba(46,42,39,0.13);
  --border-lt:    rgba(46,42,39,0.07);

  /* Ombres légères */
  --shadow-sm:    0 4px 18px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.11);

  /* Dégradés accent */
  --grad-acc:     linear-gradient(135deg, #C45F15 0%, #E97A2B 55%, #F2B38A 100%);
  --grad-acc-h:   linear-gradient(90deg,  #C45F15 0%, #E97A2B 55%, #F2B38A 100%);

  /* Typographie */
  --font-head: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;

  --nav-h:  80px;
  --nav-hs: 62px;
  --max-w:  1280px;
  --r:      6px;
  --rl:     12px;
  --t:      0.3s ease;
  --ts:     0.6s ease;
}

/* ---- 2. RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--t); }
a:hover { color: var(--accent-dk); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- 3. TYPOGRAPHIE ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

.gold-text {
  background: var(--grad-acc);
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

/* ---- 4. SÉPARATEUR ---- */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--grad-acc-h);
  margin: 1.25rem 0;
  border: none;
}
.gold-divider.center { margin: 1.25rem auto; }

/* ---- 5. BOUTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--t);
  cursor: pointer;
}
.btn-gold {
  background: var(--btn-bg);
  color: var(--btn-txt);
  border: none;
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--btn-hov);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--btn-txt);
}
.btn-outline {
  background: transparent;
  color: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
}
.btn-outline:hover {
  background: var(--btn-bg);
  color: var(--btn-txt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-sm { padding: 0.55rem 1.35rem; font-size: 0.78rem; }

/* ---- 6. CONTAINER ---- */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
}

/* ---- 7. HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height var(--t), background var(--t), box-shadow var(--t);
  background: rgba(247,243,238,0.97);
  border-bottom: 1px solid var(--border-lt);
}
.site-header.scrolled {
  height: var(--nav-hs);
  background: rgba(247,243,238,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; }
.site-logo img {
  height: 72px; width: auto;
  transition: height var(--t), filter var(--t);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.30));
}
.site-header.scrolled .site-logo img { height: 50px; }

/* ---- 8. NAVIGATION ---- */
.nav-list {
  display: flex; align-items: center; gap: 0.2rem; list-style: none;
}
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.6rem 0.95rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: var(--t);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px; background: var(--accent);
  transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { left: 0.95rem; right: 0.95rem; }
.nav-link .arr { font-size: 0.55rem; color: var(--accent); transition: transform 0.3s; }
.nav-item:hover .arr { transform: rotate(180deg); }

/* ---- 9. DROPDOWN MEGA MENU ---- */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 620px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-label {
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.dd-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  color: var(--text-sec);
  font-size: 0.84rem; font-weight: 500;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: var(--t);
}
.dd-link:hover {
  color: var(--accent-dk);
  background: rgba(233,122,43,0.07);
  border-color: rgba(233,122,43,0.2);
}

/* ---- 10. MOBILE TOGGLE ---- */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; z-index: 1100;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--t);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  overflow-y: auto;
  padding: 5.5rem 1.5rem 2rem;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mob-link {
  display: block; padding: 1rem;
  color: var(--text);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.mob-link:hover { color: var(--accent); padding-left: 1.5rem; }
.mob-subnav { padding: 0.4rem 0 0.4rem 1rem; }
.mob-sub-link {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  color: var(--text-light); font-size: 0.88rem; transition: var(--t);
}
.mob-sub-link:hover { color: var(--accent); }
.mob-sub-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-dk); padding: 0.75rem;
}

/* ---- 11. HERO ---- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
#hero-canvas { display: none; }

/* Bandeau image pleine largeur */
.hero-banner {
  position: relative; width: 100%;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-img {
  width: 100%; max-height: 82vh; min-height: 440px;
  object-fit: cover; display: block;
}
.hero-banner-overlay {
  position: absolute; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.22) 42%, transparent 65%);
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 10vw 0 0 20vw;
}
.hero-overlay-text {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem;
  max-width: 600px; animation: fadeInUp 1.2s ease both;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  color: #FDFAF7; font-style: italic;
  text-align: left; letter-spacing: 0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65);
  line-height: 1.2; margin: 0;
  white-space: nowrap;
}
.hero-tagline-sub {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  color: rgba(253,250,247,0.85);
  text-align: left; letter-spacing: 0.3px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.65);
  line-height: 1.65; max-width: 420px;
  font-weight: 400;
}

/* Contenu sous l'image */
.hero-content {
  text-align: center; padding: 2.25rem 2rem 1rem;
  animation: fadeInUp 0.9s 0.15s ease both;
}
.hero-sub {
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  color: var(--text-light);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-overlay  { display: none; }
.hero-cover    { display: none; }
.hero-scroll   { display: none; }
.hero-scroll-line { display: none; }

/* ---- 11b. HERO V2 (accueil — maquette luxe) ---- */
.hero-v2 {
  padding: var(--nav-h) 0 0;
  background: #17120d;
}
.hero-v2-media { position: relative; width: 100%; overflow: hidden; }
.hero-v2-img {
  width: 100%;
  height: clamp(540px, 84vh, 840px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-v2-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 72% 82% at 50% 48%, rgba(23,18,13,0.62) 0%, rgba(23,18,13,0.30) 45%, rgba(23,18,13,0.04) 100%),
    linear-gradient(to bottom, rgba(23,18,13,0.32) 0%, rgba(23,18,13,0.04) 30%, rgba(23,18,13,0.48) 100%);
}
.hero-v2-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  animation: fadeInUp 1s ease both;
}
.hero-v2-label {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.3vw, 0.82rem);
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: #E3B65B;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-v2-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  font-weight: 600; line-height: 1.1;
  color: #FDFAF7;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero-v2-sub {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  line-height: 1.7;
  color: rgba(253,250,247,0.92);
  max-width: 640px;
  margin: 0 0 2.25rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}
.hero-v2-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-hero-outline {
  background: rgba(253,250,247,0.05);
  color: #F2E3C8;
  border: 1.5px solid rgba(227,182,91,0.75);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .hero-v2-img { height: clamp(440px, 72vh, 640px); }
  .hero-v2-cta { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-v2-cta .btn { width: 100%; justify-content: center; }
}

/* ---- 11c. SECTION L'UNIVERS (accueil) ---- */
.univers { padding: 6.5rem 0; background: var(--bg); }
.univers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.univers-label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent);
}
.univers-rule {
  display: flex; align-items: center; gap: 0.4rem;
  margin: 1rem 0 1.75rem;
  color: var(--accent);
}
.univers-rule span {
  width: 90px; height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(233,122,43,0.15));
}
.univers-rule i { font-size: 0.5rem; }
.univers-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.univers-mini { color: var(--accent); font-size: 0.6rem; margin-bottom: 1.5rem; }
.univers-lead {
  color: var(--accent-dk);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.univers-text p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.univers-text .hl { color: var(--accent-dk); font-weight: 600; }
.univers-media img {
  width: 100%;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}
.univers-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.uv-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  text-align: center;
}
.uv-item i { color: var(--accent); font-size: 1.5rem; }
.uv-item span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-light);
}
@media (max-width: 900px) {
  .univers-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .univers-media { order: -1; }
  .univers-media img { max-height: 460px; }
}
@media (max-width: 700px) {
  .univers-values { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
}

/* ---- 12. SECTIONS ---- */
section { padding: 6rem 0; }
.section-head { margin-bottom: 3.5rem; text-align: center; }
.section-head .gold-divider { margin: 1rem auto; }
.section-title { font-family: var(--font-head); margin-bottom: 0.75rem; }
.section-sub { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.bg-soft { background: var(--bg-card); }

/* ---- 13. CARTES RUBRIQUES ---- */
#rubriques { background: var(--bg-card); padding: 4rem 0 0; }
#rubriques .section-head { margin-bottom: 2.5rem; }
.rubriques-band { background: var(--bg-section); padding: 3.5rem 0 5rem; }
.rubriques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Carte claire : photo en haut, texte lisible sur fond blanc en dessous */
.rubrique-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.rubrique-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233,122,43,0.4);
  box-shadow: var(--shadow-md);
}
.rubrique-photo { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; flex-shrink: 0; }
.rubrique-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--ts);
}
.rubrique-card:hover .rubrique-photo img { transform: scale(1.05); }
.rubrique-info { padding: 1.05rem 1.15rem 1.25rem; }
.rubrique-name {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}
.rubrique-desc {
  font-size: 0.88rem; line-height: 1.5;
  color: var(--text-sec);
}

/* Cartes rubriques « bientôt disponible » (sans photo) */
.rubrique-card--soon .rubrique-bg {
  background: linear-gradient(150deg, #8a6a45 0%, #4a3626 55%, #2a1f17 100%);
}
.rubrique-ico-lg {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.9rem;
  color: rgba(242, 179, 138, 0.5);
  z-index: 1;
  transition: transform var(--ts), color var(--t);
}
.rubrique-card--soon:hover .rubrique-ico-lg {
  transform: translate(-50%, -55%) scale(1.08);
  color: rgba(242, 179, 138, 0.75);
}
.rubrique-card--soon .rubrique-body { z-index: 2; }
.rubrique-card--soon .rubrique-desc {
  color: rgba(253, 250, 247, 0.6);
  font-style: italic;
}

/* ---- 14. ARTICLES ---- */
.articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}
.article-card {
  background: var(--bg-section);
  border-radius: var(--rl); overflow: hidden;
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.article-card:hover {
  border-color: rgba(233,122,43,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.article-card.featured { grid-row: span 2; }
.article-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.article-card.featured .article-thumb { aspect-ratio: 3/2; }
.article-thumb-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform var(--ts);
}
.article-card:hover .article-thumb-bg { transform: scale(1.05); }
.article-cat {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  background: rgba(233,122,43,0.1);
  border: 1px solid rgba(233,122,43,0.28);
  color: var(--accent-dk);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 4px; margin-bottom: 0.6rem;
}
.article-body { padding: 1.25rem; }
.article-title {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--text); margin-bottom: 0.45rem; line-height: 1.35;
}
.article-card.featured .article-title { font-size: 1.5rem; }
.article-excerpt { color: var(--text-light); font-size: 0.87rem; line-height: 1.6; margin-bottom: 0.9rem; }
.article-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.73rem; color: var(--text-pale);
}
.article-meta .dot { color: var(--accent-lt); }

/* ---- 14b. DÉCOUVERTES (composition éditoriale) ---- */
.decouvertes-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  min-height: 580px;
}
.dec-card--main { grid-column: 1; grid-row: 1 / 3; }
.dec-card--tall { grid-column: 2; grid-row: 1 / 3; }
.dec-card {
  position: relative;
  display: flex; align-items: flex-end;
  border-radius: var(--rl);
  overflow: hidden;
  background-size: cover; background-position: center;
  text-decoration: none;
  min-height: 260px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.dec-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dec-card img,
.dec-card .dec-bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--ts); }
.dec-card:hover { }
.dec-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.92) 0%, rgba(20,15,10,0.42) 42%, rgba(20,15,10,0.05) 100%);
  transition: background var(--t);
}
.dec-card:hover .dec-overlay {
  background: linear-gradient(to top, rgba(20,15,10,0.94) 0%, rgba(20,15,10,0.35) 48%, rgba(20,15,10,0.02) 100%);
}
.dec-body { position: relative; z-index: 2; padding: 2rem; }
.dec-cat {
  display: block;
  color: var(--accent-lt);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.dec-title {
  font-family: var(--font-head);
  font-size: 1.85rem; font-weight: 600; line-height: 1.1;
  color: #FDFAF7;
  margin-bottom: 0.5rem;
}
.dec-card--main .dec-title { font-size: 2.6rem; }
.dec-card--tall .dec-title { font-size: 2.1rem; }
.dec-desc { color: rgba(253,250,247,0.82); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.1rem; }
.dec-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent-lt);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
}
.dec-link i { transition: transform var(--t); }
.dec-card:hover .dec-link i { transform: translateX(5px); }
@media (max-width: 900px) {
  .decouvertes-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; min-height: 0; }
  .dec-card--main, .dec-card--tall { grid-column: auto; grid-row: auto; }
  .dec-card--main { grid-column: 1 / 3; }
  .dec-card { min-height: 300px; }
  .dec-card--main .dec-title { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .decouvertes-grid { grid-template-columns: 1fr; }
  .dec-card--main { grid-column: 1; }
}

/* ---- 14c. PARTENAIRE À LA UNE (premium) ---- */
.partner {
  padding: 6.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-mini { color: var(--accent); font-size: 0.6rem; margin-bottom: 1.1rem; }
.partner-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.partner-media img {
  width: 100%;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}
.partner-cat {
  display: inline-block;
  color: var(--accent);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(233,122,43,0.4);
  margin-bottom: 1.25rem;
}
.partner-name {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600; line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.partner-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent-dk);
  margin-bottom: 1.5rem;
}
.partner-body p { color: var(--text-sec); line-height: 1.8; margin-bottom: 1.1rem; font-size: 0.96rem; }
.partner-sep { color: var(--accent); font-size: 0.6rem; margin: 1.5rem 0; }
.partner-body .btn { margin-top: 0.25rem; }
.partner-mention { font-size: 0.8rem; color: var(--text-light); margin-top: 1.25rem !important; }
.partner-mention strong { color: var(--accent-dk); font-weight: 600; }
.partner-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
}
.pv-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; }
.pv-item i { color: var(--accent); font-size: 1.4rem; margin-bottom: 0.45rem; }
.pv-t { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-sec); }
.pv-s { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.4px; }
@media (max-width: 900px) {
  .partner-card { grid-template-columns: 1fr; gap: 2rem; }
  .partner-values { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1rem; }
}

/* ---- 14d. VOUS ÊTES PROFESSIONNEL (B2B) ---- */
.pro { padding: 6.5rem 0; background: var(--bg-section); }
.pro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pro-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
}
.pro-label i { font-size: 0.55rem; }
.pro-rule { display: flex; align-items: center; gap: 0.5rem; margin: 1rem 0 1.75rem; color: var(--accent); }
.pro-rule span { width: 80px; height: 1px; background: linear-gradient(to right, rgba(233,122,43,0.15), var(--accent)); }
.pro-rule span:last-child { background: linear-gradient(to right, var(--accent), rgba(233,122,43,0.15)); }
.pro-rule i { font-size: 0.5rem; }
.pro-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.pro-lead { color: var(--accent-dk); font-weight: 600; font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.5rem; }
.pro-text p { color: var(--text-sec); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }
.pro-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.pro-media img { width: 100%; border-radius: var(--rl); box-shadow: var(--shadow-lg); display: block; object-fit: cover; max-height: 600px; }
.pro-values {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 4.5rem; padding-top: 3rem; border-top: 1px solid var(--border);
}
.prov-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; }
.prov-item i { color: var(--accent); font-size: 1.5rem; margin-bottom: 0.5rem; }
.prov-t { font-size: 0.74rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-sec); }
.prov-s { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; max-width: 220px; }
@media (max-width: 900px) {
  .pro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pro-media { order: -1; }
  .pro-values { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

/* ---- 14e. NOS CORRESPONDANTS (réseau + carte) ---- */
.reseau { padding: 6.5rem 0; background: var(--bg-section); }
.reseau-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.reseau-label { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.reseau-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; line-height: 1.12; color: var(--text); margin: 1rem 0 0; }
.reseau-rule { display: flex; align-items: center; gap: 0.5rem; margin: 1.25rem 0 1.5rem; color: var(--accent); }
.reseau-rule span { width: 70px; height: 1px; background: linear-gradient(to right, rgba(233,122,43,0.15), var(--accent)); }
.reseau-rule span:last-child { background: linear-gradient(to right, var(--accent), rgba(233,122,43,0.15)); }
.reseau-rule.center { justify-content: center; }
.reseau-rule i { font-size: 0.5rem; }
.reseau-text p { color: var(--text-sec); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }
.reseau-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.reseau-map { position: relative; min-height: 440px; }
.reseau-france-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.reseau-france { position: absolute; inset: 0; width: 100%; height: 100%; }
.reseau-france .rf-land { fill: rgba(233,122,43,0.09); stroke: rgba(196,95,21,0.30); stroke-width: 2; stroke-linejoin: round; }
.reseau-france .rf-region { fill: rgba(196,95,21,0.28); stroke: rgba(196,95,21,0.55); stroke-width: 1.5; stroke-linejoin: round; }
.reseau-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  color: var(--accent-dk);
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.28));
  pointer-events: none;
}
.reseau-regions { position: absolute; top: 2%; right: 4%; display: flex; flex-direction: column; align-items: center; }
.rr-num { font-family: var(--font-head); font-size: 2.4rem; color: var(--accent-dk); line-height: 1; }
.rr-sep { width: 1px; height: 16px; background: var(--accent); margin: 0.35rem 0; }
.rr-t { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-sec); }
.rr-s { font-size: 0.75rem; color: var(--text-light); }
.reseau-corr {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  padding: 0.9rem 1.4rem;
  text-align: center;
  min-width: 130px;
}
.reseau-corr--1 { left: 20%; top: 46%; }
.reseau-corr--2 { left: 55%; top: 54%; }
.rc-name { font-family: var(--font-head); font-size: 1.15rem; color: var(--text); }
.rc-role { font-family: var(--font-head); font-style: italic; font-size: 0.82rem; color: var(--accent); }
.rc-zone { font-size: 0.64rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-top: 0.3rem; }

.reseau-values-head { text-align: center; margin-top: 5rem; }
.reseau-values-head h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-dk); }
.reseau-values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 2.5rem; }
.rv-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 0 1.25rem; border-left: 1px solid var(--border); }
.rv-item:first-child { border-left: none; }
.rv-item i { color: var(--accent); font-size: 1.4rem; margin-bottom: 0.4rem; }
.rv-t { font-size: 0.74rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-sec); }
.rv-s { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; }

.reseau-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 4rem; padding: 2rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
}
.rs-item { display: flex; align-items: center; justify-content: center; gap: 0.85rem; }
.rs-item > i { color: var(--accent); font-size: 1.5rem; }
.rs-num { font-family: var(--font-head); font-size: 2rem; color: var(--accent-dk); line-height: 1; }
.rs-txt { display: flex; flex-direction: column; text-align: left; }
.rs-t { font-size: 0.74rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-sec); }
.rs-s { font-size: 0.75rem; color: var(--text-light); }

@media (max-width: 900px) {
  .reseau-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reseau-map { min-height: 360px; }
  .reseau-values { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1rem; }
  .rv-item { border-left: none; padding: 0 0.5rem; }
  .reseau-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---- 14f. INSPIRATIONS (éditorial magazine) ---- */
.inspirations { padding: 7rem 0; background: var(--bg); }
.insp-mini { color: var(--accent); font-size: 0.6rem; margin: 0.9rem 0 1.1rem; }
.insp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 0.5rem; }
.insp-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--rl);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.insp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.insp-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.insp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--ts); }
.insp-card:hover .insp-photo img { transform: scale(1.05); }
.insp-body { padding: 1.75rem 1.5rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; flex: 1; }
.insp-cat { color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.9rem; }
.insp-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--text); line-height: 1.2; margin-bottom: 0.8rem; }
.insp-desc { color: var(--text-light); font-size: 0.86rem; line-height: 1.65; margin-bottom: 1.25rem; max-width: 300px; }
.insp-arrow { color: var(--accent); font-size: 0.95rem; margin-top: auto; transition: transform var(--t); }
.insp-card:hover .insp-arrow { transform: translateX(5px); }
@media (max-width: 900px) {
  .insp-grid { grid-template-columns: 1fr; gap: 1.75rem; max-width: 400px; margin-left: auto; margin-right: auto; }
  .insp-photo { aspect-ratio: 16 / 10; }
}

/* ---- 15. SECTION SPONSOR / PUB ---- */
.sponsor-section {
  padding: 4.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sponsor-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: rgba(233,122,43,0.09);
  border: 1px solid rgba(233,122,43,0.3);
  border-radius: 20px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent-dk);
  margin-bottom: 1.5rem;
}
.sponsor-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sponsor-card::before {
  content: '';
  position: absolute; top: -50%; right: -15%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(233,122,43,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.sponsor-logo-box {
  flex-shrink: 0;
  width: 280px; height: 320px;
  border-radius: var(--r);
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sponsor-logo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sponsor-info { flex: 1; }
.sponsor-name { font-family: var(--font-head); font-size: 1.7rem; color: var(--text); margin-bottom: 0.3rem; }
.sponsor-slogan { font-family: var(--font-head); font-style: italic; font-size: 1rem; color: var(--accent); margin-bottom: 0.75rem; }
.sponsor-desc { color: var(--text-sec); font-size: 0.9rem; margin-bottom: 1.25rem; max-width: 480px; }
.sponsor-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.sponsor-tag {
  padding: 0.28rem 0.7rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--text-light); font-size: 0.75rem; border-radius: 20px;
}
.sponsor-cta { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.sponsor-phone { color: var(--accent-dk); font-weight: 700; font-size: 0.9rem; }

.pub-slot-empty {
  border: 2px dashed rgba(233,122,43,0.3);
  border-radius: var(--rl);
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(233,122,43,0.03);
}
.pub-slot-empty h3 { color: var(--accent); margin-bottom: 0.75rem; }
.pub-slot-empty p { color: var(--text-light); max-width: 500px; margin: 0 auto 1.5rem; font-size: 0.9rem; }

/* ---- 16. EXPOSITIONS ---- */
.expos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.expo-card {
  background: var(--bg-card);
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.expo-card:hover { border-color: rgba(233,122,43,0.35); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.expo-date-band {
  background: #2E2A27; color: #F7F3EE;
  padding: 0.8rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  border-bottom: 2px solid rgba(212,175,55,0.35);
}
.expo-day { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; line-height: 1; color: #D4AF37; }
.expo-date-info { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: #C8B89A; }
.expo-body { padding: 1.25rem; }
.expo-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 0.35rem; }
.expo-venue { font-size: 0.82rem; color: var(--accent-dk); font-weight: 600; margin-bottom: 0.25rem; }
.expo-loc { font-size: 0.78rem; color: var(--text-light); }
.expo-desc { font-size: 0.83rem; color: var(--text-light); margin-top: 0.6rem; line-height: 1.55; }

/* ---- 17. CORRESPONDANTS ---- */
.correspondants-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.corr-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--bg-section);
  border: 1px solid var(--border-lt); border-radius: var(--rl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t);
}
.corr-card:hover { border-color: rgba(233,122,43,0.35); transform: translateY(-5px); }
.corr-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem;
  border: 2px solid var(--border);
  overflow: hidden;
}
.corr-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.corr-name { font-family: var(--font-head); font-size: 1rem; color: var(--text); margin-bottom: 0.25rem; }
.corr-zone { font-size: 0.8rem; color: var(--accent); font-weight: 700; margin-bottom: 0.5rem; }
.corr-bio { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ---- 18. NEWSLETTER ---- */
.newsletter-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0; text-align: center;
}
.newsletter-ico { font-size: 3.2rem; margin-bottom: 1.5rem; color: var(--accent); }
.newsletter-form {
  display: flex; max-width: 480px; margin: 2rem auto 0;
  border-radius: var(--r); overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nl-input {
  flex: 1; padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
}
.nl-input::placeholder { color: var(--text-pale); }
.nl-btn {
  padding: 1rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-txt);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 1px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: var(--t); white-space: nowrap; font-family: var(--font-body);
}
.nl-btn:hover { background: var(--btn-hov); }
.nl-note { margin-top: 1rem; font-size: 0.73rem; color: var(--text-light); }
.newsletter-form.newsletter-form--expanded {
  flex-direction: column;
  max-width: 420px;
  gap: 0.75rem;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}
.newsletter-form.newsletter-form--expanded .nl-input {
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  flex: none;
  width: 100%;
  box-sizing: border-box;
}
.newsletter-form.newsletter-form--expanded .nl-btn {
  border-radius: var(--r);
  width: 100%;
}
.nl-sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-light);
  cursor: pointer;
  text-align: left;
  padding: 0 0.25rem;
}
.nl-sms-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 15px; height: 15px;
}

/* ---- 18b. NEWSLETTER LUXE (éditorial) ---- */
.newsletter-lux { padding: 7.5rem 0; background: var(--bg-section); position: relative; overflow: hidden; }
.newsletter-lux::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 38%, rgba(233,122,43,0.06), transparent 70%);
  pointer-events: none;
}
.nl-lux-side { position: absolute; top: 0; bottom: 0; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.nl-lux-left {
  left: 0; width: 26%; object-position: left center;
  -webkit-mask-image: linear-gradient(to right, #000 38%, transparent 100%);
  mask-image: linear-gradient(to right, #000 38%, transparent 100%);
}
.nl-lux-right {
  right: 0; width: 19%; object-position: right center;
  -webkit-mask-image: linear-gradient(to left, #000 42%, transparent 100%);
  mask-image: linear-gradient(to left, #000 42%, transparent 100%);
}
@media (max-width: 768px) { .nl-lux-side { display: none; } }
.nl-lux-inner { max-width: 660px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.newsletter-lux .section-title { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 600; line-height: 1.1; margin-bottom: 0.5rem; }
.newsletter-lux .section-sub { margin: 0 auto; }
.nl-lux-mini { color: var(--accent); font-size: 0.6rem; margin: 0.9rem 0 1.2rem; }
.nl-lux-form { max-width: 540px; margin: 2.25rem auto 0; }
.nl-lux-form .nl-btn { display: inline-flex; align-items: center; gap: 0.5rem; }
.nl-lux-note { margin-top: 1.5rem; font-family: var(--font-head); font-style: italic; font-size: 0.95rem; color: var(--text-light); }

/* ---- 18c. CONTACT / PARTENARIATS (2 colonnes) ---- */
.contact-lux { background: var(--bg-section); overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 640px; }
.contact-left { display: flex; align-items: center; justify-content: flex-end; padding: 5.5rem 4rem; }
.contact-left-inner { width: 100%; max-width: 560px; }
.contact-label { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.contact-mini { color: var(--accent); font-size: 0.6rem; margin: 0.9rem 0 1rem; }
.contact-title { font-family: var(--font-head); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; line-height: 1.1; margin-bottom: 0; }
.contact-left-inner .gold-divider { margin: 1.25rem 0 1.5rem; }
.contact-left-inner > p { color: var(--text-sec); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.contact-form { margin-top: 1.75rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { position: relative; margin-bottom: 1rem; }
.cf-field > i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.9rem; pointer-events: none; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--bg-card); font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color var(--t), box-shadow var(--t);
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--text-light); }
.cf-textarea > i { top: 1.1rem; transform: none; }
.cf-field textarea { resize: vertical; min-height: 110px; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,122,43,0.12); }
.cf-select select { -webkit-appearance: none; appearance: none; cursor: pointer; color: var(--text-light); }
.cf-select::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.7rem; pointer-events: none; }
.contact-form .btn { margin-top: 0.5rem; }
.cf-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.9rem; }
.contact-media { position: relative; }
.contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; min-height: 0; }
  .contact-left { padding: 4rem 1.5rem; justify-content: center; }
  .contact-media { height: 320px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---- 19. FOOTER ---- */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { height: 168px; margin-bottom: 1.25rem; }
.footer-about { color: var(--text-light); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 1rem; transition: var(--t);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(233,122,43,0.08); }
.footer-col-h {
  font-family: var(--font-head); font-size: 1rem; color: var(--text);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  color: var(--text-light); font-size: 0.85rem; transition: var(--t);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-link::before { content: '›'; color: var(--accent); }
.footer-link:hover { color: var(--accent-dk); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-light); font-size: 0.85rem; align-items: flex-start; }
.fc-ico { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--text-pale); }
.footer-copy span { color: var(--accent-dk); font-weight: 600; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-pale); transition: var(--t); }
.footer-legal a:hover { color: var(--accent); }

/* ---- 20. ENTÊTE DES PAGES INTERNES ---- */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  text-align: center;
  background: linear-gradient(160deg, #F7F3EE 0%, #EDE3D8 100%);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header.has-cover::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.72) 100%);
  z-index: 0;
}
.page-header.has-cover > * { position: relative; z-index: 1; }
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-acc-h); z-index: 2;
}
.page-header.has-cover h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.page-header.has-cover p { color: rgba(255,255,255,0.85); }
.ph-icon { display: none; }
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { color: var(--text-sec); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ---- 21. FIL D'ARIANE ---- */
.breadcrumb {
  padding: 1rem 0;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--accent-lt); }
.breadcrumb .cur { color: var(--accent-dk); }

/* ---- 22. PAGES INTERNES ---- */
.page-content { padding: 4rem 0 6rem; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.article-main p { color: var(--text-sec); margin-bottom: 1.25rem; line-height: 1.85; font-size: 0.975rem; }
.article-main h2 {
  font-size: 1.6rem; color: var(--text);
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.article-main h3 { font-size: 1.25rem; color: var(--accent-dk); margin: 2rem 0 0.75rem; }
.article-main blockquote {
  margin: 2rem 0; padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: rgba(233,122,43,0.06);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-head); font-style: italic;
  color: var(--text-sec); font-size: 1.1rem; line-height: 1.65;
}
.article-main ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-main ul li { color: var(--text-sec); font-size: 0.975rem; margin-bottom: 0.5rem; line-height: 1.7; list-style: disc; }
.article-main ul li::marker { color: var(--accent); }

/* ---- 23. SIDEBAR ---- */
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border-lt);
  border-radius: var(--rl); padding: 1.5rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-title {
  font-family: var(--font-head); font-size: 1rem; color: var(--text);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.sidebar-title .ico { color: var(--accent); }
.sidebar-list { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-item { display: flex; gap: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-lt); }
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-thumb {
  width: 58px; height: 58px; border-radius: var(--r);
  flex-shrink: 0; overflow: hidden; background: var(--bg-section);
}
.sidebar-thumb-bg { width: 100%; height: 100%; background-size: cover; background-position: center; }
.sidebar-info-title { font-size: 0.84rem; color: var(--text); line-height: 1.3; margin-bottom: 0.25rem; }
.sidebar-info-meta { font-size: 0.73rem; color: var(--text-light); }

/* ---- 24. FEATURE BOX ---- */
.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--rl); overflow: hidden;
  margin: 2.5rem 0; box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.feature-boxes-grid .feature-box { margin: 0; }
.feature-box:hover { border-color: rgba(233,122,43,0.4); box-shadow: var(--shadow-md); }
.fb-image { width: 100%; height: 280px; overflow: hidden; flex-shrink: 0; }
.fb-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.feature-box:hover .fb-image img { transform: scale(1.04); }
.fb-identity {
  padding: 1.25rem 2rem 0.85rem;
  border-bottom: 1px solid var(--border-lt);
  flex-shrink: 0;
}
.fb-name { font-family: var(--font-head); font-size: 1.45rem; color: var(--text); }
.fb-sub { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-top: 0.2rem; }
.feature-box-body { padding: 1.5rem 2rem 1rem; display: flex; flex-direction: column; flex: 1; }
.feature-box-body p { color: var(--text-sec); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.feature-box-body ul { color: var(--text-sec); font-size: 0.92rem; line-height: 1.8; padding-left: 1.2rem; margin-bottom: 1rem; }
.fb-gallery-trigger {
  display: block; align-self: flex-end;
  margin-top: auto; padding-top: 1.25rem;
  color: var(--accent-dk); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.4px; cursor: pointer;
  background: none; border: none; padding-left: 0; padding-right: 0; padding-bottom: 0;
  text-decoration: underline; text-underline-offset: 3px;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.fb-gallery-trigger:hover { color: var(--accent); }
.feature-box-footer {
  padding: 1rem 2rem;
  background: rgba(233,122,43,0.05);
  border-top: 1px solid rgba(233,122,43,0.1);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem;
  flex-shrink: 0;
}
.feature-box-footer a { color: var(--accent-dk); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.feature-box-footer a:hover { color: var(--accent); text-decoration: underline; }

/* ---- 24b. GALERIE MODALE ---- */
.gallery-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
}
.gallery-modal.open { display: flex; }
.gallery-modal-overlay { position: absolute; inset: 0; background: rgba(46,42,39,0.72); cursor: pointer; }
.gallery-modal-box {
  position: relative; z-index: 1;
  width: 92vw; max-width: 1000px; max-height: 88vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-y: auto; padding: 1.5rem;
}
.gallery-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.gallery-modal-title { font-family: var(--font-head); color: var(--accent-dk); font-size: 1.1rem; }
.gallery-modal-close {
  background: rgba(233,122,43,0.1); border: 1px solid rgba(233,122,43,0.35);
  color: var(--accent-dk); border-radius: 50%; width: 34px; height: 34px;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.gallery-modal-close:hover { background: rgba(233,122,43,0.22); }
.gallery-modal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.75rem; }
.gallery-modal-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 6px; border: 1px solid var(--border-lt);
  cursor: zoom-in; transition: transform 0.2s, border-color 0.2s; display: block;
}
.gallery-modal-grid img:hover { transform: scale(1.02); border-color: rgba(233,122,43,0.4); }

/* ---- 25. GRILLE PHOTOS ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.gallery-item {
  aspect-ratio: 1; border-radius: var(--r); overflow: hidden;
  background: var(--bg-section); border: 1px solid var(--border-lt);
  transition: var(--t); cursor: pointer;
}
.gallery-item:hover { border-color: var(--accent); transform: scale(1.02); box-shadow: var(--shadow-sm); }
.gallery-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform var(--ts); }
.gallery-item:hover .gallery-bg { transform: scale(1.1); }

/* ---- 26. BONNES ADRESSES ---- */
.adresses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.adresse-card {
  background: var(--bg-card); border: 1px solid var(--border-lt);
  border-radius: var(--rl); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.adresse-card:hover { border-color: rgba(233,122,43,0.35); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.adresse-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.65rem;
  background: transparent; border: 1px solid rgba(233,122,43,0.6);
  color: var(--accent-dk); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; z-index: 3;
}
.adresse-ico { font-size: 2rem; margin-bottom: 0.7rem; display: none; }
.adresse-img { width: 100%; height: 140px; border-radius: 8px; overflow: hidden; margin-bottom: 0.75rem; }
.adresse-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.adresse-card:hover .adresse-img img { transform: scale(1.05); }
.adresse-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 0.25rem; }
.adresse-city { color: var(--accent); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.7rem; }
.adresse-desc { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.filter-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-light); border-radius: 20px; font-size: 0.85rem;
  cursor: pointer; transition: var(--t); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent); color: var(--accent-dk);
  background: rgba(233,122,43,0.07);
}

/* ---- 27. EXPOS ---- */
.expos-list { display: flex; flex-direction: column; gap: 1.5rem; }
.expo-list-item {
  background: var(--bg-card); border: 1px solid var(--border-lt);
  border-radius: var(--rl); padding: 1.75rem;
  display: flex; gap: 2rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.expo-list-item:hover { border-color: rgba(233,122,43,0.35); transform: translateX(5px); box-shadow: var(--shadow-md); }
.expo-cal {
  flex-shrink: 0; width: 80px; text-align: center;
  background: rgba(233,122,43,0.08);
  border: 1px solid rgba(233,122,43,0.2); border-radius: var(--r); padding: 0.75rem;
}
.expo-cal-d { font-family: var(--font-head); font-size: 2rem; color: var(--accent-dk); line-height: 1; }
.expo-cal-m { font-size: 0.73rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.expo-list-body { flex: 1; }
.expo-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 0.45rem;
}
.status-en-cours { color: #3a9a3a; }
.status-a-venir  { color: var(--accent); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
.expo-list-title { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 0.3rem; }
.expo-list-venue { color: var(--text-sec); font-size: 0.87rem; margin-bottom: 0.45rem; }
.expo-list-desc { color: var(--text-light); font-size: 0.84rem; line-height: 1.6; }

/* ---- SECTION CORRESPONDANTS (accueil) ---- */
.corr-banner { margin-bottom: 2.5rem; border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow-md); }
.corr-banner-img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.corr-join-text { max-width: 780px; margin: 0 auto; }
.corr-join-title {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text); margin-bottom: 1.25rem;
}
.corr-join-text p { color: var(--text-sec); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.corr-list { padding-left: 1.4rem; margin-bottom: 1rem; }
.corr-list li { color: var(--text-sec); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.25rem; list-style: none; padding-left: 1rem; position: relative; }
.corr-list li::before { content: '›'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.corr-join-cta-line { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent-dk) !important; margin-top: 1.5rem !important; }

/* ---- PAGE NOS CORRESPONDANTS ---- */
.corr-page-banner { width: 100%; overflow: hidden; box-shadow: var(--shadow-md); }
.corr-page-banner-img { width: 100%; max-height: 552px; object-fit: cover; display: block; }
.corr-page-content { max-width: 820px; margin: 0 auto 4rem; }
.corr-intro { font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-sec); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.corr-page-content p { color: var(--text-sec); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; }
.corr-h2 { font-family: var(--font-head); font-size: clamp(1.25rem, 2.2vw, 1.75rem); color: var(--text); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }

/* Formulaire correspondants */
.corr-form-section { background: var(--bg-section); border-radius: var(--rl); padding: 3rem 2.5rem; margin-bottom: 4rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.corr-form { max-width: 680px; margin: 0 auto; }
.corr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.corr-form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.corr-label { font-size: 0.84rem; font-weight: 600; color: var(--text-sec); letter-spacing: 0.3px; }
.req { color: var(--accent); }
.corr-input {
  padding: 0.85rem 1rem; border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.corr-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,122,43,0.12); }
.corr-input::placeholder { color: var(--text-pale); }
.corr-textarea { resize: vertical; min-height: 130px; }
@media (max-width: 600px) { .corr-form-row { grid-template-columns: 1fr; } .corr-form-section { padding: 2rem 1.25rem; } }

/* ---- 28. NOS CORRESPONDANTS ---- */
.corr-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.corr-full-card {
  background: var(--bg-card); border: 1px solid var(--border-lt);
  border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.corr-full-card:hover { border-color: rgba(233,122,43,0.35); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.corr-card-head {
  background: rgba(233,122,43,0.05);
  padding: 2rem; text-align: center;
  border-bottom: 1px solid var(--border-lt);
}
.corr-av-lg {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 1rem;
  border: 3px solid rgba(233,122,43,0.35);
  overflow: hidden;
}
.corr-av-lg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.corr-full-name { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 0.25rem; }
.corr-full-zone { color: var(--accent); font-size: 0.82rem; font-weight: 700; margin-bottom: 0.35rem; }
.corr-full-spec { font-size: 0.78rem; color: var(--text-light); font-style: italic; }
.corr-card-body { padding: 1.5rem; }
.corr-full-bio { color: var(--text-sec); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.corr-contact { display: flex; align-items: center; gap: 0.5rem; color: var(--accent-dk); font-size: 0.82rem; font-weight: 600; }

/* ---- 29. RETOUR EN HAUT ---- */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--btn-bg); color: var(--btn-txt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--t);
  z-index: 500; box-shadow: var(--shadow-md); border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--btn-hov); }

/* ---- 30. ANIMATIONS ---- */
@keyframes accentShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.4); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---- 31. RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .articles-grid         { grid-template-columns: 1fr 1fr; }
  .article-card.featured { grid-column: span 2; }
  .correspondants-grid   { grid-template-columns: repeat(2, 1fr); }
  .expos-grid            { grid-template-columns: 1fr 1fr; }
  .content-grid          { grid-template-columns: 1fr; }
  .corr-full-grid        { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav    { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav  { display: block; }
  .sponsor-card { flex-direction: column; text-align: center; }
  .sponsor-cta  { width: 100%; }
  .rubriques-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img { max-height: 65vh; min-height: 300px; }
  .hero-banner-overlay { padding: 1.5rem 0 0 2rem; }
  .hero-overlay-text { max-width: 72vw; }
  .hero-tagline { white-space: normal; font-size: clamp(1.4rem, 5vw, 2rem); }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: 1; }
  .expos-grid { grid-template-columns: 1fr; }
  .correspondants-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-img { max-height: 55vh; min-height: 240px; }
  .hero-banner-overlay { padding: 0 1.25rem 2.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .expo-list-item { flex-direction: column; gap: 1rem; }
  .corr-full-grid { grid-template-columns: 1fr; }
  .adresses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .rubriques-grid { gap: 0.9rem; }
  .rubrique-info  { padding: 0.85rem 0.8rem 1rem; }
  .rubrique-name  { font-size: 0.66rem; letter-spacing: 1.2px; margin-bottom: 0.35rem; }
  .rubrique-desc  { font-size: 0.76rem; line-height: 1.45; }
}
@media (max-width: 480px) {
  .correspondants-grid { grid-template-columns: 1fr; }
  .rubriques-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-cta            { flex-direction: column; align-items: center; }
  .newsletter-form     { flex-direction: column; }
  .nl-btn              { border-radius: 0 0 var(--r) var(--r); }
}

/* ---- RUBRIQUE PAGES NOUVELLE STRUCTURE ---- */
.rubrique-banner { width: 100%; overflow: hidden; margin-bottom: 0; }
.rubrique-banner img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.rubrique-texte { background: var(--bg-section); padding: 4rem 0; }
.rubrique-article { max-width: 900px; margin: 0 auto; }
.rubrique-article h2 { font-family: var(--font-head); font-size: clamp(1.35rem, 2.5vw, 1.9rem); color: var(--text); margin: 2.25rem 0 0.85rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.rubrique-article h3 { font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--text-sec); margin: 1.5rem 0 0.5rem; }
.rubrique-article p { color: var(--text-sec); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; }
.rubrique-article ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.rubrique-article li { color: var(--text-sec); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.15rem; list-style: none; padding-left: 0.8rem; position: relative; }
.rubrique-article li::before { content: '›'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.rubrique-article .rubrique-cta { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent-dk) !important; margin-top: 1.5rem !important; font-style: italic; }
.rubrique-article blockquote { border-left: 3px solid var(--accent); padding: 0.75rem 1.25rem; margin: 1.5rem 0; background: rgba(233,122,43,0.05); border-radius: 0 var(--r) var(--r) 0; }
.rubrique-article blockquote p { color: var(--text-sec); font-style: italic; margin: 0; }
.feature-boxes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 3rem 0; }
.feature-boxes-grid .feature-box { margin: 0; }

/* ---- EXPO PAGE BANNER ---- */
.expo-page-banner { width: 100%; overflow: hidden; }
.expo-page-banner img { width: 100%; max-height: 480px; object-fit: cover; display: block; }

@media (max-width: 1100px) {
  .feature-boxes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .feature-boxes-grid { grid-template-columns: 1fr; }
  .rubrique-texte { padding: 2.5rem 0; }
}

/* ---- 31b. ÉVÉNEMENT À LA UNE (accueil) ---- */
.event-feature {
  background: #29211A;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.event-feature::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(233,122,43,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.event-feature-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.event-feature-poster {
  display: block;
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t);
  line-height: 0;
}
.event-feature-poster:hover { transform: translateY(-4px) scale(1.01); }
.event-feature-poster img { width: 100%; height: auto; display: block; }
.event-feature-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(233,122,43,0.14);
  border: 1px solid rgba(233,122,43,0.4);
  border-radius: 999px;
  color: var(--accent-lt);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.event-feature-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #FDFAF7;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.event-feature-title span {
  background: var(--grad-acc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.event-feature-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
}
.event-feature-meta span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(253,250,247,0.82);
  font-size: 0.9rem; font-weight: 500;
}
.event-feature-meta i { color: var(--accent); }
.event-feature-desc {
  color: rgba(253,250,247,0.65);
  font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.event-feature-desc strong { color: rgba(253,250,247,0.92); }
.event-feature-tags {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.event-feature-tags span {
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(253,250,247,0.75);
  font-size: 0.76rem;
}
@media (max-width: 900px) {
  .event-feature-inner { grid-template-columns: 1fr; gap: 2rem; }
  .event-feature-poster { max-width: 320px; margin: 0 auto; }
  .event-feature-body { text-align: center; }
  .event-feature-label, .event-feature-meta { justify-content: center; }
  .event-feature-desc { margin-left: auto; margin-right: auto; }
  .event-feature-tags { justify-content: center; }
}

/* ===== PAGE NOS CORRESPONDANTS (refonte) ===== */
.corr-hero { position: relative; padding: var(--nav-h) 0 0; background: #17120d; }
.corr-hero-img { width: 100%; height: clamp(360px, 52vh, 520px); object-fit: cover; object-position: center 28%; display: block; }
.corr-hero-overlay { position: absolute; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(23,18,13,0.58), rgba(23,18,13,0.32) 42%, rgba(23,18,13,0.55)); }
.corr-hero-content { position: absolute; top: var(--nav-h); left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.corr-hero-label { color: #E3B65B; font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.corr-hero-mini { color: #E3B65B; font-size: 0.6rem; margin: 0.9rem 0; }
.corr-hero-title { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; color: #FDFAF7; line-height: 1.1; margin-bottom: 0.75rem; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.corr-hero-sub { font-family: var(--font-head); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.4rem); color: rgba(253,250,247,0.9); text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

.corr-engage { padding: 6rem 0; background: var(--bg); }
.corr-engage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.corr-eng-label, .corr-cta-label { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.corr-eng-mini { color: var(--accent); font-size: 0.6rem; margin: 0.9rem 0 1.1rem; }
.corr-eng-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 600; line-height: 1.12; color: var(--text); margin-bottom: 1.5rem; }
.corr-engage-text p { color: var(--text-sec); font-size: 0.96rem; line-height: 1.85; margin-bottom: 1.1rem; }
.corr-engage-values { display: flex; flex-direction: column; gap: 1.5rem; }
.ceng-item { display: flex; gap: 1.25rem; align-items: flex-start; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-lt); }
.corr-engage-values .ceng-item:last-child { border-bottom: none; padding-bottom: 0; }
.ceng-ico { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(233,122,43,0.35); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; }
.ceng-t { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 0.35rem; }
.ceng-s { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.corr-list-sec { padding: 5rem 0 6rem; background: var(--bg-section); }
.corr-list-head { text-align: center; margin-bottom: 3.5rem; }
.corr-list-head .section-label { display: block; }
.corr-person { display: grid; grid-template-columns: 40% 1fr; background: var(--bg-card); border: 1px solid var(--border-lt); border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 2rem; align-items: stretch; }
.corr-person-photo { position: relative; min-height: 280px; }
.corr-person-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.corr-person-body { padding: 2.25rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.corr-person-zone { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.6rem; }
.corr-person-name { font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; line-height: 1.15; }
.corr-person-role { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.25rem; }
.corr-person-org { font-family: var(--font-head); font-style: italic; color: var(--text-sec); margin-bottom: 0.9rem; }
.corr-person-body p { color: var(--text-sec); font-size: 0.93rem; line-height: 1.75; margin-bottom: 1.25rem; }
.corr-person-contacts { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.corr-person-contact { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--accent-dk); font-size: 0.88rem; font-weight: 500; padding: 0.5rem 1rem; border: 1px solid rgba(233,122,43,0.3); border-radius: var(--r); background: rgba(233,122,43,0.04); transition: var(--t); }
.corr-person-contact:hover { background: rgba(233,122,43,0.1); border-color: var(--accent); color: var(--accent-dk); }
.corr-hero2 { padding-top: var(--nav-h); background: var(--bg); }
.corr-hero2-img { width: 100%; height: auto; display: block; }
.corr-person-lines { display: flex; flex-direction: column; gap: 0.85rem; }
.corr-line { display: inline-flex; align-items: center; gap: 0.85rem; color: var(--text-sec); font-size: 0.95rem; text-decoration: none; transition: color var(--t); }
.corr-line:hover { color: var(--accent-dk); }
.corr-line-ico { width: 38px; height: 38px; border-radius: 50%; background: rgba(233,122,43,0.1); display: inline-flex; align-items: center; justify-content: center; color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }

.corr-mission { padding: 6rem 0; background: var(--bg); }
.corr-mission-inner, .corr-grow-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.corr-mission-title, .corr-grow-title { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.2; margin-bottom: 0; }
.corr-mission-inner p, .corr-grow-inner p { color: var(--text-sec); font-size: 0.96rem; line-height: 1.85; margin-bottom: 1rem; }
.corr-mission-list { max-width: 640px; margin: 1.5rem auto 0; text-align: left; }
.corr-mission-list li { color: var(--text-sec); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.6rem; list-style: none; padding-left: 1.6rem; position: relative; }
.corr-mission-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); position: absolute; left: 0; font-size: 0.72rem; top: 0.35rem; }

.corr-grow { padding: 6rem 0; }

.corr-cta { background: var(--bg-section); padding: 6rem 0; }
.corr-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.corr-cta-media { position: relative; min-height: 480px; border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow-md); }
.corr-cta-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.corr-cta-body { display: flex; align-items: center; }
.corr-cta-inner { max-width: 520px; }
.corr-cta-mini { color: var(--accent); font-size: 0.6rem; margin: 0.9rem 0 1.1rem; }
.corr-cta-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 600; line-height: 1.12; color: var(--text); margin-bottom: 1.5rem; }
.corr-cta-inner p { color: var(--text-sec); font-size: 0.96rem; line-height: 1.8; margin-bottom: 1rem; }
.corr-cta-inner .btn { margin-top: 1rem; }

@media (max-width: 900px) {
  .corr-engage-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .corr-person { grid-template-columns: 1fr; }
  .corr-person-photo { min-height: 240px; }
  .corr-cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .corr-cta-media { min-height: 0; height: 280px; order: -1; }
}

/* ---- 32. UTILITAIRES ---- */
.text-center { text-align: center; }
.text-gold   { color: var(--accent) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 1rem; }
