:root {
  --cream: #f5efe2;
  --paper: #fffaf0;
  --ink: #102234;
  --muted: #6b6257;
  --gold: #c9821e;
  --orange: #ef5b19;
  --blue: #0c2f4b;
  --line: rgba(16, 34, 52, .14);
  --shadow: 0 24px 60px rgba(16, 34, 52, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(245, 239, 226, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.28rem;
  text-decoration: none;
  white-space: nowrap;
}
nav { display: flex; align-items: center; gap: clamp(10px, 2vw, 24px); }
nav a, .lang-toggle {
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lang-toggle {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding: 118px 7vw 72px;
}
.hero-visual {
  height: min(78vh, 780px);
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #e6dfd2;
}
.hero-visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #e6dfd2; }
.eyebrow, .section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
  margin: 0 0 14px;
}
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.02; margin: 0; }
h1 { font-size: clamp(3.8rem, 7vw, 7.8rem); letter-spacing: -.055em; }
.hero-album-title { font-family: "Playfair Display", serif; font-size: clamp(2.25rem, 4.2vw, 4.8rem); line-height: 1.05; margin: 8px 0 0; color: var(--gold); letter-spacing: -.035em; }
h2 { font-size: clamp(2.25rem, 5vw, 4.8rem); letter-spacing: -.035em; margin-bottom: 22px; }
h3 { font-size: 1.45rem; margin-top: 18px; }
.subtitle { font-weight: 900; font-size: 1.12rem; margin-top: 24px; }
.intro, .section-intro { max-width: 620px; color: var(--muted); font-size: 1.08rem; }
.buttons, .socials { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 14px; margin-top: 28px; }
.btn, .socials a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px; border-radius: 999px;
  text-decoration: none; font-weight: 900; border: 1px solid var(--ink);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover, .socials a:hover { transform: translateY(-2px); }
.btn.primary, .socials a:hover { background: var(--ink); color: var(--paper); }
.btn.secondary { color: var(--ink); }

.section, .album-feature { padding: clamp(72px, 9vw, 116px) 7vw; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.album-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  background: var(--blue);
  color: var(--paper);
}
.album-feature p { max-width: 720px; color: rgba(255, 250, 240, .80); }
.cover, .album-card img, .collab-card img { border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.large-cover { width: 100%; }

.album-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.album-card, .video-card, .collab-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(16, 34, 52, .08);
}
.album-card { padding: 18px; }
.album-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.album-card p, .video-card p, .collab-card p { color: var(--muted); margin: 6px 0 0; }
.featured-card { outline: 2px solid rgba(201, 130, 30, .28); }


.streaming-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 42px auto 0;
}
.streaming-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 14px 34px rgba(16, 34, 52, .12);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.streaming-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(16, 34, 52, .18); }
.streaming-btn.spotify { background: #1DB954; color: #fff; }
.streaming-btn.deezer { background: #111; color: #fff; }
.streaming-btn.amazon { background: #00A8E1; color: #fff; }
.streaming-icon { width: 25px; height: 25px; display: inline-flex; align-items: center; justify-content: center; }
.streaming-icon svg { width: 100%; height: 100%; fill: currentColor; }

.split { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(40px, 6vw, 76px); align-items: center; }
.split > img { border-radius: 30px; box-shadow: var(--shadow); }
.bio-text p, .long-bio p { color: var(--muted); font-size: 1.02rem; }
.read-more {
  margin-top: 24px; border: 1px solid var(--ink); background: transparent; color: var(--ink);
  border-radius: 999px; padding: 13px 20px; font-weight: 900; cursor: pointer;
}
.read-more:hover { background: var(--ink); color: var(--paper); }
.long-bio { display: none; margin-top: 28px; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; }
.long-bio.open { display: block; }

.collaborations { background: linear-gradient(180deg, rgba(255,250,240,.58), rgba(245,239,226,1)); }
.collaboration-heading h2 { margin-bottom: 10px; }
.collab-artist-title { font-family: "Inter", sans-serif; font-size: clamp(1.15rem, 2vw, 1.55rem); color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px; }
.collab-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 1180px; margin: 0 auto; }
.collab-card { overflow: hidden; padding: 14px; }
.collab-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; box-shadow: none; }
.collab-copy { padding: 0 4px 8px; }
.collab-note { max-width: 850px; margin: 34px auto 0; text-align: center; color: var(--muted); }
.collab-note p { margin: 8px 0; }

.videos, .contact, .holler-sound { text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: center; gap: 28px; max-width: 1180px; margin: 36px auto 24px; }
.video-card { padding: 14px; }
.video-card a { position: relative; display: block; overflow: hidden; border-radius: 16px; }
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .35s ease; }
.video-card a:hover img { transform: scale(1.035); }
.play-button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%; background: rgba(16, 34, 52, .88); color: var(--paper); display: grid; place-items: center; font-size: 1.35rem; padding-left: 3px; }
.youtube-main-link { margin-top: 8px; }

.holler-sound-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.holler-sound .section-intro { margin-left: auto; margin-right: auto; }
.holler-banner { display: block; width: min(100%, 1040px); margin: 34px auto 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: var(--paper); }
.holler-banner img { width: 100%; height: auto; margin: 0 auto; }
.contact { max-width: 850px; margin: 0 auto; }
.contact .socials { justify-content: center; }
footer { padding: 34px 7vw; text-align: center; color: var(--muted); border-top: 1px solid var(--line); }
.en { display: none; }
body.lang-en .fr { display: none; }
body.lang-en .en { display: block; }

@media (max-width: 980px) {
  nav a { display: none; }
  .hero, .album-feature, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
  .hero-visual { height: 58vh; min-height: 390px; }
  .album-grid, .collab-grid, .video-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .album-feature .large-cover { max-width: 520px; margin: 0 auto; }
  h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .hero-album-title { font-size: clamp(2rem, 10vw, 3.4rem); }
}
@media (max-width: 560px) {
  .site-header { height: 66px; }
  .logo { font-size: 1.08rem; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .section, .album-feature { padding-left: 18px; padding-right: 18px; }
  .hero-visual { min-height: 340px; border-radius: 22px; }
  h2 { font-size: 2.35rem; }
  .buttons, .socials, .streaming-links { justify-content: center; }
  .hero-content { text-align: center; }
  .intro { margin-left: auto; margin-right: auto; }
  .streaming-btn { width: 100%; max-width: 320px; }
}


/* Bandeau Presse / Références */
.references-section {
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.references-section .section-intro {
  margin-left: auto;
  margin-right: auto;
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 42px auto 0;
}
.reference-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 34px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fffaf0);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(16, 34, 52, .08);
}
.reference-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 130, 30, .12);
}
.reference-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 18px;
}
.reference-card h3 {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.reference-card p {
  margin: 8px 0;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .references-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}


/* Ajustement demandé : pochettes Charles Pasi environ 20% plus petites */
.collab-grid {
  max-width: 944px;
}

.collab-card img {
  max-width: 80%;
  margin: 0 auto;
}

.collab-copy {
  text-align: center;
}

/* Autres collaborations : Actrices + Carla Bruni */
.other-collabs {
  max-width: 944px;
  margin: 46px auto 0;
  text-align: center;
}

.other-collabs-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  margin: 0 0 22px;
}

.other-collabs-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, .85fr);
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.other-collab-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(16, 34, 52, .08);
  padding: 14px;
  overflow: hidden;
}

.other-collab-card img {
  width: 80%;
  max-width: 300px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin: 0 auto;
}

.other-collab-card.text-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.other-collab-copy {
  padding: 0 4px 8px;
}

.other-collab-copy h3 {
  font-size: 1.25rem;
}

.other-collab-copy p {
  color: var(--muted);
  margin: 8px 0 0;
}

@media (max-width: 980px) {
  .collab-grid,
  .other-collabs-grid {
    max-width: 520px;
    grid-template-columns: 1fr;
  }

  .collab-card img,
  .other-collab-card img {
    max-width: 100%;
    width: 100%;
  }
}


/* VERSION DEFINITIVE */
.other-collab-card img{
  height:220px !important;
  width:auto !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  margin:0 auto !important;
}

@media (max-width:980px){
  .other-collab-card img{
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
  }
}


/* THS Productions logo près du contact */
.contact-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 22px auto 6px;
}

.ths-productions-logo {
  width: 120px;
  max-width: 28vw;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 34, 52, .12);
}

.contact-branding p {
  margin: 0;
}

@media (max-width: 560px) {
  .ths-productions-logo {
    width: 78px;
  }
}


/* Contact : email en bouton ovale */
.contact-block h3 {
  font-family: "Inter", sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 22px 0 0;
}
.contact-subtitle {
  margin-top: 34px !important;
}
.contact-email-button {
  justify-content: center;
  margin-top: 16px;
}


/* Réduction légère de l'espace autour de The Holler Sound */
.holler-sound{
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* Accès Espace Pro dans Contact */
.pro-access {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.pro-access p {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--muted);
}

/* Espace Pro / Media Kit premium simplifié */
.pro-hero {
  padding: 126px 7vw 72px;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.pro-album-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.pro-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 6.7rem);
}
.pro-section-light {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pro-bio {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}
.pro-bio p {
  margin-bottom: 18px;
}
.short-bio-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(16,34,52,.06);
}
.long-bio-pro {
  columns: 2;
  column-gap: 44px;
}
.pro-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1180px;
  margin: 36px auto 0;
}
.pro-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(16,34,52,.08);
  text-align: center;
}
.pro-card h3 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .98rem;
  margin: 0 0 12px;
}
.pro-card p {
  color: var(--muted);
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 36px auto 0;
}
.photo-download-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(16,34,52,.10);
}
.photo-download-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform .35s ease;
}
.photo-download-card:hover img {
  transform: scale(1.035);
}
.photo-download-copy {
  padding: 18px;
  text-align: center;
}
.photo-download-copy h3 {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.photo-download-copy p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 980px) {
  .pro-hero {
    grid-template-columns: 1fr;
  }
  .pro-grid, .photo-gallery {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
  .long-bio-pro {
    columns: 1;
  }
  .photo-download-card img {
    height: auto;
  }
}


/* Modifications ciblées : bandeau parcours + crédits Charles Pasi */
.label-credit {
  display: block;
  margin: 5px 0 7px;
  font-family: "Inter", sans-serif;
  font-size: .70rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .78;
}

.collab-credit {
  display: block;
  max-width: 92%;
  min-height: 3.1em;
  margin: 0 auto !important;
  text-align: center;
}

.collab-copy {
  text-align: center;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.collab-copy h3 {
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .collab-copy {
    min-height: auto;
  }
  .collab-credit {
    min-height: auto;
  }
}

/* =========================================================
   VERSION DEFINITIVE PREMIUM
   Rythme visuel régulier + hiérarchie artiste/projet
   ========================================================= */

/* Espacement régulier entre toutes les rubriques */
.section,
.album-feature,
.references-section,
.collaborations,
.videos,
.holler-sound,
.contact {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

/* Évite les gros trous internes entre titres et grilles */
.section-heading {
  margin-bottom: 34px !important;
}

.album-grid,
.collab-grid,
.video-grid {
  margin-top: 28px !important;
  margin-bottom: 18px !important;
}

/* Le bloc collaborations ne doit pas créer un grand vide avant YouTube */
.collaborations {
  padding-bottom: 60px !important;
}

.collab-note {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

#videos.section,
.videos {
  padding-top: 60px !important;
}

/* Painted Dreams en haut : +20 % visuel, sans casser la mise en page */
.album-feature {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 576px) !important;
}

.large-cover {
  width: 100% !important;
  max-width: 576px !important;
  justify-self: center;
}

/* Tes albums doivent rester plus importants que les collaborations */
.album-grid {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.album-card {
  padding: 18px !important;
}

.album-card img {
  width: 94% !important;
  max-width: 94% !important;
  margin: 0 auto !important;
}

/* Collaborations : taille actuelle conservée */
.collab-grid {
  max-width: 944px !important;
}

.collab-card img {
  width: 80% !important;
  max-width: 80% !important;
  margin: 0 auto !important;
}

/* Crédit Mainly Blue au même niveau visuel que BLUE NOTE */
.label-credit {
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 8px 0 4px !important;
}

/* Vidéos : +20 % par rapport à la version réduite */
.video-grid {
  max-width: 1180px !important;
}

.video-card img {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* The Holler Sound compact mais premium */
.holler-sound {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.holler-banner {
  width: min(88%, 920px) !important;
  margin-top: 26px !important;
}

/* Responsive propre */
@media (max-width: 980px) {
  .section,
  .album-feature,
  .references-section,
  .collaborations,
  .videos,
  .holler-sound,
  .contact {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .album-feature {
    grid-template-columns: 1fr !important;
  }

  .large-cover {
    width: 100% !important;
    max-width: 520px !important;
  }

  .album-card img,
  .collab-card img,
  .video-card img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .collaborations {
    padding-bottom: 52px !important;
  }

  #videos.section,
  .videos {
    padding-top: 52px !important;
  }

  .holler-banner {
    width: min(100%, 720px) !important;
  }
}

@media (max-width: 560px) {
  .section,
  .album-feature,
  .references-section,
  .collaborations,
  .videos,
  .holler-sound,
  .contact {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  .section-heading {
    margin-bottom: 26px !important;
  }
}

/* Version finale : collaborations unifiées */
.collaborations .collab-grid {
  max-width: 1180px !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch;
}
.collaborations .collab-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.collaborations .collab-card img {
  width: 100% !important;
  max-width: 100% !important;
  height: 170px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  margin: 0 auto !important;
}
.collaborations .collab-copy {
  flex: 1;
  min-height: 150px;
}
.collaborations .collab-copy h3 { font-size: 1.18rem; }
@media (max-width: 980px) {
  .collaborations .collab-grid {
    max-width: 760px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .collaborations .collab-card img { height: 210px !important; }
}
@media (max-width: 560px) {
  .collaborations .collab-grid {
    max-width: 360px !important;
    grid-template-columns: 1fr !important;
  }
  .collaborations .collab-card img { height: 230px !important; }
  .collaborations .collab-copy { min-height: auto; }
}
