/* ============================================
   DJ RONI — Design Tokens & Styles
   Dark-first, nightlife aesthetic
   Accent: Electric violet / magenta
   ============================================ */

:root {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ── Dark Mode (Default) ── */
:root,
[data-theme='dark'] {
  --color-bg: #0a0a0f;
  --color-surface: #111118;
  --color-surface-2: #18181f;
  --color-surface-3: #1f1f28;
  --color-border: rgba(255,255,255,0.08);
  --color-border-hover: rgba(255,255,255,0.15);
  --color-text: #f0eff4;
  --color-text-muted: #9896a3;
  --color-text-faint: #5c5a66;
  --color-primary: #a87cff;
  --color-primary-hover: #c4a3ff;
  --color-primary-glow: rgba(168, 124, 255, 0.15);
  --color-accent: #ff3c8e;
  --color-accent-glow: rgba(255, 60, 142, 0.12);
  --color-gold: #ffc553;
  --color-gold-dim: #b8943d;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
}



/* ── Scroll animations ── */
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}
.fade-in { opacity: 1; }
@keyframes reveal-fade { to { opacity: 1; } }

/* ── Global Layout ── */
.container {
  max-width: min(var(--content-wide), 100%);
  margin-inline: auto;
  padding-inline: var(--space-4);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-4);
  max-width: min(var(--content-wide), 100%);
  margin-inline: auto;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .header-inner { padding: var(--space-2) var(--space-8); }
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.logo-img {
  height: min(44px, 10vw);
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo-img { height: min(52px, 8vw); }
}
.logo-img-dark { display: block; }
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(var(--space-2), 1.5vw, var(--space-6));
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-size: clamp(0.7rem, 1.1vw, var(--text-sm));
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition-interactive);
  white-space: nowrap;
}
.nav-desktop a:hover {
  color: var(--color-text);
}
.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-primary-glow);
}
.nav-cta:active {
  transform: translateY(0);
}

/* Header utility buttons */
.header-utils {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
/* Mobile menu */
.hamburger {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger svg { width: 24px; height: 24px; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mobile-nav a:hover { color: var(--color-primary); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(100dvh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(168, 124, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(255, 60, 142, 0.08) 0%, transparent 60%),
    linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.15) 0%,
      rgba(10, 10, 15, 0.45) 50%,
      rgba(10, 10, 15, 0.88) 100%
    );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(800px, 100%);
  padding: var(--space-4);
  box-sizing: border-box;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: var(--color-primary-glow);
  border: 1px solid rgba(168, 124, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--color-text) 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: min(540px, 100%);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.hero-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-primary-glow);
}
.hero-cta:active { transform: translateY(0); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-4) var(--space-8);
  margin-top: var(--space-12);
  flex-wrap: wrap;
  width: 100%;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Section Styles ── */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}
.section.section--tight {
  padding-top: 0;
  padding-bottom: var(--space-4);
}
.section.section--tight .section-header {
  margin-bottom: var(--space-6);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: min(560px, 100%);
  margin-inline: auto;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: var(--space-4);
}
.service-card {
  position: relative;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.service-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: var(--space-5);
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.service-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  pointer-events: none;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.about-content p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.about-highlight svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* ── Meet the Team ── */
/* ── Team Profiles (full-width alternating) ── */
.team-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-border);
}
.team-profile:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .team-profile {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-10);
  }
  .team-profile-reverse {
    direction: rtl;
  }
  .team-profile-reverse > * {
    direction: ltr;
  }
}
.team-profile-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}
.team-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-profile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  pointer-events: none;
}
.team-profile-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.team-profile-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.team-profile-role {
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.team-profile-info p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}
.team-profile-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.team-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.team-meta-item .meta-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-meta-item span:last-child {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ── Gallery ── */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.gallery-tab {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-interactive);
}
.gallery-tab:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text);
}
.gallery-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: var(--space-3);
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-interactive);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Video Gallery Styles */
.gallery-item-video {
  position: relative;
  cursor: pointer;
}
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s;
  z-index: 2;
}
.gallery-item-video:hover .gallery-play-btn {
  background: rgba(168,124,255,0.8);
}
.lightbox-media {
  max-width: 90vw;
  max-height: 85vh;
}

/* Video embed */
.video-section {
  margin-bottom: var(--space-8);
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: min(800px, 100%);
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Inline video items in gallery (legacy) */
.video-wrapper-inline {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-wrapper-inline iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-label {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

/* ── Mixes Section ── */
.mixes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: min(900px, 100%);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .mixes-grid { grid-template-columns: 1fr 1fr; }
}
.mix-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.mix-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mix-card:hover .mix-play-btn svg circle {
  fill: rgba(168, 124, 255, 0.85);
}
.mix-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mix-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mix-card:hover .mix-video img {
  transform: scale(1.05);
}
.mix-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mix-play-btn svg circle {
  transition: fill 0.3s ease;
}
.mix-info {
  padding: var(--space-4) var(--space-5);
}
.mix-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.mix-info span {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Collaborations ── */

/* Marquee ticker */
.collab-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.collab-marquee-row {
  overflow: hidden;
  white-space: nowrap;
}
.collab-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeLeft 25s linear infinite;
}
.collab-marquee-row[data-direction="right"] .collab-marquee-track {
  animation: marqueeRight 30s linear infinite;
}
.collab-marquee-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1.5px var(--color-text);
  color: transparent;
  padding: 0 var(--space-4);
  flex-shrink: 0;
}
.collab-marquee-dot {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--color-primary);
  flex-shrink: 0;
  padding: 0 var(--space-2);
}

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

/* Logo slideshow */
.collab-showcase {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.collab-logo-slider {
  position: relative;
  width: min(200px, 60vw);
  height: auto;
  min-height: 260px;
}
.collab-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.collab-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.collab-slide img {
  width: min(140px, 40vw);
  height: min(140px, 40vw);
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-border);
  background: var(--color-bg);
}
.collab-slide-info {
  text-align: center;
}
.collab-slide-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
}
.collab-slide-type {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-1);
}
.collab-dots {
  display: flex;
  gap: var(--space-2);
}
.collab-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.collab-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .collab-marquee-name {
    font-size: clamp(1.8rem, 8vw, 3rem);
    -webkit-text-stroke: 1px var(--color-text);
  }
  .collab-marquee-dot {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}

/* ── Reviews System ── */
.reviews-summary {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-overall {
  text-align: center;
  min-width: min(160px, 100%);
}
.reviews-overall-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-gold);
}
.reviews-overall-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin: var(--space-2) 0;
  color: var(--color-gold);
  font-size: 20px;
}
.reviews-overall-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.reviews-breakdown {
  flex: 1;
  min-width: min(240px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-bar-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  min-width: min(120px, 35%);
  text-align: right;
}
.review-bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  transition: width 0.6s var(--ease-out);
}
.review-bar-value {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
  min-width: 32px;
}
.review-bar-weight {
  font-size: 10px;
  color: var(--color-text-faint);
  min-width: 36px;
}

/* Reviews Marquee */
.reviews-marquee-wrap {
  overflow: hidden;
  padding: var(--space-8) 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.reviews-marquee-track {
  display: flex;
  gap: var(--space-6);
  animation: reviewsScroll 40s linear infinite;
  width: max-content;
}
.reviews-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reviews-marquee-track .review-card {
  min-width: min(340px, 85vw);
  max-width: min(340px, 85vw);
  flex-shrink: 0;
}

/* Review Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-4);
}
.review-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-interactive);
}
.review-card:hover {
  border-color: var(--color-border-hover);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-primary);
}
.review-author {
  flex: 1;
}
.review-author h4 {
  font-size: var(--text-sm);
  font-weight: 700;
}
.review-author span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.review-stars {
  color: var(--color-gold);
  font-size: 14px;
  margin-bottom: var(--space-3);
}
.review-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Write Review Form */
.review-form-section {
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}
.review-form-section h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.review-form-section > p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}
.form-group input[type="date"],
.form-group input[type="time"] {
  color-scheme: dark;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Location Autocomplete */
.location-autocomplete-wrap {
  position: relative;
}
.location-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  max-height: 240px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.location-suggestions.active {
  display: block;
}
.location-suggestion {
  padding: 10px 14px;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-interactive);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.location-suggestion:last-child {
  border-bottom: none;
}
.location-suggestion:hover,
.location-suggestion.active {
  background: var(--color-primary);
  color: #fff;
}
.location-suggestion-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.location-suggestion-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.location-suggestion-name {
  font-weight: 500;
}
.location-suggestion-address {
  font-size: 12px;
  opacity: 0.7;
}

/* Other Event Type Input */
/* Pending Venue Toggle */
.pending-venue-toggle {
  margin-top: -8px;
}
.venue-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.venue-checkbox-label:hover {
  color: var(--color-text);
}
.venue-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
  border-radius: 3px;
}
.venue-checkbox-text {
  user-select: none;
}
#stateWrap select {
  width: 100%;
  padding: 10px 14px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
#stateWrap select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.other-event-input {
  margin-top: 8px;
  width: 100%;
  padding: 10px 14px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.2s;
}
.other-event-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  gap: 4px;
}
.star-rating-input .star-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-text-faint);
  transition: color var(--transition-interactive), transform var(--transition-interactive);
}
.star-rating-input .star-btn:hover {
  transform: scale(1.15);
}
.star-rating-input .star-btn.active {
  color: var(--color-gold);
}
.rating-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.rating-category {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.rating-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating-category-header span:first-child {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.rating-category-header .weight-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-faint);
  background: var(--color-surface-3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-primary-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.btn-outline:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface);
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.contact-grid-stacked {
  grid-template-columns: 1fr;
  max-width: min(720px, 100%);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid:not(.contact-grid-stacked) { grid-template-columns: 1fr 1fr; }
}

/* Contact info row below form */
.contact-info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .contact-info-row { grid-template-columns: repeat(3, 1fr); }
}
.contact-info-item {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}
.contact-info-item strong {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
.contact-info-item a, .contact-info-item span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--color-primary); }
.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-glow);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-form {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

/* Preferred contact */
.prefer-time {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.prefer-time label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-interactive);
}
.prefer-time label:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-glow);
  color: var(--color-primary);
}
.prefer-time input { display: none; }

/* ── FAQ Section ── */
.faq-list {
  max-width: min(720px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-interactive);
}
.faq-item:hover { border-color: var(--color-border-hover); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: var(--color-surface);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}
.faq-a-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); }
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-3);
  max-width: min(300px, 100%);
}
.footer h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer ul a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer ul a:hover { color: var(--color-text); }
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}
.footer-social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-glow);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  z-index: 300;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Star filled/empty */
.star-filled::before { content: '★'; }
.star-empty::before { content: '☆'; }

/* ============================================
   TOUR SECTION — Full Background Photo Style
   ============================================ */
.tour-section {
  --poster-scale: 1;
  --poster-pad: 1;
  position: relative;
  overflow: hidden;
  padding: calc(clamp(60px, 8vw, 100px) * var(--poster-pad)) 0;
  transition: padding 0.4s ease;
}
.tour-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tour-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.6) saturate(1.15);
}
.tour-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 5, 0, 0.7) 0%, rgba(10, 5, 0, 0.35) 55%, rgba(10, 5, 0, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 5, 0, 0.6) 0%, rgba(10, 5, 0, 0.25) 15%, rgba(10, 5, 0, 0.3) 85%, rgba(10, 5, 0, 0.7) 100%);
}
.tour-container {
  position: relative;
  z-index: 1;
}

/* Tour Header */
.tour-header {
  text-align: center;
  margin-bottom: calc(clamp(32px, 4vw, 48px) * var(--poster-scale));
  transition: margin-bottom 0.4s ease;
}
.tour-title {
  font-family: var(--font-display);
  font-size: calc(clamp(3rem, 6vw, 5.5rem) * var(--poster-scale));
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffc553;
  line-height: 1;
  margin: 0 0 8px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  transition: font-size 0.4s ease;
}
.tour-tour-label {
  font-family: var(--font-display);
  font-size: calc(clamp(1.1rem, 2.5vw, 1.6rem) * var(--poster-scale));
  font-weight: 600;
  color: rgba(255, 245, 225, 0.9);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  transition: font-size 0.4s ease;
}

/* Tour Months Layout */
.tour-months {
  max-width: min(780px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(clamp(16px, 2vw, 24px) * var(--poster-scale));
  transition: gap 0.4s ease;
}

/* Month Group */
.tour-month-group {
  /* no card background — text floats over the photo */
}
.tour-month-name {
  font-family: var(--font-display);
  font-size: calc(clamp(1rem, 1.8vw, 1.25rem) * var(--poster-scale));
  font-weight: 700;
  color: #ffc553;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 calc(4px * var(--poster-scale));
  padding-bottom: calc(4px * var(--poster-scale));
  border-bottom: 1.5px solid rgba(255, 197, 83, 0.5);
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: font-size 0.4s ease;
}

/* Event Rows */
.tour-month-events {
  display: flex;
  flex-direction: column;
  gap: calc(3px * var(--poster-scale));
}
.tour-event-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(4px * var(--poster-scale));
  font-size: calc(clamp(0.82rem, 1.4vw, 0.95rem) * var(--poster-scale));
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: font-size 0.4s ease;
}
.tour-ev-date {
  color: #ffc553;
  font-weight: 500;
  white-space: nowrap;
}
.tour-ev-sep {
  color: rgba(255, 245, 225, 0.5);
  margin: 0 2px;
}
.tour-ev-name {
  color: rgba(255, 245, 225, 0.95);
  font-weight: 700;
}
.tour-ev-loc {
  color: rgba(200, 170, 110, 0.85);
  font-weight: 400;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .tour-section {
    padding: 48px 0;
  }
  .tour-bg-overlay {
    background:
      linear-gradient(90deg, rgba(10, 5, 0, 0.8) 0%, rgba(10, 5, 0, 0.5) 50%, rgba(10, 5, 0, 0.3) 100%),
      linear-gradient(180deg, rgba(10, 5, 0, 0.65) 0%, rgba(10, 5, 0, 0.3) 15%, rgba(10, 5, 0, 0.35) 85%, rgba(10, 5, 0, 0.75) 100%);
  }
  .tour-event-row {
    font-size: 0.8rem;
  }
  .tour-ev-loc {
    flex-basis: 100%;
    padding-left: 0;
    font-size: 0.75rem;
  }
}

/* ─── FEATURED ARTISTS ─── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 960px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .artists-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.artist-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 124, 255, 0.45);
  box-shadow: 0 18px 48px -16px rgba(168, 124, 255, 0.35);
}

.artist-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1530 0%, #0d0820 100%);
}

.artist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.artist-card:hover .artist-card-media img {
  transform: scale(1.04);
}

.artist-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.artist-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.artist-card-meta {
  font-family: var(--font-body, "Satoshi", sans-serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a87cff;
  margin-bottom: 0.5rem;
}

.artist-card-name {
  font-family: var(--font-display, "Cabinet Grotesk", sans-serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.1;
  color: var(--color-text, #fff);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.artist-card-location {
  font-family: var(--font-body, "Satoshi", sans-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.6));
  line-height: 1.4;
}
