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

/* ---- CSS Variables ---- */
:root {
  --green-950: #061A0D;
  --green-900: #0A2E14;
  --green-800: #14532D;
  --green-700: #166534;
  --green-600: #22863A;
  --green-500: #2EA043;
  --green-400: #4ADE80;
  --green-100: #DCFCE7;

  --gold-600: #B45309;
  --gold-500: #D97706;
  --gold-400: #F59E0B;
  --gold-300: #FCD34D;
  --gold-200: #FDE68A;
  --gold-100: #FEF3C7;

  --cream:      #F7F4EF;
  --cream-dark: #EDE8DF;

  --text-primary:   #111827;
  --text-secondary: #4B5563;
  --text-muted:     #9CA3AF;

  --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(245,158,11,.35);
  --shadow-green: 0 4px 20px rgba(20,83,45,.35);

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

/* ---- 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(--cream);
  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);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(10,46,20,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.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(--gold-400) !important; color: var(--green-900) !important;
  border-radius: var(--radius-full) !important; font-weight: 800 !important;
  box-shadow: var(--shadow-gold);
  transition: transform var(--ease), box-shadow var(--ease) !important;
}
.nav-radio:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,158,11,.5) !important; }
.nav-radio::after { display: none !important; }

.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:
    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(46,160,67,.09) 0%, transparent 60%),
    linear-gradient(155deg, var(--green-950) 0%, #0D3A1A 35%, var(--green-900) 65%, #040F08 100%);
  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(46,160,67,.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-kbm {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  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(.9rem, 2vw, 1.15rem);
  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); }

.btn-green {
  background: var(--green-600); color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover { background: var(--green-500); }

.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(--gold-400); color: var(--green-900);
  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:var(--shadow-gold)}
  to{box-shadow:0 6px 32px rgba(245,158,11,.75)}
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section { padding: 5.5rem 1.5rem; }
.section-alt { background: var(--white); }
.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(--gold-100); color: var(--gold-600);
  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(--green-800);
  line-height: 1.15; margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.0625rem; color: var(--text-secondary);
  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(--white); }

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

.lakou-text .tag-green {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  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(--green-800);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.lakou-text p { color: var(--text-secondary); 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(--cream); border-left: 3px solid var(--green-500);
  transition: background var(--ease), transform var(--ease);
}
.pillar:hover { background: var(--green-100); transform: translateX(4px); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { font-weight: 800; color: var(--green-800); margin-bottom: .2rem; font-size: .9375rem; }
.pillar p { font-size: .875rem; color: var(--text-secondary); 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(--green-900); color: var(--white);
  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: rgba(245,158,11,.12); color: var(--gold-300); }
.radio-info .section-title { color: var(--white); text-align: left; }

.now-playing-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  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(--gold-400); 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(--white); }
.np-artist { font-size: .8125rem; color: rgba(255,255,255,.5); }


/* ---- Custom Radio Player ---- */
.radio-player-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  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(--white); }
.rp-station-tag {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--gold-400); 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: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  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(--gold-400); 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(--white); font-size: .9375rem; }
.rp-track-artist { font-size: .8125rem; color: rgba(255,255,255,.5); 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(--gold-400); color: var(--green-900);
  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(245,158,11,.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: rgba(255,255,255,.4); font-size: .9rem; flex-shrink: 0; }
.rp-volume input[type=range] {
  flex: 1; height: 4px; appearance: none;
  background: rgba(255,255,255,.18); border-radius: 2px; cursor: pointer; outline: none;
}
.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: .5rem;
}

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

.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: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pod-card-top {
  background: var(--white); padding: 1.375rem 1.5rem;
  border-bottom: 2px solid var(--green-100);
}
.pod-meta-info {
  display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem;
}
.pod-date {
  font-size: .8125rem; color: var(--green-700); font-weight: 800;
  background: var(--green-100); padding: .25rem .75rem;
  border-radius: var(--radius-full);
}
.pod-duration {
  font-size: .8125rem; color: var(--text-secondary); font-weight: 700;
  background: var(--cream); padding: .25rem .75rem;
  border-radius: var(--radius-full);
}
.pod-date i, .pod-duration i { margin-right: .35rem; color: var(--green-600); }

.pod-title {
  font-weight: 800; font-size: 1.0625rem;
  color: var(--text-primary); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.pod-embed { background: var(--cream); }
.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, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
.pod-skeleton {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark); overflow: hidden;
}
.skel-top {
  background: #f0f0f0; padding: 1.375rem 1.5rem;
  display: flex; gap: 1rem; align-items: center;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: .875rem;
}
.skel-line {
  height: 22px; border-radius: var(--radius-full);
  background: linear-gradient(90deg, #ddd 25%, #eee 50%, #ddd 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, #ddd 25%, #eee 50%, #ddd 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.skel-player {
  height: 112px; margin: 0;
  background: linear-gradient(90deg, #e4e4e4 25%, #efefef 50%, #e4e4e4 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
   ============================================================ */
#evenements { background: var(--white); }

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

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

.event-date-strip {
  background: var(--green-800); text-align: center;
  padding: 1.375rem 1rem;
}
.ev-day { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 900; color: var(--gold-400); line-height: 1; }
.ev-month { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.6); font-weight: 700; }
.ev-weekday { font-size: .6875rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1.5px; margin-top: .2rem; }

.event-body { padding: 1.25rem; }
.event-badge {
  display: inline-block; background: var(--gold-100); color: var(--gold-600);
  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; color: var(--text-secondary); 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(--green-100); color: var(--green-700);
  font-size: .75rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: var(--radius-full);
  margin-top: .875rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--green-900); color: var(--white);
  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: rgba(245,158,11,.12); color: var(--gold-300); }
.contact-info .section-title { color: var(--white); text-align: left; }

.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: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  transition: background var(--ease);
  text-decoration: none;
}
.contact-method:hover { background: rgba(255,255,255,.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(--green-700); color: var(--white); }
.cm-icon.whatsapp { background: #25D366; color: var(--white); }
.cm-icon.facebook { background: #1877F2; 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: rgba(255,255,255,.4); font-weight: 700; display: block; margin-bottom: .15rem; }
.cm-value { font-size: 1.125rem; font-weight: 800; color: var(--white); }

/* Contact form */
.contact-form-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-form-box h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--white); 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: rgba(255,255,255,.65); margin-bottom: .4rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .875rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); color: var(--white);
  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: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold-400); background: rgba(255,255,255,.1); }
.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: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); 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 h4 {
  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-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; }

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