/* =============================================================
   homepage.css — Galerie masonry homepage
   Formats libres portrait/paysage, animation scroll fluide
   ============================================================= */

/* ── Reset homepage ───────────────────────────────────────── */
.home-page {
  background: #0f0e0c;
  color: #f0ece4;
  overflow-x: hidden;
}

/* ── Bannière fixe ────────────────────────────────────────── */
.hp-navbar { }
/* Au hover : plus opaque */










/* ── Hero titre (optionnel, au-dessus de la galerie) ──────── */
.hp-hero {
  padding: 60px 40px 60px;
  text-align: center;
}
.hp-hero__title {
  font-family: 'MetaAccanthis', 'Gluten', cursive;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.92;
  color: #f0ece4;
  letter-spacing: -0.02em;
}
.hp-hero__title em {
  font-style: italic;
  color: #e06030;
}
.hp-hero__sub {
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.4);
}

/* ═══════════════════════════════════════════════════════════
   GALERIE MASONRY
   Colonnes CSS natives — aucune limite de format
   ═══════════════════════════════════════════════════════════ */

.hp-gallery {
  padding: 0 6px 6px;
  /* Colonnes CSS : navigateur gère automatiquement la hauteur */
  columns: 4;
  column-gap: 6px;
}

/* Chaque item de la galerie */
.hp-gallery-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-gallery-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Image dans l'item */
.hp-gallery-item img {
  display: block;
  width: 100%;
  height: auto;           /* Format original — pas de recadrage */
  object-fit: unset;      /* Désactiver object-fit pour respecter les proportions */
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
              filter 0.4s;
}

.hp-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* Overlay info au hover */
.hp-gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.0) 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 20;
  pointer-events: none;
}
.hp-gallery-item:hover .hp-gallery-item__overlay {
  opacity: 1;
}

.hp-gallery-item__artist {
  font-family: 'MetaAccanthis', 'Gluten', cursive;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  position: relative;
  z-index: 25; /* bien au-dessus du dégradé */
  text-shadow: 0 1px 4px rgba(0,0,0,0.5); /* lisibilité renforcée */
}
.hp-gallery-item__venue {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
  position: relative;
  z-index: 25;
}

/* ── Placeholders colorés (avant les vraies photos) ──────── */
.hp-gallery-item__placeholder {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* Ratio via padding-bottom (défini inline par PHP/JS) */

/* ── "Voir tout" en bas de galerie ────────────────────────── */
.hp-gallery-more {
  text-align: center;
  padding: 60px 40px;
}
.hp-gallery-more a {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  color: #f0ece4;
  text-decoration: none;
  border: 1px solid rgba(240,236,228,0.35);
  padding: 12px 32px;
  border-radius: 999px;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.hp-gallery-more a:hover {
  border-color: #f0ece4;
  opacity: 0.6;
}

/* ── Marquee ──────────────────────────────────────────────── */
.hp-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(240,236,228,0.08);
  border-bottom: 1px solid rgba(240,236,228,0.08);
  padding: 14px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hp-marquee:hover { opacity: 0.75; }
.hp-marquee__track {
  display: inline-flex;
  align-items: center;
  animation: hp-marquee-anim 35s linear infinite;
  font-family: 'Space Mono', monospace; /* fallback si rien de défini dans le Customizer */
  font-size: 12px;
}
.hp-marquee__sep {
  margin: 0 20px;
  opacity: 0.5;
  flex-shrink: 0;
}
.hp-marquee__track span {
  /* font-family héritée du parent .hp-marquee__track via style inline */
  font-size: inherit;
  letter-spacing: 0.08em;
  padding: 0 4px;
}
/* Plus de ::before codé en dur — le séparateur est géré en PHP */
@keyframes hp-marquee-anim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Footer homepage ──────────────────────────────────────── */
.hp-footer {
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(240,236,228,0.08);
}
.hp-footer__copy {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.4);
}
.hp-footer__social {
  display: flex; gap: 20px; list-style: none;
}
.hp-footer__social a {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.hp-footer__social a:hover { color: #f0ece4; }

/* ═══════════════════════════════════════════════════════════
   SECTION À PROPOS
   ═══════════════════════════════════════════════════════════ */

.hp-about {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 70vh;
  border-top: 1px solid rgba(240,236,228,0.1);
}

/* ── Photo gauche ─────────────────────────────────────────── */
.hp-about__visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(240,236,228,0.1);
  /* Padding = marge visible autour de la photo */
  padding: 32px;
  display: flex;
  align-items: center;
}
.hp-about__photo {
  display: block;
  width: 100%;
  /* Hauteur auto : l'image garde son ratio naturel */
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}
.hp-about__photo-placeholder {
  width: 100%; min-height: 380px;
  background: #f0ece4;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.hp-about__photo-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,236,228,0.2);
}
/* Étiquette décorative bas gauche */
.hp-about__visual-label {
  position: absolute; bottom: 28px; left: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.hp-about__visual-label span {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,236,228,0.55);
  background: rgba(240,236,228,0.65);
  padding: 4px 10px;
  backdrop-filter: blur(8px);
  width: fit-content;
}

/* ── Texte droite ─────────────────────────────────────────── */
.hp-about__content {
  padding: 80px 72px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 36px;
}
.hp-about__eyebrow {
  display: flex; align-items: center; gap: 16px;
}
.hp-about__line {
  display: block; width: 40px; height: 1px;
  background: rgba(240,236,228,0.2); flex-shrink: 0;
}
.hp-about__eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,236,228,0.4);
}
.hp-about__text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300; line-height: 1.75;
  color: rgba(240,236,228,0.75);
}

/* ── Mots-clés animés ─────────────────────────────────────── */
/*
 * Effet lueur granuleuse — dégradé radial serré + grain SVG.
 * Ressemble à une lumière diffuse qui irradie autour du mot.
 * La couleur et la taille sont réglables ici.
 */
.hp-about__keyword {
  position: relative;
  display: inline;
  font-style: italic;
  color: #f0ece4;
  cursor: default;
}

/* Lueur granuleuse */
.hp-about__keyword::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  /* Serré autour du mot : 160% large, 280% haut */
  width: 160%; height: 280%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 84, 26, 0.75)   0%,
    rgba(196, 84, 26, 0.38)   28%,
    rgba(196, 84, 26, 0.12)   52%,
    transparent               72%
  );
  /* Grain via filtre SVG noise */
  filter: blur(7px)
          url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/%3E%3CfeComposite in='SourceGraphic' operator='in'/%3E%3C/filter%3E%3C/svg%3E#g");
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity  0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: screen;
}
.hp-about__keyword:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Texte passe légèrement en clair au hover (pas en sombre car mix-blend screen) */
.hp-about__keyword-inner {
  position: relative;
  transition: color 0.3s 0.08s;
}
.hp-about__keyword:hover .hp-about__keyword-inner {
  color: #0f0e0c;
}

/* ── CTA ──────────────────────────────────────────────────── */
.hp-about__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(240,236,228,0.45); text-decoration: none;
  border-bottom: 1px solid rgba(240,236,228,0.15);
  padding-bottom: 6px; width: fit-content;
  transition: color 0.3s, border-color 0.3s;
}
.hp-about__cta:hover { color: #f0ece4; border-color: rgba(240,236,228,0.7); background: rgba(240,236,228,0.08); }
.hp-about__cta-arrow { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.hp-about__cta:hover .hp-about__cta-arrow { transform: translateX(7px); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Homepage
   Tablette : ≤ 1024px  |  Mobile L : ≤ 768px  |  Mobile S : ≤ 480px
   ════════════════════════════════════════════════════════════ */

/* ── Tablette (≤ 1024px) ─────────────────────────────────── */
@media (max-width: 1024px) {
  /* Galerie : 2 colonnes */
  .hp-gallery { columns: 3; column-gap: 5px; }

  /* À propos : empilé */
  .hp-about { grid-template-columns: 1fr; }
  .hp-about__visual {
    min-height: 50vw; border-right: none;
    border-bottom: 1px solid rgba(240,236,228,0.1);
  }
  .hp-about__content { padding: 56px 40px; }

  /* Contact : empilé, GIF en haut */
  .hp-contact { grid-template-columns: 1fr; }
  .hp-contact__visual {
    min-height: 50vw;
    order: -1;
    border-left: none;
    border-bottom: 1px solid rgba(240,236,228,0.1);
  }
  .hp-contact__content { padding: 56px 40px; }

  /* Nav : liens masqués sur tablette étroite */
  .hp-floating-nav__links a { padding: 0 18px; }
  
}

/* ── Mobile L (≤ 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Galerie : 2 colonnes serrées */
  .hp-gallery { columns: 3; column-gap: 5px; }
  .hp-gallery-item { margin-bottom: 4px; }

  /* Hero */
  .hp-hero { padding: 90px 24px 36px; }
  .hp-hero__title { font-size: clamp(40px, 11vw, 72px); }

  /* Nav mobile : cacher les liens, garder le logo */
  .hp-navbar { }
  
  .hp-floating-nav { padding: 0 20px; }
  .hp-floating-nav__links { display: none; }

  /* About */
  .hp-about__visual { min-height: 55vw; }
  .hp-about__content { padding: 44px 24px; gap: 24px; }
  .hp-about__text { font-size: 18px; }

  /* Contact */
  .hp-contact__content { padding: 44px 24px; gap: 32px; }
  .hp-contact__title { font-size: clamp(44px, 10vw, 72px); }
  .hp-contact__link-text { font-size: 14px; }

  /* Footer */
  .hp-footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ── Mobile S (≤ 480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  /* Galerie : 1 seule colonne */
  .hp-gallery { columns: 1; padding: 0 4px 4px; }
  .hp-gallery-item { margin-bottom: 8px; }

  /* Hero */
  .hp-hero { padding: 80px 20px 28px; }

  /* About & Contact */
  .hp-about__content,
  .hp-contact__content { padding: 36px 20px; }

  /* Masquer les dots de nav */
  .hp-dots { display: none; }

  /* Keyword hover désactivé (pas de hover sur touch) */
  .hp-about__keyword::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION CONTACT
   ═══════════════════════════════════════════════════════════ */

.hp-contact {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 70vh;
  border-top: 1px solid rgba(240,236,228,0.1);
}

/* ── Texte gauche ─────────────────────────────────────────── */
.hp-contact__content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  border-right: 1px solid rgba(240,236,228,0.1);
}

/* Titre */
.hp-contact__title {
  font-family: 'MetaAccanthis', 'Gluten', cursive;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f0ece4;
}
.hp-contact__title em {
  font-style: italic;
  color: #e06030;
}

/* Liste des liens */
.hp-contact__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-contact__item {
  border-top: 1px solid rgba(240,236,228,0.1);
}
.hp-contact__item:last-child {
  border-bottom: 1px solid rgba(240,236,228,0.1);
}

/* Lien individuel */
.hp-contact__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-decoration: none;
  color: rgba(240,236,228,0.55);
  transition: color 0.3s, padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.hp-contact__link:hover {
  color: #f0ece4;
  padding-left: 8px;
}

/* Picto */
.hp-contact__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: rgba(240,236,228,0.3);
  transition: color 0.3s;
}
.hp-contact__link:hover .hp-contact__icon {
  color: #e06030;
}

/* Texte du lien */
.hp-contact__link-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  flex: 1;
}

/* Flèche droite */
.hp-contact__link-arrow {
  font-size: 18px;
  color: rgba(240,236,228,0.2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.3s;
}
.hp-contact__link:hover .hp-contact__link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #e06030;
}

/* ── GIF / Photo droite ───────────────────────────────────── */
.hp-contact__visual {
  position: relative;
  overflow: hidden;
  /* Padding = marge visible autour du GIF */
  padding: 32px;
  display: flex;
  align-items: center;
}

.hp-contact__media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

/* Placeholder en attendant le GIF */
.hp-contact__media-placeholder {
  width: 100%; min-height: 380px;
  background: #f0ece4;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.hp-contact__media-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,236,228,0.2);
}
/* Petit cadre pour visualiser où va le GIF */
.hp-contact__media-placeholder::before {
  content: '';
  width: 80px; height: 80px;
  border: 1px solid rgba(240,236,228,0.12);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE ABOUT & CONTACT
   ═══════════════════════════════════════════════════════════ */
.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Hero ─────────────────────────────────────────────────── */
.about-hero {
  padding: 72px 64px 56px;
  border-bottom: 0.5px solid rgba(240,236,228,0.07);
}
.about-tag {
  display: block;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,236,228,0.25); font-family: 'Space Mono', monospace;
  margin-bottom: 24px;
}
.about-hero__name {
  font-family: 'MetaAccanthis', cursive;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  color: #f0ece4;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.about-hero__name em {
  color: #e06030;
  font-style: italic;
  display: block;
}
.about-hero__role {
  font-size: 14px;
  color: rgba(240,236,228,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}
.about-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.about-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s;
}
.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.about-cta--fill { background: #e06030; color: #0f0e0c; }
.about-cta--outline {
  background: transparent; color: #f0ece4;
  border: 1px solid rgba(240,236,228,0.25);
}
.about-cta__icon { font-size: 15px; }

/* ── Grille de tuiles ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(240,236,228,0.07);
  flex: 1;
}
.about-tile {
  padding: 36px 40px;
  border-right: 0.5px solid rgba(240,236,228,0.07);
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: background 0.3s;
  position: relative;
}
.about-tile:last-child { border-right: none; }
.about-tile--link { cursor: pointer; }
.about-tile--link:hover { background: rgba(240,236,228,0.025); }
.about-tile--link:hover .about-tile__arrow {
  transform: translate(4px, -4px);
  color: #e06030;
}
.about-tile__tag {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,236,228,0.25); font-family: 'Space Mono', monospace;
}
.about-tile__val {
  font-size: 15px; color: rgba(240,236,228,0.8);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.about-tile__arrow {
  position: absolute; top: 36px; right: 32px;
  font-size: 18px; color: rgba(240,236,228,0.12);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), color 0.25s;
}
.about-tile__sub {
  font-size: 11px; color: rgba(240,236,228,0.25);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.06em;
}

/* Point de localisation pulsant */
.about-tile__loc {
  display: flex; align-items: center; gap: 10px;
}
.about-tile__loc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e06030; flex-shrink: 0;
  animation: locPulse 2s ease-in-out infinite;
}
@keyframes locPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.7); opacity: 0.5; }
}

/* Spotify */
.about-tile--spotify:hover { background: rgba(29,185,84,0.04); }
.about-tile--spotify:hover .about-spotify__open { color: #1DB954; }
.about-spotify__card {
  display: flex; align-items: center; gap: 14px;
  margin-top: 4px;
}
.about-spotify__icon {
  font-size: 28px;
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.about-spotify__title {
  display: block;
  font-size: 15px; font-weight: 600;
  color: #f0ece4; margin-bottom: 4px;
}
.about-spotify__open {
  font-size: 11px; color: rgba(29,185,84,0.7);
  transition: color 0.25s;
}

/* ── Ticker ───────────────────────────────────────────────── */
.about-ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 0.5px solid rgba(240,236,228,0.07);
  margin-top: auto;
}
.about-ticker__track {
  display: inline-flex;
  animation: aboutTicker 18s linear infinite;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Space Mono', monospace;
}
.about-ticker__track span { padding: 0 24px; }
@keyframes aboutTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-tile { border-bottom: 0.5px solid rgba(240,236,228,0.07); }
}
@media (max-width: 640px) {
  .about-hero { padding: 48px 24px 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-tile { border-right: none; }
}


/* ═══════════════════════════════════════════════════════════
   PAGE CONTACT — Layout A1 (photo 33% + contenu aéré)
   ═══════════════════════════════════════════════════════════ */
.contact-page--a1 {
  min-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.cp-a1-grid {
  display: grid;
  grid-template-columns: 33% 67%;
  min-height: 100vh;
}

/* Photo */
.cp-a1-photo-wrap {
  position: relative;
}
.cp-a1-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cp-a1-photo--placeholder {
  background: #1a1714;
}

/* Contenu Gutenberg */
.cp-a1-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Sans photo : pas de grille, pleine largeur */
.cp-a1-grid--no-photo {
  grid-template-columns: 1fr !important;
}
.cp-a1-grid--no-photo .cp-a1-content {
  max-width: 800px;
}

/* Styles Gutenberg dans le contexte Contact */
.cp-a1-content--gutenberg h1,
.cp-a1-content--gutenberg h2 {
  font-family: 'MetaAccanthis', cursive;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  color: #f0ece4;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cp-a1-content--gutenberg h3 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e06030;
  margin-bottom: 20px;
  font-weight: 400;
}
.cp-a1-content--gutenberg p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(240,236,228,0.55);
  margin-bottom: 20px;
  max-width: 520px;
}
.cp-a1-content--gutenberg hr,
.cp-a1-content--gutenberg .wp-block-separator {
  border: none;
  border-top: 0.5px solid rgba(240,236,228,0.08);
  margin: 28px 0;
}
/* Boutons Gutenberg → style pill */
.cp-a1-content--gutenberg .wp-block-button__link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(240,236,228,0.75) !important;
  border: 1px solid rgba(240,236,228,0.2) !important;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.cp-a1-content--gutenberg .wp-block-button__link:hover {
  color: #e06030 !important;
  border-color: #e06030 !important;
  background: rgba(224,96,48,0.08) !important;
}
/* Groupe de boutons côte à côte */
.cp-a1-content--gutenberg .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
/* Liens simples */
.cp-a1-content--gutenberg a:not(.wp-block-button__link) {
  color: rgba(240,236,228,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,236,228,0.15);
  transition: color 0.2s, border-color 0.2s;
}
.cp-a1-content--gutenberg a:not(.wp-block-button__link):hover {
  color: #e06030;
  border-color: #e06030;
}
@keyframes a1LocPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.7); opacity: 0.5; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .cp-a1-grid {
    grid-template-columns: 1fr;
  }
  .cp-a1-photo-wrap {
    height: 50vh;
  }
  .cp-a1-content {
    padding: 48px 24px;
  }
  .cp-a1-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAGE LINEUP
   ═══════════════════════════════════════════════════════════ */
.lineup-page {
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Header */
.lineup-header {
  padding: 72px 64px 48px;
  border-bottom: 0.5px solid rgba(240,236,228,0.07);
}
.lineup-tag {
  display: block;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,236,228,0.25); font-family: 'Space Mono', monospace;
  margin-bottom: 16px;
}
.lineup-title {
  font-family: 'MetaAccanthis', cursive;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  color: #f0ece4;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.lineup-subtitle {
  font-size: 14px;
  color: rgba(240,236,228,0.4);
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.04em;
}

/* Liste */
.lineup-list {
  list-style: none;
  border-bottom: 0.5px solid rgba(240,236,228,0.07);
}
.lineup-item {
  border-bottom: 0.5px solid rgba(240,236,228,0.07);
}
.lineup-item:last-child { border-bottom: none; }

.lineup-item__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 64px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.lineup-item__inner--link { cursor: pointer; }
.lineup-item__inner--link:hover {
  background: rgba(240,236,228,0.025);
}
.lineup-item__inner--link:hover .lineup-item__name {
  color: #e06030;
}
.lineup-item__inner--link:hover .lineup-item__arrow {
  transform: translate(4px, -4px);
  color: #e06030;
}

/* Photo */
.lineup-item__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1714;
}
.lineup-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lineup-item__photo-placeholder {
  width: 100%;
  height: 100%;
  background: #242018;
}

/* Infos */
.lineup-item__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.lineup-item__name {
  font-family: 'MetaAccanthis', cursive;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  color: #f0ece4;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.lineup-item__arrow {
  font-size: 22px;
  color: rgba(240,236,228,0.15);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), color 0.25s;
  flex-shrink: 0;
}

.lineup-empty {
  padding: 64px;
  font-size: 14px;
  color: rgba(240,236,228,0.3);
  font-family: 'Space Mono', monospace;
}

/* ── Hover — effets riches ────────────────────────────────── */
/* Quand on hover un item, tous les autres s'atténuent */
.lineup-list:has(.lineup-item__inner--link:hover) .lineup-item__inner:not(:hover) .lineup-item__name {
  color: rgba(240,236,228,0.2);
}
.lineup-list:has(.lineup-item__inner--link:hover) .lineup-item__inner:not(:hover) .lineup-item__photo {
  opacity: 0.25;
}

/* L'item survolé s'intensifie */
.lineup-item__inner--link:hover .lineup-item__name {
  color: #e06030 !important;
}
.lineup-item__inner--link:hover .lineup-item__photo {
  opacity: 1 !important;
  transform: scale(1.1) rotate(-3deg);
}
.lineup-item__inner--link:hover .lineup-item__arrow {
  transform: translate(5px, -5px);
  color: #e06030;
}
.lineup-item__inner--link:hover {
  background: rgba(224,96,48,0.04) !important;
  padding-left: 72px !important;
}

/* Transitions globales */
.lineup-item__name,
.lineup-item__photo {
  transition: color 0.3s ease,
              opacity 0.3s ease,
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lineup-item__inner--link {
  transition: background 0.25s,
              padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ── Animation d'entrée en cascade ───────────────────────── */
@keyframes lineupIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lineup-item {
  opacity: 0;
  animation: lineupIn 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}
.lineup-item:nth-child(1)  { animation-delay: 0.05s; }
.lineup-item:nth-child(2)  { animation-delay: 0.12s; }
.lineup-item:nth-child(3)  { animation-delay: 0.19s; }
.lineup-item:nth-child(4)  { animation-delay: 0.26s; }
.lineup-item:nth-child(5)  { animation-delay: 0.33s; }
.lineup-item:nth-child(6)  { animation-delay: 0.40s; }
.lineup-item:nth-child(7)  { animation-delay: 0.47s; }
.lineup-item:nth-child(8)  { animation-delay: 0.54s; }
.lineup-item:nth-child(9)  { animation-delay: 0.61s; }
.lineup-item:nth-child(10) { animation-delay: 0.68s; }
.lineup-item:nth-child(n+11) { animation-delay: 0.72s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .lineup-header { padding: 48px 24px 32px; }
  .lineup-item__inner { padding: 20px 24px; gap: 20px; }
  .lineup-item__name { font-size: 22px; }
  .lineup-item__inner--link:hover { padding-left: 24px !important; }
}
