/* =============================================
   PROFESSEUR JOYEUX - STYLES GLOBAUX
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --vert: #4a7c59;
  --vert-fonce: #2e5339;
  --vert-clair: #e8f5e9;
  --or: #c9a84c;
  --or-clair: #f5e9c8;
  --texte: #2a2a2a;
  --texte-leger: #555;
  --blanc: #fff;
  --gris-clair: #f7f7f5;
  --gris: #e0e0e0;
  --ombre: 0 4px 24px rgba(0,0,0,0.08);
  --ombre-forte: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 4px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.75;
}

a { color: var(--vert-fonce); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--or); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--vert-fonce);
}

/* =============================================
   HEADER & NAVIGATION - ULTRA MODERNE
   ============================================= */
.header-top {
  background: linear-gradient(135deg, #0a1f14 0%, #1a3a25 25%, #0d2218 50%, #1a3a25 75%, #0a1f14 100%);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent) 1;
  position: relative;
  overflow: hidden;
}

.header-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74, 124, 89, 0.1) 0%, transparent 50%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.header-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(201, 168, 76, 0.2) 30%, 
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(201, 168, 76, 0.2) 70%, 
    transparent);
  animation: shimmerSweep 5s infinite;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 16px 0;
}

.header-action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.08em;
  position: relative;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.header-action-link::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, var(--or), transparent, var(--vert));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header-action-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header-action-link:hover::before {
  opacity: 1;
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.header-action-link:hover::after {
  opacity: 1;
}

.header-action-link:hover {
  color: var(--or);
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 
    0 8px 30px rgba(201, 168, 76, 0.3),
    0 0 40px rgba(201, 168, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header-action-link svg {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
}

.header-action-link:hover svg {
  transform: scale(1.2) rotate(-10deg);
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.8));
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(74, 124, 89, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 
    0 4px 30px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--vert) 20%, 
    var(--or) 50%, 
    var(--vert) 80%, 
    transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.site-header.scrolled {
  box-shadow: 
    0 10px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98));
}

.site-header.scrolled::before {
  opacity: 1;
  animation: flowGradient 3s ease-in-out infinite;
}

@keyframes flowGradient {
  0%, 100% { 
    background-position: 0% 50%;
    background-size: 200% 100%;
  }
  50% { 
    background-position: 100% 50%;
    background-size: 200% 100%;
  }
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 8px;
  border-radius: 16px;
}

.logo::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--vert), var(--or), var(--vert));
  border-radius: 4px;
  transition: height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px var(--or);
}

.logo:hover::before {
  height: 70%;
}

.logo:hover {
  transform: translateX(10px) scale(1.02);
  background: radial-gradient(circle at center, rgba(74, 124, 89, 0.05), transparent);
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a3a25 0%, #4a7c59 25%, #2e5339 50%, #4a7c59 75%, #1a3a25 100%);
  background-size: 200% 200%;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blanc);
  box-shadow: 
    0 10px 40px rgba(74, 124, 89, 0.4),
    0 0 0 3px rgba(201, 168, 76, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { 
    box-shadow: 
      0 10px 40px rgba(74, 124, 89, 0.4),
      0 0 0 3px rgba(201, 168, 76, 0.2),
      inset 0 2px 0 rgba(255, 255, 255, 0.3),
      inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  }
  50% { 
    box-shadow: 
      0 15px 50px rgba(74, 124, 89, 0.5),
      0 0 0 4px rgba(201, 168, 76, 0.3),
      inset 0 2px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.4) 90deg,
    transparent 180deg
  );
  animation: rotateLogo 4s linear infinite;
}

@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 14px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.08);
  background-position: 100% 100%;
  box-shadow: 
    0 15px 60px rgba(74, 124, 89, 0.6),
    0 0 0 5px rgba(201, 168, 76, 0.4),
    0 0 60px rgba(201, 168, 76, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.logo:hover .logo-icon::after {
  opacity: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 1; }
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--vert-fonce);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  position: relative;
  transition: all 0.5s ease;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert), var(--or), transparent);
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 10px var(--or);
}

.logo:hover .logo-text {
  color: var(--vert);
  text-shadow: 0 0 20px rgba(74, 124, 89, 0.3);
}

.logo:hover .logo-text::after {
  width: 100%;
}

.logo-text span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--texte-leger);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.85;
  transition: all 0.5s ease;
}

.logo:hover .logo-text span {
  color: var(--or);
  opacity: 1;
  letter-spacing: 0.22em;
}

nav { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

.nav-item { 
  position: relative; 
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--texte);
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.15), transparent 70%);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::before {
  width: 200%;
  height: 200%;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--vert), var(--or), var(--vert), transparent);
  border-radius: 4px 4px 0 0;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px var(--or);
}

.nav-link:hover::after {
  width: 90%;
}

.nav-link:hover, .nav-link.active { 
  color: var(--vert); 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(201, 168, 76, 0.08));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 6px 20px rgba(74, 124, 89, 0.15),
    0 0 30px rgba(74, 124, 89, 0.1);
}

.nav-arrow {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.6;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg) scale(1.2);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(74, 124, 89, 0.6));
}

.dropdown { position: relative; }

.dropdown-menu {
  position: fixed;
  top: auto;
  left: auto;
  transform: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(30px) saturate(200%);
  border: 1.5px solid rgba(74, 124, 89, 0.15);
  border-radius: 16px;
  box-shadow: 
    0 25px 80px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 0 40px rgba(74, 124, 89, 0.1);
  min-width: 420px;
  max-width: 900px;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  pointer-events: none;
}

/* Dropdown avec plus de 5 items = 2 colonnes */
.dropdown-menu {
  column-count: auto;
  column-gap: 30px;
}

/* Classe pour les grands menus (plus de 5 items) */
.dropdown-large {
  column-count: 2;
  min-width: 750px !important;
  max-width: 850px !important;
}

/* Forcer les items à rester dans leur colonne */
.dropdown-menu > a,
.dropdown-menu > .dropdown-submenu {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block;
  width: 100%;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 56px;
  height: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  border-left: 1.5px solid rgba(74, 124, 89, 0.15);
  border-top: 1.5px solid rgba(74, 124, 89, 0.15);
  box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: scale(1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--texte);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  white-space: normal;
  line-height: 1.5;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--vert), var(--or));
  border-radius: 10px 0 0 10px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px var(--or);
}

.dropdown-menu a::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-15px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--or);
  font-weight: 700;
  font-size: 1.2rem;
}

.dropdown-menu a:hover { 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.12), rgba(201, 168, 76, 0.1));
  color: var(--vert-fonce); 
  padding-left: 32px;
  padding-right: 50px;
  box-shadow: 
    0 6px 20px rgba(74, 124, 89, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateX(4px);
}

.dropdown-menu a:hover::before {
  width: 5px;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Sous-menus imbriqués */
.dropdown-submenu {
  position: relative;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.dropdown-submenu .has-submenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--vert);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  cursor: pointer;
  white-space: normal;
  line-height: 1.5;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.05), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(74, 124, 89, 0.1);
}

.dropdown-submenu .has-submenu::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--vert), var(--or));
  border-radius: 10px 0 0 10px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px var(--or);
}

.dropdown-submenu:hover .has-submenu {
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.15), rgba(201, 168, 76, 0.12));
  color: var(--vert-fonce);
  padding-left: 30px;
  border-color: rgba(74, 124, 89, 0.25);
  box-shadow: 
    0 6px 20px rgba(74, 124, 89, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateX(3px);
}

.dropdown-submenu:hover .has-submenu::before {
  width: 6px;
}

.submenu-arrow {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.7;
  margin-left: 12px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(74, 124, 89, 0.3));
}

.dropdown-submenu:hover .submenu-arrow {
  opacity: 1;
  transform: translateX(6px) scale(1.15);
  filter: drop-shadow(0 0 8px rgba(74, 124, 89, 0.6));
}

.submenu-content {
  position: absolute;
  left: 100%;
  top: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.98));
  backdrop-filter: blur(30px) saturate(200%);
  border: 2px solid rgba(74, 124, 89, 0.2);
  border-radius: 14px;
  box-shadow: 
    0 25px 70px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 0 50px rgba(74, 124, 89, 0.15),
    -5px 0 20px rgba(74, 124, 89, 0.1);
  min-width: 340px;
  max-width: 420px;
  padding: 16px;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-15px) scale(0.92);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
}

/* Flèche indicatrice du sous-menu */
.submenu-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(74, 124, 89, 0.2) transparent transparent;
  filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
}

.submenu-content::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 21px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent rgba(255, 255, 255, 0.98) transparent transparent;
}

.dropdown-submenu:hover .submenu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.submenu-content a {
  display: flex;
  align-items: center;
  padding: 14px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texte);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  white-space: normal;
  line-height: 1.5;
  border: 1px solid transparent;
}

.submenu-content a:last-child {
  margin-bottom: 0;
}

.submenu-content a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--or), var(--vert));
  border-radius: 10px 0 0 10px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px var(--or);
}

.submenu-content a::after {
  content: '→';
  position: absolute;
  right: 22px;
  opacity: 0;
  transform: translateX(-10px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--or);
  font-weight: 700;
  font-size: 1.1rem;
}

.submenu-content a:hover {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(74, 124, 89, 0.12));
  color: var(--vert-fonce);
  padding-left: 32px;
  padding-right: 50px;
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 
    0 6px 20px rgba(201, 168, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateX(4px) scale(1.02);
}

.submenu-content a:hover::before {
  width: 5px;
}

.submenu-content a:hover::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hamburger { 
  display: none; 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.12), rgba(201, 168, 76, 0.08));
  border: 2px solid rgba(74, 124, 89, 0.25);
  border-radius: 12px;
  cursor: pointer; 
  padding: 14px;
  position: relative;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.18), rgba(201, 168, 76, 0.12));
  border-color: rgba(74, 124, 89, 0.4);
  box-shadow: 
    0 8px 25px rgba(74, 124, 89, 0.25),
    0 0 30px rgba(74, 124, 89, 0.15);
  transform: scale(1.05);
}

.hamburger span { 
  display: block; 
  width: 30px; 
  height: 3px; 
  background: linear-gradient(90deg, var(--vert), var(--or));
  margin: 6px 0; 
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(74, 124, 89, 0.15));
  transform: rotate(90deg);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(11px, 11px);
  background: linear-gradient(90deg, var(--or), #d4b55e);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-40px) scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(11px, -11px);
  background: linear-gradient(90deg, var(--or), #d4b55e);
}

.header-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 14px 0;
}

.header-action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-action-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(135deg, var(--or), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header-action-link:hover::before {
  opacity: 1;
}

.header-action-link:hover {
  color: var(--or);
  transform: translateY(-2px);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.header-action-link svg {
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.3));
}

.header-action-link:hover svg {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6));
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(74, 124, 89, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vert), var(--or), var(--vert), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 50px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.98);
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--vert), var(--or));
  border-radius: 2px;
  transition: height 0.4s ease;
}

.logo:hover::before {
  height: 60%;
}

.logo:hover {
  transform: translateX(8px);
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2e5339 0%, #4a7c59 50%, #2e5339 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanc);
  box-shadow: 
    0 8px 25px rgba(74, 124, 89, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: logoShine 4s infinite;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 13px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes logoShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(74, 124, 89, 0.35),
    0 0 0 4px rgba(201, 168, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo:hover .logo-icon::after {
  opacity: 1;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--vert-fonce);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--or), transparent);
  transition: width 0.4s ease;
}

.logo:hover .logo-text::after {
  width: 100%;
}

.logo-text span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--texte-leger);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

nav { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

.nav-item { 
  position: relative; 
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--texte);
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.08), transparent);
  transition: left 0.6s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert), var(--or));
  border-radius: 3px 3px 0 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover, .nav-link.active { 
  color: var(--vert); 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(201, 168, 76, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
}

.nav-arrow {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg) scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(74, 124, 89, 0.4));
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(74, 124, 89, 0.12);
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  min-width: 260px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(74, 124, 89, 0.12);
  border-top: 1px solid rgba(74, 124, 89, 0.12);
}

.dropdown:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateX(-50%) translateY(0); 
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--texte);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 70%;
  background: linear-gradient(180deg, var(--vert), var(--or));
  border-radius: 0 4px 4px 0;
  transition: width 0.3s ease;
}

.dropdown-menu a::after {
  content: '→';
  position: absolute;
  right: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--or);
  font-weight: 700;
}

.dropdown-menu a:hover { 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(201, 168, 76, 0.08));
  color: var(--vert-fonce); 
  padding-left: 28px;
  padding-right: 40px;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.dropdown-menu a:hover::before {
  width: 4px;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hamburger { 
  display: none; 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 10px;
  cursor: pointer; 
  padding: 12px;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.15), rgba(201, 168, 76, 0.1));
  border-color: rgba(74, 124, 89, 0.3);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
}

.hamburger span { 
  display: block; 
  width: 28px; 
  height: 3px; 
  background: linear-gradient(90deg, var(--vert), var(--or));
  margin: 6px 0; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(74, 124, 89, 0.1));
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
  background: var(--or);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-30px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
  background: var(--or);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--vert), var(--or));
  border-radius: 2px;
  transition: height 0.4s ease;
}

.logo:hover::before {
  height: 60%;
}

.logo:hover {
  transform: translateX(8px);
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2e5339 0%, #4a7c59 50%, #2e5339 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanc);
  box-shadow: 
    0 8px 25px rgba(74, 124, 89, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: logoShine 4s infinite;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 13px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes logoShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(74, 124, 89, 0.35),
    0 0 0 4px rgba(201, 168, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo:hover .logo-icon::after {
  opacity: 1;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--vert-fonce);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--or), transparent);
  transition: width 0.4s ease;
}

.logo:hover .logo-text::after {
  width: 100%;
}

.logo-text span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--texte-leger);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

nav { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

.nav-item { 
  position: relative; 
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--texte);
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.08), transparent);
  transition: left 0.6s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert), var(--or));
  border-radius: 3px 3px 0 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover, .nav-link.active { 
  color: var(--vert); 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(201, 168, 76, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
}

.nav-arrow {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg) scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(74, 124, 89, 0.4));
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(74, 124, 89, 0.12);
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  min-width: 260px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(74, 124, 89, 0.12);
  border-top: 1px solid rgba(74, 124, 89, 0.12);
}

.dropdown:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateX(-50%) translateY(0); 
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--texte);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 70%;
  background: linear-gradient(180deg, var(--vert), var(--or));
  border-radius: 0 4px 4px 0;
  transition: width 0.3s ease;
}

.dropdown-menu a::after {
  content: '→';
  position: absolute;
  right: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--or);
  font-weight: 700;
}

.dropdown-menu a:hover { 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(201, 168, 76, 0.08));
  color: var(--vert-fonce); 
  padding-left: 28px;
  padding-right: 40px;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.dropdown-menu a:hover::before {
  width: 4px;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hamburger { 
  display: none; 
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 10px;
  cursor: pointer; 
  padding: 12px;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.15), rgba(201, 168, 76, 0.1));
  border-color: rgba(74, 124, 89, 0.3);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
}

.hamburger span { 
  display: block; 
  width: 28px; 
  height: 3px; 
  background: linear-gradient(90deg, var(--vert), var(--or));
  margin: 6px 0; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(74, 124, 89, 0.1));
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
  background: var(--or);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-30px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
  background: var(--or);
}

/* =============================================
   HERO BANNER
   ============================================= */
.hero {
  position: relative;
  color: var(--blanc);
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(46, 83, 57, 0.92) 0%, 
    rgba(26, 58, 37, 0.88) 50%, 
    rgba(13, 34, 24, 0.92) 100%);
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-inner { 
  max-width: 860px; 
  margin: 0 auto; 
  position: relative; 
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--or) 0%, #d4b55e 100%);
  color: var(--vert-fonce);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  animation: fadeInDown 1s ease-out 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--blanc);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid var(--or);
  object-fit: cover;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  animation: scaleIn 1s ease-out both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.8s both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary { 
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-fonce) 100%);
  color: var(--blanc);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover { 
  background: linear-gradient(135deg, var(--vert-fonce) 0%, #1a3a25 100%);
  color: var(--blanc); 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

.btn-outline { 
  background: transparent; 
  border-color: var(--or); 
  color: var(--or);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-outline:hover { 
  background: var(--or); 
  color: var(--vert-fonce);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-white { 
  background: var(--blanc); 
  color: var(--vert-fonce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover { 
  background: var(--or-clair); 
  color: var(--vert-fonce);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* =============================================
   SECTIONS & LAYOUT
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gris-clair); }

.section-header { 
  text-align: center; 
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-header h2 { 
  font-size: 2.2rem; 
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--vert-fonce) 0%, var(--vert) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p { 
  color: var(--texte-leger); 
  max-width: 600px; 
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-line {
  width: 60px; 
  height: 4px;
  background: linear-gradient(90deg, var(--vert), var(--or));
  margin: 20px auto 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.section-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s infinite;
}

/* =============================================
   CARDS - LETTRES / ARTICLES
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--blanc);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert), var(--or));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-img-wrap { 
  height: 200px; 
  overflow: hidden;
  position: relative;
}

.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .card-img-wrap::after {
  opacity: 1;
}

.card-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img-wrap img { 
  transform: scale(1.08);
}

.card-body { 
  padding: 24px; 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
}

.card-category {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.card-category::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--or);
}

.card-body h3 { 
  font-size: 1.1rem; 
  margin-bottom: 12px; 
  line-height: 1.4;
  transition: color 0.3s ease;
}

.card:hover .card-body h3 {
  color: var(--vert);
}

.card-body p { 
  font-size: 0.9rem; 
  color: var(--texte-leger); 
  flex: 1; 
}

.card-footer { 
  padding: 0 24px 20px; 
}

.card-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vert);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after { 
  content: '→'; 
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.card-link:hover { 
  color: var(--or);
  gap: 12px;
}

.card-link:hover::after { 
  transform: translateX(4px);
}

/* =============================================
   WEBINAIRES
   ============================================= */
.webinaire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.webinaire-card {
  background: var(--blanc);
  border-radius: 8px;
  box-shadow: var(--ombre);
  overflow: hidden;
  transition: var(--transition);
}
.webinaire-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-forte); }
.webinaire-date {
  background: var(--vert-fonce);
  color: var(--blanc);
  text-align: center;
  padding: 12px;
  font-family: 'Playfair Display', serif;
}
.webinaire-date .day { font-size: 2rem; font-weight: 700; line-height: 1; }
.webinaire-date .month {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
}
.webinaire-img { height: 150px; overflow: hidden; }
.webinaire-img img { width: 100%; height: 100%; object-fit: cover; }
.webinaire-body { padding: 16px; }
.webinaire-badge {
  display: inline-block;
  background: var(--vert-clair);
  color: var(--vert-fonce);
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.webinaire-body h3 { font-size: 0.9rem; line-height: 1.4; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--vert-fonce), #1a3a25);
  color: var(--blanc);
  text-align: center;
  padding: 64px 24px;
}
.newsletter-section h2 { color: var(--blanc); margin-bottom: 12px; }
.newsletter-section p { color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.newsletter-form { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 20px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  outline: none;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px var(--or); }

/* =============================================
   HOMMAGE ENCART
   ============================================= */
.hommage-box {
  background: var(--or-clair);
  border-left: 4px solid var(--or);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.hommage-box img { width: 160px; border-radius: 4px; flex-shrink: 0; }
.hommage-box h3 { font-size: 1.3rem; color: var(--vert-fonce); margin-bottom: 8px; }
.hommage-box p { font-size: 0.95rem; color: var(--texte-leger); }

/* =============================================
   SIDEBAR
   ============================================= */
.layout-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--blanc); border: 1px solid var(--gris); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 {
  font-size: 1rem;
  color: var(--vert-fonce);
  border-bottom: 2px solid var(--or);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.sidebar-categories a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid var(--gris);
  font-size: 0.88rem;
  color: var(--texte);
  transition: var(--transition);
}
.sidebar-categories a:hover { color: var(--vert); padding-left: 8px; }
.recent-post { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gris); }
.recent-post:last-child { border-bottom: none; }
.recent-post img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.recent-post-title { font-size: 0.82rem; font-family: 'Playfair Display', serif; line-height: 1.35; }

/* =============================================
   PAGE INTERIEURE - CONTENT
   ============================================= */
.page-header {
  background: var(--vert-clair);
  border-bottom: 3px solid var(--vert);
  padding: 48px 24px;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-size: 2.2rem; color: var(--vert-fonce); }
.page-header .breadcrumb {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: var(--texte-leger);
  margin-bottom: 12px;
}
.page-header .breadcrumb a { color: var(--vert); }

.content-block { max-width: 800px; }
.content-block h2 { font-size: 1.6rem; color: var(--vert-fonce); margin: 36px 0 14px; }
.content-block h3 { font-size: 1.2rem; color: var(--vert-fonce); margin: 28px 0 10px; }
.content-block p { margin-bottom: 18px; }
.content-block ul, .content-block ol { padding-left: 24px; margin-bottom: 18px; }
.content-block li { margin-bottom: 8px; }
.content-block blockquote {
  border-left: 4px solid var(--or);
  padding: 16px 24px;
  background: var(--or-clair);
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
  font-style: italic;
}

/* =============================================
   PÉTITION / SIGNATURE BOX
   ============================================= */
.petition-box {
  background: var(--vert-clair);
  border: 1px solid var(--vert);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.petition-box h3 { color: var(--vert-fonce); margin-bottom: 12px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--vert-fonce);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-text { color: var(--blanc); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.9rem; margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blanc); padding-left: 4px; }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--or); }

/* =============================================
   CV PAGE
   ============================================= */
.cv-section { margin-bottom: 48px; }
.cv-section h2 {
  font-size: 1.4rem;
  color: var(--vert-fonce);
  border-bottom: 2px solid var(--vert);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.cv-item { display: flex; gap: 24px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gris); }
.cv-item:last-child { border-bottom: none; }
.cv-period {
  min-width: 140px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--or);
  padding-top: 4px;
}
.cv-item h3 { font-size: 1rem; color: var(--texte); margin-bottom: 4px; }
.cv-item .institution { font-size: 0.88rem; color: var(--vert); margin-bottom: 6px; font-weight: 600; font-family: 'Raleway', sans-serif; }
.cv-item p { font-size: 0.9rem; color: var(--texte-leger); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin: 40px 0; }
.contact-card {
  background: var(--blanc);
  border: 1px solid var(--gris);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--vert); box-shadow: var(--ombre); }
.contact-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.contact-card h3 { font-size: 1.1rem; color: var(--vert-fonce); margin-bottom: 10px; }
.contact-card p { font-size: 0.88rem; color: var(--texte-leger); }

/* =============================================
   LETTRES LIST
   ============================================= */
.lettre-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gris);
  transition: var(--transition);
}
.lettre-item:hover { background: var(--gris-clair); padding-left: 12px; border-radius: 4px; }
.lettre-item img { width: 120px; height: 90px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.lettre-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.lettre-content p { font-size: 0.9rem; color: var(--texte-leger); }
.lettre-meta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: var(--vert);
  font-weight: 600;
  margin-bottom: 6px;
}

/* =============================================
   SERMENT
   ============================================= */
.serment-text {
  background: var(--or-clair);
  border: 1px solid var(--or);
  border-radius: 8px;
  padding: 40px 48px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.serment-text::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--or);
  opacity: 0.25;
  position: absolute;
  top: -20px;
  left: 16px;
  line-height: 1;
}

/* =============================================
   RESPONSIVE - PREMIUM
   ============================================= */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 32px;
  }
  
  .header-top-inner {
    padding: 0 32px;
  }
  
  nav {
    gap: 2px;
  }
  
  .nav-link {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .header-actions {
    gap: 20px;
  }
  
  .header-action-link {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  
  .header-action-link svg {
    width: 14px;
    height: 14px;
  }
  
  .header-inner {
    padding: 0 24px;
    height: 80px;
  }
  
  .header-top-inner {
    padding: 0 24px;
  }
  
  .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  
  .logo-text {
    font-size: 1.15rem;
  }
  
  nav { 
    display: none; 
  }
  
  nav.open { 
    display: flex; 
    flex-direction: column; 
    position: fixed; 
    inset: 160px 0 0; 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 32px 24px; 
    overflow-y: auto; 
    z-index: 999;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
    margin-bottom: 8px;
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 16px;
    border-radius: 12px;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 4px solid var(--vert);
    margin-left: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05), rgba(201, 168, 76, 0.03));
    backdrop-filter: none;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .dropdown-menu a {
    padding: 14px 20px;
  }
  
  /* Sous-menus en mobile */
  .dropdown-submenu .has-submenu {
    padding: 14px 20px;
    margin-bottom: 4px;
  }
  
  .submenu-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--or);
    margin-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(74, 124, 89, 0.05));
    backdrop-filter: none;
    padding: 8px;
  }
  
  .submenu-content a {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .submenu-arrow {
    transform: rotate(90deg);
  }
  
  .dropdown-submenu:hover .submenu-arrow {
    transform: rotate(90deg);
  }
  
  .hamburger { 
    display: block; 
  }
  
  .layout-with-sidebar { 
    grid-template-columns: 1fr; 
  }
  
  .sidebar { 
    position: static; 
  }
  
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .contact-grid { 
    grid-template-columns: 1fr; 
  }
  
  .hommage-box { 
    flex-direction: column; 
  }
  
  .hommage-box img { 
    width: 100%; 
    max-width: 240px; 
  }
  
  .cv-item { 
    flex-direction: column; 
    gap: 8px; 
  }
  
  .hero {
    padding: 100px 24px;
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .header-top {
    display: none;
  }
  
  nav.open {
    inset: 80px 0 0;
  }
  
  .header-inner {
    padding: 0 20px;
    height: 75px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .logo::before {
    display: none;
  }
  
  .logo-text {
    font-size: 1.05rem;
  }
  
  .logo-text span {
    font-size: 0.65rem;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-radius: 12px;
  }
  
  .hero { 
    padding: 80px 20px;
    min-height: 60vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-portrait {
    width: 120px;
    height: 120px;
  }
  
  .section { 
    padding: 56px 0; 
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .footer-grid { 
    grid-template-columns: 1fr; 
  }
  
  .lettre-item { 
    flex-direction: column; 
  }
  
  .lettre-item img { 
    width: 100%; 
    height: 180px; 
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .webinaire-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 13px 28px;
    font-size: 0.82rem;
  }
}
