/* Styles spécifiques à la page histoire — extraits du <style> inline du V12 (histoire.html), à l'identique. */

/* ── HERO ÉDITORIAL ── */
    .histoire-hero {
      position: relative;
      min-height: 60vh;
      padding: 200px 6% 80px;
      overflow: hidden;
    }

    .histoire-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .histoire-eyebrow {
      font-family: var(--font-titre);
      font-size: 1rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .histoire-eyebrow::before {
      content: '';
      width: 50px;
      height: 2px;
      background: var(--rouge);
    }

    .histoire-title-mega {
      font-family: var(--font-titre);
      font-size: clamp(4rem, 11vw, 11rem);
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: var(--creme);
      text-transform: uppercase;
      margin-bottom: 90px;
      max-width: 1100px;
    }
    .histoire-title-mega .ligne-titre {
      display: block;
    }
    .histoire-title-mega .ligne-titre.avec-espace {
      padding-top: 0.2em;   /* espace AU-DESSUS de THÉÂTRE pour dégager les accents */
    }
    .histoire-title-mega .accent {
      color: var(--rouge);
    }

    .histoire-intro {
      font-family: var(--font-main);
      font-size: 1.4rem;
      line-height: 1.55;
      color: var(--creme);
      opacity: 0.85;
      font-style: normal;
      max-width: 720px;
    }

    /* Titre d'œuvre — sans italic, distinction légère par couleur */
    .titre-oeuvre {
      color: var(--or);
      font-style: normal;
    }

    /* ── BIO + PORTRAIT SECTION ── */
    .bio-section {
      position: relative;
      z-index: 2;
      padding: 80px 6% 120px;
      background: linear-gradient(to bottom, transparent 0%, var(--noir) 100%);
    }

    .bio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      max-width: 1400px;
      margin: 0 auto;
      align-items: start;
    }

    .bio-portrait {
      position: relative;
      aspect-ratio: 3/4;
      background-image: url('photos/portrait_histoire.jpg');
      background-size: cover;
      background-position: center;
      box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    }
    .bio-portrait::before {
      content: '';
      position: absolute;
      top: 30px;
      left: -30px;
      right: 30px;
      bottom: -30px;
      border: 2px solid var(--rouge);
      z-index: -1;
    }
    .bio-portrait::after {
      content: '"L'art de tenir deux univers d'une seule voix."';
      position: absolute;
      bottom: -60px;
      right: -20px;
      max-width: 280px;
      font-family: var(--font-citation);
      font-style: italic;
      font-size: 1rem;
      color: var(--or);
      text-align: right;
      line-height: 1.4;
      padding-right: 16px;
      border-right: 2px solid var(--or);
    }

    .bio-text {
      padding-top: 20px;
      display: flex;
      flex-direction: column;
    }
    .bio-text p {
      margin-bottom: 28px;
      font-size: 1.15rem;
      line-height: 1.85;
      opacity: 0.9;
    }

    /* Bloc identité — comble le vide sous le texte bio */
    .bio-identity {
      margin-top: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(232,197,71,0.2);
      border: 1px solid rgba(232,197,71,0.2);
    }
    .bio-id-block {
      background: var(--noir);
      padding: 22px 24px;
    }
    .bio-id-label {
      font-family: var(--font-titre);
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--or);
      opacity: 0.7;
      margin-bottom: 6px;
    }
    .bio-id-value {
      font-family: var(--font-titre);
      font-size: 1.4rem;
      letter-spacing: 0.04em;
      color: var(--creme);
    }
    .bio-id-value small {
      font-family: var(--font-main);
      font-style: normal;
      font-size: 0.85rem;
      letter-spacing: 0;
      opacity: 0.55;
      display: block;
      margin-top: 2px;
    }

    .bio-signature {
      margin-top: 30px;
      padding-left: 24px;
      border-left: 3px solid var(--rouge);
      font-family: var(--font-citation);
      font-style: italic;
      font-size: 1.05rem;
      opacity: 0.75;
      line-height: 1.6;
    }

    .bio-section-title {
      font-family: var(--font-titre);
      font-size: clamp(1.4rem, 3vw, 2rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 32px;
    }
    .bio-signature strong {
      display: block;
      font-style: normal;
      font-family: var(--font-titre);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-size: 0.85rem;
      color: var(--or);
      margin-top: 8px;
    }

    /* ── TIMELINE HORIZONTALE ── */
    .timeline-section {
      position: relative;
      z-index: 2;
      padding: 100px 6%;
      background: var(--anthracite);
      overflow: hidden;
    }
    .timeline-section::before {
      content: 'PARCOURS';
      position: absolute;
      top: 40px;
      left: 6%;
      font-family: var(--font-titre);
      font-size: clamp(8rem, 18vw, 16rem);
      color: rgba(204,0,1,0.04);
      pointer-events: none;
      letter-spacing: -0.02em;
      line-height: 0.85;
      z-index: 0;
    }

    .timeline-header {
      position: relative;
      z-index: 2;
      margin-bottom: 80px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-track {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 16px;
      padding-top: 30px;
    }
    .timeline-track::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--rouge), var(--or));
    }

    .tl-card {
      position: relative;
      padding-top: 30px;
    }
    .tl-card::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--or);
      border: 3px solid var(--noir);
    }
    .tl-card:first-child::before { background: var(--rouge); }

    .tl-year {
      font-family: var(--font-titre);
      font-size: 2rem;
      letter-spacing: 0.04em;
      color: var(--or);
      text-align: center;
      margin-bottom: 12px;
    }
    .tl-card:first-child .tl-year { color: var(--rouge); }
    .tl-card:last-child .tl-year { color: var(--rouge); }
    .tl-card:last-child::before { background: var(--rouge); }

    .tl-text {
      font-size: 0.95rem;
      text-align: center;
      opacity: 0.75;
      line-height: 1.5;
    }

    /* ── SECTIONS ÉDITORIALES (remplacent les cases jaunes) ── */
    .editorial-section {
      position: relative;
      z-index: 2;
      padding: 100px 6%;
    }

    /* DISCOGRAPHIE — galerie d'albums avec hover artistique */
    .discography {
      background: var(--noir);
    }
    .disco-header {
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 60px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      flex-wrap: wrap;
      gap: 20px;
    }
    .disco-title {
      font-family: var(--font-titre);
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 0.9;
      color: var(--creme);
      letter-spacing: -0.01em;
    }
    .disco-title span { color: var(--or); }

    .disco-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1040px;
      margin: 0 auto;
    }
    .album-card {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      cursor: pointer;
      group: card;
    }
    .album-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.4s ease;
    }
    .album-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .album-card:hover img {
      transform: scale(1.08);
      filter: brightness(0.6);
    }
    .album-card:hover::after { opacity: 1; }
    .album-overlay {
      position: absolute;
      bottom: 30px;
      left: 30px;
      right: 30px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s, transform 0.3s;
      z-index: 2;
    }
    .album-card:hover .album-overlay {
      opacity: 1;
      transform: translateY(0);
    }
    .album-name {
      font-family: var(--font-titre);
      font-size: 1.8rem;
      color: var(--creme);
      letter-spacing: 0.04em;
      margin-bottom: 8px;
    }
    .album-year {
      font-family: var(--font-main);
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--or);
    }

    /* SUCCÈS — typographie XXL */
    .successes {
      background: var(--anthracite);
      padding: 120px 6%;
    }
    .successes-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: max-content 1fr;
      gap: 64px;
      align-items: start;
    }
    .successes-label {
      font-family: var(--font-titre);
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 0.95;
      color: var(--or);
      letter-spacing: -0.01em;
    }
    .successes-list {
      list-style: none;
      counter-reset: success;
    }
    .success-item {
      padding: 22px 0;
      border-bottom: 1px solid rgba(232,197,71,0.15);
          display: grid;
      grid-template-columns: 24px 1fr;
      gap: 18px;
      align-items: baseline;
    }
    .success-item:last-child { border-bottom: none; }
    .success-item::before {
      content: '·';
      font-family: var(--font-titre);
      font-size: 2rem;
      color: var(--rouge);
      line-height: 1;
    }
    .success-name {
      font-family: var(--font-main);
      font-size: 1rem;
      line-height: 1.4;
    }
    /* Une ligne par point uniquement quand la place le permet */
    @media (min-width: 1200px) {
      .success-name { white-space: nowrap; }
    }
    .success-year {
      font-family: var(--font-titre);
      font-size: 1.4rem;
      color: var(--or);
      opacity: 0.7;
    }

    /* EN CHIFFRES — gros chiffres avec animation */
    .stats {
      padding: 120px 6%;
      background: var(--noir);
      position: relative;
    }
    .stats-header {
      text-align: center;
      margin-bottom: 80px;
    }
    .stats-title {
      font-family: var(--font-titre);
      font-size: clamp(3rem, 7vw, 6rem);
      color: var(--creme);
      letter-spacing: 0.02em;
    }
    .stats-title span { color: var(--rouge); }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .stat-block {
      text-align: center;
      padding: 50px 20px;
      border: 1px solid rgba(232,197,71,0.15);
      background: rgba(232,197,71,0.02);
      transition: all 0.3s;
      cursor: default;
    }
    .stat-block:hover {
      border-color: var(--rouge);
      background: rgba(204,0,1,0.05);
      transform: translateY(-6px);
    }
    .stat-num {
      font-family: var(--font-titre);
      font-size: clamp(3rem, 5.5vw, 4.5rem);
      line-height: 1;
      color: var(--or);
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }
    .stat-block:hover .stat-num { color: var(--rouge); }
    .stat-label {
      font-family: var(--font-titre);
      font-size: 0.85rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      opacity: 0.65;
    }

    /* L'ÉQUIPE — cartes contact avec photo placeholder + style édito */
    .team {
      background: var(--anthracite);
      padding: 120px 6%;
    }
    .team-inner {
      max-width: 1400px;
      margin: 0 auto;
    }
    .team-header {
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 30px;
    }
    .team-title {
      font-family: var(--font-titre);
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 0.9;
      color: var(--creme);
    }
    .team-title span { color: var(--or); }

    .team-actions {
      display: flex;
      gap: 16px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    @media (max-width: 1100px) {
      .team-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .team-card {
      background: rgba(10,10,10,0.6);
      border: 1px solid rgba(240,235,224,0.08);
      padding: 40px 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .team-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 50px;
      height: 3px;
      background: var(--or);
      transition: width 0.3s;
    }
    .team-card:hover::before { width: 100%; background: var(--rouge); }
    .team-card:hover {
      transform: translateY(-4px);
      border-color: var(--rouge);
    }
    .team-role {
      font-family: var(--font-titre);
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--or);
      margin-top: 8px;
      margin-bottom: 18px;
      min-height: 2.6em;          /* réserve 2 lignes → noms alignés */
      line-height: 1.3;
    }
    .team-name {
      font-family: var(--font-titre);
      font-size: 1.6rem;
      letter-spacing: 0.02em;
      margin-bottom: 20px;
      color: var(--creme);
    }
    .team-contact {
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.85;
      margin-top: auto;           /* e-mails collés en bas → alignés */
    }
    .team-contact a {
      color: var(--creme);
      text-decoration: none;
      border-bottom: 1px solid rgba(232,197,71,0.3);
      transition: border-color 0.2s, color 0.2s;
    }
    .team-contact a:hover {
      color: var(--or);
      border-color: var(--or);
    }

    /* MODAL Kit Presse */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-overlay.active { display: flex; }
    .modal-box {
      background: var(--anthracite);
      border: 1px solid var(--or);
      padding: 50px 40px;
      max-width: 480px;
      width: 100%;
      text-align: center;
    }
    .modal-title {
      font-family: var(--font-titre);
      font-size: 1.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 20px;
    }
    .modal-text {
      font-size: 1rem;
      opacity: 0.8;
      margin-bottom: 28px;
      line-height: 1.7;
    }
    .modal-input {
      width: 100%;
      background: rgba(0,0,0,0.4);
      border: 1px solid rgba(232,197,71,0.4);
      color: var(--creme);
      font-family: var(--font-main);
      font-size: 1rem;
      padding: 14px 18px;
      margin-bottom: 18px;
      outline: none;
    }
    .modal-input:focus { border-color: var(--or); }
    .modal-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
    }
    .modal-feedback {
      font-size: 0.85rem;
      margin-top: 12px;
      min-height: 20px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .bio-grid, .successes-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .bio-identity { grid-template-columns: 1fr; }
      .timeline-track {
        grid-template-columns: repeat(4, 1fr);
        gap: 36px 16px;
      }
      .disco-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .timeline-track { grid-template-columns: repeat(2, 1fr); }
      .disco-grid, .stats-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
    }
