/* ============================================
   LE RETRO — Bollène
   "Un jukebox qui s'allume dans la nuit provençale"
   ============================================ */

/* --- VARIABLES --- */
:root {
  --red: #8B1A2B;
  --red-dark: #6B1422;
  --cream: #F1EDDA;
  --cream-dark: #D9D2BF;
  --black: #1A1A1A;
  --black-light: #2A2A2A;
  --gold: #D4A853;
  --gold-dark: #B8922E;

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 64px;
  --section-padding: clamp(40px, 6vw, 72px);
  --container-width: 1200px;
  --radius: 12px;
  --radius-lg: 24px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Respect reduced motion */
@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;
  }
  .parallax-bg {
    transform: none !important;
  }
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--red);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- UTILITY --- */
.container {
  width: min(90%, var(--container-width));
  margin: 0 auto;
}

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

/* --- GRAIN OVERLAY (global) --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/texture-grain.svg');
  background-size: 300px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo span {
  color: var(--red);
  text-shadow: 0 0 20px rgba(139, 26, 43, 0.6);
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(232, 168, 64, 0.35));
}

.hero__logo-img {
  max-width: min(480px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 50px rgba(232, 168, 64, 0.4));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  margin-left: auto;
  margin-right: clamp(24px, 4vw, 48px);
}

.nav__link {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  opacity: 0.8;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav__link:hover {
  opacity: 1;
  color: var(--gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* CTA bouton dans la nav */
.btn--nav {
  padding: 8px 20px;
  font-size: 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(241, 237, 218, 0.08);
  color: var(--cream);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__social a:hover {
  background: var(--red);
  color: var(--cream);
  transform: scale(1.1);
}

.nav__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Burger menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition-fast);
}

.nav__mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile.open a:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.1s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.2s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.25s; }
.nav__mobile.open a:nth-child(6) { transition-delay: 0.3s; }
.nav__mobile.open a:nth-child(7) { transition-delay: 0.35s; }

.nav__mobile a:hover {
  color: var(--red);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.5) saturate(1.2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(26,26,26,0.5) 70%, rgba(26,26,26,0.9) 100%);
  z-index: 1;
}

/* Animated neon glow */
.hero__neon-line {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 2px;
  background: var(--red);
  opacity: 0.4;
  box-shadow: 0 0 15px var(--red), 0 0 30px var(--red);
  z-index: 1;
  animation: neonPulse 3s ease-in-out infinite;
}

.hero__neon-line--2 {
  left: auto;
  right: 8%;
  bottom: 25%;
  width: 150px;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold);
  animation-delay: 1.5s;
}

@keyframes neonPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 40px rgba(139, 26, 43, 0.7), 0 0 80px rgba(139, 26, 43, 0.35);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--cream);
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUpSubtle 1s ease 0.6s forwards;
}

@keyframes fadeUpSubtle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero__scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: width 0.5s ease, height 0.5s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(139, 26, 43, 0.5);
}

.btn--primary:hover {
  background: var(--red-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 26, 43, 0.6);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(241, 237, 218, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 14px auto 0;
  box-shadow: 0 0 10px rgba(139, 26, 43, 0.5);
}

/* ============================================
   SPECIALTIES (Nos Classiques)
   ============================================ */
.specialties {
  background: var(--black);
  overflow: hidden;
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.specialty-card {
  position: relative;
  background: var(--black-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid rgba(212, 168, 83, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.specialty-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(139, 26, 43, 0.1), transparent 50%);
  pointer-events: none;
}

/* Bento: first card is featured, spans 2 rows */
.specialty-card--has-img:first-child {
  grid-row: span 2;
}

.specialty-card:nth-child(even) {
  transform: none;
}

.specialty-card:nth-child(even):hover {
  transform: translateY(-6px);
}

.specialty-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.specialty-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.specialty-card__desc {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.6;
}

.specialty-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  border: 1px solid rgba(139, 26, 43, 0.35);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Specialty cards with images — overlay style */
.specialty-card--has-img {
  padding: 0;
  display: grid;
  overflow: hidden;
  cursor: default;
}

.specialty-card__img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.specialty-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  transition: opacity 0.5s ease;
  z-index: 1;
}

.specialty-card--has-img:hover .specialty-card__img-wrap::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.specialty-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.specialty-card--has-img:hover .specialty-card__img-wrap img {
  transform: scale(1.1);
}

.specialty-card__body {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 28px 24px;
}

.specialty-card__body .specialty-card__title {
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.specialty-card--has-img .specialty-card__desc {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  opacity: 0.85;
}

.specialty-card--has-img .specialty-card__tag {
  background: rgba(139, 26, 43, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(212, 168, 83, 0.25);
  color: var(--gold);
}

/* Featured card (first) — bigger text */
.specialty-card--has-img:first-child .specialty-card__title {
  font-size: 1.8rem;
}

.specialty-card--has-img:first-child .specialty-card__desc {
  font-size: 1rem;
  line-height: 1.7;
}

/* Last card fills remaining space */
.specialty-card--has-img:last-child {
  grid-column: span 2;
}

/* Hover: gold border glow */
.specialty-card--has-img:hover {
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 168, 83, 0.1);
}

/* ============================================
   PHOTO STRIP (Galerie horizontale)
   ============================================ */
.photo-strip {
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(212, 168, 83, 0.06);
  border-bottom: 1px solid rgba(212, 168, 83, 0.06);
}

.photo-strip__track {
  display: flex;
  gap: 4px;
  animation: photoScroll 30s linear infinite;
  width: max-content;
}

@media (prefers-reduced-motion: reduce) {
  .photo-strip__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

.photo-strip__item {
  flex: 0 0 auto;
  width: clamp(200px, 25vw, 320px);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: filter var(--transition), transform var(--transition);
}

.photo-strip__item:hover img {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.05);
}

@keyframes photoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   JUKEBOX SECTION (Inattendue)
   ============================================ */
.jukebox-section {
  background: linear-gradient(180deg, var(--black) 0%, #1F0F11 50%, var(--black) 100%);
  overflow: hidden;
  position: relative;
}

.jukebox-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 26, 43, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.jukebox__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.jukebox__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.jukebox__svg-wrap {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.jukebox__svg-wrap img,
.jukebox__svg-wrap svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(139, 26, 43, 0.3));
}

/* Vinyl spinning */
.jukebox__vinyl {
  position: absolute;
  top: -10%;
  right: -25%;
  width: 180px;
  height: 180px;
  animation: none;
  transition: transform 0.3s ease;
}

.jukebox__vinyl.spinning {
  animation: vinylSpin 3s linear infinite;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.jukebox__content {
  padding: 20px 0;
}

.jukebox__intro {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 30px;
  line-height: 1.7;
}

.jukebox__playlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jukebox__track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(241, 237, 218, 0.04);
  border: 1px solid rgba(241, 237, 218, 0.06);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.jukebox__track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.jukebox__track:hover,
.jukebox__track.active {
  background: rgba(139, 26, 43, 0.15);
  border-color: rgba(139, 26, 43, 0.3);
  transform: translateX(8px);
}

.jukebox__track:hover::before,
.jukebox__track.active::before {
  transform: scaleY(1);
}

.jukebox__track-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--red);
  min-width: 24px;
  text-align: center;
  opacity: 0.7;
}

.jukebox__track-info {
  flex: 1;
}

.jukebox__track-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

.jukebox__track-mood {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 2px;
}

.jukebox__track-icon {
  font-size: 1.2rem;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.jukebox__track:hover .jukebox__track-icon,
.jukebox__track.active .jukebox__track-icon {
  opacity: 1;
}

/* ============================================
   AMBIANCE
   ============================================ */
.ambiance {
  background: var(--black);
  overflow: hidden;
}

.ambiance__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.ambiance__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--black-light);
}

.ambiance__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambiance__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 26, 43, 0.2), transparent 50%);
  pointer-events: none;
}

.ambiance__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ambiance__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(241, 237, 218, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(241, 237, 218, 0.05);
  transition: border-color var(--transition);
}

.ambiance__feature:hover {
  border-color: rgba(212, 168, 83, 0.15);
}

.ambiance__feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ambiance__feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.ambiance__feature-desc {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.5;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: linear-gradient(180deg, var(--black), #1F0F11, var(--black));
}

.reviews__carousel {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}

.review-card {
  flex: 0 1 340px;
  max-width: 340px;
  background: var(--black-light);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card__star {
  color: var(--gold);
  font-size: 1rem;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.4;
}

.review-card__quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
}

/* ============================================
   HOURS
   ============================================ */
.hours {
  background: var(--black);
}

.hours__board {
  max-width: 600px;
  margin: 0 auto;
  background: var(--black-light);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hours__board-header {
  background: var(--red);
  padding: 20px 32px;
  text-align: center;
}

.hours__board-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hours__board-body {
  padding: 24px 32px;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(241, 237, 218, 0.06);
  transition: background var(--transition-fast);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__row:hover {
  background: rgba(241, 237, 218, 0.02);
}

.hours__row.today {
  background: rgba(139, 26, 43, 0.12);
  margin: 0 -32px;
  padding: 14px 32px;
  border-radius: 8px;
}

.hours__day {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}

.hours__time {
  font-size: 0.9rem;
  color: var(--gold);
  text-align: right;
}

.hours__time.closed {
  color: var(--red);
  opacity: 0.7;
}

.hours__note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.5;
}

/* ============================================
   LOCATION / MAP
   ============================================ */
.location {
  background: var(--black);
  padding-bottom: 0;
}

.location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--container-width);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.08);
}

.location__info {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black-light);
}

.location__address {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 24px;
}

.location__address strong {
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.location__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.7;
}

.location__detail-icon {
  font-size: 1.2rem;
}

.location__map-wrap {
  position: relative;
  min-height: 400px;
  background: var(--black);
}

.location__map-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
  filter: grayscale(0.6) contrast(1.1) brightness(0.7);
  transition: filter var(--transition);
}

.location__map-wrap:hover iframe {
  filter: grayscale(0.2) contrast(1) brightness(0.85);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: linear-gradient(180deg, var(--black), #1F0F11);
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-final__subtitle {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CTA OVERLAY (Phone reveal)
   ============================================ */
.cta-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.cta-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cta-overlay__inner {
  text-align: center;
  max-width: 480px;
  padding: 40px;
}

.cta-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cream);
  opacity: 0.6;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  border-radius: 50%;
  background: rgba(241, 237, 218, 0.05);
}

.cta-overlay__close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.cta-overlay__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.cta-overlay__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta-overlay__phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  min-height: 1.3em;
}

.cta-overlay__phone .digit {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-overlay__phone .digit.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-overlay__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-overlay__copy-feedback {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0;
  margin-top: 12px;
  transition: opacity var(--transition-fast);
}

.cta-overlay__copy-feedback.show {
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(212, 168, 83, 0.08);
}

/* Footer nav horizontale */
.footer__nav {
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  padding: 16px 0;
}

.footer__nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}

.footer__nav-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0.5;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer__nav-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* Footer top — grid 3 boxes */
.footer__top {
  padding: clamp(28px, 4vw, 48px) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Boxes */
.footer__box {
  background: rgba(241, 237, 218, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

/* Col marque */
.footer__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(232, 168, 64, 0.25));
  transition: filter var(--transition-fast);
}

.footer__logo:hover img {
  filter: drop-shadow(0 0 16px rgba(232, 168, 64, 0.5));
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.5;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(241, 237, 218, 0.05);
  border: 1px solid rgba(241, 237, 218, 0.08);
  color: var(--cream);
  opacity: 0.6;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  opacity: 1;
  color: var(--cream);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Col horaires */
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__hour-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.6;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(241, 237, 218, 0.04);
}

.footer__hour-row:last-child {
  border-bottom: none;
}

.footer__hour-closed {
  color: var(--red);
  opacity: 0.7;
}

/* Col contact */
.footer__contact {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__email {
  color: var(--gold);
  opacity: 1;
  margin-top: 8px;
}

.footer__contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer barre basse */
.footer__bottom {
  border-top: 1px solid rgba(241, 237, 218, 0.06);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.35;
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__legal-links a {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.35;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer__legal-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__dot {
  color: var(--cream);
  opacity: 0.2;
  font-size: 0.6rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: var(--section-padding);
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page p, .legal-page li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-page a {
  color: var(--red);
}

.legal-page .todo {
  background: rgba(139, 26, 43, 0.18);
  border: 1px solid rgba(139, 26, 43, 0.35);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--red);
}

/* ============================================
   EASTER EGG
   ============================================ */
.easter-egg-trigger {
  position: relative;
  cursor: default;
}

#cigale-easter-egg {
  position: fixed;
  bottom: -80px;
  right: 40px;
  width: 50px;
  height: 70px;
  z-index: 9998;
  transition: bottom 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  opacity: 0.7;
}

#cigale-easter-egg.visible {
  bottom: 20px;
}

#cigale-easter-egg img {
  width: 100%;
  height: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .specialties__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .specialty-card--has-img:first-child {
    grid-row: span 1;
  }

  .specialty-card--has-img:last-child {
    grid-column: span 1;
  }

  .jukebox__layout,
  .ambiance__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jukebox__visual {
    order: -1;
  }

  .location__layout {
    grid-template-columns: 1fr;
  }

  .location__map-wrap {
    min-height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer__box--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__social {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  /* Le CTA nav reste visible sur mobile */
  .nav__right {
    gap: 12px;
  }

  .specialty-card:nth-child(even) {
    transform: none;
  }

  .specialty-card:nth-child(even):hover {
    transform: translateY(-8px);
  }

  .specialties__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .specialty-card--has-img:first-child {
    grid-row: span 1;
  }

  .hero__neon-line,
  .hero__neon-line--2 {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer__box--brand {
    grid-column: auto;
  }

  .footer__tagline {
    max-width: 100%;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__hour-row {
    justify-content: center;
    gap: 24px;
  }

  .footer__contact-actions {
    justify-content: center;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Le CTA nav reste compact */
  .btn--nav {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .review-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
