/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__content {
  text-align: center;
}

.loader__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.loader__bar {
  width: 120px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 3px;
  overflow: hidden;
}

.loader__progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  animation: loaderProgress 1.5s ease-out forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes loaderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor,
.cursor-follower {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .cursor,
  .cursor-follower {
    display: block;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor {
    width: 8px;
    height: 8px;
    background: var(--orange);
    box-shadow: 0 0 10px var(--orange);
  }

  .cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 107, 0, 0.5);
    transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  }

  .cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--orange);
  }

  body {
    cursor: none;
  }

  a, button, [role="button"] {
    cursor: none;
  }
}

/* ===== VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-lighter: #1a1a1a;
  --gray-900: #222222;
  --gray-800: #333333;
  --gray-700: #444444;
  --gray-600: #666666;
  --gray-500: #888888;
  --gray-400: #aaaaaa;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #ffffff;

  --orange: #ff6b00;
  --orange-light: #ff8533;
  --orange-dark: #e05a00;
  --orange-glow: rgba(255, 107, 0, 0.15);
  --orange-glow-strong: rgba(255, 107, 0, 0.3);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.2);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ===== UTILITIES ===== */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 9999;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== FLOATING ORBS DECORATION ===== */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08), transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatOrb1 20s ease-in-out infinite;
}

body::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06), transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: floatOrb2 25s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-50px, 50px) scale(1.1); }
  50% { transform: translate(-100px, 0) scale(1); }
  75% { transform: translate(-50px, -50px) scale(0.9); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.15); }
  66% { transform: translate(30px, 60px) scale(0.95); }
}

/* ===== GLOW EFFECTS ===== */
.glow-text {
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
}

.glow-box {
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.2);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
}

.navbar__brand-text strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.navbar__brand-text span {
  font-size: 12px;
  color: var(--gray-500);
}

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

.navbar__nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  border-radius: 8px;
  transition: var(--transition);
}

.navbar__nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

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

.navbar__social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  transition: var(--transition);
}

.navbar__social:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-glow);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
}

.navbar__cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.navbar__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu__nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu__socials a {
  font-size: 14px;
  color: var(--orange);
}

@media (max-width: 900px) {
  .navbar__nav {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 600px) {
  .navbar__brand-text {
    display: none;
  }

  .navbar__cta span {
    display: none;
  }

  .navbar__cta {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius);
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.hero__gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--orange-glow-strong), transparent 60%);
  filter: blur(100px);
}

/* Floating Logos */
.hero__floating-logos,
.floating-logos-global {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  filter: grayscale(100%) brightness(2);
}

.floating-logo--1 {
  width: 120px;
  top: 5%;
  left: 5%;
  animation: floatLogo1 12s ease-in-out infinite;
}

.floating-logo--2 {
  width: 80px;
  top: 15%;
  right: 10%;
  animation: floatLogo2 15s ease-in-out infinite;
  animation-delay: -2s;
}

.floating-logo--3 {
  width: 150px;
  top: 40%;
  left: 2%;
  animation: floatLogo3 18s ease-in-out infinite;
  animation-delay: -5s;
}

.floating-logo--4 {
  width: 60px;
  top: 60%;
  right: 5%;
  animation: floatLogo1 14s ease-in-out infinite;
  animation-delay: -3s;
}

.floating-logo--5 {
  width: 100px;
  bottom: 20%;
  left: 15%;
  animation: floatLogo2 16s ease-in-out infinite;
  animation-delay: -7s;
}

.floating-logo--6 {
  width: 70px;
  top: 25%;
  left: 35%;
  animation: floatLogo3 13s ease-in-out infinite;
  animation-delay: -4s;
}

.floating-logo--7 {
  width: 90px;
  bottom: 10%;
  right: 20%;
  animation: floatLogo1 17s ease-in-out infinite;
  animation-delay: -6s;
}

.floating-logo--8 {
  width: 110px;
  top: 70%;
  right: 35%;
  animation: floatLogo2 14s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes floatLogo1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
  75% {
    transform: translateY(-25px) rotate(2deg);
  }
}

@keyframes floatLogo2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-30px) rotate(-5deg) scale(1.05);
  }
  66% {
    transform: translateY(-15px) rotate(3deg) scale(0.95);
  }
}

@keyframes floatLogo3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -20px) rotate(3deg);
  }
  50% {
    transform: translate(-5px, -30px) rotate(-2deg);
  }
  75% {
    transform: translate(15px, -15px) rotate(4deg);
  }
}

@media (max-width: 768px) {
  .floating-logo {
    opacity: 0.025;
  }

  .floating-logo--3,
  .floating-logo--6,
  .floating-logo--8 {
    display: none;
  }
}

/* Kebab Broche Parallax (hidden - broche now inside hero__image frame) */
.hero__kebab-parallax {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 560px;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
  display: none;
}

.hero__kebab-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 100px rgba(255, 107, 0, 0.15));
  animation: kebabFloat 6s ease-in-out infinite;
}

@keyframes kebabFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@media (max-width: 1200px) {
  .hero__kebab-parallax {
    width: 38%;
    right: -2%;
    opacity: 0.8;
  }
}

@media (max-width: 900px) {
  .hero__kebab-parallax {
    width: 35%;
    right: -3%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0.25;
  }
}

@media (max-width: 600px) {
  .hero__kebab-parallax {
    width: 40%;
    right: -5%;
    top: 55%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0.2;
  }
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  width: fit-content;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  margin-top: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero__stat-plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  margin-left: -4px;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__stat--google .hero__stat-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__stat-stars {
  display: flex;
  gap: 2px;
  color: #ffd700;
}

@media (max-width: 768px) {
  .hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat-number {
    font-size: 24px;
  }
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-400);
}

.hero__info-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

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

.hero__image-broche {
  position: absolute;
  right: -12%;
  bottom: -5%;
  width: 55%;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 60px rgba(255, 107, 0, 0.12));
  animation: kebabFloat 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__image-broche {
    width: 45%;
    right: -8%;
    bottom: -3%;
  }
}

@media (max-width: 600px) {
  .hero__image-broche {
    width: 40%;
    right: -6%;
    bottom: -2%;
  }
}

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.hero__image-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
  }

  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn--full {
  width: 100%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--black-light);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section__header--light {
  color: var(--white);
}

.section__label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section__header h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section__header p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== MENU CARD ===== */
.menu-card {
  margin-top: 48px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.menu-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.3) 0%, rgba(255, 107, 0, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  animation: menuGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes menuGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.menu-card__particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
}

.menu-card__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
  opacity: 0.6;
}

.menu-card__particles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.menu-card__particles span:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.menu-card__particles span:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 2s; }
.menu-card__particles span:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }
.menu-card__particles span:nth-child(5) { top: 50%; left: 0%; animation-delay: 4s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

.menu-card__link {
  display: inline-block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 107, 0, 0.3),
    0 0 30px rgba(255, 107, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 400px;
  z-index: 1;
}

.menu-card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent 50%, rgba(255, 107, 0, 0.1));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.menu-card__link:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(255, 107, 0, 0.4),
    0 0 0 3px rgba(255, 107, 0, 0.6),
    0 0 60px rgba(255, 107, 0, 0.3);
}

.menu-card__link:hover::before {
  opacity: 1;
}

.menu-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.menu-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 60%, transparent);
  color: var(--white);
  padding: 60px 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  z-index: 3;
}

.menu-card__link:hover .menu-card__overlay {
  background: linear-gradient(to top, rgba(255, 107, 0, 0.95), rgba(0, 0, 0, 0.7) 70%, transparent);
}

.menu-card__overlay svg {
  stroke: var(--white);
  transition: transform 0.3s ease;
}

.menu-card__link:hover .menu-card__overlay svg {
  transform: scale(1.2);
}

/* ===== FLIP 3D EFFECT ===== */
.menu-card__flipper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 24px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.menu-card__flipper.is-flipped {
  transform: rotateY(180deg);
}

.menu-card__face {
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.menu-card__face--back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
}

.menu-card__face img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.menu-card__flipper:hover .menu-card__face img {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 107, 0, 0.3);
}

.menu-card__hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-card__flipper:hover .menu-card__hint {
  opacity: 1;
}

.menu-card__hint svg {
  animation: rotate-hint 2s ease-in-out infinite;
}

@keyframes rotate-hint {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.menu-card__pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin: 0 auto;
}

.menu-card__pdf-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

@media (max-width: 600px) {
  .menu-card__link {
    max-width: 90%;
  }

  .menu-card__glow {
    width: 280px;
    height: 400px;
  }

  .menu-card__particles {
    display: none;
  }
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ===== CARD ===== */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--black-lighter), var(--black-light));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card--featured {
  border-color: rgba(255, 107, 0, 0.3);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.08), var(--black-light));
}

.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--orange);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body .btn {
  margin-top: auto;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--orange);
}

.card h3,
.card__body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card > p,
.card__body > p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card__list {
  margin-bottom: 24px;
}

.card__list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.card__list li:last-child {
  border-bottom: none;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

/* Ligne orange qui se remplit au scroll */
.timeline__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  box-shadow: 0 0 10px var(--orange), 0 0 20px rgba(255, 107, 0, 0.5);
  transition: height 0.1s linear;
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 40px 80px;
}

.timeline__item--left {
  padding-right: 60px;
  text-align: right;
}

.timeline__item--right {
  margin-left: 50%;
  padding-left: 60px;
}

.timeline__dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--orange);
  border: 4px solid var(--black-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.timeline__item--left .timeline__dot {
  right: -10px;
}

.timeline__item--right .timeline__dot {
  left: -10px;
}

.timeline__card {
  background: var(--black-lighter);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.timeline__card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
}

/* Close button & overlay — disabled (no expand) */
.timeline__close,
.timeline-overlay {
  display: none !important;
}

.timeline__image {
  height: 180px;
  background: var(--gray-900);
  overflow: hidden;
}

.timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition);
}

.timeline__card:hover .timeline__image img {
  opacity: 1;
  transform: scale(1.05);
}

/* Istanbul — mosquée + monument en bas, trop de ciel → cadrer sur le bas */
.timeline__image img.img-istanbul {
  object-position: center 75%;
}

/* Ouverture — figurine + polaroid au centre → garder centré, montrer la tête de la figurine */
.timeline__image img.img-ouverture {
  object-position: center 35%;
}

/* Marion — 3 personnes portrait, visages en haut → cadrer sur les visages */
.timeline__image img.img-marion {
  object-position: center 15%;
}

/* Xander — visage + mains avec figurine en haut → cadrer sur le visage */
.timeline__image img.img-xander {
  object-position: center 20%;
}

.timeline__content {
  padding: 24px;
  text-align: left;
}

.timeline__year {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange-glow);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}

/* Bulb animation */
.bulb-icon {
  display: inline-block;
  font-size: 22px;
  opacity: 0.2;
  filter: grayscale(1) brightness(0.5);
  transition: opacity 0.6s ease, filter 0.6s ease, text-shadow 0.6s ease;
  text-shadow: none;
}

.bulb-icon.lit {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  text-shadow: 0 0 8px rgba(255, 200, 0, 0.6), 0 0 20px rgba(255, 180, 0, 0.4), 0 0 40px rgba(255, 160, 0, 0.2);
  animation: bulb-pulse 2s ease-in-out infinite;
}

@keyframes bulb-pulse {
  0%, 100% { text-shadow: 0 0 8px rgba(255, 200, 0, 0.6), 0 0 20px rgba(255, 180, 0, 0.4), 0 0 40px rgba(255, 160, 0, 0.2); }
  50% { text-shadow: 0 0 12px rgba(255, 200, 0, 0.8), 0 0 30px rgba(255, 180, 0, 0.5), 0 0 60px rgba(255, 160, 0, 0.3); }
}

.timeline__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline__content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .timeline__line {
    left: 20px;
  }

  .timeline__item,
  .timeline__item--left,
  .timeline__item--right {
    width: 100%;
    margin-left: 0;
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .timeline__item--left .timeline__dot,
  .timeline__item--right .timeline__dot {
    left: 10px;
    right: auto;
  }
}

/* ===== ARTISTS SECTION ===== */
#artistes {
  position: relative;
  overflow: hidden;
}

#artistes .container {
  position: relative;
  z-index: 1;
}

/* ===== FRIENDS BLOCK ===== */
.friends-block {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 550px;
  margin: 0 auto;
}

.friends-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
  animation: friendsPulse 8s ease-in-out infinite;
}

@keyframes friendsPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.friends-block__content {
  position: relative;
  z-index: 1;
}

.friends-block__icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.friends-block__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.friends-block__content p {
  color: var(--gray-400);
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.friends-block__content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.friends-block__widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  max-height: 450px;
  margin-left: auto;
  margin-right: auto;
}

.friends-block__widget .sk-ww-facebook-page-posts {
  width: 100% !important;
  height: 450px !important;
  max-height: 450px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  border-radius: var(--radius-lg);
}

/* Force tous les conteneurs internes à ne pas s'étirer */
.friends-block__widget .sk-ww-facebook-page-posts * {
  max-height: none;
}

.friends-block__widget .sk-ww-facebook-page-posts > div,
.friends-block__widget .sk-ww-facebook-page-posts .sk-posts-body {
  height: auto !important;
  min-height: unset !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  padding: 12px !important;
}

.friends-block__widget .sk-ww-facebook-page-posts .sk-post-item,
.friends-block__widget .sk-ww-facebook-page-posts > div > div {
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  flex: none !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Images de posts (photos, vidéos) — pas les emojis */
.friends-block__widget .sk-ww-facebook-page-posts video {
  max-height: 250px !important;
  width: 100% !important;
  object-fit: cover !important;
}

.friends-block__widget .sk-ww-facebook-page-posts img[src*="photo"],
.friends-block__widget .sk-ww-facebook-page-posts img[src*="scontent"],
.friends-block__widget .sk-ww-facebook-page-posts img[src*="fbcdn"],
.friends-block__widget .sk-ww-facebook-page-posts img[src*="facebook"] {
  max-height: 250px !important;
  width: 100% !important;
  object-fit: cover !important;
}

/* Emojis : garder leur taille native */
.friends-block__widget .sk-ww-facebook-page-posts img[src*="emoji"],
.friends-block__widget .sk-ww-facebook-page-posts img[width],
.friends-block__widget .sk-ww-facebook-page-posts img[style*="width"] {
  max-height: none !important;
  width: auto !important;
  object-fit: none !important;
  display: inline !important;
}

.friends-block__widget .sk-ww-facebook-page-posts iframe {
  width: 100% !important;
  max-height: 300px !important;
  border: none !important;
}

.friends-block__cta {
  position: relative;
  z-index: 1;
}

.friends-block__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== ARTISTS GRID ===== */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

a.artist-card {
  color: inherit;
  text-decoration: none;
}

.artist-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--black-lighter);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  min-height: 0;
}

.artist-card:not(.artist-card--featured):not(.artist-card--with-logo) {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, var(--black-lighter), rgba(255, 255, 255, 0.02));
}

.artist-card:not(.artist-card--featured):not(.artist-card--with-logo) .artist-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  min-height: 80px;
}

.artist-card:not(.artist-card--featured):not(.artist-card--with-logo) .artist-card__content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

/* Cards with logo (miels du max, passerelles) — même format que Radio Krimi */
.artist-card--with-logo {
  grid-template-columns: 200px 1fr;
  background: linear-gradient(135deg, var(--black-lighter), rgba(255, 255, 255, 0.04));
}

.artist-card--with-logo .artist-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: auto;
  min-height: 180px;
}

.artist-card--with-logo .artist-card__logo-wrap img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  opacity: 1;
}

.artist-card--with-logo .artist-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  min-height: auto;
}

.artist-card--with-logo .artist-card__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.artist-card--with-logo .artist-card__content p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

.artist-card--with-logo .artist-card__content .btn {
  margin-top: 16px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 500px) {
  .artist-card--with-logo {
    grid-template-columns: 140px 1fr;
  }

  .artist-card--with-logo .artist-card__logo-wrap {
    padding: 16px;
    min-height: 140px;
  }

  .artist-card--with-logo .artist-card__logo-wrap img {
    width: 110px;
    height: 110px;
  }

  .artist-card--with-logo .artist-card__content h3 {
    font-size: 20px;
  }
}

.artist-card--featured {
  grid-template-columns: 200px 1fr;
  background: linear-gradient(135deg, var(--black-lighter), rgba(255, 107, 0, 0.05));
}

.artist-card--featured .artist-card__image {
  aspect-ratio: auto;
  min-height: 180px;
}

.artist-card--featured .artist-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.artist-card--featured .artist-card__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.artist-card--featured .artist-card__content .btn {
  margin-top: 16px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.artist-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .artists-grid {
    max-width: 400px;
  }

  .artist-card,
  .artist-card--featured,
  .artist-card--with-logo {
    grid-template-columns: 1fr !important;
  }

  /* Featured images : réduire pour matcher les logos */
  .artist-card--featured .artist-card__image {
    aspect-ratio: 16/9 !important;
    min-height: unset !important;
    max-height: 160px !important;
  }

  .artist-card--featured .artist-card__image img {
    max-height: 160px !important;
    object-fit: cover !important;
  }

  /* Logos : même taille */
  .artist-card--with-logo .artist-card__logo-wrap {
    min-height: 120px !important;
    max-height: 160px !important;
    padding: 20px !important;
  }

  .artist-card--with-logo .artist-card__logo-wrap img {
    width: 100px !important;
    height: 100px !important;
  }

  /* Contenu uniforme */
  .artist-card .artist-card__content {
    padding: 16px 20px !important;
  }

  .artist-card--featured .artist-card__content h3,
  .artist-card--with-logo .artist-card__content h3 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .artist-card--featured .artist-card__content p,
  .artist-card--with-logo .artist-card__content p {
    font-size: 13px !important;
  }

  .friends-block {
    padding: 10px;
    max-width: 100% !important;
  }

  .friends-block__widget {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .friends-block__widget .sk-ww-facebook-page-posts {
    width: 100% !important;
  }
}

.artist-card__image {
  display: block;
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-900);
  overflow: hidden;
  cursor: pointer;
}

.artist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition);
}

.artist-card:hover .artist-card__image img {
  opacity: 1;
  transform: scale(1.05);
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.artist-card__category {
  padding: 6px 12px;
  background: var(--orange);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.artist-card__content {
  padding: 20px;
}

.artist-card__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.artist-card__content p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--gray-900);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery__item:hover .gallery__zoom {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery__item {
    border-radius: var(--radius);
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: default;
}

body.lightbox-open {
  cursor: default !important;
}

body.lightbox-open * {
  cursor: inherit !important;
}

body.lightbox-open .cursor,
body.lightbox-open .cursor-follower {
  display: none !important;
}

body.lightbox-open .lightbox__close,
body.lightbox-open .lightbox__prev,
body.lightbox-open .lightbox__next,
body.lightbox-open .lightbox__backdrop {
  cursor: pointer !important;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  z-index: 2;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.15s ease;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 107, 0, 0.8);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 107, 0, 0.8);
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ===== COOKIE BANNER (CNIL) ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--black-lighter);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--white);
}

.cookie-banner__text p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  white-space: nowrap;
  min-width: 120px;
  justify-content: center;
}

@media (max-width: 600px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.testimonial {
  background: var(--black-lighter);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: rgba(255, 107, 0, 0.2);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial__author {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.testimonial__source {
  display: block;
  font-size: 11px;
  color: var(--primary);
  margin-top: 4px;
  opacity: 0.8;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl, 20px);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.08);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange, #ff6b00);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-100, #f0f0f0);
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400, #9ca3af);
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info__block {
  background: var(--black-lighter);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-info__block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.contact-info__block h3 svg {
  color: var(--orange);
}

.contact-info__block p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-info__link {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}

.contact-info__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hours */
.hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 13px;
}

.hours__row span:first-child {
  color: var(--gray-400);
}

.hours__row span:last-child {
  color: var(--gray-300);
  font-variant-numeric: tabular-nums;
}

.hours__row--closed span:last-child {
  color: #ff4d4d;
}

.hours__season-label {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* Map */
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(1) invert(1) contrast(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.footer__brand span {
  font-size: 13px;
  color: var(--gray-500);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  transition: var(--transition);
}

.footer__socials a:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-glow);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

.footer__bottom a {
  font-size: 13px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--orange);
}

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

.footer__legal span {
  color: var(--gray-600);
  font-size: 13px;
  user-select: none;
}

@media (max-width: 700px) {
  .footer__main {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer__legal {
    justify-content: center;
  }
}

/* ===== OVERLAY - PREMIUM ===== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.overlay__modal {
  position: relative;
  width: 90%;
  max-width: 360px;
  background: linear-gradient(165deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 107, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.overlay[aria-hidden="false"] .overlay__modal {
  transform: scale(1) translateY(0);
}

.overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: rotate(90deg);
}

.overlay__header {
  text-align: center;
  margin-bottom: 32px;
}

.overlay__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.overlay__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}

.overlay__phone {
  display: block;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--orange), #e55a00);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px -10px rgba(255, 107, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.overlay__phone:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 50px -10px rgba(255, 107, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.overlay__phone:active {
  transform: translateY(0) scale(0.98);
}

.overlay__phone-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.overlay__phone-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.overlay__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay__copy:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.overlay__copy svg {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.overlay__copy:hover svg {
  opacity: 1;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  background: var(--black-lighter);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== FLOATING ORBS DECORATION ===== */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08), transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatOrb1 20s ease-in-out infinite;
}

body::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05), transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: floatOrb2 25s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-50px, 50px) scale(1.1); }
  50% { transform: translate(-100px, 0) scale(1); }
  75% { transform: translate(-50px, -50px) scale(0.9); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -40px) scale(1.15); }
  66% { transform: translate(40px, 60px) scale(0.95); }
}

/* ===== VINYL RECORD ===== */
.vinyl-container {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .vinyl-container {
    right: 0;
    opacity: 0.25;
  }
}

.vinyl {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  animation: vinylSpin 8s linear infinite;
  box-shadow:
    0 0 0 3px rgba(255, 107, 0, 0.3),
    0 0 40px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.vinyl::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0px,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 3px,
    transparent 4px
  );
}

.vinyl__grooves {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0px,
    transparent 3px,
    rgba(255, 255, 255, 0.05) 4px,
    transparent 5px
  );
}

.vinyl__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #cc5500 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.vinyl__text {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
}

.vinyl__subtext {
  font-size: 6px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vinyl__hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8);
}

/* Vinyl arm */
.vinyl-arm {
  position: absolute;
  top: 20px;
  right: 60px;
  transform-origin: top right;
  animation: vinylArmBob 4s ease-in-out infinite;
}

.vinyl-arm__base {
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.vinyl-arm__stick {
  width: 80px;
  height: 6px;
  background: linear-gradient(to right, #444, #222);
  position: absolute;
  top: 7px;
  right: 10px;
  transform: rotate(30deg);
  transform-origin: right center;
  border-radius: 3px;
}

.vinyl-arm__head {
  width: 16px;
  height: 24px;
  background: #222;
  position: absolute;
  top: 35px;
  right: 70px;
  transform: rotate(30deg);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

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

@keyframes vinylArmBob {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

/* ===== CONFETTI / SPARKLES ===== */
.timeline__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleExplode 1s ease-out forwards;
}

.sparkle--orange {
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange), 0 0 12px var(--orange);
}

.sparkle--gold {
  background: #ffd700;
  box-shadow: 0 0 6px #ffd700, 0 0 12px #ffd700;
}

.sparkle--white {
  background: #fff;
  box-shadow: 0 0 6px #fff, 0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes sparkleExplode {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0);
  }
}

/* Star sparkle variant */
.sparkle--star {
  width: 0;
  height: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.sparkle--star::before,
.sparkle--star::after {
  content: '';
  position: absolute;
  background: var(--orange);
}

.sparkle--star::before {
  width: 12px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.sparkle--star::after {
  width: 3px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

/* ===== PREMIUM HOVER EFFECTS ===== */
.card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 50px -12px rgba(255, 107, 0, 0.25),
    0 0 0 1px rgba(255, 107, 0, 0.2);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

/* Timeline card glow on hover */
.timeline__card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.timeline__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px -15px rgba(255, 107, 0, 0.3),
    0 0 30px rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.4);
}

/* Artist card magnetic effect */
.artist-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow:
    0 30px 60px -20px rgba(255, 107, 0, 0.35),
    0 0 0 1px rgba(255, 107, 0, 0.15);
}

/* Gallery item zoom effect — handled in main gallery styles */

/* Button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

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

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

/* Glowing text effect for highlights */
.highlight {
  position: relative;
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
}

/* Pulse animation for CTA buttons */
.navbar__cta,
.btn--primary {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 107, 0, 0.6), 0 0 40px rgba(255, 107, 0, 0.2); }
}

/* Section reveal animation */
section {
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
}
