/* ============================================================
   CHRIS TATTOO STUDIO — Thème du site public (vitrine)
   Complète les utilitaires Tailwind avec le style or/noir.
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.font-cinzel { font-family: 'Cinzel', serif; }
.gold-text { color: var(--gold); }

.gold-gradient-text {
  background: linear-gradient(135deg, #C9A84C 0%, #F0D080 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar { transition: background 0.4s ease, backdrop-filter 0.4s ease; }

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-link {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #ccc;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

@media (min-width: 1024px) {
  #hero-bg { background-attachment: fixed; }
}

#hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,0.95) 100%
  );
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.btn-book {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, #C9A84C, #F0D080, #C9A84C);
  background-size: 200% 200%;
  padding: 1rem 3rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, background-position 0.5s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  background-position: right center;
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-book:hover::before { left: 100%; }

/* ── Section Headers ────────────────────────────────────────── */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto;
}

/* ── Rangées de cartes centrées (équipe, guests, événements) ──
   Un flex centré plutôt qu'une grille : la dernière carte d'une
   rangée incomplète reste centrée au lieu de coller à gauche. */
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Deux cartes par rangée à partir de 640px. */
.card-row-item {
  width: 100%;
  max-width: 22rem;
}

@media (min-width: 640px) {
  .card-row-item { width: calc(50% - 1rem); }
}

/* Les événements gardent une largeur fixe : une carte seule (ex. FLASH)
   se retrouve donc centrée sur la page. */
.event-row-item {
  width: 100%;
  max-width: 24rem;
}

@media (min-width: 768px) {
  .event-row-item { width: 22rem; }
}

/* ── Team Cards ─────────────────────────────────────────────── */
.team-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
  filter: grayscale(30%);
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.owner-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--gold);
  padding: 0.2rem 0.8rem;
  text-transform: uppercase;
}

.btn-book-sm {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.btn-book-sm:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Book preview cards (accueil) ───────────────────────────── */
.book-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color .4s;
}

.book-card:hover { border-color: rgba(201,168,76,0.5); }

.book-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(30%);
  transition: transform .6s ease, filter .6s ease;
}

.book-card:hover img { transform: scale(1.06); filter: grayscale(0%); }

.book-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.2) 60%, transparent 100%);
}

/* ── Lightbox ───────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: lbFadeIn 0.3s ease;
}

#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: transform 0.2s;
}

#lightbox-close:hover { transform: rotate(90deg); }

#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: transform 0.2s;
  line-height: 1;
}

#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }
#lightbox-prev:hover { transform: translateY(-50%) translateX(-4px); }
#lightbox-next:hover { transform: translateY(-50%) translateX(4px); }

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Events ─────────────────────────────────────────────────── */
#evenements { position: relative; overflow: hidden; }

#events-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.5);
}

.event-card {
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(4px);
  transition: border-color 0.4s, transform 0.4s;
  padding: 2rem;
}

.event-card:hover { border-color: var(--gold); transform: translateY(-4px); }

/* Événement mis en avant : ressort « à peine plus » que les autres. */
.event-card--featured {
  border-width: 2px;
  border-color: rgba(201, 168, 76, 0.75);
  background: rgba(10, 10, 10, 0.85);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.18);
  transform: scale(1.02);
}

.event-card--featured:hover {
  border-color: var(--gold);
  transform: scale(1.02) translateY(-4px);
}

/* L'image déborde le padding de 2rem de la carte. */
.event-card-img {
  display: block;
  width: calc(100% + 4rem);
  /* Le reset Tailwind pose `img { max-width: 100% }` : il faut le lever
     pour que l'image déborde le padding de la carte. */
  max-width: none;
  margin: -2rem -2rem 1.5rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.event-date {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.event-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0.5rem 0;
}

/* ── Guests ─────────────────────────────────────────────────── */
.guest-dates {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.25rem 0.7rem;
}

/* ── Section Studio ─────────────────────────────────────────── */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .studio-grid { grid-template-columns: repeat(3, 1fr); }
  /* La première photo occupe un grand bloc 2×2. */
  .studio-photo--lead { grid-column: span 2; grid-row: span 2; }
}

.studio-photo {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: var(--dark);
  cursor: pointer;
  transition: border-color 0.3s;
}

.studio-photo:hover { border-color: rgba(201, 168, 76, 0.5); }

.studio-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.studio-photo--lead img { aspect-ratio: 1; }

.studio-photo:hover img { transform: scale(1.04); }

.studio-photo .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.studio-photo:hover .img-overlay { opacity: 1; }

/* ── Recherche d'un résident ────────────────────────────────── */
.recruitment-section {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.recruitment-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.4);
}

.recruitment-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.recruitment-point {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: rgba(10, 10, 10, 0.5);
  padding: 0.6rem 1.2rem;
}

/* ── Reservation ────────────────────────────────────────────── */
.contact-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  background: var(--dark-2);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
  transform: translateY(-4px);
}

.contact-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; color: var(--gold); }

.contact-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}

.contact-value { color: #e5e5e5; font-size: 1rem; text-decoration: none; transition: color 0.3s; }
.contact-value:hover { color: var(--gold); }

/* ── Care lists & tags (Hygiène / Soins) ────────────────────── */
.care-list { list-style: none; margin: 0; padding: 0; }

.care-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  color: #d1d5db;
  font-weight: 300;
  line-height: 1.6;
  font-size: 0.95rem;
}

.care-list li:last-child { margin-bottom: 0; }

.care-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.care-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 0.35rem 0.9rem;
}

/* ── Map ────────────────────────────────────────────────────── */
#map {
  height: 400px;
  filter: grayscale(1) brightness(0.85) contrast(1.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ── Pages légales ──────────────────────────────────────────── */
.legal-content {
  color: #cfcfcf;
  font-weight: 300;
  line-height: 1.8;
  font-size: 0.98rem;
}

.legal-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.75rem 0 0.9rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: #fff;
  margin: 1.75rem 0 0.5rem;
}

.legal-content p { margin-bottom: 1.1rem; }
.legal-content strong { color: #fff; font-weight: 500; }

.legal-content ul { list-style: none; margin: 0 0 1.1rem; padding: 0; }

.legal-content li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--gold-light); }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.legal-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-nav a:hover { color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────── */
footer { border-top: 1px solid rgba(201, 168, 76, 0.15); }

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: #9a9a9a;
  font-size: 0.85rem;
  font-weight: 300;
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color 0.3s;
}

.footer-link:hover { color: var(--gold); }

/* Lien de pied de page rendu par un <button> (réouverture du choix cookies). */
.footer-link--button {
  background: none;
  border: 0;
  padding: 0.2rem 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

/* ── Bandeau cookies ────────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
}

.cookie-consent[hidden] { display: none; }

.cookie-consent-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-consent-text {
  flex: 1 1 22rem;
  color: #b8b8b8;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

.cookie-consent-title {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.cookie-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.cookie-btn--ghost { color: #9a9a9a; border-color: rgba(255, 255, 255, 0.15); }
.cookie-btn--ghost:hover { color: #e5e5e5; border-color: rgba(255, 255, 255, 0.35); }

.cookie-btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cookie-btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

@media (max-width: 640px) {
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .cookie-consent-actions .cookie-btn { flex: 1 1 auto; }
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 3rem;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #777;
}

.footer-credit { color: #777; text-decoration: none; transition: color 0.3s; }
.footer-credit a { color: #999; text-decoration: none; transition: color 0.3s; }
.footer-credit a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile Menu ────────────────────────────────────────────── */
#mobile-menu {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

/* ── Book page : hero artiste ───────────────────────────────── */
/* Proportions fixes plutôt qu'une hauteur fixe : le rapport du cadre ne change
   plus avec la largeur de la fenêtre, donc le recadrage reste identique partout
   et correspond à l'aperçu du CMS (même rapport 16/9). Avec une hauteur fixe,
   une fenêtre large et basse donnait un cadre très allongé qui ne laissait
   qu'une fine bande de la photo — le sujet s'y retrouvait coupé. */
.artist-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  max-height: 100svh;
  overflow: hidden;
}

/* En portrait, un cadre 16/9 serait trop bas pour le panneau d'informations. */
@media (max-width: 768px) {
  .artist-hero {
    aspect-ratio: 3 / 4;
    min-height: 560px;
    max-height: none;
  }
}

.artist-hero-bg {
  position: absolute;
  inset: 0;
  /* Couleur de repli : la photo peut être absente ou introuvable. */
  background-color: var(--dark);
  background-size: cover;
  /* Repli : le cadrage réel vient du réglage « photo_focus » de chaque profil,
     posé en style inline (les photos n'ont pas toutes le même format). */
  background-position: center 50%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.artist-hero-bg.loaded { transform: scale(1); }

.artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0) 100%);
}

@media (max-width: 768px) {
  .artist-hero-overlay {
    background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.7) 65%, rgba(10,10,10,0.95) 100%);
  }
}

.artist-info-panel {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 3rem 3.5rem;
  max-width: 520px;
}

@media (max-width: 768px) {
  .artist-info-panel { padding: 1.5rem 1.5rem 2.5rem; max-width: 100%; }
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #aaa;
  font-size: 0.8rem;
  transition: color 0.3s;
  text-decoration: none;
}

.info-pill:hover { color: var(--gold); }

/* ── Gallery grid (book) ────────────────────────────────────── */
.gallery-grid { columns: 2; column-gap: 0.75rem; padding: 0.75rem; }

@media (min-width: 640px)  { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

.gallery-grid-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s;
}

.gallery-grid-item:hover { border-color: rgba(201,168,76,0.5); }

.gallery-grid-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-grid-item:hover img { transform: scale(1.04); }

.gallery-grid-item .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.45);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.gallery-grid-item:hover .img-overlay { opacity: 1; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.6rem 1.2rem;
  backdrop-filter: blur(8px);
  background: rgba(10,10,10,0.4);
}

.back-btn:hover { gap: 0.8rem; border-color: var(--gold); }

.other-artist-card {
  border: 1px solid rgba(201,168,76,0.12);
  background: var(--dark-2);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
}

.other-artist-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.other-artist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  filter: grayscale(40%);
  transition: filter 0.4s;
}

.other-artist-card:hover img { filter: grayscale(0%); }

/* ── Accessibilité ──────────────────────────────────────────── */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  #hero-bg, .artist-hero-bg { transform: none !important; }
}

/* ── Utility ────────────────────────────────────────────────── */
.section-padding { padding: 5rem 0; }

@media (max-width: 768px) {
  .section-padding { padding: 3rem 0; }
  .hero-title { letter-spacing: 0.04em; }
}
