/* =============================================
   DÉVELOPPE TON ZESTE – Feuille de style principale
   ============================================= */

:root {
  --beige: #EDE6D9;
  --beige-light: #F7F3EC;
  --beige-mid: #E5DDD0;
  --orange: #F59A00;
  --orange-light: #FFF4DC;
  --black: #111111;
  --gray: #6B6B6B;
  --gray-light: #E8E8E8;
  --white: #FFFFFF;
  --font-main: 'Inter', sans-serif;
  --font-title: 'Montserrat', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   NAVBAR
   ============================================= */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }

/* Logo officiel – Navbar */
.logo-img-real {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Logo officiel – Footer (fond sombre → filtre pour lisibilité) */
.logo-img-footer {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

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

.nav-item {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.2s;
}
.nav-item:hover, .nav-item.active {
  background: var(--orange-light);
  color: var(--orange);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   SECTION COMMONS
   ============================================= */

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--black);
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-intro {
  max-width: 680px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* =============================================
   HERO
   ============================================= */

#hero {
  min-height: 100vh;
  background: var(--beige-light);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--beige-mid) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

/* Encadrement image podcast pédagogique */
.hero-badge-img-wrap {
  display: inline-block;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13), 0 0 0 3px var(--orange);
  line-height: 0;
}

.hero-badge-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.title-line1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  font-style: normal;
  color: var(--black);
  -webkit-text-stroke: 0;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}

.title-line2 {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--orange);
  line-height: 1;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-quote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  text-align: left;
  font-size: 16px;
  color: var(--gray);
  font-style: italic;
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 32px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.stat-item { text-align: center; padding: 0 28px; }
.stat-num { display: block; font-size: clamp(28px, 4vw, 36px); font-weight: 800; color: var(--black); }
.stat-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gray); text-transform: uppercase; }
.stat-sep { width: 1px; height: 50px; background: var(--beige-mid); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.5s ease both;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--beige-mid);
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: 12px;
}
.btn-listen:hover { background: var(--black); transform: translateY(-1px); }

.btn-listen-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: 10px;
}
.btn-listen-sm:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0077B5;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: 12px;
}
.btn-linkedin:hover { background: #005f91; transform: translateY(-1px); }

.btn-linkedin-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: #0077B5;
  color: var(--white);
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-linkedin-sm:hover { background: #005f91; transform: translateY(-1px); }

/* =============================================
   TAGS
   ============================================= */

.tag { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-dark { background: var(--black); color: var(--white); }
.tag-orange { background: var(--orange); color: var(--white); }
.tag-beige { background: var(--beige-mid); color: var(--black); }
.tag-beige-dark { background: var(--beige-mid); color: var(--black); }

.ep-tag { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }

.freq-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  background: var(--beige-light);
  color: var(--gray);
  border: 1px solid var(--beige-mid);
}
.freq-bi { background: var(--orange-light); color: var(--orange); border-color: var(--orange); }

/* =============================================
   CONCEPT
   ============================================= */

#concept { background: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.concept-text { }
.concept-text h2 { margin-bottom: 20px; }
.concept-text p { color: var(--gray); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.concept-text strong { color: var(--black); }
.concept-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

.brand-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.brand-wave-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  opacity: 0.15;
}

.brand-logo-big {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-for { font-weight: 600; color: var(--black); margin-bottom: 4px; }
.brand-sub { color: var(--gray); font-size: 14px; margin-bottom: 20px; }

.brand-author {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--beige-mid);
  padding-top: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info strong { font-size: 16px; }
.author-info span { font-size: 13px; color: var(--gray); }
.author-co { font-size: 12px; font-weight: 600; color: var(--orange); }

/* CTA gauche – sous le texte concept */
.concept-cta-block {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--orange-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}

.concept-cta-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.concept-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--orange);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all 0.2s;
}
.cta-resource-btn i { color: var(--orange); }
.cta-resource-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cta-resource-btn:hover i { color: var(--white); }

/* CTA droite – sous la brand card */
.brand-cta-block {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px dashed var(--orange);
  text-align: center;
}

.brand-cta-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.brand-cta-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  font-style: italic;
}

.brand-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.brand-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: all 0.2s;
}
.brand-cta-btn:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   BEST OF
   ============================================= */

#bestof { background: var(--beige-light); }

.bestof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.bestof-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.bestof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bestof-thumb {
  position: relative;
  overflow: hidden;
}

.bestof-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--beige-light);
  transition: transform 0.4s ease;
}
.bestof-card:hover .bestof-thumb img { transform: scale(1.02); }

.bestof-badge-img {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.bestof-body h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--black);
}

.bestof-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.ep-meta { margin-top: 12px; }

/* Bouton déroulant Best Of */
.bestof-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.bestof-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--beige-mid);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.25s;
}
.bestof-toggle-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.bestof-toggle-btn i {
  font-size: 13px;
  transition: transform 0.35s ease;
}
.bestof-toggle-btn.open i {
  transform: rotate(180deg);
}

/* Animation d'ouverture */
.bestof-extra {
  animation: fadeInUp 0.4s ease both;
}

/* =============================================
   PLAYLISTS
   ============================================= */

#playlists { background: var(--white); }

.playlists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.playlist-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.playlist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }

.playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.playlist-icon {
  width: 42px; height: 42px;
  background: var(--beige-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
}

.playlist-tag { font-size: 10px; padding: 3px 10px; }

.playlist-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.playlist-card > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

.playlist-episodes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.playlist-episodes li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
  line-height: 1.5;
}
.playlist-episodes li a i { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.playlist-episodes li a:hover { color: var(--orange); }

.playlist-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: all 0.2s;
}
.playlist-more:hover { letter-spacing: 0.02em; }

/* =============================================
   EPISODES
   ============================================= */

#episodes { background: var(--beige-light); }

.ep-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.ep-filter {
  padding: 8px 18px;
  border-radius: 100px;
  border: 2px solid var(--beige-mid);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
}
.ep-filter:hover { border-color: var(--orange); color: var(--orange); }
.ep-filter.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.ep-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.ep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ep-card.hidden { display: none; }

.ep-thumb {
  position: relative;
  overflow: hidden;
}

.ep-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--beige-light);
  transition: transform 0.4s ease;
}
.ep-card:hover .ep-thumb img { transform: scale(1.02); }

.ep-play {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 28px;
  color: var(--white);
}
.ep-card:hover .ep-play { opacity: 1; }

.ep-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ep-body h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: auto;
}

.ep-body h4 em { color: var(--gray); font-style: italic; font-size: 13px; }

.ep-more-wrap { text-align: center; }

/* =============================================
   EXPERTS
   ============================================= */

#experts { background: var(--white); }

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.expert-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.expert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.expert-main {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  grid-column: 1 / -1;
  max-width: 500px;
}

.expert-avatar {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.avatar-init {
  background: var(--black);
  color: var(--white);
}

.avatar-img img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.expert-info { display: flex; flex-direction: column; gap: 3px; }
.expert-info strong { font-size: 15px; color: var(--black); }
.expert-info span { font-size: 13px; color: var(--gray); }
.expert-co { font-size: 12px; font-weight: 600; color: var(--orange); }
.expert-sub { font-size: 11px; font-style: italic; color: var(--gray); }
.expert-site { font-size: 12px; color: var(--orange); font-weight: 600; }
.expert-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

/* =============================================
   PODCAST CHANNEL BLOCK
   ============================================= */

.podcast-channel-block {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 2px solid var(--beige-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcast-channel-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--beige-light);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--beige-mid);
  width: 100%;
  max-width: 900px;
  transition: all 0.3s;
}
.podcast-channel-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.podcast-channel-thumb-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.podcast-channel-thumb-link:hover { transform: scale(1.03); }

.podcast-channel-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.podcast-channel-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.podcast-channel-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}
.podcast-channel-desc strong { color: var(--black); }

.podcast-channel-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: var(--font-main);
}

.platform-ausha  { background: var(--orange); color: var(--white); }
.platform-ausha:hover  { background: #d4840a; transform: translateY(-2px); }

.platform-spotify { background: #1DB954; color: var(--white); }
.platform-spotify:hover { background: #17a349; transform: translateY(-2px); }

.platform-apple  { background: #555; color: var(--white); }
.platform-apple:hover  { background: #333; transform: translateY(-2px); }

.platform-amazon { background: #FF9900; color: var(--black); }
.platform-amazon:hover { background: #e68a00; transform: translateY(-2px); }

.platform-youtube { background: #FF0000; color: var(--white); }
.platform-youtube:hover { background: #cc0000; transform: translateY(-2px); }

@media (max-width: 768px) {
  .podcast-channel-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .podcast-channel-thumb-link { max-width: 220px; margin: 0 auto; }
  .podcast-channel-info { text-align: center; }
  .podcast-channel-platforms { justify-content: center; }
}

/* =============================================
   CONTACT
   ============================================= */

#contact { background: var(--beige-light); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-text h2 { margin-bottom: 20px; }
.contact-text > p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }

.contact-uses { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-uses li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--black); }
.contact-uses li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--beige-light);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: var(--white); }

.form-group textarea { resize: vertical; min-height: 110px; }

/* =============================================
   FOOTER
   ============================================= */

#footer { background: var(--black); color: var(--beige); padding: 64px 0 0; }

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 300px; }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  color: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-nav h4, .footer-themes h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-nav ul, .footer-themes ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav li a, .footer-themes li { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav li a:hover { color: var(--orange); }
.footer-themes li { font-size: 13px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 24px 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-bottom a { color: var(--orange); }

.footer-signature-link {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}
.footer-signature-link:hover {
  opacity: 1;
  transform: scale(1.04);
}

.footer-signature {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  /* La signature est blanche sur fond noir, elle ressort parfaitement */
}

/* =============================================
   TOAST
   ============================================= */

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--black);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* =============================================
   ANIMATIONS
   ============================================= */

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .two-col, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--beige-mid);
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-item { width: 100%; text-align: left; }
  .nav-cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .hamburger { display: flex; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { width: 80px; height: 1px; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }

  .bestof-grid, .playlists-grid { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: 1fr 1fr; }

  .section-container { padding: 64px 20px; }
}

@media (max-width: 500px) {
  .episodes-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
