/* =========================================================================
   Site Amandine Juste — design system Micro Boulot Studio (MBS)
   Tokens repris de la skill `mbs-design` (v1.0) + socle `studio-unique-design`.
   ========================================================================= */

:root {
  /* Trio signature (flashy) — fond des visuels d'identité forte */
  --mbs-green-flash: #1f8a0e;
  --mbs-pink-flash: #ff8fd6;
  --mbs-gold-flash: #f0b400;

  /* Structure (héritée du Studio Unique) — texte et surfaces lisibles */
  --mbs-green: #296516;
  --mbs-green-dark: #1a4010;
  --mbs-pink: #faafd4;
  --mbs-pink-soft: #fce4f0;
  --mbs-gold: #c9a227;
  --mbs-background: #fdfaf8;
  --mbs-surface: #f0ebe8;
  --mbs-text: #3a3330;
  --mbs-text-strong: #1c1a19;

  /* Typographie — jamais une 3e police */
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;

  /* Signature MBS */
  --mbs-tilt: rotate(-6deg);
  --mbs-gradient: linear-gradient(115deg, #1f8a0e 0%, #1a4010 22%, #ff8fd6 50%, #f0b400 72%, #1f8a0e 100%);
  --mbs-gradient-badge: linear-gradient(135deg, #1f8a0e, #ff8fd6 50%, #f0b400);

  /* Tailles fluides */
  --text-hero: clamp(44px, 8vw, 104px);
  --text-h1: clamp(34px, 5vw, 64px);
  --text-h2: clamp(28px, 3.6vw, 46px);
  --text-h3: clamp(20px, 2.4vw, 27px);
  --text-body: clamp(16px, 1.4vw, 19px);

  /* Espacements */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: clamp(72px, 12vw, 132px);

  /* Formes */
  --radius-card: 24px;
  --radius-button: 50px;
  --radius-badge: 12px;

  /* Ombres */
  --shadow-card: 0 4px 24px rgba(41, 101, 22, 0.10);
  --shadow-strong: 0 12px 48px rgba(26, 64, 16, 0.22);

  --max-width: 1200px;
  --side-margin: clamp(20px, 6vw, 96px);
}

/* ----------------------------------------------------------------- Reset */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--mbs-text);
  background: var(--mbs-background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  margin: 0;
  color: var(--mbs-text-strong);
}

p { margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------- Layout */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-margin);
}

.section { padding-block: var(--space-xl); }

.section--tight { padding-block: var(--space-lg); }

.section--lg { padding-block: calc(var(--space-xl) * 1.15); }

/* Bande dégradé signature — fond des zones d'identité forte */
.band {
  position: relative;
  background: var(--mbs-gradient);
  color: var(--mbs-background);
  isolation: isolate;
}

.band::after { /* voile pour garder le texte lisible sur le dégradé */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 64, 16, 0.28);
  z-index: -1;
}

.band h1, .band h2, .band h3 { color: var(--mbs-background); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 var(--space-sm);
  opacity: 0.9;
}

/* Titre principal incliné -6° — signature MBS, angle FIXE */
.tilt {
  display: inline-block;
  transform: var(--mbs-tilt);
  transform-origin: left center;
}

.lead { font-size: clamp(17px, 2vw, 21px); max-width: 46ch; }

/* --------------------------------------------------------------- Badge MBS */
.badge-mbs {
  --size: 46px;
  width: var(--size);
  height: var(--size);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mbs-gradient-badge);
  color: var(--mbs-background);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: calc(var(--size) * 0.34);
  letter-spacing: 0.02em;
  transform: var(--mbs-tilt);
  box-shadow: 0 3px 12px rgba(26, 64, 16, 0.28);
}

.badge-mbs--lg { --size: 96px; }

/* Pastille tagline "le talk-show des podcasteurs" */
.tagline-pill {
  display: inline-block;
  background: var(--mbs-background);
  color: var(--mbs-green-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: var(--radius-button);
  transform: var(--mbs-tilt);
  box-shadow: var(--shadow-card);
}

/* --------------------------------------------------------------- Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.btn--primary { background: var(--mbs-pink); color: var(--mbs-green); }
.btn--primary:hover { background: var(--mbs-pink-flash); }

.btn--secondary { background: var(--mbs-green); color: var(--mbs-pink); }
.btn--secondary:hover { background: var(--mbs-green-dark); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover { background: rgba(253, 250, 248, 0.14); }

/* Bouton "fun" : dégradé signature + halo lumineux qui respire */
.btn--glow {
  background: var(--mbs-gradient-badge);
  color: var(--mbs-background);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(26, 64, 16, 0.45);
  border: none;
  animation: btn-glow-pulse 2.6s ease-in-out infinite;
}
.btn--glow:hover { transform: translateY(-2px) scale(1.04); }

@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 143, 214, 0.45), 0 0 0 rgba(240, 180, 0, 0); }
  50% { box-shadow: 0 0 26px rgba(255, 143, 214, 0.8), 0 0 42px rgba(240, 180, 0, 0.5); }
}

.btn--sm { padding: 10px 20px; font-size: 0.92rem; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 248, 0.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--mbs-surface);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--mbs-text-strong);
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }

.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--mbs-text);
  transition: color 0.15s ease;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--mbs-green); }

.nav__cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--mbs-text-strong);
}

.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: 96px var(--space-md) var(--space-md);
    background: var(--mbs-background);
    box-shadow: var(--shadow-strong);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .nav[data-open="true"] { transform: translateX(0); }
  .nav a { font-size: 1.1rem; }
  .nav__cta { margin-left: 0; }

  body[data-nav-open="true"] { overflow: hidden; }
}

/* --------------------------------------------------------------- Hero */
.hero { padding-block: clamp(72px, 14vw, 150px); }

/* Marge renforcée : le tilt -6° soulève le coin haut-droit du titre,
   il ne doit jamais chevaucher l'eyebrow au-dessus. */
.hero .eyebrow { margin-bottom: clamp(40px, 7vw, 64px); }

.hero__title {
  font-size: var(--text-hero);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.hero__sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  max-width: 40ch;
  margin-bottom: var(--space-lg);
}

/* Bloc "scénario" : motif réutilisé partout où le site parle en scénariste
   (slugline + didascalie + texte). */
.script-block {
  max-width: 56ch;
  margin-bottom: var(--space-lg);
}

.script-slug {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mbs-pink-flash);
  margin: 0 0 10px;
}

.script-text {
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

/* Didascalie ("VOIX-OFF", "NOIR. FLASHBACK.") : italique, même gabarit que le corps de texte qui suit */
.script-cue {
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
  margin: 0 0 4px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* --------------------------------------------------------------- Section head */
.section__head { max-width: 56ch; margin-bottom: var(--space-lg); }

.section__title { font-size: var(--text-h2); margin-bottom: var(--space-sm); }

/* --------------------------------------------------------------- Qui je suis */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

/* Cadre dégradé signature autour de la photo, coins arrondis */
.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  background: var(--mbs-gradient);
  padding: 10px;
  box-shadow: var(--shadow-card);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 10px);
  display: block;
}

/* État "pas encore de photo" : même cadre, texte placeholder centré */
.about__photo--placeholder {
  display: grid;
  place-items: center;
  color: var(--mbs-background);
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
}

.about__photo--placeholder span { transform: var(--mbs-tilt); font-size: 1.1rem; }

.timeline {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: baseline;
}

.timeline b {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--mbs-green);
}

/* --------------------------------------------------------------- Cartes projets */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--space-md);
}

/* Bandeau logos clients : défilement infini, logos en blanc (PNG pré-traités) */
.logo-marquee {
  margin-top: var(--space-xl);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-marquee-scroll 110s linear infinite;
}

.logo-marquee__logo {
  height: 22px;
  width: auto;
  margin: 0 var(--space-lg) 0 0;
  flex: 0 0 auto;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.logo-marquee__logo:hover { opacity: 1; }

@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
  .logo-marquee { overflow-x: auto; }
}

.card {
  background: var(--mbs-background);
  border: 1px solid var(--mbs-surface);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Surface claire : on ré-ancre la couleur du texte même à l'intérieur d'une .band */
  color: var(--mbs-text);
}

.card__title,
.band .card__title { color: var(--mbs-text-strong); }

.card__kicker {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mbs-green);
}

.card__title { font-size: var(--text-h3); }

.card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--mbs-green);
  border-bottom: 2px solid var(--mbs-pink);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* --------------------------------------------------------------- Teaser MBS */
.teaser {
  display: grid;
  gap: var(--space-md);
  justify-items: start;
}

.teaser__copy {
  display: grid;
  gap: 8px;
}

.teaser__copy .lead {
  margin: 0;
}

.teaser__row { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }

.teaser__title { font-size: var(--text-h2); }

/* --------------------------------------------------------------- Contact */
.contact { display: grid; gap: var(--space-md); justify-items: start; }

.contact__mail {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 40px);
  color: var(--mbs-green);
  border-bottom: 3px solid var(--mbs-pink);
  padding-bottom: 4px;
}

.contact__mail--sm {
  font-size: 1.05rem;
  border-bottom-width: 2px;
  padding-bottom: 2px;
  /* aligne le texte avec "Prendre" dans le bouton pill en dessous (padding-left 28px + bordure 2px) */
  margin-left: 30px;
}

/* --------------------------------------------------------------- Footer */
.site-footer {
  background: var(--mbs-green-dark);
  color: var(--mbs-background);
  padding-block: var(--space-lg);
}

.site-footer a { color: var(--mbs-background); opacity: 0.86; }
.site-footer a:hover { opacity: 1; }

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
}

.site-footer__col { display: grid; gap: 10px; align-content: start; }

.site-footer__col h4 {
  color: var(--mbs-pink);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(253, 250, 248, 0.18);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ================================================================
   PAGE MBS
   ================================================================ */

.hero__brand {
  text-align: center;
  /* même valeur que le padding-top du .hero pour équilibrer l'espace au-dessus
     du titre avec celui en dessous de la pastille tagline */
  margin: 0 auto clamp(72px, 14vw, 150px);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 7vw, 76px);
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--mbs-background);
  margin: 0 0 var(--space-md);
  transform: var(--mbs-tilt);
  transform-origin: center;
}

.wordmark span { display: block; }

/* Embed vidéo responsive (playlist YouTube) */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: var(--space-md);
  border-radius: var(--radius-badge);
  overflow: hidden;
  background: var(--mbs-green-dark);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed--featured {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-strong);
}


/* Bandeau "premier épisode bientôt" (au-dessus du dernier épisode) */
.notice {
  background: var(--mbs-pink-soft);
  border: 1px solid var(--mbs-pink);
  border-left: 5px solid var(--mbs-pink-flash);
  border-radius: var(--radius-badge);
  padding: var(--space-sm) var(--space-md);
  margin: 0 0 var(--space-md);
  font-weight: 600;
  color: var(--mbs-green-dark);
  max-width: 70ch;
}

/* Grille des épisodes précédents */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--space-md);
}

.episode {
  display: flex;
  flex-direction: column;
  background: var(--mbs-background);
  border: 1px solid var(--mbs-surface);
  border-radius: var(--radius-card);
  padding: var(--space-sm);
  box-shadow: var(--shadow-card);
  color: var(--mbs-text);
}

.episode__title { color: var(--mbs-text-strong); }

.episode__art {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
  background: var(--mbs-gradient);
  margin-bottom: 12px;
}

.episode__body { display: grid; gap: 8px; align-content: start; }

.episode__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-top: 8px;
}

.episode__listen {
  align-self: start;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mbs-green);
  border-bottom: 2px solid var(--mbs-pink);
  padding-bottom: 2px;
}

.is-placeholder { position: relative; }

.is-placeholder::after {
  content: "exemple";
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mbs-gold);
  color: var(--mbs-green-dark);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Plateformes d'écoute directement dans le hero */
/* Paragraphe + mini lecteur côte à côte */
.hero__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.hero__watch { margin-bottom: var(--space-sm); }

/* Mini lecteur "dernier épisode" dans le hero */
.hero-player {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin-inline: auto;
  background: var(--mbs-background);
  border-radius: var(--radius-card);
  padding: 14px;
  box-shadow: var(--shadow-strong);
  color: var(--mbs-text);
}

.hero-player__art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--mbs-gradient);
  object-fit: cover;
  margin-bottom: 12px;
}

.hero-player__body { min-width: 0; }

.hero-player__eyebrow {
  display: block;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mbs-green);
  margin-bottom: 2px;
}

.hero-player__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--mbs-text-strong);
  line-height: 1.25;
}

.hero-player__desc {
  margin: 0 0 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--mbs-text);
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-player .player-mock { margin-top: 0; padding: 6px 10px; }
.hero-player .player-mock__play { width: 22px; height: 22px; font-size: 0.55rem; }
.hero-player .player-mock__time { font-size: 0.7rem; }

.hero-player__audio { width: 100%; height: 32px; }

/* Ligne de liens sobres (pas des boutons) pour les plateformes secondaires */
.hero__platform-links {
  font-size: 0.95rem;
  color: var(--mbs-background);
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

.hero__platform-links a {
  font-weight: 600;
  color: var(--mbs-background);
  border-bottom: 2px solid var(--mbs-pink-flash);
  padding-bottom: 1px;
}

.hero__platform-links a:hover { opacity: 0.8; }

/* Faux lecteur audio (état "exemple", avant le vrai <audio> injecté par episodes.js) */
.player-mock {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--space-md);
  padding: 10px 16px;
  border-radius: var(--radius-button);
  background: var(--mbs-surface);
}

.player-mock__play {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mbs-green);
  color: var(--mbs-background);
  font-size: 0.7rem;
  padding-left: 2px;
}

.player-mock__bar {
  flex: 1 1 auto;
  height: 4px;
  border-radius: 2px;
  background: var(--mbs-pink-soft);
  overflow: hidden;
}

.player-mock__progress { display: block; width: 22%; height: 100%; background: var(--mbs-pink-flash); }

.player-mock__time {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mbs-text);
  opacity: 0.7;
}

/* --------------------------------------------------------------- Divers */
.mono-legal { max-width: 68ch; }
.mono-legal h2 { font-size: var(--text-h3); margin: var(--space-lg) 0 var(--space-sm); }

/* Reveal au scroll (piloté par main.js).
   Amélioration progressive : masqué UNIQUEMENT si le JS tourne (html.js),
   pour que le contenu reste visible sans JS ou si l'observer ne se déclenche pas. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   PAGE MBS — À propos / FAQ
   ================================================================ */
.about-podcast__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

/* Carte de lecture : le texte long ne va jamais directement sur le dégradé */
.about-podcast__text {
  background: var(--mbs-background);
  color: var(--mbs-text);
  border-radius: var(--radius-card);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow-strong);
}

.about-podcast__text p { max-width: 48ch; color: var(--mbs-text); }
.about-podcast__text p:last-child { margin-bottom: 0; }

.faq { display: grid; gap: 10px; }

.faq__item {
  background: var(--mbs-background);
  border: 1px solid var(--mbs-surface);
  border-radius: var(--radius-badge);
  padding: 14px 18px;
}

.faq__item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--mbs-text-strong);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.3rem;
  color: var(--mbs-green);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p { margin: 10px 0 0; color: var(--mbs-text); font-size: 0.9rem; line-height: 1.55; }
.faq__item p a { color: var(--mbs-green); font-weight: 600; border-bottom: 2px solid var(--mbs-pink); }

/* ================================================================
   PAGE MBS — Devenir partenaire
   ================================================================ */
.partner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.partner .eyebrow { flex-basis: 100%; }

.partner .lead { margin: 0; max-width: 56ch; flex: 1 1 360px; font-size: 0.95rem; }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about-podcast__grid { grid-template-columns: 1fr; }
  .hero__content { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn { width: auto; }
}
