/* ═══════════════════════════════════════════════════════════════════
   STUDIO 27 FARO — styles.css
   ─────────────────────────────────────────────────────────────────
   Architecture: mobile-first, plain CSS, no preprocessor
   Breakpoints : 900px (tablet) · 600px (phone)
   Fonts       : Bebas Neue (display) · DM Sans 300/400/500 (body)
                 Loaded via Google Fonts in <head>
   Sections:
     §1  Reset & custom properties (design tokens)
     §2  Base
     §3  Navigation (desktop)
     §4  Hamburger & mobile nav overlay
     §5  Hero
     §6  Shared buttons (.btn-primary / .btn-ghost)
     §7  Stats bar
     §8  Shared section typography (.section-tag / .section-title)
     §9  About section
     §10 Services section
     §11 Artists section
     §12 Cypher — Passa o Mic
     §13 Booking CTA
     §14 Footer
     §15 Scroll reveal (.reveal / .reveal-stagger)
     §16 Keyframe animations
     §17 Responsive — 900px
     §18 Responsive — 600px
   ═══════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────
   §1  RESET & CUSTOM PROPERTIES
   ───────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Palette ── */
  --black:        #0a0a0a;
  --off-black:    #111111;
  --surface:      #181818;
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --gold:         #c8a96e;
  --gold-dim:     rgba(200, 169, 110, 0.15);
  --gold-border:  rgba(200, 169, 110, 0.3);
  --white:        #f5f0e8;
  --muted:        #6b6459;

  /* ── Typography ── */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* ── Spacing scale ── */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* ── Layout ── */
  --nav-height:  64px;
  --content-pad: 48px;   /* shrinks at 900px → 24px, 600px → 16px */

  /* ── Breakpoints (reference only — CSS custom props can't go in @media)
     phone:  600px
     tablet: 900px  ── */
}


/* ─────────────────────────────────────────────────────────────────
   §2  BASE
   ───────────────────────────────────────────────────────────────── */

html {
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}


/* ─────────────────────────────────────────────────────────────────
   §3  NAVIGATION (DESKTOP)
   ───────────────────────────────────────────────────────────────── */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--content-pad);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* JS adds .scrolled when window.scrollY > 60 */
#main-nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-hover);
}

/* Logo — wraps the <img>; falls back to .logo-text if image errors */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 54px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.logo-text span {
  color: var(--gold);
}

/* Desktop nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active {
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}

/* Login/Account button - make it stand out */
.nav-guest-item a {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-guest-item a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  border-bottom: none;
  padding-bottom: 8px;
}

.nav-guest-item a.active {
  border-bottom: none;
  padding-bottom: 8px;
}

/* CTA button: fill with gold when on the booking page */
.nav-links .nav-cta a.active {
  background: var(--gold);
  color: var(--black);
  border-bottom: none;
  padding: 8px 20px;
}

/* Book a session CTA button inside nav */
.nav-links .nav-cta a {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 8px 20px;
  border-radius: 2px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta a:hover {
  background: var(--gold);
  color: var(--black);
}

/* Auth-aware nav items */
.nav-profile-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-profile-link:hover { color: var(--white); }
.nav-profile-link svg { flex-shrink: 0; }
.nav-username { font-size: 12px; letter-spacing: 0.04em; }

.nav-logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.2s;
  line-height: 1;
}
.nav-logout-btn:hover { color: var(--gold); }

.mobile-profile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-profile-link:hover { color: var(--gold); }

.mobile-logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 0;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-logout-btn:hover { color: var(--gold); }


/* ─────────────────────────────────────────────────────────────────
   §4  HAMBURGER & MOBILE NAV OVERLAY
   Desktop: hamburger hidden, mobile-nav hidden (display:none via §18).
   Mobile : hamburger shown, desktop links hidden.
   JS adds/removes .open on both elements.
   ───────────────────────────────────────────────────────────────── */

.hamburger {
  display: none;           /* shown in §18 media query */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Morphs into an × when the menu is open */
.hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* Full-screen overlay nav panel.
   Always display:flex so opacity transition can run.
   Hidden on desktop via min-width query in §18.
   Invisible until .open added by JS. */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-nav-links a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--gold);
}

.mobile-nav-cta a {
  display: inline-block;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  padding: 12px 32px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.mobile-nav-cta a:hover {
  background: var(--gold);
  color: var(--black) !important;
}


/* ─────────────────────────────────────────────────────────────────
   §5  HERO
   Full-viewport. Video sits behind a cinematic vignette overlay (::after).
   .video-fallback is the dark gradient shown before footage is added.
   Hero text content uses staggered CSS animations (see §16).
   ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Video — full background */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.72) 30%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.28) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.video-wrapper video,
.hero-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* Shown until real video is added */
.video-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1208 0%, #0a0a0a 50%, #0d0a14 100%);
}

/* Cinematic vignette — dark on left, fading to transparent on right */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--content-pad) 72px;
  max-width: 700px;
}

/* Each element starts invisible; animation fills forwards into the visible state */
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* Vertical scroll indicator — bottom-right of hero */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: var(--content-pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ─────────────────────────────────────────────────────────────────
   §6  SHARED BUTTONS
   ───────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hover);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ─────────────────────────────────────────────────────────────────
   §7  STATS BAR
   4-column grid; at 900px collapses to 2×2.
   ───────────────────────────────────────────────────────────────── */

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--gold-dim);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ─────────────────────────────────────────────────────────────────
   §8  SHARED SECTION TYPOGRAPHY
   ───────────────────────────────────────────────────────────────── */

.section-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}


/* ─────────────────────────────────────────────────────────────────
   §9  ABOUT SECTION
   Two-column grid; overlapping image stack on the right.
   Collapses to single column at 900px.
   ───────────────────────────────────────────────────────────────── */

.about-section {
  padding: var(--space-xl) var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Overlapping image pair */
.about-image-stack {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 88%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-img-main img,
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative offset border — visible behind the main photo */
.gold-border-accent {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 78%;
  height: 88%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0.2;
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────────
   §10 SERVICES SECTION
   3×2 grid. gap:1px on var(--border) background creates divider lines.
   .service-num transitions dim → gold on card hover.
   Collapses to 1 column at 900px.
   ───────────────────────────────────────────────────────────────── */

/* ── SERVICES SECTION ── */
.services-section {
  padding: var(--space-xl) var(--content-pad);
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.services-scroll {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 4px 0 24px;
  position: relative;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  min-height: 480px;
}

.service-card:hover {
  background: var(--off-black);
  border-color: var(--gold);
  transform: translateY(-4px);
}

/* Service image */
.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* Keep your existing typography styles below */
.service-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  color: rgba(200, 169, 110, 0.2);
  transition: color 0.3s ease;
}

.service-card:hover .service-num {
  color: var(--gold);
}

.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.services-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.services-scroll-wrapper .scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.services-scroll-wrapper .scroll-arrow:hover {
  opacity: 1;
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.services-scroll-wrapper .scroll-arrow-left {
  left: -24px;
}

.services-scroll-wrapper .scroll-arrow-right {
  right: -24px;
}

@media (max-width: 900px) {
  .services-scroll-wrapper .scroll-arrow {
    display: none;
  }
  
  .services-scroll {
    overflow-x: auto;
  }
  
  .service-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 0 0 calc(100% - 32px);
  }
}



/* ─────────────────────────────────────────────────────────────────
   §11 ARTISTS SECTION
   4-column grid → 2 columns at 900px and below.
   Each card: portrait photo (3:4) + info strip + Spotify embed.
   Card border highlights gold on hover + slight lift.
   ───────────────────────────────────────────────────────────────── */

.artists-section {
  padding: 48px var(--content-pad);
}

.artists-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.artists-scroll-wrapper {
  position: relative;
  padding: 4px;
  margin: -4px;
}

.artists-scroll-wrapper::before,
.artists-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 20;
}

.artists-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.9) 30%, transparent 100%);
}

.artists-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, rgba(10, 10, 10, 0.9) 30%, transparent 100%);
}

.artists-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  position: relative;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  will-change: scroll-position;
}

.artists-scroll.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.artists-scroll.dragging * {
  pointer-events: none;
  user-select: none;
}

.artists-scroll::-webkit-scrollbar {
  display: none;
}

.artists-scroll .artist-card {
  flex: 0 0 280px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 80px;
}

.artists-grid::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
  opacity: 0.4;
}

.artists-grid::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
  opacity: 0.4;
}

.artist-card { background: var(--surface); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; display: grid; grid-template-rows: auto 1fr auto; transition: border-color 0.2s, transform 0.2s; position: relative; z-index: 1; }

.artist-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.artist-photo {
  aspect-ratio: 3 / 4;
  background: #1e1e1e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  position: relative;
  grid-row: 1;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-info {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.artist-genre {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.artist-bio {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.65;
}

/* Spotify compact player strip */
.spotify-embed {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 12px;
  background: var(--black);
}

.spotify-embed iframe {
  display: block;
  border-radius: 4px;
}


/* ─────────────────────────────────────────────────────────────────
   §12 CYPHER — PASSA O MIC
   Two-column grid: copy left, media placeholder right.
   Collapses to single column at 900px.
   ───────────────────────────────────────────────────────────────── */

.cypher-section {
  padding: var(--space-xl) var(--content-pad);
  background: var(--off-black);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cypher-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 1px;
  margin-bottom: 24px;
}

.cypher-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cypher-visual img,
.cypher-visual iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}


/* ─────────────────────────────────────────────────────────────────
   §13 BOOKING CTA
   Full-width centered section.
   ::before creates the large "STUDIO27" watermark behind the content.
   ───────────────────────────────────────────────────────────────── */

.booking-cta {
  padding: var(--space-2xl) var(--content-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative watermark — pure CSS, no extra element */
.booking-cta::before {
  content: 'STUDIO27';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 260px);
  color: rgba(255, 255, 255, 0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  user-select: none;
}

.booking-cta .section-title {
  margin-bottom: 16px;
}

.booking-cta .section-body {
  max-width: 480px;
  margin: 0 auto 40px;
}

.booking-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────────────
   §14 FOOTER
   Three-column grid → single column at 900px.
   .footer-bottom spans all columns.
   ───────────────────────────────────────────────────────────────── */

footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-brand a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-brand a:hover {
  color: var(--white);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

/* Spans all 3 columns */
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}


/* ─────────────────────────────────────────────────────────────────
   §15 SCROLL REVEAL
   .reveal        → single element fades + slides up when visible.
   .reveal-stagger → each direct child gets a cascading delay.
   JS (IntersectionObserver in script.js) adds .visible when an
   element enters the viewport. Observer then unobserves.
   ───────────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Base state for stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Delay increments per child index */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* JS adds .visible to the parent; children pick up their delays */
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ─────────────────────────────────────────────────────────────────
   §16 KEYFRAME ANIMATIONS
   Used by hero section only (the rest use the reveal system).
   ───────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll indicator line pulses down */
@keyframes expandCard { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } @keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 1;   }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}

@keyframes toastSlideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}


/* ─────────────────────────────────────────────────────────────────
   §16.5 TOAST NOTIFICATIONS
   Accessible, lightweight toast messages with auto-dismiss
   ───────────────────────────────────────────────────────────────── */

#toast-container {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-sm);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: toastSlideIn 0.3s ease-out;
  pointer-events: auto;
  transform-origin: right bottom;
}

.toast.show {
  animation: toastSlideIn 0.3s ease-out;
}

.toast:not(.show) {
  animation: toastSlideOut 0.3s ease-in;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toast-icon {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.toast-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.toast-close:hover,
.toast-close:focus {
  color: var(--white);
  outline: none;
}

/* Toast type variations */
.toast-success {
  border-left: 3px solid #4ade80;
}

.toast-success .toast-icon {
  color: #4ade80;
}

.toast-error {
  border-left: 3px solid #ef4444;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-info {
  border-left: 3px solid var(--gold);
}

.toast-info .toast-icon {
  color: var(--gold);
}

.toast-warning {
  border-left: 3px solid #f59e0b;
}

.toast-warning .toast-icon {
  color: #f59e0b;
}


/* ─────────────────────────────────────────────────────────────────
   §16.6 FORM ACCESSIBILITY & UX IMPROVEMENTS
   Enhanced focus states, touch-friendly sizing, better validation feedback
   ───────────────────────────────────────────────────────────────── */

/* Improved focus states for all form inputs */
.form-input:focus,
.form-textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Better touch target sizing for mobile */
@media (max-width: 600px) {
  .form-input,
  .form-textarea,
  select,
  .btn-primary,
  .checkbox-label input[type="checkbox"],
  .checkbox-label input[type="radio"] {
    min-height: 44px;
  }

  .form-label {
    font-size: 14px;
    font-weight: 400;
  }

  .form-input,
  .form-textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Keyboard navigation visible focus indicator */
.form-input:focus-visible,
.form-textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Improved checkbox/radio styling for accessibility */
.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"],
.radio-label input[type="radio"] {
  accent-color: var(--gold);
}

/* Error state styling */
.form-input.error,
.form-textarea.error,
select.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.form-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  font-weight: 400;
}

.form-success {
  color: #4ade80;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  font-weight: 400;
}

/* Lazy-loaded image placeholder */
img[loading="lazy"] {
  background: linear-gradient(90deg, var(--surface) 25%, var(--off-black) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

img[loading="lazy"].loaded {
  animation: none;
}


/* ─────────────────────────────────────────────────────────────────
   §17 RESPONSIVE — 900px (tablet)
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  :root {
    --content-pad: 24px;
  }

  .nav-links { gap: 20px; }

  .video-wrapper {
    width: 40%;
  }

  .hero-content {
    max-width: 55%;
    padding: 0 24px 60px;
  }

  /* About and Cypher stack vertically */
  .about-section,
  .cypher-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px var(--content-pad);
  }

  .about-image-stack { height: 300px; }

  .services-section,
  .artists-section {
    padding: 60px var(--content-pad);
  }

  /* Services: single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Artists: 2-column on tablet */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats: 2×2 */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Remove border between items 2 and 3 to avoid double border in 2×2 */
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }

  footer {
    grid-template-columns: 1fr;
    padding: 32px var(--content-pad);
  }

  .booking-cta {
    padding: 80px var(--content-pad);
  }
}


/* ─────────────────────────────────────────────────────────────────
   §18 RESPONSIVE — 600px (phone)
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  :root {
    --content-pad: 16px;
  }

  /* Show hamburger; hide desktop nav links */
  .hamburger  { display: flex; }
  .nav-links  { display: none; }

  /* Mobile nav is always display:flex (for transitions) but invisible
     until .open is added by JS. No need to set display here. */

  .hero {
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
    height: auto;
    padding-top: 50vh;
  }

  .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50vh;
  }

  .video-wrapper video,
  .hero-gif {
    opacity: 0.45;
  }

  .hero::after {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 40%, rgba(10,10,10,1) 70%);
  }

  .hero-content {
    max-width: 100%;
    padding: 32px var(--content-pad) 60px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 72px);
  }

  .scroll-hint {
    display: none;
  }

  /* Artists stay 2-column even on the smallest screens */
  .artists-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ─────────────────────────────────────────────────────────────────
   §19 BOOKING PAGE — form, confirmation, skip link
   ───────────────────────────────────────────────────────────────── */

/* Accessibility skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* Outer section */
.booking-form-section {
  padding: 0 var(--content-pad) var(--space-2xl);
}

/* Centered card */
.booking-form-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px;
}

/* Two-column grid that collapses on mobile */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Full-width field inside the 2-col grid */
.form-group.span-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Gold asterisk on required labels */
.req {
  color: var(--gold);
}

/* Shared input / select / textarea base */
.form-input,
.form-select,
.form-textarea,
.account-input {
  width: 100%;
  background: var(--off-black);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.account-input:focus {
  outline: none;
  border-color: var(--gold);
  background: #1a1a1a;
}

.account-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.account-card-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.account-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-btn-group {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.account-password-msg {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

/* Native date/time pickers — keep text readable */
.form-input[type="date"],
.form-input[type="time"] {
  color-scheme: dark;
}

/* Select arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6459' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--off-black);
  color: var(--white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Confirmation panel — hidden until form submits */
.booking-confirm {
  display: none;
  text-align: center;
  padding: 40px 0 8px;
}

.booking-message {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid transparent;
}

.booking-message.error {
  background: rgba(225, 92, 92, 0.12);
  border-color: rgba(225, 92, 92, 0.28);
  color: #f1c0c0;
}

.booking-message.success {
  background: rgba(118, 194, 118, 0.14);
  border-color: rgba(118, 194, 118, 0.28);
  color: #d4f1d4;
}

.confirm-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 1px;
  margin-bottom: 24px;
}

.confirm-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.confirm-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 32px;
}

.confirm-body.secondary {
  margin-top: 0;
  color: rgba(245, 240, 232, 0.78);
}

/* Booking form responsive */
@media (max-width: 600px) {
  .booking-form-inner {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.span-full {
    grid-column: 1;
  }
}


/* ─────────────────────────────────────────────────────────────────
   §20 ARTIST CARD EXPANSION
   ───────────────────────────────────────────────────────────────── */

.artist-card { transition: opacity 0.2s; transform-origin: var(--origin-x, 0%) top; } 

.artist-card[data-expanded="true"] { position: fixed !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; width: 90%; max-width: 900px; height: auto; max-height: 85vh; z-index: 999 !important; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(200, 169, 110, 0.3); border: 2px solid var(--gold); border-radius: 4px; display: grid; grid-template-columns: 320px 1fr; grid-template-rows: auto 1fr auto; gap: 0; animation: expandCard 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); background: var(--surface); overflow: hidden; }

.artist-card[data-expanded="true"]::before { content: ''; position: absolute; width: 200px; height: 200px; background: radial-gradient(circle at center, #1a1a1a 0%, #1a1a1a 15%, var(--gold) 15%, var(--gold) 16%, rgba(200, 169, 110, 0.9) 16%, rgba(200, 169, 110, 0.9) 45%, rgba(200, 169, 110, 0.7) 45%, rgba(200, 169, 110, 0.7) 46%, var(--gold) 46%, var(--gold) 100%); border-radius: 50%; top: -50px; right: -50px; pointer-events: none; z-index: 1; opacity: 0.3; box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3), inset 0 2px 10px rgba(0, 0, 0, 0.4); }

.artist-card[data-expanded="true"]::after { content: ''; position: absolute; width: 150px; height: 150px; background: radial-gradient(circle at center, #1a1a1a 0%, #1a1a1a 18%, var(--gold) 18%, var(--gold) 19%, rgba(200, 169, 110, 0.85) 19%, rgba(200, 169, 110, 0.85) 48%, rgba(200, 169, 110, 0.65) 48%, rgba(200, 169, 110, 0.65) 49%, var(--gold) 49%, var(--gold) 100%); border-radius: 50%; bottom: -40px; left: -40px; pointer-events: none; z-index: 1; opacity: 0.25; box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3), inset 0 2px 10px rgba(0, 0, 0, 0.4); } .artist-card[data-expanded="true"].expand-right { grid-template-columns: 1fr 320px; } .artist-card[data-expanded="true"].expand-right .artist-photo { order: 2; grid-column: 2; border-right: none; border-left: 1px solid rgba(200, 169, 110, 0.4); }

.artist-card[data-expanded="true"].expand-right .artist-photo::after { right: auto; left: -1px; }

.artist-card[data-expanded="true"] .artist-photo { aspect-ratio: 3 / 5; width: 320px; grid-row: 1 / 3; border-right: 1px solid rgba(200, 169, 110, 0.4); display: flex; flex-direction: column; position: relative; }

.artist-card[data-expanded="true"] .artist-photo::after { content: ''; position: absolute; top: 0; right: -1px; width: 1px; height: 100%; background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.6; pointer-events: none; }

.artist-card[data-expanded="true"] .artist-photo img { flex: 1; object-fit: cover; min-height: 0; }

.artist-photo-footer { display: none; }

.artist-card[data-expanded="true"] .artist-photo-footer { display: block; padding: 12px 16px; background: var(--off-black); border-top: 1px solid var(--border); }

.artist-photo-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

.artist-photo-value { font-size: 13px; font-weight: 300; color: rgba(245, 240, 232, 0.8); line-height: 1.6; }

.artist-card[data-expanded="true"] .artist-info { padding: 32px 36px 24px; grid-column: 2; grid-row: 1; border-bottom: 1px solid var(--border); background: var(--surface); position: relative; }

.artist-close-btn { display: none; position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: rgba(10, 10, 10, 0.6); border: 1px solid var(--border); border-radius: 2px; cursor: pointer; align-items: center; justify-content: center; color: var(--muted); font-size: 20px; line-height: 1; transition: all 0.2s; z-index: 10; }

.artist-close-btn:hover { background: rgba(10, 10, 10, 0.9); border-color: var(--gold); color: var(--gold); transform: scale(1.05); }

.artist-card[data-expanded="true"] .artist-close-btn { display: flex; }

.artist-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 1px solid transparent;
}

.artist-card[data-expanded="true"] .artist-details { max-height: none; padding: 28px 36px 32px; grid-column: 2; grid-row: 2; overflow-y: auto; overflow-x: hidden; background: var(--surface); }

.artist-details-content { padding: 0; } .artist-card[data-expanded="true"] .artist-name { font-size: 28px; margin-bottom: 6px; letter-spacing: 0.06em; } .artist-card[data-expanded="true"] .artist-genre { font-size: 14px; margin-bottom: 14px; opacity: 0.8; } .artist-card[data-expanded="true"] .artist-bio { margin-top: 14px; font-size: 14px; line-height: 1.75; color: rgba(245, 240, 232, 0.75); }

.artist-details-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 20px;
}

.artist-details-content h3:first-child {
  margin-top: 0;
}

.artist-details-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}

.artist-details-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.artist-details-content ul li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.artist-details-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.artist-expand-btn { grid-column: 1 / -1; grid-row: 3; width: 100%; background: transparent; border: none; border-top: 1px solid var(--border); padding: 14px; font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s, color 0.2s; margin-top: auto; }

.artist-card[data-expanded="true"] .artist-expand-btn { background: var(--off-black); }

.artist-expand-btn:hover {
  background: var(--gold-dim);
  color: var(--white);
}

.expand-icon {
  transition: transform 0.3s ease;
}

.artist-card[data-expanded="true"] .expand-icon {
  transform: rotate(180deg);
}

.artist-card[data-expanded="true"] .expand-text { display: none; } .artist-card[data-expanded="true"] .expand-text::before { content: 'Show Less'; display: inline; }

.artist-card[data-expanded="false"] .expand-text::after {
  content: '';
}


/* Scroll arrows for artist carousel */ .scroll-arrow { position: absolute; top: 40%; transform: translateY(-50%); z-index: 30; background: transparent; border: 1px solid rgba(200, 169, 110, 0.4); color: var(--gold); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; opacity: 0.8; } .scroll-arrow:hover { opacity: 1; border-color: var(--gold); transform: translateY(-50%) scale(1.1); } .scroll-arrow svg { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6)); width: 24px; height: 24px; } .scroll-arrow-left { left: 20px; } .scroll-arrow-right { right: 20px; }




/* Artist social icons */
.artist-socials {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.artist-card:hover .artist-socials { opacity: 1; pointer-events: all; }

.artist-social-link { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, opacity 0.2s; opacity: 0.85; }

.artist-social-link:hover { transform: scale(1.15); opacity: 1; }

.artist-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
























































.artist-card-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
}

.artist-card-backdrop.active {
  display: block;
}



/* Community page styles */
.community-section {
  padding: 80px var(--content-pad) var(--space-xl);
}

.community-header {
  margin-bottom: 64px;
}

.community-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.community-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
}

.community-category-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.community-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px 24px;
}

.community-list li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  transition: color 0.2s;
}

.community-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  opacity: 0.6;
}

.community-list li:hover {
  color: var(--white);
}

.community-list li:hover::before {
  opacity: 1;
}

@media (max-width: 900px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .community-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 600px) {
  .community-category {
    padding: 24px;
  }

  .community-list {
    grid-template-columns: 1fr;
  }
}


/* Page navigation arrow */ .page-nav-link { display: flex; align-items: center; justify-content: center; width: 80px; height: 64px; color: var(--gold); flex-shrink: 0; } .page-nav-link svg { flex-shrink: 0; }




