/* ============================================================
   KBM – Ka Pou Nou Bwè é Manjé
   Design System & Styles
   ============================================================ */

/* ---- Accessibilité ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--kbm-rouge);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 .5rem .5rem;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---- CSS Variables ---- */
:root {
  /* Deep Chocolate — sections sombres, texte */
  --green-950: #2A1A0E;
  --green-900: #4C3122;
  --green-800: #5C3D2A;

  /* Rich Terracotta — accents primaires */
  --green-700: #A84A33;
  --green-600: #C05840;
  --green-500: #D76E55;
  --green-400: #E08A72;
  --green-100: #F7E8E4;

  /* Couleurs KBM brand */
  --kbm-vert:  #4d8239;
  --kbm-rouge: #AE2918;

  /* Tropical Green — accents secondaires */
  --trop-700: #2A5040;
  --trop-600: #3B6A56;
  --trop-100: #E0EDEA;

  /* Champagne Gold */
  --gold-600: #A07830;
  --gold-500: #C09848;
  --gold-400: #E5C992;
  --gold-300: #EDD5A8;
  --gold-200: #F5E6C4;
  --gold-100: #FAF3E0;

  /* Ivory Cream — fonds */
  --cream:       #FDFBF6;
  --cream-dark:  #F0EDE5;
  --cream-light: #FDFBF6;

  --text-primary:   #4C3122;
  --text-secondary: #7A5842;
  --text-muted:     #A08070;

  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

  --nav-height: 76px;
  --max-width:  1180px;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.09);
  --shadow-md: 0 6px 24px rgba(0,0,0,.13);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --shadow-gold:  0 4px 20px rgba(229,201,146,.45);
  --shadow-green: 0 4px 20px rgba(76,49,34,.35);

  --ease: 0.3s ease;
  --ease-slow: 0.6s ease;

  /* ---- Semantic Theme Tokens (Vert — thème forêt tropicale) ---- */
  --bg-page:        #163D1E;
  --bg-section:     #1B4D24;
  --bg-section-alt: #1F5529;
  --bg-card:        #25612C;
  --bg-card-top:    #2C7235;
  --text-primary:   var(--gold-200);
  --text-secondary: rgba(245,230,196,.75);
  --text-muted:     rgba(245,230,196,.62);
  --text-h:         var(--gold-200);
  --text-alt:       rgba(245,230,196,.75);
  --border-card:    rgba(255,255,255,.08);
  --tag-bg:         rgba(229,201,146,.12);
  --tag-text:       var(--gold-300);
  --trop-tag-bg:    rgba(59,106,86,.4);
  --trop-tag-text:  #a0d4b8;
  --pillar-bg:      rgba(255,255,255,.05);
  --pillar-hover:   rgba(255,255,255,.1);
  --pillar-h:       var(--gold-300);
  --skel-base-a:    rgba(255,255,255,.07);
  --skel-base-b:    rgba(255,255,255,.12);
  --skel-line-a:    rgba(255,255,255,.06);
  --skel-line-b:    rgba(255,255,255,.11);
  --skel-top-bg:    rgba(255,255,255,.05);
  --skel-top-sep:   rgba(255,255,255,.05);

  /* Vert thémé (sections : radio, form, events, social) */
  --vert-bg:      #427530;
  --vert-text:    var(--white);
  --vert-text-sub:rgba(255,255,255,.70);
  --vert-accent:  var(--gold-400);
  --vert-surface: rgba(255,255,255,.07);
  --vert-input:   rgba(255,255,255,.09);
  --vert-input-b: rgba(255,255,255,.15);

  /* Hero — forêt tropicale sombre */
  --hero-bg:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(77,130,57,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(174,41,24,.06) 0%, transparent 60%),
    linear-gradient(155deg, #163D1E 0%, #1F5529 35%, #25612C 65%, #163D1E 100%);

  /* Contact */
  --contact-bg:          #25612C;
  --contact-text:        rgba(255,255,255,.65);
  --contact-tag-bg:      rgba(245,158,11,.12);
  --contact-tag-text:    var(--gold-300);
  --contact-title:       var(--white);
  --contact-method-bg:   rgba(255,255,255,.05);
  --contact-method-bdr:  rgba(255,255,255,.07);
  --contact-label:       rgba(255,255,255,.62);
  --contact-value:       var(--white);
}

/* ---- Thème Marron (chocolat tropical) ---- */
[data-theme="marron"] {
  --bg-page:        #3D2510;
  --bg-section:     #2D1A09;
  --bg-section-alt: #33200D;
  --bg-card:        var(--green-800);
  --bg-card-top:    #4A2E1C;
  --text-primary:   var(--gold-200);
  --text-secondary: rgba(245,230,196,.75);
  --text-muted:     rgba(245,230,196,.62);
  --text-h:         var(--gold-200);
  --text-alt:       rgba(245,230,196,.75);
  --border-card:    rgba(255,255,255,.08);
  --tag-bg:         rgba(229,201,146,.12);
  --tag-text:       var(--gold-300);
  --trop-tag-bg:    rgba(59,106,86,.35);
  --trop-tag-text:  #8BC4AC;
  --pillar-bg:      rgba(255,255,255,.05);
  --pillar-hover:   rgba(255,255,255,.1);
  --pillar-h:       var(--gold-300);
  --skel-base-a:    rgba(255,255,255,.07);
  --skel-base-b:    rgba(255,255,255,.12);
  --skel-line-a:    rgba(255,255,255,.06);
  --skel-line-b:    rgba(255,255,255,.11);
  --skel-top-bg:    rgba(255,255,255,.05);
  --skel-top-sep:   rgba(255,255,255,.05);

  /* Vert thémé */
  --vert-bg:      #427530;
  --vert-text:    var(--white);
  --vert-text-sub:rgba(255,255,255,.70);
  --vert-accent:  var(--gold-400);
  --vert-surface: rgba(255,255,255,.05);
  --vert-input:   rgba(255,255,255,.07);
  --vert-input-b: rgba(255,255,255,.12);

  /* Hero */
  --hero-bg:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(245,158,11,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(215,110,85,.09) 0%, transparent 60%),
    linear-gradient(155deg, #3D2510 0%, #4A2E1C 35%, var(--green-800) 65%, #2D1A09 100%);

  /* Contact */
  --contact-bg:          var(--green-800);
  --contact-text:        rgba(255,255,255,.65);
  --contact-tag-bg:      rgba(245,158,11,.12);
  --contact-tag-text:    var(--gold-300);
  --contact-title:       var(--white);
  --contact-method-bg:   rgba(255,255,255,.05);
  --contact-method-bdr:  rgba(255,255,255,.07);
  --contact-label:       rgba(255,255,255,.62);
  --contact-value:       var(--white);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-page);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   NAV
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
/* Vert : hero sombre, navbar transparente */
.navbar.transparent { background: transparent; backdrop-filter: none; }
/* Marron : hero assez sombre aussi */
[data-theme="marron"] .navbar.transparent { background: transparent; backdrop-filter: none; }
.navbar.scrolled {
  background: rgba(13,46,18,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
[data-theme="marron"] .navbar.scrolled {
  background: rgba(76,49,34,.96);
}

.nav-container {
  max-width: var(--max-width); width: 100%; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-kbm {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 900;
  color: var(--gold-400); letter-spacing: 3px;
}
.nav-brand-sub {
  font-size: .625rem; font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: 1.5px;
}

.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .75px; text-transform: uppercase;
  padding: .5rem .875rem; border-radius: var(--radius-sm);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--gold-400); border-radius: 2px;
  transition: width var(--ease);
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a:hover::after { width: 60%; }

.nav-radio {
  background: var(--kbm-rouge) !important; color: var(--white) !important;
  border-radius: var(--radius-full) !important; font-weight: 800 !important;
  box-shadow: 0 4px 20px rgba(174,41,24,.4);
  transition: transform var(--ease), box-shadow var(--ease) !important;
}
.nav-radio:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(174,41,24,.6) !important; }
.nav-radio::after { display: none !important; }

.theme-toggle {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--ease), transform var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,.22); transform: scale(1.1); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--green-900); padding: 1rem;
  z-index: 999; box-shadow: var(--shadow-lg);
  flex-direction: column; gap: .375rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.88); font-weight: 700; font-size: 1.0625rem;
  padding: .875rem 1.25rem; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: .5px;
  transition: background var(--ease), color var(--ease);
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); color: var(--gold-400); }
.mobile-nav .mob-radio {
  background: var(--gold-400); color: var(--green-900);
  text-align: center; margin-top: .5rem; border-radius: var(--radius-full);
}

/* ============================================================
   HERO
   ============================================================ */
#accueil {
  min-height: 100vh;
  background: var(--hero-bg);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: calc(var(--nav-height) + 3rem) 1.5rem calc(5rem + 80px);
}

/* decorative rings */
#accueil .ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(245,158,11,.06);
  pointer-events: none;
}
#accueil .ring-1 { width: 500px; height: 500px; top: -120px; right: -120px; }
#accueil .ring-2 { width: 700px; height: 700px; top: -200px; right: -200px; border-color: rgba(245,158,11,.03); }
#accueil .ring-3 { width: 400px; height: 400px; bottom: -100px; left: -100px; border-color: rgba(200,90,36,.07); }

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.25);
  color: var(--gold-300); font-size: .75rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: .375rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1.5rem; cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.hero-badge:hover {
  background: rgba(245,158,11,.22);
  border-color: rgba(245,158,11,.5);
}
.live-dot {
  width: 8px; height: 8px; background: #EF4444; border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-logo {
  width: 360px;
  height: auto;
  display: block;
  margin: 0 auto .5rem;
}
.hero-kbm {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 900; line-height: .95;
  color: var(--gold-400); letter-spacing: 4px;
  text-shadow: 0 0 60px rgba(245,158,11,.3);
  margin-bottom: .75rem;
}
.hero-fullname {
  font-family: var(--font-body);
  font-size: clamp(.75rem, 1.5vw, .95rem);
  font-weight: 800; font-style: normal;
  color: rgba(255,255,255,.75);
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}
.hero-slogan {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-300); font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.0625rem; color: rgba(255,255,255,.6);
  max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.8;
}

.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.35); font-size: .6875rem; letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,100%{transform:rotate(45deg) translateY(0); opacity:.3}
  50%{transform:rotate(45deg) translateY(5px); opacity:.8}
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 700; border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  letter-spacing: .25px;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold-400); color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-300); box-shadow: 0 8px 32px rgba(245,158,11,.5); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* Dans le lecteur radio (fond vert), adapter au thème */
.rp-footer-links .btn-outline-white {
  color: var(--vert-text);
  border-color: var(--vert-input-b);
}
.rp-footer-links .btn-outline-white:hover {
  background: var(--vert-surface);
  border-color: var(--vert-text-sub);
}

.btn-green {
  background: var(--green-600); color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover { background: var(--green-500); }
.btn-kbm-vert {
  background: var(--kbm-vert); color: var(--white);
  box-shadow: 0 4px 20px rgba(77,130,57,.4);
}
.btn-kbm-vert:hover { background: #3d6b2c; }
.btn-kbm-rouge {
  background: var(--kbm-rouge); color: var(--white);
  box-shadow: 0 4px 20px rgba(174,41,24,.4);
}
.btn-kbm-rouge:hover { background: #8f2012; }

.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { background: #1ebe5a; }

.btn-lg { font-size: 1.125rem; padding: 1.0625rem 2.25rem; }
.btn-sm { font-size: .875rem; padding: .625rem 1.25rem; }

/* ============================================================
   FLOATING RADIO PLAYER (FAB)
   ============================================================ */
.radio-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

.radio-fab-panel {
  background: var(--green-900);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  width: 300px;
  box-shadow: var(--shadow-lg);
  display: none;
}
.radio-fab-panel.open {
  display: block;
  animation: fabPanelIn .25s ease;
}
@keyframes fabPanelIn {
  from{opacity:0;transform:scale(.9) translateY(8px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

.fab-station-name {
  font-size: .6875rem; font-weight: 800;
  color: var(--gold-400); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}

.fab-now-playing {
  display: flex; align-items: center; gap: .875rem; margin-bottom: 1rem;
}
.fab-cover {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
  background: var(--green-700);
}
.fab-track-info { flex: 1; min-width: 0; }
.fab-track-title {
  color: var(--white); font-weight: 700; font-size: .875rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fab-track-artist {
  color: rgba(255,255,255,.5); font-size: .75rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.fab-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.fab-play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-400); color: var(--green-900);
  border: none; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: var(--shadow-gold);
}
.fab-play-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(245,158,11,.6); }

.fab-volume {
  display: flex; align-items: center; gap: .5rem; width: 100%; margin-top: 1rem;
}
.fab-volume-icon { color: rgba(255,255,255,.5); font-size: .875rem; flex-shrink: 0; }
.fab-volume input[type=range] {
  flex: 1; height: 4px; appearance: none;
  background: rgba(255,255,255,.2); border-radius: 2px; cursor: pointer;
}
.fab-volume input[type=range]::-webkit-slider-thumb {
  appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-400);
}

.radio-fab-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--kbm-rouge); color: var(--white);
  border: none; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--ease), box-shadow var(--ease);
}
.radio-fab-btn:hover { transform: scale(1.08); }
.radio-fab-btn.playing { animation: fabGlow 2s ease-in-out infinite alternate; }
@keyframes fabGlow {
  from{box-shadow:0 4px 20px rgba(174,41,24,.4)}
  to{box-shadow:0 6px 32px rgba(245,158,11,.75)}
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section { padding: 5.5rem 1.5rem; }
.section-alt { background: var(--bg-card); }
.container { max-width: var(--max-width); margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: var(--tag-bg); color: var(--tag-text);
  font-size: .6875rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: .25rem 1rem; border-radius: var(--radius-full);
  margin-bottom: .875rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900; color: var(--text-h);
  line-height: 1.15; margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.0625rem; color: var(--text-alt);
  max-width: 580px; margin: 0 auto; line-height: 1.75;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   LAKOU (ABOUT)
   ============================================================ */
#lakou { background: var(--bg-section-alt); }

.lakou-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.lakou-text .tag-green {
  display: inline-block; background: var(--trop-tag-bg); color: var(--trop-tag-text);
  font-size: .6875rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: .25rem 1rem;
  border-radius: var(--radius-full); margin-bottom: 1rem;
}
.lakou-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900; color: var(--text-h);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.lakou-text p { color: var(--text-alt); margin-bottom: 1.25rem; line-height: 1.8; }

.lakou-pillars { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.5rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  background: var(--pillar-bg); border-left: 3px solid var(--trop-600);
  transition: background var(--ease), transform var(--ease);
}
.pillar:hover { background: var(--pillar-hover); transform: translateX(4px); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pillar h3 { font-weight: 800; color: var(--pillar-h); margin-bottom: .2rem; font-size: .9375rem; }
.pillar p { font-size: .875rem; color: var(--text-alt); margin: 0; line-height: 1.5; }

.lakou-visual { position: relative; }
.lakou-image-box {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--green-800), var(--green-950));
  display: flex; align-items: center; justify-content: center;
}
.lakou-image-box img { width: 100%; height: 100%; object-fit: cover; }
.lakou-placeholder {
  text-align: center; padding: 2rem; color: rgba(255,255,255,.5);
}
.lakou-placeholder .big-icon { font-size: 5rem; margin-bottom: 1rem; opacity: .6; }
.lakou-placeholder p { font-size: .9375rem; }


/* ============================================================
   RADIO
   ============================================================ */
#radio {
  background: var(--vert-bg); color: var(--vert-text);
  position: relative; overflow: hidden;
}
#radio::before {
  content: ''; position: absolute;
  top: -40%; left: -15%; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,160,67,.12) 0%, transparent 65%);
  pointer-events: none;
}
#radio::after {
  content: ''; position: absolute;
  bottom: -30%; right: -10%; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.07) 0%, transparent 65%);
  pointer-events: none;
}

.radio-player-centered {
  display: flex; justify-content: center;
}
.radio-player-centered .radio-player-card {
  width: 100%; max-width: 520px;
}

.radio-info .section-tag { background: var(--vert-surface); color: var(--vert-accent); }
.radio-info .section-title { color: var(--vert-text); text-align: left; }

.now-playing-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--vert-surface);
  border: 1px solid var(--vert-input-b);
  border-radius: var(--radius-md); padding: 1.125rem;
  margin-bottom: 1.5rem;
}
.np-cover {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; background: var(--green-700);
}
.np-label {
  font-size: .6875rem; color: var(--vert-accent); font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: .4rem; margin-bottom: .25rem;
}
.np-title { font-weight: 700; font-size: .9375rem; color: var(--vert-text); }
.np-artist { font-size: .8125rem; color: var(--vert-text-sub); }


/* ---- Custom Radio Player ---- */
.radio-player-card {
  background: var(--vert-surface);
  border: 1px solid var(--vert-input-b);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.rp-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.rp-logo {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; background: var(--green-700);
}
.rp-station-name { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 900; color: var(--vert-text); }
.rp-station-tag {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--vert-accent); font-weight: 700; margin-top: .2rem;
}

/* Visualizer bars */
.rp-visualizer {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; height: 36px; margin-bottom: 1.5rem;
}
.rp-visualizer span {
  display: block; width: 6px; border-radius: 3px;
  background: var(--gold-400); opacity: .3;
  height: 8px;
  transition: height .15s ease;
}
.rp-visualizer.playing span { opacity: 1; }
.rp-visualizer.playing span:nth-child(1) { animation: bar 1.1s ease-in-out infinite; }
.rp-visualizer.playing span:nth-child(2) { animation: bar 0.8s ease-in-out infinite .15s; }
.rp-visualizer.playing span:nth-child(3) { animation: bar 1.4s ease-in-out infinite .05s; }
.rp-visualizer.playing span:nth-child(4) { animation: bar 0.9s ease-in-out infinite .3s; }
.rp-visualizer.playing span:nth-child(5) { animation: bar 1.2s ease-in-out infinite .1s; }
.rp-visualizer.playing span:nth-child(6) { animation: bar 0.7s ease-in-out infinite .25s; }
.rp-visualizer.playing span:nth-child(7) { animation: bar 1.0s ease-in-out infinite .4s; }
.rp-visualizer.playing span:nth-child(8) { animation: bar 1.3s ease-in-out infinite .2s; }
@keyframes bar {
  0%,100% { height: 6px }
  50%      { height: 30px }
}

.rp-now-playing {
  display: flex; align-items: center; gap: 1rem;
  background: var(--vert-surface);
  border: 1px solid var(--vert-input-b);
  border-radius: var(--radius-md); padding: 1rem;
  margin-bottom: 1.5rem;
}
.rp-cover {
  width: 58px; height: 58px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; background: var(--green-700);
}
.rp-track-label {
  font-size: .6875rem; color: var(--vert-accent); font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: .4rem; margin-bottom: .25rem;
}
.rp-track-title { font-weight: 700; color: var(--vert-text); font-size: .9375rem; }
.rp-track-artist { font-size: .8125rem; color: var(--vert-text-sub); margin-top: .1rem; }

.rp-controls {
  display: flex; justify-content: center; margin-bottom: 1.25rem;
}
.rp-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--kbm-rouge); color: var(--white);
  border: none; font-size: 1.625rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: var(--shadow-gold);
}
.rp-play-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(174,41,24,.6); }
.rp-play-btn.loading { animation: spin .8s linear infinite; opacity: .7; }

.rp-volume {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.rp-volume i { color: var(--vert-text-sub); font-size: .9rem; flex-shrink: 0; }
.rp-volume input[type=range] {
  flex: 1; height: 4px; appearance: none;
  background: var(--vert-input); border-radius: 2px; cursor: pointer; outline: none;
}
.rp-volume input[type=range]:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}
.rp-volume input[type=range]::-webkit-slider-thumb {
  appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-400); cursor: pointer;
}

.rp-error {
  font-size: .875rem; color: #FCA5A5;
  text-align: center; margin-bottom: 1rem; line-height: 1.6;
}
.rp-error a { color: var(--gold-300); text-decoration: underline; }

.rp-footer-links {
  display: flex; gap: .875rem; flex-wrap: wrap; margin-top: 1rem;
  justify-content: center; width: 100%; text-align: center;
}

/* ============================================================
   PODCAST
   ============================================================ */
#podcast { background: var(--bg-section); }

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 768px) {
  .podcast-grid { grid-template-columns: 1fr; }
}

.pod-card {
  background: #fdfbf6; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pod-card-top {
  background: #f0ebe0; padding: 1.25rem 1.25rem .75rem;
  border-bottom: 2px solid rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: .5rem;
}
.pod-card-top-row {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.pod-share-btn {
  background: none; border: none; padding: .25rem .4rem;
  color: var(--trop-600); cursor: pointer; border-radius: var(--radius-sm);
  font-size: .9rem; transition: color var(--ease), background var(--ease);
  flex-shrink: 0;
}
.pod-share-btn:hover { color: var(--kbm-rouge); background: rgba(0,0,0,.06); }

.pod-date {
  font-size: .75rem; color: var(--trop-600); font-weight: 800;
  background: var(--trop-100); padding: .2rem .65rem;
  border-radius: var(--radius-full);
  display: inline-block; align-self: flex-start;
}
.pod-duration {
  font-size: .8rem; color: var(--text-secondary);
}
.pod-date i, .pod-duration i { margin-right: .3rem; color: var(--trop-600); }

.pod-title {
  font-weight: 800; font-size: 1.0625rem;
  color: #3a2010; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pod-duration { color: #7a5842; }

.pod-embed { background: #f0f0f0; }
.pod-embed iframe { display: block; }

/* ---- Skeleton loading ---- */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skel-base {
  background: linear-gradient(90deg, var(--skel-base-a) 25%, var(--skel-base-b) 50%, var(--skel-base-a) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
.pod-skeleton {
  background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border-card); overflow: hidden;
}
.skel-top {
  background: var(--skel-top-bg); padding: 1.375rem 1.5rem;
  display: flex; gap: 1rem; align-items: center;
  border-bottom: 2px solid var(--skel-top-sep);
  margin-bottom: .875rem;
}
.skel-line {
  height: 22px; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--skel-line-a) 25%, var(--skel-line-b) 50%, var(--skel-line-a) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.skel-sm  { height: 18px; }
.skel-title {
  height: 20px; margin: 0 1.5rem 1.25rem; border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--skel-line-a) 25%, var(--skel-line-b) 50%, var(--skel-line-a) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.skel-player {
  height: 112px; margin: 0;
  background: linear-gradient(90deg, var(--skel-base-a) 25%, var(--skel-base-b) 50%, var(--skel-base-a) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.w-25 { width: 25%; } .w-40 { width: 40%; } .w-55 { width: 55%; }
.w-60 { width: 60%; } .w-65 { width: 65%; } .w-75 { width: 75%; }
.w-80 { width: 80%; }
.podcast-error { text-align: center; padding: 3rem; color: var(--text-secondary); grid-column: 1 / -1; }
.podcast-error a { color: var(--green-700); font-weight: 700; text-decoration: underline; }

.podcast-more { text-align: center; margin-top: 2.5rem; }
.events-more { text-align: center; margin-top: 2rem; }
#eventsMoreBtn { hidden: true; }
#eventsMoreBtn:disabled { opacity: .5; cursor: wait; }

/* ============================================================
   EVENTS
   ============================================================ */
#evenements { background: var(--bg-section-alt); }

.events-sort-hint {
  font-size: .75rem; color: var(--text-muted);
  text-align: center; margin-bottom: .75rem;
}
.events-sort-hint i { margin-right: .3rem; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.ev-flyer {
  width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  position: relative; cursor: zoom-in;
}
.ev-flyer img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.ev-flyer:hover img, .ev-flyer:focus img { transform: scale(1.04); }
.ev-flyer-hint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.0);
  transition: background .3s ease;
}
.ev-flyer-hint i {
  color: #fff; font-size: 1.75rem;
  opacity: 0; transform: scale(.8);
  transition: opacity .3s ease, transform .3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
.ev-flyer:hover .ev-flyer-hint,
.ev-flyer:focus .ev-flyer-hint { background: rgba(0,0,0,.3); }
.ev-flyer:hover .ev-flyer-hint i,
.ev-flyer:focus .ev-flyer-hint i { opacity: 1; transform: scale(1); }

/* Mobile : pastille loupe toujours visible */
@media (hover: none) {
  .ev-flyer-hint {
    inset: auto; bottom: .5rem; right: .5rem;
    width: 36px; height: 36px; border-radius: var(--radius-full);
    background: rgba(0,0,0,.55);
  }
  .ev-flyer-hint i { opacity: 1; transform: scale(1); font-size: 1rem; }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain; border-radius: var(--radius-md);
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.lightbox-close {
  position: fixed; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 1.75rem; line-height: 1;
  width: 44px; height: 44px; border-radius: var(--radius-full);
  cursor: pointer; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

.event-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid var(--border-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.event-date-strip {
  background: var(--vert-bg); text-align: center;
  padding: 1.375rem 1rem;
}
.ev-day { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 900; color: var(--vert-accent); line-height: 1; }
.ev-month { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--vert-text); font-weight: 700; }
.ev-weekday { font-size: .6875rem; color: var(--vert-text-sub); text-transform: uppercase; letter-spacing: 1.5px; margin-top: .2rem; }

.event-body { padding: 1.25rem; }
.event-badge {
  display: inline-block; background: var(--tag-bg); color: var(--tag-text);
  font-size: .65rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: .2rem .625rem;
  border-radius: var(--radius-full); margin-bottom: .625rem;
}
.event-title { font-weight: 800; font-size: 1.0625rem; color: var(--text-primary); margin-bottom: .875rem; line-height: 1.3; }
.event-detail { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 700; color: var(--text-alt); margin-bottom: .425rem; }
.event-detail i { color: var(--green-600); width: 16px; text-align: center; }
.event-recurring {
  display: inline-flex; align-items: center; gap: .375rem;
  background: var(--tag-bg); color: var(--tag-text);
  font-size: .75rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: var(--radius-full);
  margin-top: .875rem;
}

/* Badge variantes */
.ev-badge--payant { background: var(--kbm-rouge); color: #fff; }
.ev-badge--gratuit { background: #3a7a28; color: #fff; }

/* Inscription obligatoire */
.ev-inscription {
  margin: .75rem 0 .25rem;
  border-left: 3px solid #ff7a6a;
  padding-left: .75rem;
}
.ev-inscription-title {
  font-size: .75rem; font-weight: 800;
  color: #ff7a6a; margin-bottom: .35rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.ev-inscription .event-detail { margin-bottom: .25rem; }
.ev-inscription a { color: var(--gold-300); text-decoration: underline; }
.ev-inscription a:hover { color: var(--gold-200); }

/* Matériel à apporter */
.ev-materiel {
  font-size: .8rem; color: var(--text-alt);
  margin: .625rem 0 .25rem;
}
.ev-materiel i { color: var(--green-600); margin-right: .4rem; }
.ev-materiel ul {
  list-style: disc; padding-left: 1.5rem; margin-top: .3rem;
}
.ev-materiel li { margin-bottom: .15rem; }

/* États vides / erreur */
.events-empty, .events-error {
  text-align: center; padding: 2.5rem; color: var(--text-secondary);
  grid-column: 1 / -1; font-size: .95rem;
}
.events-error { color: #ff6b6b; font-weight: 700; }

/* Voir plus / Voir moins */
.ev-extra[hidden] { display: none; }
.ev-extra { margin-top: .5rem; }
.ev-ics-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .75rem; padding: .5rem 1rem; width: 100%;
  background: var(--kbm-rouge); color: #fff;
  border: none; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; transition: opacity var(--ease);
}
.ev-ics-btn:hover { opacity: .85; }
.ev-ics-btn i { font-size: .8rem; }

.ev-toggle-btn {
  display: flex; align-items: center; gap: .4rem;
  margin-top: .75rem; padding: .4rem .9rem;
  background: none; border: 1px solid var(--border-card);
  border-radius: var(--radius-full); color: var(--text-secondary);
  font-size: .8rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; transition: background var(--ease), color var(--ease);
  width: 100%;
  justify-content: center;
}
.ev-toggle-btn:hover { background: rgba(255,255,255,.07); color: var(--text-primary); }
.ev-toggle-btn i { font-size: .7rem; }

/* Skeleton événement */
.ev-skeleton {
  background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border-card); overflow: hidden;
  min-height: 220px;
  background: linear-gradient(90deg, var(--skel-base-a) 25%, var(--skel-base-b) 50%, var(--skel-base-a) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--contact-bg); color: var(--contact-text);
  position: relative; overflow: hidden;
}
#contact::after {
  content: ''; position: absolute;
  bottom: -20%; right: -10%; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info .section-tag { background: var(--contact-tag-bg); color: var(--contact-tag-text); }
.contact-info .section-title { color: var(--contact-title); text-align: left; }
.contact-desc { color: var(--contact-text); line-height: 1.8; margin-bottom: 1.75rem; }

.contact-methods { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.5rem; }
.contact-method {
  display: flex; align-items: center; gap: 1.125rem;
  padding: 1.125rem; border-radius: var(--radius-md);
  background: var(--contact-method-bg);
  border: 1px solid var(--contact-method-bdr);
  transition: background var(--ease);
  text-decoration: none;
}
.contact-method:hover { background: var(--contact-method-bg); filter: brightness(1.1); }

.cm-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.cm-icon.phone { background: var(--trop-600); color: var(--white); }
.cm-icon.whatsapp { background: #25D366; color: var(--white); }
.cm-icon.facebook { background: #1877F2; color: var(--white); }
.cm-icon.instagram { background: #E1306C; color: var(--white); }
.cm-icon.radio { background: var(--gold-400); color: var(--green-900); }

.cm-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--contact-label); font-weight: 700; display: block; margin-bottom: .15rem; }
.cm-value { font-size: 1.125rem; font-weight: 800; color: var(--contact-value); }

/* Contact form */
.contact-form-box {
  background: var(--vert-bg);
  border: 1px solid var(--vert-input-b);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-form-box h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--vert-text); margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .8125rem; font-weight: 700;
  color: var(--vert-text-sub); margin-bottom: .4rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .875rem 1rem;
  background: var(--vert-input);
  border: 1px solid var(--vert-input-b);
  border-radius: var(--radius-sm); color: var(--vert-text);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color var(--ease), background var(--ease); outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--vert-text-sub); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--vert-accent); background: var(--vert-surface); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-950);
  border-top: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.5);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand .f-logo {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  color: var(--gold-400); letter-spacing: 3px; display: block; margin-bottom: .25rem;
}
.footer-brand .f-fullname {
  font-size: .8125rem; color: rgba(255,255,255,.3);
  font-style: italic; margin-bottom: 1rem; display: block;
}
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 260px; }

.f-social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.f-social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--vert-bg);
  border: 1px solid var(--vert-input-b);
  display: flex; align-items: center; justify-content: center;
  color: var(--vert-text-sub); font-size: .9375rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.f-social a:hover { background: var(--gold-400); color: var(--green-900); transform: translateY(-3px); }

.footer-col h3 {
  color: var(--white); font-size: .8125rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  color: rgba(255,255,255,.45); font-size: .875rem;
  transition: color var(--ease); display: flex; align-items: center; gap: .375rem;
}
.footer-col a:hover { color: var(--gold-400); padding-left: 3px; }
.footer-col a i { color: var(--green-500); font-size: .75rem; }

.footer-brand-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem;
}
.footer-bottom a { color: var(--gold-400); font-weight: 600; }
.footer-legal-btn {
  background: none; border: none; padding: 0;
  color: var(--gold-400); font-weight: 600; font-size: inherit;
  font-family: inherit; cursor: pointer; text-decoration: underline;
}
.footer-legal-btn:hover { color: var(--gold-300); }

/* ============================================================
   TOAST
   ============================================================ */
#kbm-toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(1rem);
  background: #1a2e1a; color: var(--gold-200);
  padding: .65rem 1.25rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap; z-index: 4000;
}
#kbm-toast.toast--visible {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ============================================================
   MODAL MENTIONS LÉGALES
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: #fdfbf6; color: #3a2010;
  border-radius: var(--radius-lg);
  max-width: 720px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: sticky; top: 1rem; float: right;
  margin: 1rem 1rem 0 0;
  background: rgba(76,49,34,.12); border: none;
  color: #3a2010; font-size: 1.5rem; line-height: 1;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  cursor: pointer; z-index: 1;
}
.modal-close:hover { background: rgba(76,49,34,.22); }
.modal-content {
  padding: 1.5rem 2rem 2rem;
}
.modal-content h2 {
  font-family: var(--font-heading); font-size: 1.75rem;
  color: var(--kbm-rouge); margin-bottom: 1.5rem;
}
.modal-content h3 {
  font-size: 1rem; font-weight: 800; color: #3a2010;
  margin: 1.5rem 0 .5rem;
  padding-bottom: .25rem;
  border-bottom: 2px solid rgba(76,49,34,.12);
}
.modal-content p { margin-bottom: .75rem; line-height: 1.7; font-size: .9375rem; }
.modal-content ul { padding-left: 1.5rem; margin-bottom: .75rem; }
.modal-content li { margin-bottom: .25rem; font-size: .9375rem; }
.modal-content a { color: var(--kbm-rouge); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .lakou-grid, .radio-layout, .contact-grid { grid-template-columns: 1fr; }
  .radio-embed-card { margin-top: 0; }
  .lakou-visual { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 4rem 1rem; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  .podcast-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .radio-fab { bottom: 16px; right: 16px; }
  .radio-fab-panel { width: calc(100vw - 32px); }

}

@media (max-width: 480px) {
  .hero-kbm { font-size: clamp(3rem, 15vw, 4.5rem); }
  .section-title { font-size: 1.75rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold-400); }
.text-green { color: var(--green-500); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
@keyframes spin { to { transform: rotate(360deg); } }
.fa-spin { animation: spin .8s linear infinite; }
