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

:root {
  --bg: #0a0a0a;
  --surface: #111;
  --text: #eee;
  --muted: #888;
  --accent-halo: #c8a2ff;
  --accent-horns: #ff4d6d;
  --accent-resident: #4dd4ff;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Glitch Overlay ===== */
.glitch-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255 255 255 / .015) 2px,
    rgba(255 255 255 / .015) 4px
  );
  z-index: 9999;
}

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10 10 10 / .85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255 255 255 / .06);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: .15em;
  background: linear-gradient(135deg, var(--accent-halo), var(--accent-horns));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active-link {
  color: var(--accent-halo);
  position: relative;
}
.nav-links a.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--accent-halo), var(--accent-horns));
  border-radius: 1px;
}
.nav-ig { display: flex; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, .8);
  z-index: 0;
}

.hero-content { z-index: 1; }

.hero-badge {
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  margin-bottom: .5rem;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--accent-halo), var(--accent-horns));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-amp {
  display: block;
  font-size: .4em;
  color: var(--muted);
  margin: .25em 0;
  -webkit-text-fill-color: initial;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .5em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.cta-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem;
  border: 1px solid var(--accent-horns);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-horns);
  transition: all .3s;
}
.cta-btn:hover {
  background: var(--accent-horns);
  color: var(--bg);
}

.hero-scroll {
  position: absolute; bottom: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .2em; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ===== Sections Shared ===== */
.section-label {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--accent-halo);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

/* ===== About ===== */
.about { padding: 6rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-reel {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.about-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity .8s ease;
  opacity: 1;
}

.about-stats-row {
  margin-top: 2.5rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-halo), var(--accent-horns));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin-top: .25rem;
}

/* ===== Artists ===== */
.artists-section { padding: 6rem 0; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 100%;
}
.artists-grid .artist-card {
  max-width: 450px;
}

.artist-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255 255 255 / .06);
  transition: transform .3s, box-shadow .3s;
  scroll-margin-top: 5rem;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0 0 0 / .4);
}

.artist-card-inner { padding: 2rem; text-align: center; }

.artist-avatar {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}

.avatar-glyph { font-size: 2rem; }
.avatar-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-halo);
  opacity: .4;
}

.artist-card--horns .avatar-ring { border-color: var(--accent-horns); }
.artist-card--resident .avatar-ring { border-color: var(--accent-resident); }
.artist-card--guest .avatar-ring { border-color: #ffd700; }
.artist-card--guest .artist-role { color: #ffd700; }

.artist-status {
  font-size: .7rem;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: .75rem;
}
.artist-status--past {
  background: rgba(255 255 255 / .06);
  color: var(--muted);
}
.artist-status--upcoming {
  background: rgba(255 215 0 / .12);
  color: #ffd700;
}

.guest-group-label {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .3em;
  color: #ffd700;
  padding: 1rem 0 .25rem;
}
.guest-group-label:first-child {
  padding-top: 0;
}

.guest-invite {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255 215 0 / .15);
  border-radius: 12px;
  background: rgba(255 215 0 / .03);
}
.guest-invite p {
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
}
.guest-invite a {
  color: #ffd700;
  border-bottom: 1px solid rgba(255 215 0 / .3);
  transition: border-color .3s;
}
.guest-invite a:hover { border-color: #ffd700; }

.preview-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Page sections (for subpages) */
.page-section {
  padding: 6rem 0;
}
.page-section:first-of-type {
  padding-top: 8rem;
}

.artist-dates {
  font-size: .8rem;
  letter-spacing: .1em;
  color: #ffd700;
  margin-bottom: .75rem;
  opacity: .85;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.artist-aka {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .25rem;
}

.artist-role {
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--accent-halo);
  margin-bottom: 1rem;
}
.artist-card--horns .artist-role { color: var(--accent-horns); }
.artist-card--resident .artist-role { color: var(--accent-resident); }

.artist-bio {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.artist-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem;
  margin-bottom: 1.25rem;
}
.artist-tags span {
  padding: .25rem .65rem;
  border: 1px solid rgba(255 255 255 / .1);
  border-radius: 20px;
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--muted);
}

.artist-links {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}

.artist-links-buttons {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-wrap: wrap;
}

.artist-ig {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
  transition: color .3s;
}
.artist-ig svg { color: var(--accent-horns); }
.artist-ig:hover { color: var(--text); }

.artist-book {
  padding: .3rem .75rem;
  border: 1px solid var(--accent-horns);
  border-radius: 4px;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-horns);
  transition: all .2s;
  background: none;
  cursor: pointer;
}
.artist-book:hover {
  background: var(--accent-horns);
  color: var(--bg);
}

/* ===== Visit ===== */
.visit-section { padding: 6rem 0; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.visit-info h3 {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .2em;
  margin-bottom: .5rem;
  color: var(--accent-halo);
}

.visit-info p { color: var(--muted); margin-bottom: 1.5rem; }

.visit-ig-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--muted);
  transition: color .3s;
  margin-bottom: 1.5rem;
}
.visit-ig-link:hover { color: var(--text); }

.visit-book { margin-top: .5rem; }
.visit-book p { font-size: .95rem; }

.visit-map {
  border-radius: 12px;
  overflow: hidden;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  filter: invert(90%) hue-rotate(180deg) saturate(0.3) brightness(0.7);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255 255 255 / .06);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .2em;
  background: linear-gradient(135deg, var(--accent-halo), var(--accent-horns));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .25rem;
}

.footer-sub {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: .8rem;
  color: var(--muted);
  transition: color .3s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: .7rem;
  color: rgba(255 255 255 / .3);
}

/* ===== Artist Page ===== */
.artist-page-header {
  padding: 8rem 0 3rem;
}

.artist-page-profile {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.artist-page-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent-halo);
}

.artist-page-info { flex: 1; }

.artist-page-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.artist-page-aka {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.artist-page-role {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--accent-halo);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.artist-page-bio {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 600px;
}

.artist-page-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.artist-page-link {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border: 1px solid var(--accent-horns);
  border-radius: 4px;
  color: var(--accent-horns);
  text-decoration: none;
  transition: all .2s;
}

.artist-page-link:hover {
  background: var(--accent-horns);
  color: var(--bg);
}

.artist-page-link--book {
  background: var(--accent-horns);
  border-color: var(--accent-horns);
  color: var(--bg);
}

.artist-page-link--book:hover {
  background: #fff;
  border-color: #fff;
}

/* ===== Studio Portfolio Highlights ===== */
.studio-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .5rem;
}

.studio-portfolio-item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s;
  cursor: zoom-in;
}

.studio-portfolio-item:hover {
  transform: scale(1.02);
}

.studio-portfolio-item > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--surface);
}

.studio-portfolio-avatar {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, .5);
  opacity: 0.7;
  transition: opacity .3s;
}

.studio-portfolio-item:hover .studio-portfolio-avatar {
  opacity: 1;
}

.studio-portfolio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .studio-portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .studio-portfolio-avatar { opacity: 1; width: 36px; height: 36px; }
}

/* ===== Portfolio Overlay ===== */
.portfolio-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  flex-direction: column;
}

.portfolio-overlay.active { display: flex; }

.portfolio-overlay-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255 255 255 / .08);
  padding: 1.25rem 2rem;
}

.portfolio-overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255 255 255 / .1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.portfolio-overlay-close:hover { background: rgba(255 255 255 / .2); }

.portfolio-overlay-artist {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-overlay-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-halo);
}

.portfolio-overlay-info { flex: 1; }

.portfolio-overlay-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}

.portfolio-overlay-aka {
  font-size: .8rem;
  color: var(--muted);
}

.portfolio-overlay-role {
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--accent-halo);
  text-transform: uppercase;
}

.portfolio-overlay-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.35rem;
}

.portfolio-overlay-links a {
  font-size: .75rem;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color .2s;
}

.portfolio-overlay-links a:hover { color: var(--text); }

.portfolio-overlay-links .artist-book {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border: 1px solid var(--accent-horns);
  border-radius: 4px;
  color: var(--accent-horns);
}

.portfolio-overlay-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 0 4rem;
}

/* ===== Portfolio Grid ===== */
.artist-portfolio {
  padding: 2rem 0 6rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .5rem;
}

.portfolio-grid img,
.portfolio-grid video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s;
  background: var(--surface);
  min-height: 150px;
}

.portfolio-grid img:hover,
.portfolio-grid video:hover {
  transform: scale(1.02);
}

.portfolio-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
}

/* ===== Booking Form ===== */
.booking-page { padding: 8rem 0 4rem; }
.booking-container { max-width: 700px; }

.booking-artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.booking-artist-card {
  background: var(--surface);
  border: 1px solid rgba(255 255 255 / .08);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s, transform .2s;
}

.booking-artist-card:hover {
  border-color: var(--accent-halo);
  transform: translateY(-2px);
}

.booking-artist-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.booking-artist-card-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.booking-artist-card-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.booking-selected-artist {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255 255 255 / .08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.booking-sa-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-halo);
}

.booking-sa-info { flex: 1; }
.booking-sa-name { font-weight: 600; }
.booking-sa-role {
  font-size: 0.75rem;
  color: var(--accent-halo);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-display);
}

.booking-form { margin-top: 1rem; }

.booking-section-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-halo);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255 255 255 / .08);
}

.booking-section-title:first-child { margin-top: 0; }

.booking-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 0.5rem;
}

.booking-field {
  margin-bottom: 1.25rem;
}

.booking-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 0.35rem;
}

.booking-hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  opacity: 0.6;
  display: block;
  margin-top: 0.15rem;
}

.booking-field input[type="text"],
.booking-field input[type="email"],
.booking-field input[type="tel"],
.booking-field input[type="url"],
.booking-field select,
.booking-field textarea {
  width: 100%;
  background: rgba(255 255 255 / .05);
  border: 1px solid rgba(255 255 255 / .12);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  transition: border-color .2s;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--accent-halo);
}

.booking-field textarea { resize: vertical; line-height: 1.6; }

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-radio-group {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.25rem;
}

.booking-radio {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem !important;
  color: var(--text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
}

.booking-radio input[type="radio"] {
  width: auto;
  accent-color: var(--accent-halo);
}

.booking-upload-zone {
  border: 2px dashed rgba(255 255 255 / .12);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-size: 0.85rem;
}

.booking-upload-zone:hover,
.booking-upload-zone.drag-active {
  border-color: var(--accent-halo);
  color: var(--text);
}

.booking-ref-preview {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.booking-ref-thumb {
  position: relative;
  width: 72px;
  height: 72px;
}

.booking-ref-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.booking-ref-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--danger);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-submit {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

/* Flash selection banner in booking form */
.booking-flash-selection {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--accent-halo);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.booking-flash-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.booking-flash-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: .15em;
  color: var(--accent-halo);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.booking-flash-title {
  font-weight: 600;
  font-size: 1rem;
}

.booking-flash-price {
  font-weight: 600;
  color: var(--accent-halo);
  font-size: 0.9rem;
}

.booking-flash-exclusive {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0.1rem 0.4rem;
  border: 1px solid rgba(255 255 255 / .2);
  border-radius: 3px;
  color: var(--muted);
  display: inline-block;
  margin-top: 0.25rem;
}

.booking-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success */
.booking-success {
  text-align: center;
  padding: 4rem 0;
}

.booking-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-halo);
  color: #000;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.booking-success h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.booking-success p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.booking-success .cta-btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .booking-row { grid-template-columns: 1fr; }
  .booking-page { padding: 6rem 0 3rem; }
  .booking-artist-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

/* ===== Flash Grid ===== */
.flash-intro {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.flash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.flash-card {
  background: var(--surface);
  border: 1px solid rgba(255 255 255 / .08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}

.flash-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255 255 255 / .15);
}

.flash-card--unavailable { opacity: 0.5; }

.flash-card-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.flash-card-info { padding: 1rem; }

.flash-card-title {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.flash-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.flash-card-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
}

.flash-card-price {
  font-weight: 600;
  color: var(--accent-halo);
}

.flash-card-exclusive {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(255 255 255 / .2);
  border-radius: 4px;
  color: var(--muted);
}

.flash-status {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-weight: 600;
}

.flash-design-line {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255 255 255 / .05);
  font-size: 0.85rem;
}

.flash-design-line:last-child { border-bottom: none; }

.flash-design-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.flash-design-num {
  font-weight: 700;
  color: var(--accent-halo);
  flex-shrink: 0;
}

.flash-design-title {
  flex: 1;
  min-width: 0;
}

.flash-design-bottom {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flash-book-btn {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border: 1px solid var(--accent-horns);
  border-radius: 4px;
  color: var(--accent-horns);
  background: none;
  cursor: pointer;
  text-decoration: none;
  margin-left: auto;
  transition: all .2s;
  white-space: nowrap;
}

.flash-book-btn:hover {
  background: var(--accent-horns);
  color: var(--bg);
}

.flash-status--claimed { background: #fbbf24; color: #000; }
.flash-status--tattooed { background: var(--muted); color: #000; }

@media (max-width: 768px) {
  .flash-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0 0 0 / .85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-container {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img,
.lightbox-video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  box-shadow: 0 20px 60px rgba(0 0 0 / .5);
}

.lightbox-close {
  position: absolute; top: -2.5rem; right: -0.5rem;
  width: 36px; height: 36px;
  background: rgba(255 255 255 / .15);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
  z-index: 2001;
}
.lightbox-close:hover { background: rgba(255 255 255 / .3); }

.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255 255 255 / .12);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
  z-index: 2001;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255 255 255 / .25); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-counter {
  position: absolute; bottom: -2rem;
  left: 50%; transform: translateX(-50%);
  font-size: .75rem;
  color: rgba(255 255 255 / .5);
  letter-spacing: .15em;
}

.lightbox-dots {
  position: absolute; bottom: -2rem;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  align-items: center;
}

.lightbox-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255 255 255 / .25);
  transition: background .3s, transform .3s;
  cursor: pointer;
  border: none; padding: 0;
}
.lightbox-dot.active {
  background: rgba(255 255 255 / .8);
  transform: scale(1.3);
}

/* ===== Hamburger Menu ===== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-reel { max-width: 400px; margin: 0 auto; }
  .about-stats { flex-direction: row; justify-content: center; gap: 2rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .nav-hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 260px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    background: rgba(10 10 10 / .97);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(255 255 255 / .08);
    transition: right .3s ease;
    gap: 1.25rem;
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a,
  .nav-links a:not(.nav-ig) { display: block; font-size: 1rem; }
  .nav-links .nav-ig { margin-top: 0.5rem; }
  .artists-grid { grid-template-columns: 1fr; }
  .hero { padding: 2rem 1rem; }
  .hero-badge { font-size: .65rem; }
  .cta-btn { padding: .75rem 1.5rem; font-size: .7rem; }
  .footer-links { flex-direction: column; gap: .75rem; }
  .visit-map iframe { height: 250px; }
  .container { padding: 0 1rem; }
  .section-title { font-size: 1.6rem; }
  .artist-card-inner { padding: 1.5rem; }
  .artist-page-profile { flex-direction: column; align-items: center; text-align: center; }
  .artist-page-photo { width: 120px; height: 120px; }
  .artist-page-bio { max-width: 100%; }
  .artist-page-links { justify-content: center; }
  .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .portfolio-overlay-header { padding: 1rem; }
  .portfolio-overlay-close { top: 1rem; right: 1rem; }
  .portfolio-overlay-name { font-size: 0.95rem; }
  .portfolio-overlay-photo { width: 44px; height: 44px; }
  .lightbox-container { max-width: 95vw; }
  .lightbox-prev { left: -4px; }
  .lightbox-next { right: -4px; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1rem; }
  .lightbox-close { top: -2.5rem; right: 0; }
}
