/* =============================================================
   INSPIRA EDITIONS — main.css
   Mobile-first · accessible · themeable via variables CSS
   -------------------------------------------------------------
   👉 Pour adapter aux vraies couleurs de la marque, modifie
      UNIQUEMENT le bloc :root ci-dessous.
   ============================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Couleurs — ajustables d'une ligne */
  --ink:        #1b1916;   /* texte / encre, noir chaud */
  --ink-soft:   #4a443c;
  --muted:      #756e64;
  --paper:      #fbf9f5;   /* fond principal, blanc cassé chaud */
  --paper-2:    #ffffff;   /* sections alternées */
  --line:       #e8e2d7;   /* filets / bordures */
  --accent:     #b0823c;   /* OR ANTIQUE — couleur d'accent (CTA, liens) */
  --accent-ink: #8c6526;   /* accent au survol */
  --on-dark:    #ffffff;

  /* Typographie */
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Échelle fluide (clamp = s'adapte de mobile à desktop) */
  --step--1: clamp(0.83rem, 0.78rem + 0.25vw, 0.95rem);
  --step-0:  clamp(1rem, 0.94rem + 0.30vw, 1.15rem);
  --step-1:  clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --step-2:  clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  --step-3:  clamp(2.2rem, 1.6rem + 3vw, 4rem);
  --step-4:  clamp(3rem, 2rem + 6vw, 7rem);

  /* Mise en page */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET LÉGER ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; }

/* ---------- ACCESSIBILITÉ ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--on-dark);
  padding: 0.6rem 1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

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

/* ============================================================
   EN-TÊTE  (logo centré, bouton langue à droite)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
}
.site-header__logo { grid-column: 2; justify-self: center; }
.site-header__logo img { height: 44px; width: auto; }

.site-header__lang { grid-column: 3; justify-self: end; }
.site-header__lang a {
  display: inline-block;
  font-size: var(--step--1); font-weight: 600;
  color: var(--on-dark); background: var(--ink);
  padding: 0.62rem 1.3rem; border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.site-header__lang a:hover { background: var(--accent-ink); transform: translateY(-1px); }

/* ============================================================
   HERO  (bande courte, texte centré)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(300px, 44vh, 480px);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--on-dark);
  text-align: center;
  background: var(--ink);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,15,0.32) 0%, rgba(20,18,15,0.18) 45%, rgba(20,18,15,0.40) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  padding-block: 2.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.30);
  animation: rise 0.9s var(--ease) both;
}
.hero__stars {
  font-size: var(--step-0);
  letter-spacing: 0.22em;
  color: var(--accent);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  animation: rise 0.9s var(--ease) 0.12s both;
}
.hero__tagline {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
  animation: rise 0.9s var(--ease) 0.24s both;
}

/* ============================================================
   SECTIONS "FEATURE" (Books / Music)
   ============================================================ */
.feature { padding-block: var(--section-y); background: var(--paper); }
.feature--alt { background: var(--paper-2); }

.feature__grid,
.about__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.feature__media img,
.about__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 24px 60px -28px rgba(27,25,22,0.35);
}
.feature__title,
.about__title {
  font-size: var(--step-2);
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.feature__text p,
.about__text p { color: var(--ink-soft); max-width: 56ch; }
.feature__text p + .feature__text p { margin-top: 1rem; }

/* Bouton CTA : pilule contour qui se remplit au survol */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  margin-top: 1.7rem;
  font-family: var(--font-display);
  font-weight: 500; font-size: var(--step-0);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.72em 1.5em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn::after { content: "\2192"; transition: transform 0.3s var(--ease); }
.btn:hover { background: var(--ink); color: var(--on-dark); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }

/* ============================================================
   PAGE LÉGALE / TEXTE (Privacy, Terms…)
   ============================================================ */
.legal { padding-block: clamp(3rem, 6vw, 5.5rem); background: var(--paper); }
.legal__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.legal__title {
  font-family: var(--font-display);
  font-size: var(--step-3); font-weight: 500;
  letter-spacing: -0.01em; margin-bottom: 1.8rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: var(--step-1); font-weight: 500;
  margin-top: 2.4rem; margin-bottom: 0.8rem;
}
.legal p { color: var(--ink-soft); margin-bottom: 1rem; }
.legal ul { color: var(--ink-soft); margin: 0 0 1rem 1.2rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a {
  color: var(--accent-ink); font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}
.legal a:hover { color: var(--ink); }

/* ============================================================
   SECTION "ABOUT"
   ============================================================ */
.about { padding-block: var(--section-y); background: var(--paper); }
.about__eyebrow {
  font-size: var(--step--1); font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 0.6rem;
}
.about__text p + p { margin-top: 1rem; }
.about__icon { width: 96px; height: auto; margin-top: 2rem; }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.site-footer {
  background: var(--ink); color: var(--on-dark);
  padding-block: 2.4rem;
}
.site-footer__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.site-footer__copy { font-size: var(--step--1); opacity: 0.8; }
.site-footer__links {
  display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: var(--step--1);
}
.site-footer__links a { opacity: 0.85; transition: opacity 0.25s var(--ease); }
.site-footer__links a:hover { opacity: 1; color: var(--accent); }
.site-footer__current { color: var(--accent-ink); font-weight: 500; }

/* ============================================================
   RÉVÉLATION AU SCROLL (progressive enhancement)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ============================================================
   BREAKPOINT : tablette / desktop (≥ 768px)
   ============================================================ */
@media (min-width: 768px) {
  .site-header__logo img { height: 52px; }
  .feature__grid,
  .about__grid { grid-template-columns: 1fr 1fr; }
  .feature__grid--reverse .feature__media { order: 2; }
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* ============================================================
   PRÉFÉRENCE : MOUVEMENT RÉDUIT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__video { display: none; }
}

/* ============================================================
   PAGE INSPIRA MOMENTS (catalogue musique)
   ============================================================ */
.im-banner { width: 100%; background: var(--ink); line-height: 0; }
.im-banner__img {
  width: 100%;
  height: clamp(150px, 26vw, 380px);
  object-fit: cover;
}
.im-intro {
  text-align: center;
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.4rem, 3vw, 2.4rem);
}
.im-intro__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.6rem);
  letter-spacing: -0.01em;
}
.im-intro__subtitle { color: var(--muted); margin-top: 0.5rem; font-size: var(--step-0); }
.im-intro .btn { margin-top: 1.5rem; }

.im-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.2rem) clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: var(--section-y);
}
.im-card { text-align: center; }
.im-card__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px -22px rgba(27,25,22,0.5);
}
.im-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  margin-top: 1rem;
  color: var(--ink);
}
.im-card__links {
  list-style: none; margin: 0.9rem 0 0; padding: 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem;
}
.im-card__links a { display: inline-flex; transition: transform 0.2s var(--ease); }
.im-card__links a:hover { transform: translateY(-3px) scale(1.07); }
.im-card__links img { width: 30px; height: 30px; border-radius: 7px; }

.im-follow { text-align: center; padding-block: clamp(2rem, 4vw, 3.5rem); }
.im-follow__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-1); margin-bottom: 1.2rem;
}
.im-follow__icons { display: flex; justify-content: center; gap: 1.4rem; }
.im-follow__icons a {
  color: var(--ink);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.im-follow__icons a:hover { color: var(--accent-ink); transform: translateY(-2px); }
.im-follow__icons svg { width: 26px; height: 26px; display: block; }

@media (min-width: 600px) { .im-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .im-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PAGE BOOKS (catalogue livres)
   ============================================================ */
.books { padding-block: clamp(2.5rem, 5vw, 4rem) var(--section-y); background: var(--paper); }
.books__intro { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.books__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.6rem); letter-spacing: -0.01em;
}
.books__subtitle { color: var(--muted); margin-top: 0.5rem; font-size: var(--step-0); }
.books__grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  max-width: 880px; margin-inline: auto;
}
.books__card { display: block; border-radius: 16px; }
.books__card img {
  width: 100%; height: auto; border-radius: 16px;
  box-shadow: 0 22px 50px -24px rgba(27,25,22,0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.books__card:hover img { transform: translateY(-5px); box-shadow: 0 30px 60px -24px rgba(27,25,22,0.6); }
@media (min-width: 680px) { .books__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PAGE-LIVRE — landing produit (ex. Comment adopter une licorne)
   ============================================================ */
.bl-pano {
  width: 100%;
  height: clamp(190px, 26vw, 440px);
  object-fit: cover; object-position: center;
  display: block; background: #e9f1fb;
}
.bl-hero { background: #e9f1fb; text-align: center; padding-block: clamp(2rem, 4.5vw, 3.5rem); }
.bl-hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.55rem, 1rem + 2.6vw, 2.7rem); letter-spacing: -0.01em;
  max-width: 22ch; margin-inline: auto; color: var(--ink);
}
.bl-hero .bl-cta { margin-top: 1.5rem; }

/* Bouton CTA Amazon (rose, plein) */
.bl-cta {
  display: inline-flex; align-items: center; gap: 0.45em;
  background: #d81e9b; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-0);
  padding: 0.78em 1.6em; border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.bl-cta:hover { background: #b81585; color: #fff; transform: translateY(-2px); }

/* Sections alternées */
.bl-section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.bl-section--blue  { background: #e9f1fb; }
.bl-section--white { background: var(--paper-2); }

/* Texte + listes à puces emoji */
.bl-lead { color: var(--ink-soft); margin-top: 0.4rem; }
.bl-list { list-style: none; padding: 0; margin: 1.1rem 0 0; }
.bl-list li {
  color: var(--ink-soft); line-height: 1.6; margin-bottom: 0.55rem;
  padding-left: 1.8em; text-indent: -1.8em;
}
.bl-text .bl-cta { margin-top: 1.7rem; }

/* --- Variantes page-livre : bande-titre, sections grises, bande CTA dégradée --- */
.bl-titleband { background: #f2f2f2; text-align: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.bl-titleband__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.8rem); letter-spacing: -0.01em; color: var(--ink);
}
.bl-titleband__subtitle {
  margin-top: 0.55rem; font-size: var(--step--1);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.bl-section--grey { background: #f2f2f2; }

.bl-band {
  background: linear-gradient(100deg, #1f3bd4 0%, #6a2ad6 55%, #a435e0 100%);
  color: #fff; text-align: center; padding-block: clamp(3rem, 6vw, 5rem);
}
.bl-band__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.7rem); color: #fff; }
.bl-band__text { max-width: 60ch; margin: 1rem auto 0; color: rgba(255,255,255,0.92); }
.bl-band .btn { margin-top: 1.8rem; }
.btn--on-dark { border-color: #fff; color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--ink); }

/* ============================================================
   PAGE BONUS (privée, noindex) — quiz vidéo
   ============================================================ */
.bonus { padding-block: clamp(3rem, 6vw, 5rem); background: var(--paper); }
.bonus__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.bonus__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-3); letter-spacing: -0.01em;
}
.bonus__lead { color: var(--ink-soft); max-width: 60ch; margin: 1.1rem auto 0; }
.bonus__list { list-style: none; display: inline-block; text-align: left; padding: 0; margin: 1.3rem auto 0; }
.bonus__list li { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.5rem; }
.bonus__note { color: var(--ink-soft); max-width: 60ch; margin: 1.4rem auto 0; }

/* Embed vidéo responsive 16:9 */
.video-embed {
  position: relative; padding-top: 56.25%;
  margin: clamp(1.8rem, 4vw, 2.6rem) auto 0; max-width: 900px;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 22px 50px -24px rgba(27,25,22,0.5);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   PAGE BONUS « Qui Rira ? » — lecteur audio de devinettes
   ============================================================ */
.bl-intro-text { color: var(--ink-soft); max-width: 56ch; margin: 1rem auto 0; }

.audio-player-widget {
  --ap: #6c5ce7;                 /* accent du lecteur (violet) */
  max-width: 380px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.6rem 1.4rem; text-align: center;
  box-shadow: 0 24px 60px -30px rgba(27,25,22,0.4);
}
.track-title {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-0);
  color: var(--ink); margin-bottom: 0.8rem; min-height: 2.6em;
  display: flex; align-items: center; justify-content: center;
}
.audio-emoji { font-size: 3.4rem; line-height: 1; margin: 0.2rem 0 1.2rem; }
.audio-player-widget.is-playing .audio-emoji { animation: ap-bounce 1.2s ease-in-out infinite; }
@keyframes ap-bounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-6px) rotate(-7deg); }
  75%      { transform: translateY(-3px) rotate(7deg); }
}
.progress-container { height: 6px; background: #e7e2d8; border-radius: 99px; cursor: pointer; overflow: hidden; }
.progress-bar { height: 100%; width: 0; background: var(--ap); border-radius: 99px; transition: width 0.1s linear; }
.time-display { display: flex; justify-content: space-between; font-size: var(--step--1); color: var(--muted); margin-top: 0.5rem; }
.controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin: 1rem 0 1.2rem; }
.control-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; color: #4a5568; cursor: pointer; padding: 0;
  border-radius: 50%; transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.control-btn:hover { color: var(--ap); }
.play-pause-btn {
  width: 54px; height: 54px; background: var(--ap); color: #fff;
  box-shadow: 0 8px 20px -6px rgba(108,92,231,0.6);
}
.play-pause-btn:hover { color: #fff; background: #5a4bd4; transform: translateY(-1px); }
.playlist {
  text-align: left; margin: 0.4rem 0 1rem; padding-top: 0.6rem;
  border-top: 1px solid var(--line); max-height: 184px; overflow-y: auto;
}
.playlist-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.6rem; border-radius: 10px; cursor: pointer;
  transition: background 0.2s var(--ease);
}
.playlist-item:hover { background: #f3f1fb; }
.playlist-item.active { background: #efeafd; box-shadow: inset 3px 0 0 var(--ap); }
.playlist-number {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: #e7e2d8; color: #4a5568; font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.playlist-item.active .playlist-number { background: var(--ap); color: #fff; }
.playlist-title { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.35; }
.playlist-item.active .playlist-title { color: var(--ink); font-weight: 600; }
.volume-control { display: flex; align-items: center; gap: 0.6rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.volume-slider { flex: 1; accent-color: var(--ap); }
.volume-control span { color: var(--muted); font-size: var(--step--1); min-width: 36px; }

/* ============================================================
   PAGE-ALBUM (Inspira Moments — page album individuelle)
   Couleurs de thème scopées (.album-halloween) -> réutilisable.
   ============================================================ */
.album-halloween .album__hero   { background: #dfe9dc; }   /* vert sauge */
.album-halloween .album__listen { background: #f6c84c; }   /* or citrouille */

.album__hero   { background: var(--paper); padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.album__sample { background: var(--paper-2); padding-block: clamp(2.5rem, 5vw, 4rem); }
.album__listen { background: var(--paper); padding-block: clamp(2.5rem, 5vw, 4rem); }
.album__tracks { background: var(--paper-2); padding-block: clamp(2.5rem, 5vw, 4rem); text-align: center; }

.album__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem); letter-spacing: -0.01em; color: var(--ink);
}
.album__subtitle { font-weight: 600; color: var(--ink); margin-top: 0.3rem; font-size: var(--step-1); }
.album__subhead {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-1);
  margin-top: 1.7rem; color: var(--ink);
}
.album__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.4rem); letter-spacing: -0.01em; color: var(--ink);
}
.album__hero p, .album__sample p { color: var(--ink-soft); margin-top: 0.85rem; }

/* Where to Listen */
.album__listen p { color: #3a3320; margin-top: 0.85rem; }
.album__list { margin: 1rem 0 0; padding-left: 1.2rem; color: #3a3320; }
.album__list li { margin-bottom: 0.35rem; }
.album__listen-media { text-align: center; }
.album__listen-media img { max-width: 300px; width: 100%; height: auto; margin-inline: auto; }
.album__platforms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-top: 1.5rem; }
.album__platform {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4em;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.18); border-radius: 999px;
  padding: 0.62em 1em; color: var(--ink); font-weight: 500; font-size: var(--step--1);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.album__platform:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
@media (min-width: 560px) { .album__platforms { grid-template-columns: repeat(3, 1fr); } }

/* Track Listing */
.album__tracks-sub { color: var(--ink-soft); margin-top: 0.4rem; }
.album__tracks-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; justify-items: center; margin-top: 1.8rem; }
.album__tracklist { text-align: left; margin: 0; padding-left: 1.5rem; color: var(--ink-soft); line-height: 1.95; }
.album__tracks-img { max-width: 260px; width: 100%; height: auto; }
@media (min-width: 820px) {
  .album__tracks-grid { grid-template-columns: 1fr auto 1fr; gap: 2.5rem; align-items: start; }
  .album__tracks-img { align-self: center; }
}

/* ============================================================
   AJOUTS — Rêveries d'hiver (page-livre de Noël)
   ============================================================ */
/* Utilitaire : masqué visuellement mais lisible par les lecteurs d'écran */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
/* Pano affiché en ratio naturel (sans recadrage en bandeau) */
.bl-pano--full { height: auto; }
/* Variante CTA dorée (livres de Noël) */
.bl-cta--gold { background: #d4a017; }
.bl-cta--gold:hover { background: #b8890f; }

/* ============================================================
   LUNA MARINO — page artiste (IA)
   ============================================================ */
.luna { background: #0e0d13; color: #f2eee9; }
.luna a { color: #f2eee9; }

.luna__hero {
  text-align: center;
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);   /* resserré */
}
/* La section qui suit le hero se rapproche également */
.luna__hero + .luna__section { padding-top: clamp(1.2rem, 2.4vw, 2rem); }

/* Ligne : badge « AI Music Artist » + lien chaîne YouTube */
.luna__meta {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem;
}
.luna__yt {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.35em 0.9em 0.35em 0.5em;
  border: 1px solid rgba(242,238,233,0.28); border-radius: 999px;
  color: #e8e3ef; font-size: var(--step--1);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.luna__yt:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(242,238,233,0.55);
  color: #fff; transform: translateY(-1px);
}
.luna__yt img {
  width: 30px; height: auto; display: inline-block;
  flex: none; vertical-align: middle;
}
.luna__yt span { line-height: 1; white-space: nowrap; }
.luna__name {
  font-family: var(--font-display); font-weight: 500; color: #fff;
  font-size: clamp(2.4rem, 1.4rem + 4.6vw, 4.6rem);
  letter-spacing: -0.02em; line-height: 1.05;
}
.luna__signature {
  margin-top: 1rem; color: #c9c2d6; font-style: italic;
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.3rem); max-width: 36ch; margin-inline: auto;
}
.luna__badge {
  display: inline-block; padding: 0.4em 1em;
  border: 1px solid rgba(242,238,233,0.28); border-radius: 999px;
  font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: #b9b2c6;
}

.luna__section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.luna__heading {
  font-family: var(--font-display); font-weight: 500; color: #fff;
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.5rem); letter-spacing: -0.01em; text-align: center;
}
.luna__note {
  text-align: center; color: #8f8899; font-size: var(--step--1);
  max-width: 62ch; margin: 0.7rem auto 0;
}
.luna__bio {
  max-width: 62ch; margin: 1.4rem auto 0; text-align: center;
  color: #d6d0dd; line-height: 1.85; font-size: var(--step-0);
}

/* --- Carrousel --- */
.luna-carousel { position: relative; margin-top: 1.8rem; }
.luna-carousel__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 0.6rem;
  scrollbar-width: none;
}
.luna-carousel__track::-webkit-scrollbar { display: none; }
.luna-carousel__slide {
  flex: 0 0 78%; scroll-snap-align: center;
  border-radius: 16px; overflow: hidden; background: #1a1822;
}
.luna-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
@media (min-width: 700px)  { .luna-carousel__slide { flex-basis: 42%; } }
@media (min-width: 1050px) { .luna-carousel__slide { flex-basis: 29%; } }

.luna-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.92); color: #14121a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.7);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.luna-carousel__btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.luna-carousel__btn[disabled] { opacity: 0.35; cursor: default; }
.luna-carousel__btn--prev { left: -8px; }
.luna-carousel__btn--next { right: -8px; }
@media (min-width: 900px) {
  .luna-carousel__btn--prev { left: -20px; }
  .luna-carousel__btn--next { right: -20px; }
}

/* --- Album --- */
.luna__album { text-align: center; border-top: 1px solid rgba(242,238,233,0.12); }
.luna__album-intro { max-width: 60ch; margin: 0.9rem auto 0; color: #d6d0dd; }
.luna__cover {
  width: 100%; max-width: 380px; height: auto; margin: 2rem auto 0;
  border-radius: 16px; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9); display: block;
}
.luna__links { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.9rem; margin: 1.6rem 0 0; padding: 0; }
.luna__links a { display: inline-flex; transition: transform 0.2s var(--ease); }
.luna__links a:hover { transform: translateY(-3px) scale(1.07); }
.luna__links img { width: 34px; height: 34px; border-radius: 8px; }

/* --- Section Luna Marino sur les pages d'accueil (bande sombre) --- */
.feature--luna { background: #0e0d13; color: #d6d0dd; }
.feature--luna .feature__title { color: #fff; }
.feature--luna p { color: #c9c2d6; }
.feature--luna .feature__media img { box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9); }

/* ============================================================
   PAGE 404
   ============================================================ */
.notfound { padding-block: clamp(4rem, 10vw, 8rem); background: var(--paper); text-align: center; }
.notfound__inner { max-width: 640px; margin-inline: auto; }
.notfound__code {
  font-family: var(--font-display); font-weight: 600; color: var(--accent);
  font-size: clamp(3rem, 2rem + 6vw, 5.5rem); line-height: 1; letter-spacing: -0.02em;
}
.notfound__title {
  font-family: var(--font-display); font-weight: 500; margin-top: 0.6rem;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.2rem); letter-spacing: -0.01em;
}
.notfound__text { color: var(--ink-soft); margin-top: 0.9rem; }
.notfound__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 2rem; }

/* --- Ancres : compenser la hauteur de l'en-tete collant --- */
[id] { scroll-margin-top: 96px; }
