/* Golden Hour V1 — port of V5 design (Degular only, halos discrets) */

/* ── Fonts ──────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Degular';
  src: url('fonts/Degular-Regular.otf') format('opentype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  font-display: swap;
}
@font-face {
  font-family: 'Degular';
  src: url('fonts/Degular-Regular.otf') format('opentype');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: local('JetBrains Mono'), local('JetBrainsMono');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────────── */
/* Toutes les couleurs / espacements passent par ces variables.
   Si tu vois un hex en dur ailleurs dans le CSS, c'est une dette
   à rapatrier ici. Variantes light (page Contact) : voir
   `.gh-page--light` plus bas — c'est une variante assumée. */
:root {
  /* Sombre — fond principal site (charte V3 #0A0A0A) */
  --gh-black:        #0A0A0A;
  --gh-black-2:      #161616;   /* Surfaces légèrement levées (photos, modales) */

  /* Crème — texte principal sur fond sombre, et fond de la page Contact */
  --gh-cream:        #F5F1EA;
  --gh-bone:         #D8CFC4;
  --gh-stone:        #9A8F82;
  --gh-faint:        #4E4842;

  /* Accents */
  --gh-coral:        #D94A3A;
  --gh-gold:         #D4A574;

  --gh-line:         rgba(245, 241, 234, 0.10);
  --gh-line-strong:  rgba(245, 241, 234, 0.22);

  /* Halo chaud — autorisé uniquement en décor de fond (jamais sur
     boutons ni cartes). Cf. brief DA section A. */
  --gh-halo-warm: radial-gradient(60% 70% at 0% 0%,
    #D4A574 0%,
    rgba(212, 165, 116, 0.35) 35%,
    rgba(212, 165, 116, 0.08) 65%,
    transparent 100%);

  --display: 'Degular', system-ui, -apple-system, sans-serif;
  --sans:    'Degular', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Espacements ──────────────────────────────────────────────── */
  --gh-margin:    clamp(20px, 4vw, 64px);
  --gh-section-y: clamp(140px, 14vw, 200px);
  --gh-max:       1480px;

  /* Gap unique sous le header pour TOUTES les pages.
     Tu trouveras `padding-top: var(--page-top)` sur `.gh-page` qui
     est le wrapper de toutes les pages. Plus de padding-top en dur
     dans les sections individuelles (cf. brief DA section B). */
  --page-top:     clamp(48px, 6vw, 88px);

  /* Gap entre dernière section et le footer (et entre sections
     internes uniformément). Plus serré que --gh-section-y pour
     éviter les zones vides. (Brief DA section D.) */
  --section-gap:  clamp(72px, 10vw, 140px);
}

/* ── Base ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html {
  /* Scroll smooth pour les ancres internes (#next-events depuis le hero) */
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body {
  margin: 0; padding: 0;
  background: var(--gh-black);
  color: var(--gh-cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 0;
  text-rendering: optimizeLegibility;
  -webkit-text-stroke: 0.01em transparent;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gh-coral); color: var(--gh-cream); }

/* ── Layout primitives ──────────────────────────────────────────── */
.gh-container { max-width: var(--gh-max); margin: 0 auto; padding: 0 var(--gh-margin); }
.gh-display   { font-family: var(--display); }
.gh-mono      { font-family: var(--mono); }

.gh-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-stone);
}

.gh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.gh-reveal.in { opacity: 1; transform: translateY(0); }

/* Halo — gold-only, discret, max 1 par page */
.gh-halo-corner {
  position: absolute;
  top: 0; left: 0;
  width: clamp(280px, 32vw, 520px);
  height: clamp(280px, 32vw, 520px);
  background: var(--gh-halo-warm);
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.gh-halo-corner.dim    { opacity: 0.18; }
.gh-halo-corner.right  { left: auto; right: 0; transform: scaleX(-1); }
.gh-halo-corner.bottom { top: auto; bottom: 0; transform: scaleY(-1); }
.gh-halo-corner.bottom.right { top: auto; bottom: 0; left: auto; right: 0; transform: scale(-1, -1); }

/* Asterisk — PNG with CSS filter for tinting */
.gh-asterisk {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: -0.12em;
}
.gh-asterisk--cream { filter: brightness(0) invert(1) brightness(0.96) sepia(0.08); }
.gh-asterisk--white { filter: brightness(0) invert(1); }
/* coral (native) needs no filter */

@keyframes gh-spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.gh-spin-slow {
  animation: gh-spin-slow 90s linear infinite;
  transform-origin: 50% 50%;
}

/* Grids */
.gh-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.gh-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.gh-2col   { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 48px; align-items: start; }
@media (max-width: 900px) {
  .gh-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 640px) {
  .gh-grid-3, .gh-grid-2 { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Buttons ────────────────────────────────────────────────────── */
.gh-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
  background: transparent; color: var(--gh-cream);
  text-decoration: none;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.gh-btn--primary {
  background: var(--gh-coral);
  border-color: var(--gh-coral);
  color: var(--gh-cream);
  font-weight: 600;
}
.gh-btn--primary:hover { background: #c4392b; border-color: #c4392b; }
.gh-btn--ghost {
  border-color: var(--gh-line-strong);
  color: var(--gh-cream);
}
.gh-btn--ghost:hover { border-color: var(--gh-cream); }
.gh-btn--link {
  background: none; border: none; padding: 0;
  color: var(--gh-cream);
}
.gh-btn--link:hover { color: var(--gh-coral); }
.gh-btn--sm { padding: 10px 16px; font-size: 10px; }

/* ── Header CTAs (top-right pair) ─────────────────────────────── */
.gh-header-ctas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gh-header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gh-header-cta--primary {
  background: var(--gh-coral);
  border-color: var(--gh-coral);
  color: var(--gh-cream);
}
.gh-header-cta--primary:hover {
  background: #c4392b;
  border-color: #c4392b;
  transform: translateY(-1px);
}
.gh-header-cta--ghost {
  background: transparent;
  border-color: var(--gh-line-strong);
  color: var(--gh-cream);
}
.gh-header-cta--ghost:hover {
  border-color: var(--gh-cream);
}
/* Hide the ghost CTA on tighter screens to keep header airy on
   tablet/laptop widths that don't have room for both pills */
@media (max-width: 1100px) and (min-width: 561px) {
  .gh-header-cta--ghost { display: none; }
}
/* Mobile (≤560 px): both CTAs visible but compacted, with the brand
   shrunk to just the asterisk so everything fits a 375 px phone. */
@media (max-width: 819px) {
  .gh-header-ctas { gap: 6px; }
  .gh-header-cta {
    padding: 8px 11px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
}
@media (max-width: 380px) {
  /* On the tiniest phones we still keep the primary "Booker" visible,
     but the ghost falls back into the mobile menu only. */
  .gh-header-cta--ghost { display: none; }
}

.gh-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.gh-mobile-ctas .gh-header-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
}

/* ── Header ─────────────────────────────────────────────────────── */
.gh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms, border-color 220ms, backdrop-filter 220ms;
}
.gh-header.is-scrolled {
  background: rgba(26, 23, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--gh-line);
}
.gh-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.gh-logo {
  background: transparent; border: none; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0;
}
/* Hidden in V1.1 — only the asterisk mark is shown.
   Kept in markup for accessibility (aria-label uses it via screen readers). */
.gh-logo__word { display: none; }
.gh-logo .gh-asterisk {
  width: 32px; height: 32px;
  margin: 0; align-self: center;
}
.gh-nav {
  display: flex; gap: 32px; align-items: center;
}
.gh-nav__item {
  background: transparent; border: none;
  color: var(--gh-bone);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 0; cursor: pointer;
  position: relative; white-space: nowrap;
  transition: color 200ms;
  text-decoration: none;
  display: inline-block;
}
.gh-nav__item:hover { color: var(--gh-cream); }
.gh-nav__item.is-active { color: var(--gh-cream); }
.gh-nav__item.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--gh-coral);
}
.gh-lang {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
}
.gh-lang__btn {
  background: none; border: none; padding: 4px;
  color: var(--gh-stone);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; cursor: pointer;
  text-decoration: none;
}
.gh-lang__btn.is-active { color: var(--gh-cream); font-weight: 700; }
.gh-lang__sep { color: var(--gh-faint); }

.gh-menu-btn {
  width: 44px; height: 44px;
  display: none;
  align-items: center; justify-content: center;
  background: transparent; border: none;
  color: var(--gh-cream); padding: 0; cursor: pointer;
  margin-right: -10px;
}
@media (max-width: 819px) {
  .gh-nav, .gh-header .gh-lang { display: none; }
  .gh-menu-btn { display: inline-flex; }
}

/* Mobile overlay menu */
.gh-mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--gh-black);
  padding: 20px var(--gh-margin) 32px;
  display: none;
  flex-direction: column; overflow: hidden;
}
.gh-mobile-menu.is-open { display: flex; }
.gh-mobile-menu__head {
  display: flex; justify-content: space-between; align-items: center;
  height: 48px; position: relative; z-index: 2;
}
.gh-mobile-menu__nav {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  position: relative; z-index: 2;
}
.gh-mobile-menu__item {
  background: none; border: none;
  text-align: left; padding: 6px 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 11vw, 56px);
  letter-spacing: -0.025em; line-height: 1;
  color: var(--gh-bone); cursor: pointer;
  text-decoration: none;
  text-transform: lowercase;
}
.gh-mobile-menu__item.is-active { color: var(--gh-cream); }
.gh-mobile-menu__foot {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.gh-footer {
  border-top: 1px solid var(--gh-line);
  padding: 56px var(--gh-margin) 48px;
  position: relative; overflow: hidden;
}
.gh-footer__inner { position: relative; z-index: 2; padding: 0; }
.gh-footer__brand {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.gh-footer__word {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  color: var(--gh-cream);
  letter-spacing: -0.015em;
}
.gh-footer .gh-asterisk {
  width: 13px; height: 13px;
  align-self: flex-start; margin-top: 5px;
}
/* Mobile-first : stack vertical propre. Séparateurs · cachés sur mobile,
   visibles sur desktop. */
.gh-footer__contact {
  margin-bottom: 18px;
  color: var(--gh-bone);
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gh-footer__contact a { color: var(--gh-bone); transition: color 200ms; }
.gh-footer__contact a:hover { color: var(--gh-cream); }
.gh-footer__socials {
  display: flex; justify-content: flex-start; align-items: center;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 20px;
}
.gh-footer__socials > div {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.gh-footer__link {
  color: var(--gh-stone);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 200ms;
}
.gh-footer__link:hover { color: var(--gh-cream); }
.gh-footer__sep {
  color: var(--gh-faint);
  font-family: var(--mono); font-size: 11px;
  display: none;   /* caché par défaut (mobile) — visible en desktop */
}
.gh-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--gh-line);
}
.gh-footer__legal > span:last-child {
  display: flex; flex-wrap: wrap; gap: 14px;
}

@media (min-width: 720px) {
  .gh-footer__contact {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  .gh-footer__contact .gh-footer__sep,
  .gh-footer__socials .gh-footer__sep,
  .gh-footer__legal .gh-footer__sep {
    display: inline; margin: 0 12px;
  }
  .gh-footer__legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── Status tag ─────────────────────────────────────────────────── */
.gh-status {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  border: 1px solid var(--gh-line-strong);
  color: var(--gh-stone);
}
.gh-status__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.gh-status--sold-out { color: var(--gh-stone); border-color: var(--gh-line-strong); }
.gh-status--soon     { color: var(--gh-cream); border-color: var(--gh-line-strong); }
.gh-status--few-left,
.gh-status--on-sale  { color: var(--gh-coral); border-color: var(--gh-coral); }
.gh-status--cancelled,
.gh-status--postponed { color: var(--gh-coral); border-color: var(--gh-coral); }

/* ── Hero (home) ───────────────────────────────────────────────── */
.gh-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--gh-line);
}
.gh-hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.gh-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--gh-black);
}
.gh-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.65;
}
.gh-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, transparent 30%, rgba(26,23,20,0.85) 100%);
  pointer-events: none;
}
/* Hero centre — mobile-first */
.gh-hero__center {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px var(--gh-margin);
  text-align: center;
  gap: 12px;
}
.gh-hero-mark {
  width: 22px; height: 22px;
}
.gh-hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 14vw, 80px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  color: var(--gh-cream);
}
.gh-hero-tagline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gh-cream);
  margin-top: 2px;
}
.gh-hero-foot {
  position: relative; z-index: 3;
  padding: 22px var(--gh-margin) 36px;
  text-align: center;
  display: flex; flex-direction: column;
  gap: 6px;
}
.gh-hero-foot__primary {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gh-bone);
}
.gh-hero-foot__secondary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-cream);
}

/* Hero foot CTA "Next events ↓" — clickable, scroll vers #next-events */
a.gh-hero-foot.gh-hero-foot--cta {
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  gap: 14px;
  padding: 36px var(--gh-margin) 48px;   /* mobile : plus de respiration bas */
  transition: opacity 200ms;
}
a.gh-hero-foot.gh-hero-foot--cta:hover { opacity: 0.75; }
a.gh-hero-foot.gh-hero-foot--cta .gh-hero-foot__primary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;                       /* mobile : plus lisible (avant 14px) */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gh-cream);
}
@media (min-width: 769px) {
  a.gh-hero-foot.gh-hero-foot--cta {
    padding: 28px var(--gh-margin) 56px;
    gap: 10px;
  }
  a.gh-hero-foot.gh-hero-foot--cta .gh-hero-foot__primary {
    font-size: 14px;
    letter-spacing: 0.24em;
  }
}
/* Cascade de 3 flèches qui glissent du haut vers le bas en fade
   (style "rain"/scroll-guide) — chaque flèche a un delay différent
   pour créer un effet de ruissellement continu */
.gh-hero-foot__arrows {
  position: relative;
  display: inline-block;
  width: 1.2em;
  height: 2.4em;
  vertical-align: middle;
}
.gh-hero-foot__arrow {
  position: absolute;
  left: 0; right: 0;
  font-family: var(--display);
  font-size: 22px;
  color: var(--gh-cream);
  line-height: 1;
  text-align: center;
  animation: gh-arrow-rain 2.2s ease-in-out infinite;
  opacity: 0;
}
.gh-hero-foot__arrow--1 { animation-delay: 0s;     }
.gh-hero-foot__arrow--2 { animation-delay: 0.35s;  }
.gh-hero-foot__arrow--3 { animation-delay: 0.7s;   }

@keyframes gh-arrow-rain {
  0%   { transform: translateY(-12px); opacity: 0; }
  25%  { opacity: 1; }
  60%  { opacity: 0.95; }
  100% { transform: translateY(20px);  opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gh-hero-foot__arrow { animation: none; opacity: 1; }
  .gh-hero-foot__arrow--1 { transform: translateY(0); }
  .gh-hero-foot__arrow--2, .gh-hero-foot__arrow--3 { display: none; }
}

/* Hero — desktop scale */
@media (min-width: 769px) {
  .gh-hero__center {
    gap: 22px;
    padding: 60px var(--gh-margin);
  }
  .gh-hero-mark { width: 36px; height: 36px; }
  .gh-hero-title {
    font-size: clamp(96px, 12vw, 220px);
  }
  .gh-hero-tagline {
    font-size: 13px;
    letter-spacing: 0.32em;
    margin-top: 4px;
  }
  .gh-hero-foot {
    padding: 28px var(--gh-margin) 56px;
    gap: 8px;
  }
  .gh-hero-foot__primary { font-size: 11px; }
  .gh-hero-foot__secondary { font-size: 14px; letter-spacing: 0.24em; }
}

/* ── Home : section "Prochains événements" (grille 3 cards) ──────── */
.gh-home-events {
  padding: clamp(80px, 12vw, 140px) var(--gh-margin) clamp(60px, 10vw, 110px);
  border-top: 1px solid var(--gh-line);
  /* offset le smooth-scroll pour pas que le titre soit collé sous le header */
  scroll-margin-top: 80px;
}
.gh-home-events .gh-eyebrow { margin-bottom: 28px; }
.gh-home-events__grid {
  /* Mobile : carousel horizontal swipeable (scroll snap natif iOS/Android) */
  display: flex;
  flex-direction: row;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Extend hors container + padding pour effet "peek" du card suivant */
  margin: 0 calc(-1 * var(--gh-margin));
  padding: 4px var(--gh-margin) 12px;
}
.gh-home-events__grid::-webkit-scrollbar { display: none; }
.gh-home-events__grid > * {
  flex: 0 0 80%;
  scroll-snap-align: start;
  scroll-margin-left: var(--gh-margin);
}

/* Desktop : grid classique 3 colonnes */
@media (min-width: 720px) {
  .gh-home-events__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    overflow: visible;
    margin: 0;
    padding: 0;
    scroll-snap-type: none;
  }
  .gh-home-events__grid > * { flex: initial; scroll-snap-align: none; }
}

.gh-home-events__cta {
  margin-top: 40px;
  display: flex; justify-content: flex-end;
}

.gh-home-event-card {
  display: block;
  color: inherit; text-decoration: none;
  position: relative;
  overflow: hidden;
  background: var(--gh-black-2);
  transition: transform 400ms ease-out;
}
.gh-home-event-card:hover { transform: translateY(-3px); }
.gh-home-event-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.gh-home-event-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}
.gh-home-event-card:hover .gh-home-event-card__photo img { transform: scale(1.04); }
.gh-home-event-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.95) 0%, rgba(10,8,6,0.55) 35%, transparent 65%);
  z-index: 1; pointer-events: none;
}
.gh-home-event-card__meta {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
}
.gh-home-event-card__date {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-bone);
  margin-bottom: 8px;
}
.gh-home-event-card__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--gh-cream);
  margin-bottom: 8px;
  text-transform: uppercase;
  text-wrap: balance;
}
.gh-home-event-card__venue {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--gh-stone);
}

/* Next event band */
.gh-next-band {
  position: relative; z-index: 4;
  background: rgba(26,23,20,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gh-line-strong);
}
.gh-next-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 26px 0;
}
.gh-next-band__kicker {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.gh-next-band__kicker-dot { color: var(--gh-coral); }
.gh-next-band__meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--gh-bone);
}
.gh-next-band__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--gh-cream);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 6px;
}
.gh-next-band__venue {
  color: var(--gh-bone);
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.gh-next-band__lineup {
  color: var(--gh-stone);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.05em;
}
.gh-next-band__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── About teaser (home) ───────────────────────────────────────── */
/* Brief DA C : vide entre le lien et le footer. Resserre le padding
   vertical pour éviter la zone vide. */
.gh-about-teaser {
  padding: var(--section-gap) var(--gh-margin);
  position: relative; overflow: hidden;
}
.gh-about-teaser__lead {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gh-cream);
  margin: 0;
  text-wrap: pretty;
}
.gh-about-teaser__cta {
  margin-top: 36px;
}

/* ── Page primitives (interior pages) ─────────────────────────── */
/* `.gh-page` est le wrapper de TOUTES les pages (main.gh-page).
   Le padding-top centralisé via --page-top remplace les
   `padding: 40px var(--gh-margin) 0` inline qui traînaient sur
   chaque section header. Brief DA section B : un seul fix. */
.gh-page { padding-top: var(--page-top); }
.gh-page__head {
  padding: 36px var(--gh-margin) 24px;
  position: relative; overflow: hidden;
}
.gh-page__head-inner { position: relative; z-index: 2; }
.gh-page__title {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  color: var(--gh-cream);
}
.gh-page__section { padding: 0 var(--gh-margin) calc(var(--gh-section-y) * 0.7); scroll-margin-top: 120px; }
.gh-page__section--bordered { border-top: 1px solid var(--gh-line); }
.gh-page__section--bordered > .gh-container { padding-top: calc(var(--gh-section-y) * 0.7); }

.gh-back-link {
  background: none; border: none; padding: 0;
  color: var(--gh-stone);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: color 200ms;
  display: inline-block;
}
.gh-back-link:hover { color: var(--gh-cream); }

/* ── PhotoBlock ────────────────────────────────────────────────── */
.gh-photo {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gh-black-2);
  overflow: hidden;
  border: 1px solid var(--gh-line);
}
@media (min-width: 769px) {
  .gh-photo { aspect-ratio: 4 / 5; }
}
.gh-photo--2-3 { aspect-ratio: 2 / 3; }
.gh-photo--4-3 { aspect-ratio: 4 / 3; }
.gh-photo--1-1 { aspect-ratio: 1 / 1; }
.gh-photo--auto { aspect-ratio: auto; height: 100%; }
.gh-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gh-photo__grad {
  position: absolute; inset: 0;
  /* Gradient renforcé : zone basse fortement assombrie + voile haut léger
     → garantit lisibilité du texte (date + titre) sur toute photo, y
     compris les affiches avec contenu visuel chargé */
  background:
    linear-gradient(to top,    rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.55) 30%, transparent 60%),
    linear-gradient(to bottom, rgba(10,8,6,0.45) 0%, transparent 25%);
  pointer-events: none;
  z-index: 1;
}
.gh-photo__overlay {
  position: absolute; left: 20px; right: 20px; bottom: 20px; top: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 2; pointer-events: none;
}
.gh-photo__eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gh-cream);
}
.gh-photo__label {
  font-family: var(--display);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--gh-cream);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
  /* clamp à 3 lignes max — au-delà l'event card devient déséquilibrée */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) {
  .gh-photo__label { font-size: 18px; -webkit-line-clamp: 2; }
}
.gh-photo--empty {
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.gh-photo--empty .gh-photo__label {
  text-align: center;
}

/* ── Event card ─────────────────────────────────────────────────── */
.gh-event-card {
  cursor: pointer; display: block;
  color: inherit; text-decoration: none;
}
.gh-event-card__foot {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.gh-event-card__meta { min-width: 0; }
.gh-event-card__venue {
  color: var(--gh-bone);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.05em;
}
.gh-event-card__status-row { margin-top: 8px; }

/* ── Event detail ───────────────────────────────────────────────── */
.gh-event-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
}
.gh-event-detail__date {
  color: var(--gh-coral);
  margin-bottom: 18px;
}
.gh-event-detail__title {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 88px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 0.98; color: var(--gh-cream);
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.gh-event-detail__venue {
  margin-top: 24px;
  color: var(--gh-bone);
  font-family: var(--mono);
  font-size: 13px; letter-spacing: 0.05em;
}
.gh-event-detail__desc {
  margin-top: 28px;
  color: var(--gh-cream);
  font-size: 17px; line-height: 1.55;
  max-width: 44ch;
}
.gh-event-detail__ctas {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}

.gh-lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.gh-lineup-item {
  font-family: var(--display);
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gh-cream);
  border-bottom: 1px solid var(--gh-line);
  padding: 11px 0;
}
.gh-lineup-item__num {
  color: var(--gh-faint);
  font-family: var(--mono);
  font-size: 10px;
  margin-right: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .gh-lineup-item { padding: 9px 0; font-size: 16px; }
  .gh-lineup-item__num { font-size: 9px; margin-right: 10px; }
}

/* ── Modal — Shotgun ───────────────────────────────────────────── */
.gh-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 8, 6, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  animation: gh-fade 200ms ease-out;
}
@keyframes gh-fade { from { opacity: 0; } to { opacity: 1; } }
.gh-modal {
  background: var(--gh-black-2);
  border: 1px solid var(--gh-line-strong);
  max-width: 960px; width: 100%;
  max-height: 90vh;
  display: flex; flex-direction: column;
  position: relative;
}
.gh-modal__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gh-line);
  gap: 16px;
}
.gh-modal__title {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  color: var(--gh-cream);
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.gh-modal__close {
  background: none;
  border: 1px solid var(--gh-line-strong);
  color: var(--gh-cream);
  padding: 8px 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.gh-modal__close:hover { border-color: var(--gh-cream); }
.gh-modal__body {
  flex: 1; min-height: 540px;
  position: relative;
}
.gh-modal__iframe {
  width: 100%; height: 100%;
  min-height: 540px;
  border: none;
  background: var(--gh-black-2);
}
.gh-modal__fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px; gap: 18px;
  pointer-events: none;
  text-align: center;
  background: linear-gradient(180deg, transparent 0 60%, rgba(26,23,20,0.6) 100%);
}
.gh-modal__fallback-card {
  pointer-events: auto;
  background: rgba(26,23,20,0.9);
  border: 1px solid var(--gh-line-strong);
  padding: 20px 28px;
  max-width: 440px;
}
.gh-modal__fallback-card p {
  margin: 10px 0 18px;
  color: var(--gh-bone);
  font-size: 14px; line-height: 1.5;
}

/* ── Roster header — titre + descriptif rapprochés (brief DA C) ──
   Avant : flex justify-content: space-between → titre à l'extrême
   gauche, desc à l'extrême droite, vide central énorme. Maintenant
   grille 2 colonnes serrée, gap fixe et raisonnable. */
.gh-roster-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 40ch);
  align-items: flex-end;
  gap: 48px;
  border-top: 1px solid var(--gh-line-strong);
  padding-top: 28px;
}
.gh-roster-head__title {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
  color: var(--gh-cream);
  display: inline-flex;
  align-items: flex-start;
  gap: 0.04em;
}
.gh-roster-head__desc {
  color: var(--gh-bone);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 700px) {
  .gh-roster-head { grid-template-columns: 1fr; gap: 20px; padding-top: 20px; }
  .gh-roster-head__title { font-size: clamp(48px, 14vw, 80px); }
}

/* ── Roster catalogue card ─────────────────────────────────────── */
.gh-roster-card {
  position: relative; cursor: pointer;
  color: inherit; text-decoration: none;
  display: block;
}
.gh-roster-card .photo-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 2 / 3; background: var(--gh-black-2);
}
.gh-roster-card .photo-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease-out;
}
.gh-roster-card:hover .photo-wrap img { transform: scale(1.04); }
.gh-roster-card .overlay {
  position: absolute; inset: 0;
  background: rgba(26, 23, 20, 0.45);
  opacity: 0; transition: opacity 300ms;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px; text-align: center; gap: 14px;
}
.gh-roster-card:hover .overlay { opacity: 1; }
.gh-roster-card .overlay-style {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gh-stone);
}
.gh-roster-card .overlay-divider {
  width: 24px; height: 1px; background: var(--gh-gold);
}
.gh-roster-card .overlay-plus {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 18px;
  color: var(--gh-cream); max-width: 22ch; line-height: 1.35;
}
.gh-roster-card .overlay-cta {
  margin-top: 6px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gh-cream);
  border: 1px solid var(--gh-cream); padding: 10px 18px;
}
.gh-roster-card .name {
  margin-top: 18px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.015em; line-height: 1;
  color: var(--gh-cream);
  transition: color 200ms;
  text-transform: uppercase;
}
.gh-roster-card:hover .name { color: var(--gh-coral); }
/* Ligne style sous le nom (brief DA section F : "Sous chaque photo,
   seul le nom apparaît → ajoute une ligne courte (rôle/style)"). */
.gh-roster-card .style {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gh-stone);
}
/* Focus visible (a11y) — anneau visible quand on tabbe la card. */
.gh-roster-card:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  /* Simple stacked grid on mobile — was a carousel before, less "simpa" to scroll horizontally */
  .gh-roster-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .gh-roster-card .photo-wrap { aspect-ratio: 4 / 5; }
  .gh-roster-card .overlay { display: none; }
}

/* ── Artist focus page ─────────────────────────────────────────── */
.gh-artist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: flex-start;
  border-top: 1px solid var(--gh-line-strong);
  padding-top: 24px;
}
.gh-artist-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gh-artist-meta__label { color: var(--gh-bone); }
.gh-artist-meta__value { color: var(--gh-cream); }
.gh-artist-headline {
  text-align: right;
  position: relative;
}
.gh-artist-headline__num {
  position: absolute;
  top: -8px; right: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gh-stone);
}
.gh-artist-headline__focus {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--gh-stone);
  letter-spacing: -0.01em;
  line-height: 1;
  font-style: italic;
}
.gh-artist-headline__name {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 800;
  color: var(--gh-cream);
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-top: 8px;
  text-transform: uppercase;
}
.gh-artist-instagram {
  display: inline-block;
  margin-top: 16px;
  color: var(--gh-cream);
  border-bottom: 1px solid var(--gh-cream);
  padding-bottom: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.gh-mosaic { display: grid; gap: 10px; }
.gh-mosaic-focus { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 110px; }
@media (max-width: 900px) {
  .gh-mosaic-focus { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
}
@media (max-width: 820px) {
  .gh-artist-hero { grid-template-columns: 1fr !important; gap: 24px !important; }
  .gh-artist-hero > *:first-child { order: 2; }
  .gh-artist-hero > *:last-child { order: 1; text-align: left !important; }
  .gh-mosaic-focus {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 200px !important;
    gap: 8px !important;
  }
  .gh-mosaic-focus > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .gh-mosaic-focus > *:first-child {
    grid-column: 1 / -1 !important;
    grid-row: span 1 !important;
  }
}

/* ── Music page (mix rows) ─────────────────────────────────────── */
.gh-mix-row {
  border-top: 1px solid var(--gh-line);
  padding: 28px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
  color: inherit; text-decoration: none;
}
.gh-mix-row:hover { transform: translateX(8px); }
.gh-mix-row__icon {
  width: 64px; height: 64px;
  background: var(--gh-black-2);
  border: 1px solid var(--gh-line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gh-cream);
  transition: color 200ms;
}
.gh-mix-row:hover .gh-mix-row__icon { color: var(--gh-coral); }
.gh-mix-row__name {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--gh-cream);
  transition: color 200ms;
  letter-spacing: -0.01em;
  line-height: 1;
}
.gh-mix-row:hover .gh-mix-row__name { color: var(--gh-coral); }
.gh-mix-row__style {
  margin-top: 8px;
  color: var(--gh-stone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gh-mix-row__cta {
  color: var(--gh-stone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: color 200ms;
}
.gh-mix-row:hover .gh-mix-row__cta { color: var(--gh-coral); }

/* ── About page ────────────────────────────────────────────────── */

/* Split layout: texte gauche, Kodak wall (2 col) à droite */
.gh-about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .gh-about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.gh-about-split__text p {
  margin-top: 18px;
  color: var(--gh-bone);
  font-size: 17px; line-height: 1.6;
  max-width: 60ch;
}

/* ── Kodak wall — Mobile-first ─────────────────────────────────
   Mobile (default) : 2 lignes horizontales défilant en sens opposés
                      (style "film roll" qui glisse de gauche à droite)
   Desktop ≥901px   : 2 colonnes verticales défilant en sens opposés
*/
/* Kodak wall — auto-scroll piloté en JS (cf. site.js setupAutoScroll)
   pour permettre swipe/drag interactif. Mobile : 2 lignes horizontales,
   Desktop : 4 colonnes verticales. Mêmes mecaniques que gh-event-photos. */
.gh-kodak-wall {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 320px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gh-kodak-wall__col {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gh-kodak-wall__col::-webkit-scrollbar { display: none; }

.gh-kodak-wall__item {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--gh-black-2);
}
.gh-kodak-wall__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms ease-out;
}
.gh-kodak-wall__item:hover img { transform: scale(1.04); }

/* Desktop ≥901px : grid 4 colonnes verticales (mosaïque dense) */
@media (min-width: 901px) {
  .gh-kodak-wall {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    height: 580px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .gh-kodak-wall__col {
    flex-direction: column;
    width: auto;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .gh-kodak-wall__item { height: auto; }
}
@keyframes gh-kodak-y-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes gh-kodak-y-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .gh-kodak-wall__col { animation: none; }
}

.gh-about-body p {
  margin-top: 18px;
  color: var(--gh-bone);
  font-size: 17px; line-height: 1.6;
  max-width: 60ch;
}
.gh-about-body__lead {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 38px) !important;
  font-weight: 700;
  line-height: 1.18 !important;
  letter-spacing: -0.02em;
  color: var(--gh-cream) !important;
  margin: 0 !important;
  text-wrap: pretty;
}
.gh-about-signature {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--gh-cream);
  letter-spacing: -0.01em;
}

.gh-about-mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}
@media (max-width: 820px) {
  .gh-about-mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 180px !important;
    gap: 8px !important;
  }
  .gh-about-mosaic > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .gh-about-mosaic > *:first-child {
    grid-column: 1 / -1 !important;
    grid-row: span 1 !important;
  }
}

.gh-pole {
  border-top: 1px solid var(--gh-line-strong);
  padding-top: 22px;
}
.gh-pole__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.gh-pole .gh-asterisk { width: 12px; height: 12px; }
.gh-pole__title {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--gh-cream);
}
.gh-pole__desc {
  margin-top: 12px;
  color: var(--gh-bone);
  font-size: 15px;
  line-height: 1.5;
  max-width: 30ch;
}
a.gh-pole {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 240ms ease, transform 240ms ease;
}
a.gh-pole:hover { border-top-color: var(--gh-coral); transform: translateY(-2px); }
a.gh-pole:hover .gh-pole__title { color: var(--gh-coral); }
.gh-pole__link {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gh-coral);
}

.gh-about-contact a.gh-about-contact__email {
  display: block;
  color: var(--gh-cream);
  text-decoration: none;
  font-family: var(--display);
  /* clamp démarre à 20px mobile pour éviter overflow horizontal */
  font-size: clamp(20px, 5.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  transition: color 200ms;
  /* permet de wraper sur "@" et "." si l'écran est trop étroit */
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.gh-about-contact a.gh-about-contact__email:hover { color: var(--gh-coral); }
.gh-about-contact__phone {
  display: block;
  color: var(--gh-bone);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 14px; letter-spacing: 0.05em;
}

/* Force le grid contact à passer en 1 col sur mobile,
   même si l'inline style "grid-template-columns: 1fr 2fr" est appliqué */
@media (max-width: 720px) {
  .gh-about-contact {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* ── Releases (Music page) ─────────────────────────────────────── */
.gh-release-card {
  display: block;
  color: inherit; text-decoration: none;
  position: relative;
}
.gh-release-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--gh-black-2);
  overflow: hidden;
  border: 1px solid var(--gh-line);
}
.gh-release-card__cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}
.gh-release-card:hover .gh-release-card__cover img { transform: scale(1.04); }
.gh-release-card__cover-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(217, 74, 58, 0.18), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(245, 241, 234, 0.06), transparent 60%),
    var(--gh-black-2);
}
.gh-release-card__cover-empty::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.4px solid var(--gh-bone);
  opacity: 0.6;
  background:
    radial-gradient(circle at center, var(--gh-coral) 0%, var(--gh-coral) 28%, transparent 30%);
}
.gh-release-card__cover-empty span {
  position: relative;
  font-family: var(--display); font-weight: 700;
  color: var(--gh-cream);
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.gh-release-card__meta {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.gh-release-card__title {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--gh-cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 200ms;
}
.gh-release-card:hover .gh-release-card__title { color: var(--gh-coral); }
.gh-release-card__sub {
  margin-top: 6px;
  color: var(--gh-stone);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gh-release-card__date {
  color: var(--gh-faint);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Gallery (event photos) + Lightbox ────────────────────────── */
.gh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 768px) {
  .gh-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
}
@media (min-width: 1200px) {
  .gh-gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.gh-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gh-black-2);
  border: 1px solid var(--gh-line);
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}
.gh-gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-out, filter 300ms;
}
.gh-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ---- Event photos marquee — auto-scroll horizontal slider ----------
   Used on event detail pages when the event has ≥ 4 photos. Click on
   any item opens the existing lightbox. Cloned items (aria-hidden) fill
   the track so the CSS animation loops seamlessly. */
/* Conteneur scrollable horizontalement (drag/swipe natif). L'auto-scroll
   continu est piloté en JS via window.GH.setupAutoScroll() pour pouvoir
   être interrompu par l'utilisateur (cf. site.js). Mask : edges fade
   pour ne pas couper net visuellement. Scrollbar masquée. */
.gh-event-photos {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.gh-event-photos::-webkit-scrollbar { display: none; }
.gh-event-photos__track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 0 7px;
}
.gh-event-photos .gh-gallery-item {
  flex: 0 0 380px;
  aspect-ratio: 4 / 5;
}
@media (min-width: 1024px) {
  .gh-event-photos .gh-gallery-item { flex: 0 0 460px; }
}
@media (min-width: 1600px) {
  .gh-event-photos .gh-gallery-item { flex: 0 0 540px; }
}
@media (max-width: 600px) {
  .gh-event-photos__track { gap: 10px; }
  .gh-event-photos .gh-gallery-item { flex: 0 0 280px; aspect-ratio: 3 / 4; }
}
/* Static fallback: < 4 photos → pas d'auto-scroll, render centré */
.gh-event-photos--static {
  -webkit-mask-image: none;
          mask-image: none;
  padding: 0 var(--gh-margin);
  overflow: visible;
}
.gh-event-photos--static .gh-event-photos__track {
  width: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.gh-lightbox {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  animation: gh-fade 200ms ease-out;
}
.gh-lightbox__stage {
  margin: 0;
  max-width: min(92vw, 1400px);
  max-height: min(88vh, 1000px);
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  pointer-events: none; /* clicks pass through to backdrop to close */
}
.gh-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.gh-lightbox__caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gh-bone);
  pointer-events: none;
}
.gh-lightbox__close,
.gh-lightbox__prev,
.gh-lightbox__next {
  position: fixed;
  background: rgba(26, 23, 20, 0.6);
  border: 1px solid var(--gh-line-strong);
  color: var(--gh-cream);
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 18px;
  cursor: pointer;
  transition: background 200ms, transform 150ms;
}
.gh-lightbox__close:hover,
.gh-lightbox__prev:hover,
.gh-lightbox__next:hover {
  background: rgba(217, 74, 58, 0.85);
  transform: scale(1.05);
}
.gh-lightbox__close { top: 20px; right: 20px; font-size: 16px; }
.gh-lightbox__prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.gh-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.gh-lightbox__prev:hover { transform: translateY(-50%) scale(1.05); }
.gh-lightbox__next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 600px) {
  .gh-lightbox__prev, .gh-lightbox__next {
    width: 38px; height: 38px;
    bottom: 20px; top: auto;
    transform: none;
  }
  .gh-lightbox__prev:hover, .gh-lightbox__next:hover {
    transform: scale(1.05);
  }
  .gh-lightbox__prev { left: calc(50% - 50px); }
  .gh-lightbox__next { left: calc(50% + 12px); }
}

/* ── Shop — marquee, product grid, product detail ─────────────── */
.gh-shop-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--gh-line);
  border-bottom: 1px solid var(--gh-line);
  padding: 18px 0;
  position: relative;
}
.gh-shop-marquee__track {
  display: inline-block;
  animation: gh-marquee 28s linear infinite;
  will-change: transform;
}
.gh-shop-marquee__track span {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gh-cream);
  letter-spacing: -0.025em;
  padding-right: 40px;
  display: inline-block;
}
@keyframes gh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gh-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}
@media (min-width: 769px) {
  .gh-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 32px; }
}
@media (min-width: 1200px) {
  .gh-shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.gh-product-card {
  display: block; color: inherit; text-decoration: none;
  cursor: pointer;
}
.gh-product-card__photo {
  position: relative; width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--gh-black-2);
  overflow: hidden;
}
.gh-product-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}
.gh-product-card:hover .gh-product-card__photo img { transform: scale(1.04); }
.gh-product-card__photo--empty {
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
.gh-product-card__photo--empty .gh-product-card__placeholder {
  font-family: var(--display);
  font-weight: 700;
  color: var(--gh-cream);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.gh-product-card__foot {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.gh-product-card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: -0.01em;
  color: var(--gh-cream);
  line-height: 1.2;
  text-transform: uppercase;
}
.gh-product-card__price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gh-cream);
  white-space: nowrap;
}

/* Coming-soon variant — non-clickable card with SVG illustration */
.gh-product-card--soon { cursor: default; }
.gh-product-card--soon:hover .gh-product-card__photo--art .gh-product-card__svg { transform: translateY(-2px) scale(1.02); }

.gh-product-card__photo--art {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(217, 74, 58, 0.12), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(245, 241, 234, 0.05), transparent 60%),
    var(--gh-black-2);
  border: 1px solid var(--gh-line);
  padding: 18%;
}
.gh-product-card__svg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gh-bone);
  transition: transform 600ms ease-out;
}
.gh-product-card__svg svg {
  width: 100%; height: 100%;
  max-width: 240px; max-height: 240px;
}
.gh-soon-badge {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-cream);
  background: var(--gh-coral);
  padding: 6px 10px;
  border-radius: 2px;
  line-height: 1;
}
.gh-product-card__desc {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gh-stone);
  line-height: 1.5;
  text-transform: none;
}

/* Notify form (Coming soon page) */
.gh-notify {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  padding: 36px 0 0;
  border-top: 1px solid var(--gh-line);
}
@media (min-width: 900px) {
  .gh-notify {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }
}
.gh-notify__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gh-cream);
  margin: 12px 0 12px;
}
.gh-notify__lead {
  color: var(--gh-bone);
  font-size: 15px;
  line-height: 1.5;
  max-width: 46ch;
}
.gh-notify__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.gh-notify__input {
  appearance: none;
  background: transparent;
  border: 1px solid var(--gh-line-strong);
  color: var(--gh-cream);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 0;
  min-width: 0;
  transition: border-color 200ms;
}
.gh-notify__input::placeholder { color: var(--gh-stone); }
.gh-notify__input:focus {
  outline: none;
  border-color: var(--gh-coral);
}
.gh-notify__btn { padding: 14px 22px; }
.gh-notify__status {
  grid-column: 1 / -1;
  min-height: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gh-stone);
  margin: 4px 0 0;
}
.gh-notify__status.is-ok  { color: var(--gh-cream); }
.gh-notify__status.is-err { color: var(--gh-coral); }
@media (max-width: 520px) {
  .gh-notify__form { grid-template-columns: 1fr; }
}

.gh-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Product detail */
.gh-product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .gh-product-detail {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
  }
}
.gh-product-detail__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 900px) {
  .gh-product-detail__gallery { grid-template-columns: repeat(2, 1fr); }
}
.gh-product-detail__photo {
  position: relative; width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--gh-black-2);
  overflow: hidden;
  border: 1px solid var(--gh-line);
}
.gh-product-detail__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gh-product-detail__info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gh-product-detail__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--gh-cream);
  margin: 0;
}
.gh-product-detail__subtitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-stone);
}
.gh-product-detail__price {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--gh-cream);
  margin-top: 4px;
}
.gh-product-detail__desc {
  margin: 18px 0 0;
  color: var(--gh-bone);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}

/* Size selector */
.gh-size-selector { margin-top: 20px; }
.gh-size-selector__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-stone);
  margin-bottom: 12px;
}
.gh-size-selector__options { display: flex; gap: 8px; flex-wrap: wrap; }
.gh-size-option {
  background: transparent;
  border: 1px solid var(--gh-line-strong);
  color: var(--gh-cream);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  min-width: 48px;
  text-align: center;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.gh-size-option:hover { border-color: var(--gh-cream); }
.gh-size-option.is-selected {
  background: var(--gh-cream);
  border-color: var(--gh-cream);
  color: var(--gh-black);
}

.gh-product-feedback {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  min-height: 18px;
}
.gh-product-feedback--ok  { color: #6BCB77; }
.gh-product-feedback--err { color: var(--gh-coral); }

/* ── Artist floating CTA ──────────────────────────────────────── */
.gh-artist-cta-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 75;
  background: var(--gh-coral);
  color: var(--gh-cream);
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 200ms, background 200ms;
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.gh-artist-cta-float:hover {
  transform: translateY(-2px);
  background: #c4392b;
}
@media (max-width: 480px) {
  .gh-artist-cta-float {
    right: 12px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: 10px;
  }
}

.gh-artist-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Fiche artiste — refonte structurée (inspirée bernardi-website)
   Voir window.GH.hydrateArtist() : hydrate ces sections depuis
   /data/artists/{slug}.json. Toutes les sections sont sur une seule
   page (pas de sous-pages /bio /dates /sets). */
.gh-artist-page .gh-artist-section {
  padding: 24px var(--gh-margin) 24px;
  position: relative;
}
.gh-artist-page .gh-artist-section--hero {
  padding-top: 16px;
  padding-bottom: 32px;
}
.gh-artist-page .gh-artist-section--last {
  padding-bottom: var(--section-gap);
}
.gh-artist-bio-wrap {
  margin-top: 32px;
}
.gh-artist-bio {
  color: var(--gh-bone);
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 0 28px;
}
.gh-artist-headline__tagline {
  margin-top: 10px;
  color: var(--gh-stone);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* KPI cards */
.gh-artist-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--gh-line);
  border-bottom: 1px solid var(--gh-line);
  padding: 28px 0;
}
.gh-kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gh-kpi__value {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gh-cream);
}
.gh-kpi__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gh-stone);
}
@media (max-width: 600px) {
  .gh-artist-kpis { grid-template-columns: 1fr; gap: 18px; padding: 20px 0; }
  .gh-kpi__value { font-size: 32px; }
}

/* Sets (SoundCloud / Spotify embeds) */
.gh-artist-sets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .gh-artist-sets-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.gh-artist-set {
  background: var(--gh-black-2);
  border: 1px solid var(--gh-line);
  padding: 8px;
}
.gh-artist-set iframe {
  display: block;
  border: none;
}
.gh-artist-set__title {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gh-stone);
  padding: 0 4px 4px;
}

/* Dates (à venir) */
.gh-artist-dates-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gh-artist-date {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gh-line);
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 240ms ease;
}
.gh-artist-date:hover { transform: translateX(6px); }
.gh-artist-date__date {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gh-coral);
}
.gh-artist-date__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--gh-cream);
}
.gh-artist-date__venue {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gh-stone);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Articles / Press cards */
.gh-artist-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .gh-artist-articles-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.gh-artist-article {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--gh-line);
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: border-color 200ms, background 200ms;
}
.gh-artist-article:hover {
  border-color: var(--gh-line-strong);
  background: var(--gh-black-2);
}
.gh-artist-article__source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-coral);
}
.gh-artist-article__title {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--gh-cream);
}
.gh-artist-article__date {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gh-faint);
}

/* Links row (socials groupés) */
.gh-artist-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.gh-artist-link {
  color: var(--gh-stone);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
  padding-bottom: 2px;
}
.gh-artist-link:hover { color: var(--gh-cream); border-bottom-color: var(--gh-coral); }

/* References inline (déjà existait, on harmonise) */
.gh-artist-references {
  color: var(--gh-cream);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Variante "page claire" (assumée, brief DA section A) ─────────
   Utilisée sur /contact/ : fond crème, texte sombre. Distingue les
   pages "formulaire / mise en avant CTA" du reste du site (sombre
   par défaut). Réutilisable sur d'autres pages qui veulent ce
   contraste — ajoute simplement la classe `gh-page--light` sur le
   `<main>`. Le header s'adapte automatiquement (cf. body:has() plus
   bas). */
.gh-page--light {
  background: #F5F1EA;
  color: #1D1D1D;
}
.gh-page--light .gh-eyebrow,
.gh-page--light .gh-page__title { color: #1D1D1D; }
.gh-page--light .gh-eyebrow { color: #5C5750; }
.gh-page--light p { color: #3C3833 !important; }
.gh-page--light .gh-form__label { color: #5C5750; }
.gh-page--light .gh-form__input,
.gh-page--light .gh-form__select,
.gh-page--light .gh-form__textarea {
  color: #1D1D1D;
  border-bottom-color: rgba(29, 29, 29, 0.25);
}
.gh-page--light .gh-form__input::placeholder,
.gh-page--light .gh-form__textarea::placeholder { color: #9A8F82; }
.gh-page--light .gh-form__input:focus,
.gh-page--light .gh-form__select:focus,
.gh-page--light .gh-form__textarea:focus { border-bottom-color: #1D1D1D; }
.gh-page--light .gh-form__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><polyline points='3,5 7,9 11,5' fill='none' stroke='%231D1D1D' stroke-width='1.5'/></svg>");
}
.gh-page--light .gh-form__select option { background: #F5F1EA; color: #1D1D1D; }
.gh-page--light .gh-form__rgpd { color: #5C5750; }
.gh-page--light .gh-form__rgpd a { color: #1D1D1D; }
.gh-page--light .gh-form__rgpd a:hover { color: var(--gh-coral); }
.gh-page--light .gh-btn.gh-btn--primary {
  background: #1D1D1D;
  border-color: #1D1D1D;
  color: #F5F1EA;
}
.gh-page--light .gh-btn.gh-btn--primary:hover {
  background: var(--gh-coral);
  border-color: var(--gh-coral);
}
.gh-page--light a:not(.gh-btn) { color: #1D1D1D; }
.gh-page--light a:not(.gh-btn):hover { color: var(--gh-coral); }

/* "Bloc formulaire" : encadré subtle pour clairement signaler que c'est
   un form à remplir (le user ne voyait pas que c'était un formulaire) */
.gh-page--light .gh-form {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(29, 29, 29, 0.06);
}
@media (min-width: 720px) {
  .gh-page--light .gh-form { padding: 40px; }
}

/* ── Header en mode light (page Contact, etc.) ─────────────────
   Quand le main contient .gh-page--light, le fond bascule en
   crème → le menu en beige clair devient illisible. On force des
   tons sombres sur le header via :has() (supporté Chrome 105+,
   Firefox 121+, Safari 15.4+). */
body:has(.gh-page--light) .gh-header { background: transparent; border-bottom-color: rgba(29, 29, 29, 0.08); }
body:has(.gh-page--light) .gh-logo__word { color: #1D1D1D; }
body:has(.gh-page--light) .gh-nav__item { color: #5C5750; }
body:has(.gh-page--light) .gh-nav__item:hover { color: #1D1D1D; }
body:has(.gh-page--light) .gh-nav__item.is-active { color: #1D1D1D; }
body:has(.gh-page--light) .gh-lang__btn { color: #5C5750; }
body:has(.gh-page--light) .gh-lang__btn.is-active { color: #1D1D1D; }
body:has(.gh-page--light) .gh-menu-btn { color: #1D1D1D; }

/* ── Contact form ──────────────────────────────────────────────── */
.gh-form { display: flex; flex-direction: column; gap: 32px; max-width: 720px; }
.gh-form__row { display: flex; flex-direction: column; gap: 8px; }
.gh-form__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-stone);
}
.gh-form__input,
.gh-form__select,
.gh-form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gh-line-strong);
  color: var(--gh-cream);
  padding: 12px 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.01em;
  outline: none;
  transition: border-color 200ms;
}
.gh-form__input:focus,
.gh-form__select:focus,
.gh-form__textarea:focus { border-bottom-color: var(--gh-cream); }
.gh-form__textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
  font-family: var(--sans);
}
.gh-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><polyline points='3,5 7,9 11,5' fill='none' stroke='%23F5F1EA' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.gh-form__select option { background: var(--gh-black-2); color: var(--gh-cream); }
.gh-form__hidden { display: none !important; }
.gh-form__submit { align-self: flex-start; }
.gh-form__rgpd {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--gh-stone);
  max-width: 60ch;
  margin: 4px 0 8px;
}
.gh-form__rgpd a { color: var(--gh-bone); text-decoration: underline; text-underline-offset: 2px; }
.gh-form__rgpd a:hover { color: var(--gh-cream); }
.gh-form__feedback {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  min-height: 20px;
}
.gh-form__feedback--ok { color: #6BCB77; }
.gh-form__feedback--err { color: var(--gh-coral); }

/* ── YouTube embed wrapper (artist pages) ──────────────────────── */
.gh-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gh-black-2);
  border: 1px solid var(--gh-line);
  overflow: hidden;
}
.gh-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.gh-video-frame--empty {
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.gh-video-frame--empty .gh-video-frame__placeholder {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gh-stone);
}

/* ── Footer socials with icons ─────────────────────────────────── */
.gh-footer__socials .gh-footer__link {
  display: inline-flex; align-items: center; gap: 6px;
}
.gh-footer__icon {
  width: 14px; height: 14px;
  vertical-align: -2px;
}

/* ── Mobile polish (≤820px) ────────────────────────────────────── */
@media (max-width: 820px) {
  .gh-2col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: start !important;
  }
  .gh-next-band__inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .gh-next-band__ctas {
    justify-content: stretch !important;
  }
  .gh-next-band__ctas > * {
    flex: 1 1 auto; justify-content: center;
  }
  .gh-event-detail__hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .gh-lineup-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .gh-event-card__foot {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}

@media (hover: none) {
  .gh-event-row:hover,
  .gh-roster-card:hover .photo-wrap img { transform: none !important; }
}
