/* =====================================================
   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;
}
.mobile-nav.open { opacity: 1; }
.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; }

/* ---- 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-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rubrique-card {
  position: relative; border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3; cursor: pointer;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.rubrique-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.rubrique-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform var(--ts);
}
.rubrique-card:hover .rubrique-bg { transform: scale(1.08); }
.rubrique-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,42,39,0.88) 0%, rgba(46,42,39,0.18) 60%, transparent 100%);
  transition: var(--t);
}
.rubrique-card:hover .rubrique-overlay {
  background: linear-gradient(to top, rgba(46,42,39,0.82) 0%, rgba(46,42,39,0.1) 55%, transparent 100%);
}
.rubrique-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem; z-index: 2;
}
.rubrique-ico { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.rubrique-name {
  font-family: var(--font-head); font-size: 1.05rem;
  color: #FDFAF7; margin-bottom: 0.2rem;
}
.rubrique-desc { font-size: 0.75rem; color: rgba(253,250,247,0.75); line-height: 1.4; }
.rubrique-arrow {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent; border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-lt); font-size: 1rem;
  opacity: 0; transition: var(--t);
}
.rubrique-card:hover .rubrique-arrow {
  opacity: 1;
  background: rgba(233,122,43,0.2);
  border-color: rgba(233,122,43,0.5);
}

/* ---- 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); }

/* ---- 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: var(--grad-acc); color: var(--bg);
  padding: 0.8rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.expo-day { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.expo-date-info { font-size: 0.8rem; font-weight: 700; }
.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); }

/* ---- 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) + 4rem) 0 4rem;
  text-align: center;
  background: linear-gradient(160deg, #F7F3EE 0%, #EDE3D8 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-acc-h);
}
.ph-icon { margin-bottom: 1rem; display: block; animation: float 7s ease-in-out infinite; }
.ph-icon img {
  width: 130px; height: 130px; object-fit: cover; border-radius: 50%;
  border: 3px solid rgba(233,122,43,0.45);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  display: block; margin: 0 auto;
}
.ph-icon i { font-size: 3rem; color: var(--accent); }
.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;
}
.feature-box:hover { border-color: rgba(233,122,43,0.4); box-shadow: var(--shadow-md); }
.fb-image { width: 100%; height: 280px; overflow: hidden; }
.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);
}
.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; }
.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: inline-block; align-self: flex-end;
  color: var(--accent-dk); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.4px; cursor: pointer;
  background: none; border: none; padding: 0;
  text-decoration: underline; text-underline-offset: 3px;
  font-family: var(--font-body); margin-top: 0.75rem;
  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; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.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: 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; }
}

/* ---- 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; }
