/* =============================================
   BÖHR — PORTFOLIO SITE
   Design: Editorial underground / minimal signal
   Palette: Near-black + Neon green as precision accent
   Typography: Space Grotesk (body) + Space Mono (labels)
============================================= */

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

:root {
  --bg: #050505;
  --bg2: #080808;
  --bg3: #0d0d0d;
  --surface: #111111;
  --border: rgba(255, 255, 255, 0.06);
  --border-md: rgba(255, 255, 255, 0.1);

  --accent: #00e676;
  --accent-dim: rgba(0, 230, 118, 0.12);
  --accent-line: rgba(0, 230, 118, 0.4);

  --text: #e8e8e8;
  --text-muted: #666;
  --text-dim: #3a3a3a;
  --white: #ffffff;

  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --section-pad: 110px;
  --container: 1180px;
  --radius: 4px;
  --radius-pill: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

/* --- CONTAINER --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 10px;
}

p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Section header with green signal line */
.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

h2.section-title {
  color: var(--white);
  margin-bottom: 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-md);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* --- NAV --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.35s var(--ease);
  padding: 24px 0;
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.75;
}

.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent-line) !important;
  border-radius: var(--radius-pill) !important;
  padding: 7px 20px !important;
  transition: all 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #000 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* --- HERO --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  /* Faded profile photo as background */
  background-image: url('bohr-profile.jpeg');
  background-size: cover;
  background-position: center 20%;
}

/* Dark overlay on the photo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 45%, rgba(5, 5, 5, 0.7) 75%, rgba(5, 5, 5, 0.4) 100%);
  z-index: 0;
}

/* Bottom fade */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 0;
}

/* Subtle green scan line */
#hero .hero-scanline {
  display: none;
  /* kept for potential JS use */
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-text {
  max-width: 700px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.hero-name {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: rgba(232, 232, 232, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right side: rotating disc with logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-disc {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  animation: disc-spin 30s linear infinite;
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.1), 0 0 60px rgba(0, 230, 118, 0.06);
}

.hero-disc::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 230, 118, 0.1);
  pointer-events: none;
}

.hero-disc::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-md);
  z-index: 2;
}

.hero-disc img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 0;
}

.hero-disc--fallback {
  background: transparent;
  border-color: rgba(0, 230, 118, 0.15);
}

@keyframes disc-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Pause spin on hover */
.hero-disc:hover {
  animation-play-state: paused;
  cursor: default;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

/* --- SECTIONS --- */
section {
  padding: var(--section-pad) 0;
}

#about {
  background: var(--bg2);
}

#music {
  background: var(--bg);
}

#tracks {
  background: var(--bg2);
}

#events {
  background: var(--bg);
}

#media {
  background: var(--bg2);
}

#booking {
  background: var(--bg);
}

/* Subtle top border line on sections */
#about,
#tracks,
#events,
#media,
#booking {
  border-top: 1px solid var(--border);
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

/* Neon green corner accent */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  opacity: 0.7;
  z-index: 2;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease);
  filter: grayscale(20%);
}

.about-photo-wrap:hover .about-photo {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.about-photo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 40px;
  position: absolute;
  inset: 0;
}

.about-photo-fallback svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  opacity: 0.2;
}

.about-photo-fallback p {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.about-text {
  padding-top: 8px;
}

.bio-main {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}

.bio-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 48px;
}

/* Stats as a horizontal rule with numbers */
.about-stats {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 32px 20px 0;
  border-right: 1px solid var(--border);
  margin-right: 32px;
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.about-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.social-link:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.social-link:hover svg {
  opacity: 1;
}

/* --- MUSIC --- */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.music-featured,
.music-spotify {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.music-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.music-badge::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.music-featured h3,
.music-spotify h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.music-link {
  margin-top: 18px;
  font-size: 0.82rem;
  padding: 10px 22px;
}

/* --- TRACKS --- */
.tracks-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-top: 16px;
  margin-bottom: 48px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.tracks-sub strong {
  color: var(--text-muted);
  font-weight: 400;
}

.tracks-list {
  display: flex;
  flex-direction: column;
}

/* ── Card ── */
.track-card {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  animation-delay: var(--delay, 0ms);
}

.track-card:first-child {
  border-top: 1px solid var(--border);
}

.track-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.track-cover-wrap {
  flex-shrink: 0;
}

.track-cover {
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.track-card:hover .track-cover img {
  filter: grayscale(0%);
}

.track-cover--loading .cover-skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg3) 25%, var(--surface) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.track-cover--placeholder {
  color: var(--text-dim);
}

.track-cover--placeholder svg {
  width: 24px;
  height: 24px;
  opacity: 0.3;
}

.track-numbering {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  min-width: 24px;
  letter-spacing: 0.05em;
}

.track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.track-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.track-genre-year {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.track-genre-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-label-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.track-year {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  opacity: 0.5;
}

/* ── Download button ── */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-download svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn-download:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.btn-download:hover svg {
  transform: translateY(2px);
}

/* ── Player row ── */
.track-player {
  padding: 0 0 16px;
}

.track-player iframe {
  border-radius: var(--radius);
  display: block;
  width: 100%;
}

.player-skeleton {
  height: 166px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--bg3) 25%, var(--bg2) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.track-unavailable {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 4px;
  color: var(--text-dim);
}

.track-unavailable svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.3;
}

.track-unavailable-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
}

.track-unavailable-text span {
  color: var(--text-dim);
}

.track-unavailable-text a {
  color: var(--accent);
  opacity: 0.7;
}

.track-unavailable-text a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .track-cover {
    width: 44px;
    height: 44px;
  }

  .btn-download span {
    display: none;
  }

  .btn-download {
    padding: 8px 10px;
  }
}

/* --- EVENTS --- */
.events-list {
  display: flex;
  flex-direction: column;
}

/* Table-style event rows */
.event-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  position: relative;
}

.event-card:first-child {
  border-top: 1px solid var(--border);
}

.event-card:hover {
  background: rgba(0, 230, 118, 0.025);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 8px;
  min-height: 60px;
}

.event-day {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.event-month {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.event-info {
  min-width: 0;
}

.event-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.event-venue {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.event-tag {
  padding: 5px 14px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-empty {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.event-empty p {
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.event-past .event-date-block {
  opacity: 0.35;
}

.event-past .event-name {
  color: var(--text-muted);
}

.event-past .event-card::before {
  background: var(--text-dim);
}

/* --- MEDIA KIT --- */
/* Horizontal full-width cards instead of 4-column grid */
.media-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.media-card {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: var(--bg3);
  text-align: left;
  transition: background 0.2s;
}

.media-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.media-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
  flex-shrink: 0;
}

.media-icon svg {
  width: 20px;
  height: 20px;
}

.media-text { min-width: 0; }

.media-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.media-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0;
  line-height: 1.5;
}

.media-format-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.6rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.media-coming-soon {
  color: rgba(0, 230, 118, 0.4);
  border-color: rgba(0, 230, 118, 0.12);
}

.media-card .btn {
  font-size: 0.78rem;
  padding: 9px 20px;
  flex-shrink: 0;
}

/* Stage specs */
.stage-specs {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stage-specs-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stage-specs-header h3 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.specs-flexible-badge {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-family: var(--font-mono);
  color: rgba(0, 230, 118, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--border);
  gap: 1px;
}

.spec-item {
  padding: 16px 24px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

.spec-flex {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(0, 230, 118, 0.35);
  text-transform: uppercase;
}

.spec-value {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- BOOKING --- */
.booking-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.75;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

.booking-form {
  background: transparent;
  border: none;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 28px;
}

.form-group.full {
  padding-bottom: 28px;
}

label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 10px;
  display: block;
}

.booking-form label {
  color: var(--accent);
  opacity: 0.75;
}

/* Underline-only inputs */
input,
textarea,
select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-md);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
  font-size: 0.88rem;
}

input[type="date"] {
  color-scheme: dark;
}

textarea {
  resize: none;
  min-height: 90px;
  border-bottom: 1px solid var(--border-md);
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  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='%23444' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

select option {
  background: var(--bg3);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.form-note {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.form-success,
.form-error {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.form-success {
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.15);
  color: var(--accent);
}

.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-error {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.form-error a {
  color: var(--accent);
  opacity: 0.8;
}

input[type="number"]#budgetAmount::-webkit-inner-spin-button,
input[type="number"]#budgetAmount::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"]#budgetAmount {
  appearance: textfield;
}

input.invalid,
textarea.invalid {
  border-bottom-color: rgba(239, 68, 68, 0.5);
}

input.valid {
  border-bottom-color: rgba(0, 230, 118, 0.3);
}

/* Booking info sidebar */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-info-card {
  padding: 24px;
  background: var(--bg3);
}

.booking-info-card h3 {
  font-size: 0.6rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-info-card h3::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--text-dim);
  display: block;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  word-break: break-all;
  transition: color 0.2s;
}

.contact-email svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.contact-email:hover {
  color: var(--accent);
}

.booking-socials {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: transparent;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.social-pill:last-child {
  border-bottom: none;
}

.social-pill svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  flex-shrink: 0;
}

.social-pill:hover {
  color: var(--accent);
}

.social-pill:hover svg {
  opacity: 1;
}

.booking-info-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* --- FOOTER --- */
#footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-logo-link:hover {
  opacity: 1;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  transition: all 0.2s;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .hero-disc {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 260px;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 28px 32px;
    gap: 2px;
    transition: right 0.3s var(--ease);
    border-left: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 120px 32px 80px;
    gap: 48px;
  }

  .hero-visual {
    display: flex;
    justify-content: flex-start;
  }

  .hero-disc {
    width: 160px;
    height: 160px;
  }

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

  .about-image {
    max-width: 300px;
  }

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

  .media-grid {
    flex-direction: column;
  }

  .media-card {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
  }

  .media-format-badge {
    grid-column: 2;
  }

  .media-card .btn {
    grid-column: 1 / -1;
  }

  .event-card {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .event-tag {
    display: none;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

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

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-disc {
    width: 130px;
    height: 130px;
  }

  #hero::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.92) 60%, rgba(5, 5, 5, 0.7) 100%);
  }
}