/* ═══════════════════════════════════════════
   DESIGN SYSTEM — JANSØUND EPK
   Cyber-Brutalism · Dark Mode · Industrial
═══════════════════════════════════════════ */
:root {
  --black:   #000000;
  --white:   #ffffff;
  --grey-90: #0a0a0a;
  --grey-85: #111111;
  --grey-80: #161616;
  --grey-70: #1c1c1c;
  --grey-60: #282828;
  --grey-40: #888888; /* Improved contrast for accessibility */
  --grey-20: #cccccc;
  --grey-10: #f0f0f0;
  --border:  1px solid rgba(255,255,255,0.12);
  --border-bright: 1px solid rgba(255,255,255,0.55);
  --ff-title: 'Space Mono', 'Courier New', monospace;
  --ff-body:  'Space Grotesk', 'Helvetica Neue', sans-serif;
  --nav-h: 80px;
}

@font-face {
  font-family: 'Vermin Vibes';
  src: url('../fonts/Vermin-Vibes.woff2') format('woff2'),
       url('../fonts/Vermin-Vibes.woff') format('woff'),
       url('../fonts/vermin-vibes.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global Heading Font Fallback */
h1, h2, h3, h4, h5, h6, .gallery-title {
  font-family: 'Vermin Vibes', sans-serif;
}

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

html { 
  scroll-behavior: smooth; 
  max-width: 100%; 
  overflow-x: hidden; 
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Additional Styles */
.header-logo {
  height: 72px;
  width: auto;
  filter: brightness(1);
  transition: height 0.3s ease;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.t-hero {
  font-family: 'Vermin Vibes', var(--ff-title);
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.t-section {
  font-family: 'Vermin Vibes', var(--ff-title);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.t-label {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-20);
}
.t-tag {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   COMMON UTILITIES
══════════════════════════════════════════ */
.grid-line-h {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.grid-line-v {
  width: 1px;
  background: rgba(255,255,255,0.10);
  align-self: stretch;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px) saturate(0.2);
  -webkit-backdrop-filter: blur(16px) saturate(0.2);
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 12px;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  align-items: stretch;
}
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 24px 12px;
  height: 100%;
  box-sizing: border-box;
  font-family: var(--ff-title);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-20);
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { 
  color: white; 
  border-bottom-color: white;
}

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.section {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   SECTION 01 — HERO
══════════════════════════════════════════ */
#hero {
  display: flex;
  flex-direction: column;
  background: var(--black);
  height: 100vh;
  min-height: 0;
  padding-top: var(--nav-h);
  box-sizing: border-box;
}

.hero-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  flex: 1;
  min-height: 0;
}

/* LEFT COLUMN — artist photo */
.hero-photo-col {
  position: relative;
  border-right: var(--border);
  overflow: hidden;
}
.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.08) brightness(0.88) grayscale(0.12);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-photo-col:hover img { transform: scale(1.0); }

/* photo overlays */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(0,0,0,0.65) 100%),
              linear-gradient(to top,   rgba(0,0,0,0.5) 0%, transparent 40%);
}
.hero-photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* RIGHT COLUMN — title block */
.hero-title-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  background: var(--grey-90);
}
.hero-eyebrow { 
  justify-content: center; 
  position: relative; 
  z-index: 1;
  font-family: var(--ff-title);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-40);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--grey-40);
}

.hero-title-col .t-hero {
  line-height: 0.88;
  margin-bottom: 32px;
}

.hero-slash {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--white);
  margin: 0 auto 20px auto;
}
.hero-subtitle {
  font-family: var(--ff-title);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey-20);
  margin-bottom: 56px;
  width: 100%;
  max-width: 520px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
}
.hero-meta-cell {
  padding: 16px 20px;
  border-right: var(--border);
  border-bottom: var(--border);
}
.hero-meta-cell:last-child { border-right: none; }
.hero-meta-cell:nth-last-child(-n+2) { border-bottom: none; }
.meta-val {
  font-family: var(--ff-title);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4px;
}

/* bottom bar */
.hero-footer-bar {
  border-top: var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.hero-footer-scroll {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--grey-40);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--white);
  animation: scanline 2s linear infinite;
}
@keyframes scanline { 0%{left:-100%} 100%{left:100%} }

.hero-footer-agency {
  padding: 14px 28px;
  border-left: var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.agency-badge {
  font-family: var(--ff-title);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.agency-logo {
  font-family: var(--ff-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-10);
  line-height: 1;
}

/* ══════════════════════════════════════════
   SECTION 02 — BIO
══════════════════════════════════════════ */
#bio {
  background: var(--grey-90);
}
.bio-header {
  border-bottom: var(--border);
  padding: 48px 60px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 32px;
}
.bio-header-num {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--grey-40);
  padding-bottom: 6px;
}
.bio-header-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin-bottom: 6px;
}

.bio-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.bio-col {
  padding: 48px 44px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bio-col:last-child { border-right: none; }

.bio-col-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: var(--border);
}
.bio-col-icon {
  font-size: 1rem;
  opacity: 0.5;
}
.bio-col-title {
  font-family: var(--ff-title);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
}

.bio-col p {
  color: var(--grey-10);
  font-size: 0.92rem;
  line-height: 1.75;
}
.bio-col strong {
  color: var(--white);
  font-weight: 600;
}

/* photo panel in bio */
.bio-photo-panel {
  grid-column: 1;
  grid-row: 3;
  border-top: var(--border);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.bio-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(0.4) contrast(1.1);
}
.bio-photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--grey-90) 0%, transparent 50%);
}

/* stats strip */
.bio-stats {
  border-top: var(--border);
  grid-column: 2 / 4;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.bio-stat {
  padding: 32px 36px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bio-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-title);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--grey-20);
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   SECTION 03 — MUSIC / SOUNDS
══════════════════════════════════════════ */
#music {
  background: var(--black);
}
.music-header {
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  padding: 48px 60px 40px;
  gap: 24px;
}
.music-header-line { align-self: center; }

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

.track-row {
  display: grid;
  grid-template-columns: 56px auto 1fr auto;
  align-items: center;
  border-bottom: var(--border);
  gap: 0;
  transition: background 0.2s;
  cursor: pointer;
}
.track-row:hover { background: rgba(255,255,255,0.025); }

.track-index {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 80px;
  border-right: var(--border);
  font-family: var(--ff-title);
  font-size: 0.55rem;
  color: var(--grey-40);
  letter-spacing: 0.1em;
}
.track-thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
  border-right: var(--border);
}
.track-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.1);
}
.track-info {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.track-artist {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.track-name {
  font-family: var(--ff-title);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.track-waveform {
  width: 100%;
  height: 36px;
  margin-top: 8px;
  opacity: 0.35;
}
.track-waveform-bar {
  display: grid;
  grid-template-columns: repeat(80, 1fr);
  gap: 1px;
  height: 100%;
  align-items: end;
}
.wf-bar {
  background: var(--white);
  width: 100%;
  border-radius: 0;
}

.track-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding: 20px 28px;
  border-left: var(--border);
  min-width: 180px;
}
.track-tag {
  font-family: var(--ff-title);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: var(--border);
  padding: 3px 8px;
  color: var(--grey-20);
}
.track-duration {
  font-family: var(--ff-title);
  font-size: 0.7rem;
  color: var(--grey-40);
  letter-spacing: 0.06em;
}
.track-play-btn {
  width: 28px;
  height: 28px;
  border: var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.track-row:hover .track-play-btn {
  background: var(--white);
}
.track-play-btn svg { transition: fill 0.2s; }
.track-row:hover .track-play-btn svg { fill: var(--black); }

/* soundcloud embeds row */
.music-embeds {
  padding: 52px 60px;
  border-top: var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.embed-cell {
  padding: 0 20px 0 0;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.embed-cell:first-child { padding-left: 0; }
.embed-cell:last-child { border-right: none; padding-right: 0; }
.embed-label {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-40);
  padding-bottom: 12px;
  border-bottom: var(--border);
}
.embed-frame {
  aspect-ratio: 4/3;
  background: var(--grey-80);
  overflow: hidden;
  border: var(--border);
  position: relative;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 14px 40px;
  min-height: 44px; /* Tactile size */
  background: var(--white);
  color: var(--black);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--white);
  position: relative;
  z-index: 10;
  width: auto;
  text-align: center;
}
.hero-cta-btn:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.embed-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════
   SECTION 04 — GALLERY
══════════════════════════════════════════ */
#gallery {
  background: var(--grey-90);
}
.gallery-header {
  padding: 48px 60px 40px;
  border-bottom: var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 320px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  border-right: var(--border);
  border-bottom: var(--border);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); filter: grayscale(0.1) contrast(1.1); }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.08);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.55s ease;
}
/* mosaic layout */
.gi-video { grid-column: 1 / 8;  grid-row: 1 / 3; }
.gi-foto1 { grid-column: 8 / 13; grid-row: 1; }
.gi-foto2 { grid-column: 8 / 13; grid-row: 2; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  transform: translateY(0);
  transition: transform 0.3s;
  text-align: center;
  color: var(--white);
}
.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--grey-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gallery-placeholder span {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--grey-40);
  text-transform: uppercase;
}
.gallery-placeholder-icon { font-size: 1.8rem; opacity: 0.2; }

/* ══════════════════════════════════════════
   SECTION 05 — ASSETS / LOGISTIC
══════════════════════════════════════════ */
#assets {
  background: var(--black);
}
.assets-header {
  padding: 48px 60px 40px;
  border-bottom: var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* sub navigation tabs */
.assets-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.assets-tabs::-webkit-scrollbar { height: 2px; }
.assets-tabs::-webkit-scrollbar-thumb { background: var(--grey-40); }
.assets-tab {
  flex: 0 0 auto;
  padding: 10px 22px;
  min-height: 44px; /* Tactile size */
  font-family: var(--ff-title);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-40);
  border: 1px solid var(--white);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.assets-tab:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.assets-tab.active { background: var(--white); color: var(--black); }

/* RIDER TAB */
.assets-panel { display: none; }
.assets-panel.active { display: block; }

.rider-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rider-col {
  padding: 52px 60px;
  border-right: var(--border);
}
.rider-col:last-child { border-right: none; }
.rider-col-title {
  font-family: var(--ff-title);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-20);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}
.rider-equipment {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rider-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: var(--border);
}
.rider-item-num {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  color: var(--grey-40);
  letter-spacing: 0.1em;
}
.rider-item-name {
  font-family: var(--ff-title);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.rider-item-detail {
  font-size: 0.78rem;
  color: var(--grey-20);
  margin-top: 2px;
}
.rider-optional-badge {
  font-family: var(--ff-title);
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  color: var(--grey-40);
  border: var(--border);
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.rider-diagram {
  border: var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.rider-diagram-title {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-40);
  align-self: flex-start;
}
.equipment-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
  width: 100%;
}
.eq-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.eq-block {
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.eq-cdj {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: var(--border);
  position: relative;
}
.eq-cdj::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: var(--border);
}
.eq-cdj::after {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: var(--grey-60);
}
.eq-mixer {
  width: 60px;
  height: 100px;
  background: var(--grey-70);
  border: var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 8px 4px;
}
.eq-fader {
  width: 4px;
  height: 30px;
  background: var(--grey-40);
  position: relative;
}
.eq-fader::after {
  content: '';
  position: absolute;
  top: 8px; left: -4px;
  width: 12px; height: 4px;
  background: var(--white);
}
.eq-label {
  font-family: var(--ff-title);
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-40);
  text-align: center;
}
.eq-connector {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 30px;
}

/* VENUES TAB */
.venues-layout {
  padding: 52px 60px;
}
.venues-heading {
  font-family: var(--ff-title);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-20);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}
.venues-grid {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0;
}
.venue-sidebar-artist {
  border-right: var(--border);
  overflow: hidden;
  position: relative;
}
.venue-sidebar-artist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(0.6) contrast(1.1);
}
.venue-sidebar-rotate {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--ff-title);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.venue-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 40px;
}
.venue-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: var(--border);
  transition: background 0.2s;
}
a.venue-row:hover { background: rgba(255,255,255,0.03); }
.venue-row:last-child { border-bottom: none; }
.venue-name {
  font-family: var(--ff-title);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
}
.venue-city {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.venue-badge {
  font-family: var(--ff-title);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  border: var(--border);
  padding: 3px 8px;
  color: var(--grey-20);
  text-transform: uppercase;
}
.venue-logos-aside {
  border-left: var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.venue-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  border-bottom: var(--border);
}
.venue-logo-row:last-child { border-bottom: none; }
.venue-logo-text {
  font-family: var(--ff-title);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-20);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.venue-logo-row:hover .venue-logo-text { opacity: 1; }

/* HOSPITALITY TAB */
.hospitality-layout {
  display: grid;
  grid-template-columns: 1fr;
}
.hosp-col {
  padding: 52px 60px;
  border-right: var(--border);
}
.hosp-col:last-child { border-right: none; }
.hosp-title {
  font-family: var(--ff-title);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-20);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}
.hosp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hosp-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: var(--border);
}
.hosp-icon { font-size: 1rem; opacity: 0.55; }
.hosp-item-name {
  font-family: var(--ff-title);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.hosp-qty {
  font-family: var(--ff-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ══════════════════════════════════════════
   SECTION 06 — CONTACT
══════════════════════════════════════════ */
#contact {
  background: var(--black);
  border-top: var(--border);
  min-height: auto;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-left {
  padding: 80px 60px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-headline {
  font-family: 'Vermin Vibes', var(--ff-title);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.contact-subline {
  font-size: 0.9rem;
  color: var(--grey-20);
  max-width: 400px;
  line-height: 1.7;
  margin-top: 20px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--border);
  margin-top: 40px;
}
.contact-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  min-height: 44px; /* Tactile size */
  border-bottom: var(--border);
  transition: background 0.2s;
  cursor: pointer;
}
.contact-link-row:last-child { border-bottom: none; }
.contact-link-row:hover { background: rgba(255,255,255,0.04); }
.contact-link-label {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.contact-link-val {
  font-family: var(--ff-title);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.contact-link-arrow {
  font-size: 0.7rem;
  color: var(--grey-40);
}

.contact-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-socials-title {
  font-family: var(--ff-title);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-20);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.social-card {
  padding: 24px;
  border-right: var(--border);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
  cursor: pointer;
}
.social-card:hover { background: rgba(255,255,255,0.03); }
.social-card:nth-child(even) { border-right: none; }
.social-card:nth-last-child(-n+2) { border-bottom: none; }
.social-platform {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.social-handle {
  font-family: var(--ff-title);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* footer strip */
.contact-footer-strip {
  border-top: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
}
.footer-copy {
  font-family: var(--ff-title);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-40);
}
.footer-logo {
  font-family: var(--ff-title);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-20);
}

/* ══════════════════════════════════════════
   DIAGONAL MARQUEE STRIP
══════════════════════════════════════════ */
.marquee-strip {
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  background: var(--grey-90);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.marquee-text {
  font-family: var(--ff-title);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-40);
  padding: 0 24px;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--grey-40);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SCANLINE ANIMATION ON HEADINGS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px) skewY(1deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .bio-body { grid-template-columns: 1fr 1fr; }
  .bio-col:nth-child(3) { grid-column: 1 / 3; border-top: var(--border); }
  .bio-stats { grid-column: 1 / 3; }
  .bio-photo-panel { grid-column: 1 / 3; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-right { border-top: var(--border); }
  .rider-layout { grid-template-columns: 1fr; }
  .rider-col { border-right: none; border-bottom: var(--border); }
  .venues-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #nav { 
    padding: 0 15px; 
  }
  .nav-logo { 
    padding: 0;
  }
  .header-logo { height: 28px; }
  .menu-toggle {
    display: block !important;
    position: relative;
    z-index: 1002;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    padding: 0;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a { 
    padding: 10px 0 !important; 
    font-size: 1.5rem !important; 
    font-family: 'Vermin Vibes', sans-serif !important;
    letter-spacing: 0.1em !important;
    border-bottom: none !important;
    height: auto !important;
  }
  .hero-inner { 
    display: flex; 
    flex-direction: column; 
    position: relative;
  }
  .hero-photo-col { flex: 1; min-height: 48vh; border-right: none; border-bottom: var(--border); }
  .hero-title-col { 
    flex: unset; 
    padding: 0 28px 40px; 
    position: relative; 
  }
  .hero-cta-wrapper {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-cta-btn {
    width: 90% !important;
    margin: 0 !important;
    padding: 14px 20px !important; /* Prevent text wrapping/overflow on small screens */
  }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero-meta-grid { display: none !important; }
  .bio-body { display: flex; flex-direction: column; }
  .bio-col { padding: 24px; border-right: none; border-bottom: var(--border); }
  .bio-col:nth-child(3) { grid-column: auto; }
  .bio-stats { grid-template-columns: 1fr; grid-column: auto; }
  .bio-photo-panel { 
    grid-column: auto; 
    width: 100%; 
    max-width: 280px;
    aspect-ratio: 4/5; 
    min-height: auto; 
    margin: 0 0 32px 0;
    overflow: hidden; 
    order: -1; 
  }
  .music-embeds { grid-template-columns: 1fr; }
  .embed-cell { border-right: none; border-bottom: var(--border); padding: 0 0 24px; }
  .gallery-grid { grid-auto-rows: auto; grid-template-columns: 1fr; }
  .gallery-item-overlay { 
    opacity: 1 !important; 
    background: rgba(0,0,0,0.6) !important; 
  }
  .gallery-item-title { 
    transform: none !important; 
    font-size: 1.1rem !important;
    opacity: 1 !important;
    letter-spacing: 0.15em;
  }
  /* Animation for mobile visibility since there is no hover */
  .gallery-img {
    animation: mobileSubtleScale 12s ease-in-out infinite alternate;
  }
  @keyframes mobileSubtleScale {
    from { transform: scale(1.0); }
    to { transform: scale(1.08); }
  }
  .gi-video, .gi-foto1, .gi-foto2 { 
    grid-column: auto !important; 
    grid-row: auto !important; 
    width: 100%;
  }
  .gi-video { aspect-ratio: 4/5; }
  .gi-foto1, .gi-foto2 { aspect-ratio: 1; }
  .hospitality-layout { grid-template-columns: 1fr; }
  .hosp-col { border-right: none; border-bottom: var(--border); }
  .music-header,.gallery-header,.assets-header,.bio-header,
  .contact-left,.contact-right,.rider-col,.hosp-col,.venues-layout { padding-left: 28px; padding-right: 28px; }
  .contact-footer-strip { padding: 16px 28px; }
  .assets-tabs {
    justify-content: flex-start;
    padding-bottom: 15px;
    padding-left: 28px;
    -ms-overflow-style: none;
  }
  .venue-list { padding: 0 0 0 12px; } 
  .venue-row { 
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    border-bottom: var(--border); 
    padding: 20px 0; 
    gap: 6px; 
    align-items: flex-start; 
  } 
  .venue-row .t-label {
    font-size: 0.55rem;
    color: var(--white);
    opacity: 0.6;
  }  .venue-name { font-size: 1.2rem; }
  .venue-sidebar-rotate {
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    position: static;
    width: auto;
    height: auto;
    text-align: left;
    padding: 0 15px 0 0;
    border-bottom: none;
    border-right: var(--border);
    margin-bottom: 0;
    font-size: 0.65rem;
    white-space: nowrap;
    color: var(--grey-40);
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .venues-grid { 
    display: grid; 
    grid-template-columns: auto 1fr; 
    gap: 10px;
    align-items: stretch;
  }
  .rider-diagram {
    min-height: 280px !important;
  }
}

/* ══════════════════════════════════════════
   LANGUAGE SWITCHER & TRANSLATION SYSTEM
   ══════════════════════════════════════════ */
html[lang="es"] .lang-en { display: none !important; }
html[lang="en"] .lang-es { display: none !important; }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1002;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-title);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lang-btn {
  background: none !important;
  border: none !important;
  color: var(--grey-40);
  cursor: pointer;
  padding: 0 !important;
  transition: color 0.3s ease;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
}
.lang-btn.active {
  color: var(--white) !important;
}
.lang-btn:hover {
  color: var(--white) !important;
}
.lang-separator {
  color: var(--grey-60);
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-controls {
    gap: 16px;
  }
  .lang-selector {
    font-size: 0.75rem;
  }
  #nav-menu.open ~ .nav-controls .lang-selector {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* ══════════════════════════════════════════
   PREMIUM CUSTOM CURSOR
   ══════════════════════════════════════════ */
@media (hover: hover) {
  html, body, a, button, select, input, textarea, .track-row, .social-card, .gallery-item {
    cursor: none !important;
  }

  .custom-cursor-arrow {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 99999;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .custom-cursor-arrow svg path {
    transition: fill 0.3s ease, stroke 0.3s ease;
  }

  /* Hover state: fill arrow tip with white */
  .custom-cursor-arrow.hover svg path {
    fill: var(--white);
  }

  .custom-cursor-ring {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transition: background-color 0.3s ease, 
                border-color 0.3s ease;
    will-change: transform;
  }

  /* Hover state: fill ring with white and blend mode difference */
  .custom-cursor-ring.hover {
    background-color: var(--white);
    border-color: var(--white);
    mix-blend-mode: difference;
    border-width: 0;
  }
}

@media (hover: none) {
  .custom-cursor-arrow, .custom-cursor-ring {
    display: none !important;
  }
}

/* ══════════════════════════════════════════
   HERO PHOTO CONTAINMENT OPTIMIZATION
   ══════════════════════════════════════════ */
.hero-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 768px) {
  .hero-photo-col {
    flex: unset !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 960 / 1080 !important;
    min-height: auto !important;
    border-right: none;
    border-bottom: var(--border);
  }
  .hero-photo-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

/* ══════════════════════════════════════════
   UI CLEANUP ALIGNMENTS
   ══════════════════════════════════════════ */
.hero-footer-bar {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center;
}

/* ══════════════════════════════════════════
   SEQUENTIAL INITIAL LOAD ANIMATION
   ══════════════════════════════════════════ */
.load-reveal {
  opacity: 0;
  transform: translateY(30px) skewY(1deg);
  animation: loadRevealAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--delay) * 150ms);
  will-change: transform, opacity;
}

@keyframes loadRevealAnim {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

/* Smooth zoom entrance for hero photo */
.hero-photo-col img {
  opacity: 0;
  transform: scale(1.1);
  animation: imgEntranceAnim 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 200ms;
}

@keyframes imgEntranceAnim {
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* ══════════════════════════════════════════
   MOBILE MENU TOGGLE BUTTON (DESKTOP HIDDEN)
   ══════════════════════════════════════════ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 24px;
  height: 16px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.hamburger-line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
}

.hamburger-line:nth-child(1) {
  top: 0px;
}
.hamburger-line:nth-child(2) {
  top: 7px;
}
.hamburger-line:nth-child(3) {
  top: 14px;
}

/* Animated state when menu is open */
.menu-toggle.open .hamburger-line:nth-child(1) {
  top: 7px;
  transform: rotate(135deg);
}
.menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  left: -40px;
}
.menu-toggle.open .hamburger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}

/* ══════════════════════════════════════════
   HERO CTA WRAPPER & CENTERING (DESKTOP)
   ══════════════════════════════════════════ */
.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
.hero-cta-btn {
  margin: 0 !important;
}
