/* Brett Black Bass — Stylesheet */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bone:        #e8e0cc;
  --bone-bright: #f4f0e4;
  --bone-dim:    #b0a888;
  --bone-faint:  #6a6454;
  --black:       #0a0a0a;
  --black-mid:   #141414;
  --black-light: #222222;
  --black-warm:  #1a1814;
  --red-slash:   #cc2200;
  --white-pure:  #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Permanent Marker', cursive;
  --font-ui:      'Oswald', sans-serif;
  --font-sub:     'Teko', sans-serif;
  --font-body:    'Special Elite', serif;

  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   32px;
  --space-xl:   64px;
  --space-2xl:  120px;

  --border:      2px solid var(--bone);
  --border-thin: 1px solid var(--bone);
  --border-dim:  1px solid var(--black-light);
  --radius:      0px;

  --ease: 0.18s ease;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--black-light);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-brett {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--bone);
  transform: rotate(-2deg);
  display: block;
  opacity: 0.8;
  margin-bottom: -2px;
}
.nav-logo-black {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--bone-bright);
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-decoration: none;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--bone-bright); }

.nav-cta {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--bone-bright);
  padding: 10px 22px;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.nav-cta:hover { background: var(--bone-dim); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--bone);
}
.nav-hamburger svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--bone);
  stroke-width: 2;
  stroke-linecap: round;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

/* The one red moment */
.hero-red-bar {
  width: 4px;
  height: 160px;
  background: var(--red-slash);
  flex-shrink: 0;
  align-self: center;
}

.hero-content { flex: 1; }

.hero-name {
  margin-bottom: var(--space-md);
}
.hero-first {
  font-family: var(--font-script);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--bone);
  letter-spacing: 2px;
  line-height: 1;
  transform: rotate(-2.5deg) translateX(-4px);
  display: inline-block;
  opacity: 0.95;
  margin-bottom: -8px;
}
.hero-last {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 12vw, 148px);
  color: var(--bone-bright);
  letter-spacing: -3px;
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #000, 7px 7px 0 #111;
  display: block;
}

.hero-tagline {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.hero-cred {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--bone-faint);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--bone-bright);
  padding: 16px 36px;
  border: 2px solid var(--bone-bright);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.btn-primary:hover { background: transparent; color: var(--bone-bright); }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  padding: 14px 34px;
  border: 2px solid var(--bone);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.btn-secondary:hover { background: var(--bone); color: var(--black); }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: transparent;
  padding: 10px 24px;
  border: 1px solid var(--black-light);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease);
}
.btn-ghost:hover { border-color: var(--bone); color: var(--bone-bright); }

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: var(--space-2xl) 48px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-wrap {
  padding: var(--space-2xl) 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--bone-faint);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-md);
}

.t-section {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  color: var(--bone-bright);
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 3px 3px 0 #000;
}

.t-sub {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--bone-dim);
  text-transform: uppercase;
}

.t-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--bone-dim);
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider-slash {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.divider-slash .line { flex: 1; height: 1px; background: var(--black-light); }
.divider-slash .slash {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--bone-faint);
  line-height: 1;
  transform: rotate(-15deg);
  display: inline-block;
  opacity: 0.4;
}

.divider-orn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}
.divider-orn .line { flex: 1; height: 1px; background: var(--bone); opacity: 0.2; }
.divider-orn .diamonds { display: flex; align-items: center; gap: 5px; }
.divider-orn .d { width: 5px; height: 5px; background: var(--bone); transform: rotate(45deg); opacity: 0.6; }
.divider-orn .d.sm { width: 3px; height: 3px; opacity: 0.3; }

.divider-full {
  width: 100%;
  height: 1px;
  background: var(--black-light);
}

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.bio-text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--bone-dim);
  margin-bottom: var(--space-md);
}

.bio-text p strong {
  color: var(--bone);
  font-style: normal;
}

.bio-text em {
  color: var(--bone);
}

.bio-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 100px;
}

.stat-block {
  background: var(--black-mid);
  border: 1px solid var(--black-light);
  border-left: 3px solid var(--bone);
  padding: var(--space-md) var(--space-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--bone-bright);
  line-height: 1;
  text-shadow: 2px 2px 0 #000;
}

.stat-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--bone-faint);
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-detail {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.7;
}

/* ============================================================
   DISCOGRAPHY
   ============================================================ */
.disco-section {
  background: var(--black-mid);
  border-top: 1px solid var(--black-light);
  border-bottom: 1px solid var(--black-light);
}

.disco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.disco-band-header {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--bone-faint);
  text-transform: uppercase;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--black-light);
  margin-bottom: var(--space-sm);
}

.card-track {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--black-light);
  transition: background var(--ease);
  cursor: default;
}
.card-track:hover { background: var(--black-light); }

.card-track-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bone-faint);
  opacity: 0.5;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

.card-track-info { flex: 1; }

.card-track-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--bone-bright);
  text-transform: uppercase;
}

.card-track-artist {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--bone-faint);
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.card-track-role {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--bone-faint);
  flex-shrink: 0;
  text-align: right;
  letter-spacing: 0.5px;
}

/* ============================================================
   STAGES
   ============================================================ */
.stages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
  margin-top: var(--space-xl);
}

.stage-name {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-faint);
  white-space: nowrap;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.stage-name:hover { color: var(--bone-dim); border-color: var(--black-light); }

.stages-note {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--bone-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: var(--space-lg);
  opacity: 0.5;
}

/* ============================================================
   PRESS QUOTE
   ============================================================ */
.card-quote {
  border: 1px solid var(--black-light);
  border-left: 3px solid var(--red-slash);
  padding: var(--space-lg) var(--space-xl);
  background: var(--black-mid);
  position: relative;
}
.card-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--bone);
  opacity: 0.06;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.card-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.card-quote-source {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bone-faint);
  text-transform: uppercase;
  margin-top: var(--space-md);
}

/* ============================================================
   SHOWS
   ============================================================ */
.shows-section {
  background: var(--black-mid);
  border-top: 1px solid var(--black-light);
}
.show-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xl);
  border-top: 1px solid var(--black-light);
}
.show-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--black-light);
}
.show-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.show-date .show-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bone-bright);
  line-height: 1.1;
}
.show-info-venue {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--bone-bright);
  letter-spacing: 0.02em;
}
.show-info-bill {
  font-family: 'Special Elite', serif;
  font-size: 0.9rem;
  color: var(--bone-dim);
  margin-top: 2px;
}
.show-info-location {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bone-faint);
  margin-top: 4px;
}
.show-ticket-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--bone-dim);
  color: var(--bone-dim);
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  white-space: nowrap;
}
.show-ticket-btn:hover {
  border-color: var(--bone-bright);
  color: var(--black);
  background: var(--bone-bright);
}

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.booking-section {
  background: var(--black-warm);
  border-top: 1px solid var(--black-light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-lg);
}
.form-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.form-input, .form-textarea, .form-select {
  background: var(--black-mid);
  border: none;
  border-bottom: 2px solid var(--black-light);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-bottom-color: var(--bone);
  background: var(--black-light);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--bone-faint);
  opacity: 0.6;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { cursor: pointer; 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='%236a6454' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-select option { background: var(--black-mid); }

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-block {
  background: var(--black-mid);
  border: 1px solid var(--black-light);
  border-left: 3px solid var(--bone);
  padding: var(--space-md) var(--space-lg);
}

.info-block-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: var(--space-sm);
}

.info-block-value {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--bone-bright);
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  transition: color var(--ease);
}
.info-block-value:hover { color: var(--bone); }

.avail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.avail-tag {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--black-light);
  padding: 6px 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: var(--space-xl) 48px;
  border-top: 1px solid var(--black-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.footer-logo-brett {
  font-family: var(--font-script);
  font-size: 14px;
  color: var(--bone);
  transform: rotate(-2deg);
  display: block;
  opacity: 0.6;
  margin-bottom: -1px;
}
.footer-logo-black {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--bone-dim);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--bone-faint);
  text-transform: uppercase;
  text-align: center;
}

.footer-link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bone-faint);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-link:hover { color: var(--bone-dim); }

/* ============================================================
   HERO PHOTO BACKGROUND
   ============================================================ */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.35) brightness(0.42) grayscale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Strong left fade for text readability, lighter on right to show photo */
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.25) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, transparent 15%, transparent 80%, rgba(10,10,10,0.7) 100%);
}
.hero::after { z-index: 2; }
.hero-inner { position: relative; z-index: 3; }

/* ============================================================
   BIO PORTRAIT
   ============================================================ */
.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 100px;
}
.bio-portrait {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--black-light);
}
.bio-portrait-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.2) brightness(0.88) grayscale(1);
}
/* Subtle bone tint via color overlay */
.bio-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 224, 204, 0.04);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
/* Bottom fade into page */
.bio-portrait::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent);
  pointer-events: none;
  z-index: 2;
}
.bio-portrait-caption {
  position: absolute;
  bottom: 12px; left: 16px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--bone-faint);
  text-transform: uppercase;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.video-grid--bottom {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.video-channel-cta {
  flex: 1;
  padding-top: var(--space-md);
}
.video-channel-cta .t-sub { margin-bottom: var(--space-md); }
.video-channel-cta .t-body { margin-bottom: var(--space-lg); font-size: 13px; }
.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black-mid);
  border: 1px solid var(--black-light);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-embed--short {
  aspect-ratio: 9 / 16;
  max-width: 320px;
}
.video-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--bone-bright);
  text-transform: uppercase;
  line-height: 1.3;
}
.video-channel {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--bone-faint);
  margin-top: 2px;
}
.video-channel-link {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--black-light);
  color: var(--bone-faint);
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease);
  flex-shrink: 0;
}
.social-icon:hover {
  border-color: var(--bone-dim);
  color: var(--bone-bright);
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   STAGES PHOTO BACKGROUND
   ============================================================ */
.stages-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--black-light);
  border-bottom: 1px solid var(--black-light);
}
.stages-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.stages-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.4) brightness(0.28) grayscale(1);
}
.stages-bg-overlay {
  position: absolute;
  inset: 0;
  /* Darker at top (quote) and bottom (names), lighter in middle to reveal crowd */
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.88) 0%,
      rgba(10,10,10,0.45) 30%,
      rgba(10,10,10,0.45) 65%,
      rgba(10,10,10,0.88) 100%);
}
.stages-wrap .section { position: relative; z-index: 1; }

/* Pull-quote floating over the crowd photo */
.stages-pullquote {
  position: relative;
  max-width: 780px;
  padding-top: var(--space-lg);
}
.stages-pullquote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--bone);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: -16px; left: -8px;
  pointer-events: none;
}
.stages-pullquote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--bone-bright);
  line-height: 1.35;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  position: relative;
  z-index: 1;
}
.stages-pullquote-source {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--bone-faint);
  text-transform: uppercase;
  margin-top: var(--space-md);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; position: relative; }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--black-light);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { margin-bottom: 16px; }
  .nav-links a { font-size: 14px; letter-spacing: 2px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: var(--space-lg); }
  .hero-red-bar { height: 4px; width: 80px; }
  .section { padding: var(--space-xl) 24px; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
  .disco-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-embed--short { max-width: 100%; }
  .booking-grid { grid-template-columns: 1fr; }
  .show-row { grid-template-columns: 1fr; gap: var(--space-sm); }
  .show-ticket-btn { align-self: flex-start; }
  footer { padding: var(--space-lg) 24px; }
}

@media (max-width: 600px) {
  .hero-last { letter-spacing: -2px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .stages-grid { gap: var(--space-xs) var(--space-md); }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--red-slash);
  z-index: 300;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 0.95; transform: none; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.available-badge {
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.hero-first {
  animation: heroSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-last {
  animation: heroSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}
.hero-tagline {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}
.hero-cred {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.74s both;
}
.hero-ctas {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.88s both;
}

/* ============================================================
   AVAILABLE BADGE
   ============================================================ */
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: var(--space-md);
}
.available-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-slash);
  flex-shrink: 0;
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(204,34,0,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(204,34,0,0); }
}
.available-badge-text {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ACTIVE NAV STATE
   ============================================================ */
.nav-links a.nav-active {
  color: var(--bone-bright);
}

/* ============================================================
   NAV RIGHT GROUP
   ============================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ============================================================
   FOCUS VISIBLE — Keyboard Accessibility
   ============================================================ */
:focus:not(:focus-visible) { outline: none; }

:focus-visible {
  outline: 2px solid var(--bone-bright);
  outline-offset: 3px;
}

/* Form inputs suppress outline by default — restore for keyboard users */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible,
.email-input-field:focus-visible {
  outline: 2px solid var(--bone-bright);
  outline-offset: 0;
}

/* ============================================================
   ACTIVE STATES
   ============================================================ */
.btn-primary:active {
  background: var(--bone-dim);
  border-color: var(--bone-dim);
  color: var(--black);
}
.btn-secondary:active {
  background: var(--bone-dim);
  border-color: var(--bone-dim);
  color: var(--black);
}
.btn-ghost:active {
  border-color: var(--bone);
  color: var(--bone-bright);
}
.nav-cta:active { background: var(--bone-dim); }
.show-ticket-btn:active {
  background: var(--bone-dim);
  border-color: var(--bone-dim);
  color: var(--black);
}
.email-submit-btn:active {
  background: var(--bone-dim);
  border-color: var(--bone-dim);
}

/* ============================================================
   STREAMING LINKS
   ============================================================ */
.stream-links {
  display: flex;
  gap: 8px;
  padding: 14px var(--space-lg);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--black-light);
}
.stream-link-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0.5;
  align-self: center;
  margin-right: 4px;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-faint);
  border: 1px solid var(--black-light);
  padding: 5px 12px;
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease);
  white-space: nowrap;
}
.stream-btn:hover { border-color: var(--bone-faint); color: var(--bone-dim); }

/* ============================================================
   SPONSOR STRIP
   ============================================================ */
.sponsor-strip {
  border-top: 1px solid var(--black-light);
  border-bottom: 1px solid var(--black-light);
  background: var(--black);
  padding: 48px;
}
.sponsor-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sponsor-strip-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 7px;
  color: var(--bone-faint);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
  opacity: 0.5;
}
.sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 56px;
}
.sponsor-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0.35;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  cursor: default;
}
.sponsor-name:hover { opacity: 0.75; color: var(--bone-dim); }

/* ============================================================
   EMAIL CAPTURE SECTION
   ============================================================ */
.email-section {
  background: var(--black-mid);
  border-top: 1px solid var(--black-light);
}
.email-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.email-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--bone-bright);
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 3px 3px 0 #000;
  margin: var(--space-md) 0;
}
.email-section-sub {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.85;
  color: var(--bone-faint);
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.email-input-row {
  display: flex;
}
.email-input-field {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--black-light);
  border-right: none;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 16px 18px;
  outline: none;
  transition: border-color var(--ease);
}
.email-input-field:focus { border-color: var(--bone-dim); }
.email-input-field::placeholder { color: var(--bone-faint); opacity: 0.5; }
.email-submit-btn {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--bone-bright);
  border: 1px solid var(--bone-bright);
  padding: 16px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.email-submit-btn:hover { background: transparent; color: var(--bone-bright); }
.email-disclaimer {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--bone-faint);
  opacity: 0.45;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .email-section-inner { grid-template-columns: 1fr; padding: 64px 24px; }
  .sponsor-strip { padding: 36px 24px; }
  .sponsor-logos { gap: 8px 32px; }
  .sponsor-name { font-size: 13px; }
}
