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

:root {
  --black:      #000000;
  --charcoal:   #0d0d0d;
  --dark:       #111111;
  --chrome:     #c8c8c8;
  --chrome-dim: #6a6a6a;
  --chrome-hi:  #e8e8e8;
  --white:      #ffffff;
  --accent:     #9b9b9b;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--chrome);
  outline-offset: 4px;
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--chrome);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--chrome-hi);
  outline-offset: 3px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__noise {
    animation: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  canvas.hero__particles {
    display: none;
  }

  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Background image --- */
.hero__bg {
  position: absolute;
  inset: -10%;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.05s linear;
  filter: grayscale(20%) contrast(1.05);
}

/* --- Gradient overlay --- */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.65) 45%,
      rgba(0,0,0,0.30) 100%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      transparent 40%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.75) 0%,
      transparent 25%
    );
  z-index: 1;
}

/* --- Particles canvas --- */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* --- Film grain noise texture --- */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {
  0%,100%{ background-position: 0 0; }
  10%     { background-position: -5% -10%; }
  20%     { background-position: -15% 5%; }
  30%     { background-position: 7% -25%; }
  40%     { background-position: -5% 25%; }
  50%     { background-position: -15% 10%; }
  60%     { background-position: 15% 0%; }
  70%     { background-position: 0% 15%; }
  80%     { background-position: 3% 35%; }
  90%     { background-position: -10% 10%; }
}

/* ============================================================
   HEADER
   ============================================================ */
.hero__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2.5rem 4rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  animation: fadeDown 1s ease 0.2s both;
  transition: all 0.4s ease;
}

.hero__header--scrolled {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 4rem;
  border-bottom: 1px solid rgba(200,200,200,0.1);
}

.hero__logo {
  display: flex;
  align-items: center;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(200,200,200,0.18);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(200,200,200,0.45);
  padding: 0.35rem 0.55rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  border-radius: 0;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--chrome-hi);
  border-color: rgba(200,200,200,0.45);
  background: rgba(255,255,255,0.04);
}

.lang-btn.active {
  color: var(--white);
  border-color: rgba(200,200,200,0.7);
  background: rgba(255,255,255,0.06);
}

.hero__logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.hero__logo-img:hover {
  opacity: 1;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: invert(1);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.footer__logo-img:hover {
  opacity: 0.6;
}

.hero__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.5em;
  color: var(--chrome-hi);
  text-transform: uppercase;
}

.hero__nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.hero__nav a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.hero__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--chrome);
  transition: width 0.3s ease;
}

.hero__nav a:hover {
  color: var(--chrome-hi);
}

.hero__nav a:hover::after {
  width: 100%;
}

/* ============================================================
   HERO CONTENT
   ============================================================ */
.hero__content {
  position: relative;
  z-index: 10;
  padding: 160px 4rem 6rem;
  max-width: 900px;
}

/* Tag line */
.hero__tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.4s both;
}

.hero__tag-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--chrome);
}

.hero__tag-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

/* Artist name */
.hero__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.5s both;
  position: relative;
}

.hero__name-word {
  display: inline-block;
  position: relative;
}

/* Chrome stroke ghost text */
.hero__name-word::before {
  content: attr(data-text);
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-text-stroke: 1px rgba(200,200,200,0.15);
  color: transparent;
  pointer-events: none;
}

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.6s both;
}

/* Description */
.hero__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(200,200,200,0.55);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.7s both;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 1s ease 0.85s both;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.btn__inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 1rem 2.2rem;
}

/* Primary */
.btn--primary {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
}

.btn--primary .btn__inner {
  background: var(--white);
  color: var(--black);
  transition: background 0.35s ease;
  width: 100%;
}

.btn--primary .btn__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.btn--primary:hover .btn__inner {
  background: var(--white);
}

.btn--primary:hover .btn__glow {
  opacity: 1;
}

/* Secondary */
.btn--secondary {
  background: transparent;
  border: 1px solid rgba(200,200,200,0.25);
  color: var(--chrome);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--secondary .btn__inner {
  color: var(--chrome);
  transition: color 0.3s ease;
}

.btn--secondary:hover {
  border-color: rgba(200,200,200,0.6);
}

.btn--secondary:hover .btn__inner {
  color: var(--white);
}

/* ============================================================
   STATS
   ============================================================ */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp 1s ease 1s both;
  margin-top: 1rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--chrome-hi);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(200,200,200,0.2);
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1.2s ease 1.2s both;
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,200,200,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ============================================================
   CHROME ACCENT LINES
   ============================================================ */
.hero__accent {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200,200,200,0.12) 25%,
    rgba(200,200,200,0.05) 75%,
    transparent 100%
  );
}

.hero__accent--left  { left: 3.5rem; }
.hero__accent--right { right: 3.5rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.hero__logo {
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--chrome-dim);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.mobile-nav__close:hover {
  color: var(--white);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 3rem;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 12vw, 4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,200,200,0.25);
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav__link:hover {
  color: var(--white);
  transform: translateX(6px);
}

.mobile-nav__email {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--chrome-dim);
  text-decoration: none;
  text-transform: lowercase;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.mobile-nav__email:hover {
  color: var(--chrome-hi);
}

.mobile-nav__lang {
  display: flex;
  gap: 0.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {

  /* Header */
  .hero__header {
    grid-template-columns: auto 1fr;
    padding: 1.2rem 1.5rem;
    gap: 0.5rem;
  }

  .hero__nav {
    display: none;
  }

  .lang-switcher {
    justify-content: flex-end;
    grid-column: 2;
  }

  /* Hero content */
  .hero__content {
    padding: 120px 1.5rem 4rem;
    text-align: center;
    max-width: 100%;
  }

  .hero__tag {
    justify-content: center;
  }

  .hero__name {
    font-size: clamp(4.5rem, 20vw, 7rem);
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .hero__desc {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__stats {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__stat-num {
    font-size: 1.1rem;
  }

  .hero__stat {
    align-items: center;
  }

  .hero__accent--left,
  .hero__accent--right {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  /* Bio */
  .bio__grid {
    grid-template-columns: 1fr;
  }

  .bio__img-col {
    display: none;
  }

  .bio__text-col {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .bio__label {
    justify-content: center;
  }

  .bio__divider {
    justify-content: center;
  }

  .bio__tags {
    justify-content: center;
  }

  .bio__quote {
    text-align: center;
  }

  .bio__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Rider */
  .rider__inner {
    padding: 3rem 1.5rem;
  }

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

  .rider__diagram-col {
    display: none;
  }

  /* Live */
  .live__inner {
    padding: 3rem 1.5rem;
  }

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

  .live__stats-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .live__image-col {
    display: none;
  }

  .live__title {
    font-size: clamp(3rem, 14vw, 6rem);
  }

  .live__cta-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__image-panel {
    display: none;
  }

  .contact__form-panel {
    padding: 3rem 1.5rem;
  }

  .contact__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .contact__footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================================================
   LISTEN SECTION
   ============================================================ */
.listen {
  background: var(--black);
  padding: 4rem 0;
  border-top: 1px solid rgba(200,200,200,0.08);
  border-bottom: 1px solid rgba(200,200,200,0.08);
}

.listen__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.listen__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.listen__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--chrome-dim);
}

.listen__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.listen__players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,200,200,0.08);
  border: 1px solid rgba(200,200,200,0.08);
}

.listen__player {
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.listen__player iframe {
  display: block;
}

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

.listen__link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-end;
}

.listen__link:hover {
  color: var(--chrome-hi);
}

@media (max-width: 768px) {
  .listen__inner {
    padding: 0 1.5rem;
  }
}

/* ============================================================
   DATES SECTION
   ============================================================ */
.dates {
  background: var(--black);
  padding: 6rem 0;
  border-top: 1px solid rgba(200,200,200,0.08);
  border-bottom: 1px solid rgba(200,200,200,0.08);
}

.dates__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dates__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Dates Filter Switcher */
.dates__filter {
  display: flex;
  background: var(--charcoal);
  border: 1px solid rgba(200,200,200,0.08);
  padding: 0.25rem;
  border-radius: 0;
}

.dates__filter-btn {
  background: none;
  border: none;
  color: var(--chrome-dim);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dates__filter-btn:hover {
  color: var(--chrome-hi);
}

.dates__filter-btn.active {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(200,200,200,0.15);
}

.dates__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--chrome-dim);
}

.dates__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.dates__list {
  display: flex;
  flex-direction: column;
}

.dates__row {
  display: grid;
  grid-template-columns: 160px 200px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(200,200,200,0.07);
  transition: opacity 0.2s ease;
  position: relative;
}

.dates__row:first-child {
  border-top: 1px solid rgba(200,200,200,0.07);
}

.dates__row--past {
  opacity: 0.4;
}

.dates__row--past::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(200,200,200,0.35);
  pointer-events: none;
}

.dates__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--chrome-hi);
}

.dates__city {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.dates__venue {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-hi) !important;
}

.dates__status {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid;
}

.dates__status--upcoming {
  color: rgba(200,255,200,0.7);
  border-color: rgba(200,255,200,0.2);
}

.dates__status--past {
  color: var(--chrome-dim);
  border-color: rgba(200,200,200,0.12);
}

@media (max-width: 768px) {
  .dates__inner {
    padding: 0 1.5rem;
  }

  .dates__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.4rem;
    padding: 0.9rem 0;
  }

  .dates__date {
    grid-column: 1;
    grid-row: 1;
  }

  .dates__status {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .dates__venue {
    grid-column: 1;
    grid-row: 2;
  }

  .dates__city {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

/* --- Border lines top/bottom --- */
.bio__border-top,
.bio__border-bottom {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
}

.bio__border-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200,200,200,0.35) 30%,
    rgba(200,200,200,0.6)  50%,
    rgba(200,200,200,0.35) 70%,
    transparent 100%
  );
}

.bio__border-line--animated {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.bio__border-line--delay {
  transition-delay: 0.3s;
}

.bio__border-line--animated.in-view {
  transform: scaleX(1);
}

/* --- Main grid container --- */
.bio__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

/* ============================================================
   IMAGE COLUMN
   ============================================================ */
.bio__image-col {
  position: relative;
  overflow: hidden;
}

.bio__image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.bio__image-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(25%) contrast(1.08);
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Gradient overlay on image */
.bio__image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(13,13,13,0.0) 60%, rgba(13,13,13,0.85) 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.5) 0%,  transparent 20%),
    linear-gradient(to top,    rgba(13,13,13,0.7) 0%,  transparent 30%);
  pointer-events: none;
}

/* Brutalist corner brackets */
.bio__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 5;
  pointer-events: none;
}

.bio__corner--tl {
  top: 2rem;
  left: 2rem;
  border-top: 1px solid rgba(200,200,200,0.5);
  border-left: 1px solid rgba(200,200,200,0.5);
}

.bio__corner--br {
  bottom: 4rem;
  right: 0;
  border-bottom: 1px solid rgba(200,200,200,0.5);
  border-right: 1px solid rgba(200,200,200,0.5);
}

/* Caption */
.bio__image-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
}

.bio__caption-line {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(200,200,200,0.4);
}

.bio__caption-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

/* ============================================================
   TEXT COLUMN
   ============================================================ */
.bio__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 4.5rem;
  position: relative;
}

/* Left edge chrome line on text col */
.bio__text-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200,200,200,0.2) 30%,
    rgba(200,200,200,0.1) 70%,
    transparent
  );
}

/* Label row */
.bio__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bio__label-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
}

.bio__label-sep {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(200,200,200,0.3);
}

.bio__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

/* Section title */
.bio__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}

/* Chrome animated divider */
.bio__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bio__divider-bar {
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, rgba(200,200,200,0.7), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.in-view .bio__divider-bar {
  transform: scaleX(1);
}

.bio__divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,200,200,0.5);
  opacity: 0;
  transition: opacity 0.4s ease 1.1s;
}

.in-view .bio__divider-dot {
  opacity: 1;
}

/* Bio paragraphs */
.bio__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.bio__para {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem);
  line-height: 1.75;
  color: rgba(200,200,200,0.5);
}

.bio__para--lead {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(200,200,200,0.75);
  font-weight: 400;
}

/* Pull quote */
.bio__quote {
  border-left: 1px solid rgba(200,200,200,0.2);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: rgba(200,200,200,0.65);
  position: relative;
}

.bio__quote-mark {
  font-family: Georgia, serif;
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.3em;
  color: rgba(200,200,200,0.25);
  font-style: normal;
}

.bio__cite {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-top: 0.75rem;
}

/* Genre tags */
.bio__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bio__tag {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  border: 1px solid rgba(200,200,200,0.18);
  padding: 0.4rem 0.9rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.bio__tag:hover {
  border-color: rgba(200,200,200,0.5);
  color: var(--chrome);
}

/* ============================================================
   SCROLL REVEAL STATES
   ============================================================ */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right { transition-delay: 0.15s; }

/* ============================================================
   BIO RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .bio__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .bio__image-col {
    order: 1;
    min-height: 55vw;
  }

  .bio__image-frame {
    min-height: 55vw;
  }

  .bio__text-col {
    order: 2;
    padding: 3.5rem 2rem 4rem;
  }

  .bio__text-col::before {
    display: none;
  }

  .bio__corner--br {
    right: 0;
    bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bio__image-frame {
    min-height: 70vw;
  }

  .bio__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .bio__text-col {
    padding: 2.5rem 1.5rem 3rem;
  }
}

/* ============================================================
   RIDER SECTION
   ============================================================ */
.rider {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 7rem 0 8rem;
}

/* --- Background image --- */
.rider__bg {
  position: absolute;
  inset: -10%;
  background-image: url('rider-bg.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: grayscale(40%) contrast(0.9);
  opacity: 0.12;
  will-change: transform;
}

.rider__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}

.rider__inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ============================================================
   RIDER HEADER
   ============================================================ */
.rider__header {
  margin-bottom: 4rem;
}

.rider__header-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rider__label-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
}

.rider__label-sep {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(200,200,200,0.3);
}

.rider__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.rider__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.rider__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--chrome-dim);
}

/* ============================================================
   DASHBOARD GRID — outer: diagram col + cards col
   ============================================================ */
.rider__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1px;
  background: rgba(200,200,200,0.08);
  border: 1px solid rgba(200,200,200,0.1);
  align-items: stretch;
}

/* Diagram full-width top row */
.rider__diagram-col {
  position: relative;
  background: rgba(6,6,6,0.85);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(200,200,200,0.08);
  overflow: hidden;
}

.rider__diagram-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 1.5rem;
  width: 100%;
  position: relative;
  gap: 0.75rem;
  overflow: hidden;
}

.rider__diagram-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: invert(1) brightness(0.75);
  opacity: 0.7;
  transition: opacity 0.4s ease, filter 0.4s ease;
  display: block;
}

.rider__diagram-col:hover .rider__diagram-img {
  opacity: 0.95;
  filter: invert(1) brightness(1);
}

.rider__diagram-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rider__diagram-line {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(200,200,200,0.3);
}

.rider__diagram-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  text-align: center;
}

/* Cards sub-grid (right side) */
.rider__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1px;
  background: rgba(200,200,200,0.08);
}

/* Downloads card spans full width inside cards grid */
.rider__cards .rcard--downloads {
  grid-column: 1 / -1;
}

/* ============================================================
   BASE RCARD
   ============================================================ */
.rcard {
  position: relative;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.35s ease;
  overflow: hidden;
}

.rcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,200,200,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.rcard:hover {
  background: rgba(18,18,18,0.9);
}

.rcard:hover::before {
  opacity: 1;
}

/* Top chrome shimmer line on hover */
.rcard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,200,200,0.5), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.rcard:hover::after {
  transform: scaleX(1);
}


/* ============================================================
   CARD HEAD
   ============================================================ */
.rcard__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200,200,200,0.1);
}

.rcard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200,200,200,0.2);
  color: var(--chrome);
  flex-shrink: 0;
}

.rcard__icon svg {
  width: 14px;
  height: 14px;
}

.rcard__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome);
  flex: 1;
}

.rcard__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(200,200,200,0.2);
}

/* ============================================================
   DIAGRAM (Equipment card)
   ============================================================ */
.rcard__diagram {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,200,200,0.07);
  padding: 1rem 0.5rem;
  min-height: 160px;
}

.rcard__diagram-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(0.7);
  opacity: 0.65;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.rcard--equipment:hover .rcard__diagram-img {
  opacity: 0.9;
  filter: invert(1) brightness(0.9);
}

/* ============================================================
   LIST ITEMS
   ============================================================ */
.rcard__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rcard__list--mt {
  margin-top: 0.25rem;
}

.rcard__list--full {
  flex: 1;
}

.rcard__item {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200,200,200,0.05);
}

.rcard__item:last-child {
  border-bottom: none;
}

.rcard__item-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200,200,200,0.35);
  flex-shrink: 0;
}

.rcard__item-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  white-space: nowrap;
}

.rcard__item-value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(200,200,200,0.75);
  text-align: right;
  line-height: 1.3;
}

/* ============================================================
   PERFORMANCE CARD — stats mini grid
   ============================================================ */
.rcard__perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,200,200,0.08);
  border: 1px solid rgba(200,200,200,0.08);
}

.rcard__perf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: rgba(10,10,10,0.6);
  gap: 0.3rem;
  transition: background 0.3s ease;
}

.rcard__perf-item:hover {
  background: rgba(30,30,30,0.8);
}

.rcard__perf-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--chrome-hi);
  line-height: 1;
  letter-spacing: 0.02em;
}

.rcard__perf-key {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

/* ============================================================
   MUSIC CARD — genres & waveform
   ============================================================ */
.rcard__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rcard__genre {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  border: 1px solid rgba(200,200,200,0.15);
  padding: 0.3rem 0.7rem;
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: default;
}

.rcard__genre:hover,
.rcard__genre--primary {
  border-color: rgba(200,200,200,0.5);
  color: var(--chrome-hi);
}

.rcard__waveform {
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rcard__wave-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
  height: 100%;
}

/* Bars generated via JS */
.rcard__wave-bar {
  flex: 1;
  background: rgba(200,200,200,0.2);
  border-radius: 1px;
  animation: wavePulse var(--dur, 1.2s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}

@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%       { transform: scaleY(1);   opacity: 0.7; }
}

/* ============================================================
   DOWNLOADS CARD
   ============================================================ */
.rcard__dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,200,200,0.06);
}

.rcard__dl-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(8,8,8,0.7);
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rcard__dl-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,200,200,0.4), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.rcard__dl-btn:hover {
  background: rgba(22,22,22,0.9);
}

.rcard__dl-btn:hover::after {
  transform: scaleX(1);
}

.rcard__dl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,200,200,0.15);
  color: var(--chrome-dim);
  flex-shrink: 0;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.rcard__dl-icon svg {
  width: 14px;
  height: 14px;
}

.rcard__dl-btn:hover .rcard__dl-icon {
  border-color: rgba(200,200,200,0.5);
  color: var(--chrome-hi);
}

.rcard__dl-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.rcard__dl-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color 0.3s ease;
}

.rcard__dl-btn:hover .rcard__dl-name {
  color: var(--white);
}

.rcard__dl-size {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--chrome-dim);
  letter-spacing: 0.05em;
}

.rcard__dl-arrow {
  font-size: 1.1rem;
  color: rgba(200,200,200,0.25);
  transition: color 0.3s ease, transform 0.3s ease;
}

.rcard__dl-btn:hover .rcard__dl-arrow {
  color: var(--chrome-hi);
  transform: translateY(3px);
}

/* ============================================================
   REVEAL-UP (new variant for rider)
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay, 0s);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RIDER RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .rcard__dl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rider__inner {
    padding: 0 1.5rem;
  }

  .rider {
    padding: 5rem 0 6rem;
  }

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

  .rider__diagram-col {
    border-right: none;
    border-bottom: 1px solid rgba(200,200,200,0.08);
  }

  .rider__diagram-img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
  }

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

  .rider__cards .rcard--downloads {
    grid-column: 1;
  }

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

  .rcard__perf-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

  .rider__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

/* ============================================================
   LIVE PERFORMANCE SECTION
   ============================================================ */
.live {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 7rem 0 0;
}

/* --- Cinematic background --- */
.live__bg {
  position: absolute;
  inset: -10%;
  background-image: url('live-photo.webp');
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(30%) brightness(0.35) contrast(1.1);
  will-change: transform;
  pointer-events: none;
}

.live__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.6) 0%,
      rgba(0,0,0,0.2) 30%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.98) 100%
    ),
    linear-gradient(to right,
      rgba(0,0,0,0.7) 0%,
      transparent 50%,
      rgba(0,0,0,0.5) 100%
    );
  pointer-events: none;
}

.live__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain 0.5s steps(1) infinite;
}

/* Scanlines overlay */
.live__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.live__inner {
  position: relative;
  z-index: 5;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ============================================================
   LABEL ROW
   ============================================================ */
.live__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.live__label-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
}

.live__label-sep {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(200,200,200,0.25);
}

.live__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.live__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(120,200,120,0.7);
}

.live__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(100,200,100,0.8);
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(100,200,100,0.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(100,200,100,0); }
}

/* ============================================================
   MAIN TITLE
   ============================================================ */
.live__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3.5rem;
  pointer-events: none;
}

.live__title-sm {
  font-size: 0.35em;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--chrome-dim);
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.2em;
}

.live__title-outline {
  -webkit-text-stroke: 1px rgba(200,200,200,0.4);
  color: transparent;
}

/* ============================================================
   ASYMMETRIC CONTENT GRID
   ============================================================ */
.live__content {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 2px;
  align-items: start;
  margin-bottom: 0;
  background: rgba(200,200,200,0.05);
  border: 1px solid rgba(200,200,200,0.08);
}

/* ============================================================
   STATS COLUMN
   ============================================================ */
.live__stats-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(200,200,200,0.05);
}

.live__stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 1.2rem;
  background: rgba(8,8,8,0.8);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.live__stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,200,200,0.3), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.live__stat-card:hover {
  background: rgba(18,18,18,0.9);
}

.live__stat-card:hover::before {
  transform: scaleX(1);
}

.live__stat-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--chrome-hi);
  line-height: 1;
  letter-spacing: -0.02em;
}

.live__stat-unit {
  font-size: 0.6em;
  color: var(--chrome-dim);
  font-weight: 300;
}

.live__stat-key {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.live__stat-bar {
  width: 100%;
  height: 1px;
  background: rgba(200,200,200,0.1);
  margin-top: 0.4rem;
  overflow: hidden;
}

.live__stat-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, rgba(200,200,200,0.6), rgba(200,200,200,0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) var(--delay, 0.3s);
}

.in-view .live__stat-fill {
  transform: scaleX(1);
}

/* ============================================================
   CENTER IMAGE
   ============================================================ */
.live__image-col {
  position: relative;
  overflow: hidden;
}

.live__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.live__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: contrast(1.05) brightness(0.9);
  transition: transform 0.05s linear, filter 0.4s ease;
  will-change: transform;
}

.live__image-col:hover .live__img {
  filter: contrast(1.1) brightness(1);
}

.live__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Brutalist corner brackets on image */
.live__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
  pointer-events: none;
  transition: width 0.3s ease, height 0.3s ease;
}

.live__image-col:hover .live__corner {
  width: 28px;
  height: 28px;
}

.live__corner--tl { top: 1rem;  left: 1rem;  border-top: 1px solid rgba(200,200,200,0.6); border-left: 1px solid rgba(200,200,200,0.6); }
.live__corner--tr { top: 1rem;  right: 1rem; border-top: 1px solid rgba(200,200,200,0.6); border-right: 1px solid rgba(200,200,200,0.6); }
.live__corner--bl { bottom: 2.5rem; left: 1rem;  border-bottom: 1px solid rgba(200,200,200,0.6); border-left: 1px solid rgba(200,200,200,0.6); }
.live__corner--br { bottom: 2.5rem; right: 1rem; border-bottom: 1px solid rgba(200,200,200,0.6); border-right: 1px solid rgba(200,200,200,0.6); }

/* Live badge */
.live__badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,200,200,0.15);
  padding: 0.3rem 0.9rem;
  z-index: 3;
}

.live__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e53;
  animation: statusPulse 1.5s ease-in-out infinite;
}

.live__badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* Image caption */
.live__img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  z-index: 3;
}

.live__img-venue {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
}

.live__img-date {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

/* ============================================================
   FESTIVAL LIST COLUMN
   ============================================================ */
.live__fest-col {
  background: rgba(8,8,8,0.85);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}

.live__fest-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.live__fest-line {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(200,200,200,0.35);
}

.live__fest-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.live__fest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.live__fest-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(200,200,200,0.06);
  transition: padding-left 0.3s ease;
  cursor: default;
}

.live__fest-item:last-child {
  border-bottom: none;
}

.live__fest-item:hover {
  padding-left: 0.4rem;
}

.live__fest-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color 0.3s ease;
}

.live__fest-item:hover .live__fest-name {
  color: var(--white);
}

.live__fest-meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--chrome-dim);
  letter-spacing: 0.05em;
}

.live__fest-item--dim .live__fest-name {
  color: rgba(200,200,200,0.2);
}

.live__fest-item--dim .live__fest-meta {
  color: rgba(200,200,200,0.15);
}

/* ============================================================
   BOTTOM CTA BAR
   ============================================================ */
.live__cta-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: rgba(6,6,6,0.95);
  border-top: 1px solid rgba(200,200,200,0.08);
  margin: 0 -3rem;
}

.live__cta-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.live__cta-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--chrome-dim);
}

.live__cta-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.live__cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  border-left: 1px solid rgba(200,200,200,0.1);
  padding-left: 2rem;
}

.live__cta-contact-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.live__cta-email {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.3s ease;
}

.live__cta-email:hover {
  color: var(--white);
}

/* ============================================================
   LIVE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .live__content {
    grid-template-columns: 180px 1fr 200px;
  }
}

@media (max-width: 768px) {
  .live {
    padding: 5rem 0 0;
  }

  .live__inner {
    padding: 0 1.5rem;
  }

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

  .live__stats-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .live__image-frame {
    aspect-ratio: 16/9;
  }

  .live__cta-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 -1.5rem;
    padding: 2rem 1.5rem;
  }

  .live__cta-contact {
    align-items: flex-start;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(200,200,200,0.1);
    padding-top: 1rem;
  }
}

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

  .live__cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .live__cta-actions .btn {
    width: 100%;
  }

  .live__title {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }
}

/* ============================================================
   ABOUT ME SECTION
   ============================================================ */
.about {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 7rem 0 8rem;
}

.about__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.about__header {
  margin-bottom: 3rem;
}

.about__header-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about__label-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
}

.about__label-sep {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(200,200,200,0.25);
}

.about__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.about__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.about__para {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(240,240,240,0.75);
  font-weight: 300;
}

.about__para--highlight {
  font-weight: 500;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  border-left: 3px solid rgba(240,240,240,0.4);
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.about__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
}

.about__portfolio-btn {
  white-space: nowrap;
}

.about__cta-hint {
  font-size: 0.75rem;
  color: var(--chrome-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__cta {
    align-items: flex-start;
  }
}

/* ============================================================
   CONTACT & BOOKING SECTION
   ============================================================ */
.contact {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

/* ============================================================
   SPLIT GRID
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
}

/* ============================================================
   LEFT — IMAGE PANEL
   ============================================================ */
.contact__image-panel {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.contact__image-wrap {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) contrast(1.05) brightness(0.7);
  transition: filter 0.5s ease;
}

.contact__image-panel:hover .contact__img {
  filter: grayscale(10%) contrast(1.08) brightness(0.8);
}

.contact__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 50%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%);
  pointer-events: none;
}

/* Large logo in contact panel */
.contact__logo-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.contact__logo-img {
  width: 75%;
  max-width: 320px;
  height: auto;
  filter: invert(1);
  opacity: 0.12;
  display: block;
}

/* Floating info card */
.contact__info-card {
  position: absolute;
  bottom: 7rem;
  left: 2.5rem;
  right: 2.5rem;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,200,200,0.1);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__info-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}

.contact__info-line {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(200,200,200,0.35);
}

.contact__info-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.contact__info-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-hi);
}

.contact__info-email {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--chrome-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.contact__info-email:hover {
  color: var(--white);
}

.contact__info-phone {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--chrome-dim);
  letter-spacing: 0.05em;
}

.contact__info-divider {
  width: 100%;
  height: 1px;
  background: rgba(200,200,200,0.08);
  margin: 0.6rem 0;
}

/* Social links */
.contact__socials {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,200,200,0.15);
  color: var(--chrome-dim);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.contact__social svg {
  width: 14px;
  height: 14px;
}

.contact__social:hover {
  border-color: rgba(200,200,200,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* ============================================================
   RIGHT — FORM PANEL
   ============================================================ */
.contact__form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 5rem 4.5rem;
  background: var(--charcoal);
  position: relative;
}

/* Left border accent */
.contact__form-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200,200,200,0.15) 30%,
    rgba(200,200,200,0.08) 70%,
    transparent
  );
}

/* Header */
.contact__header {
  margin-bottom: 3rem;
}

.contact__header-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__label-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
}

.contact__label-sep {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(200,200,200,0.25);
}

.contact__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.contact__title-outline {
  -webkit-text-stroke: 1px rgba(200,200,200,0.45);
  color: transparent;
}

.contact__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(200,200,200,0.45);
  line-height: 1.7;
  max-width: 440px;
}

/* ============================================================
   FORM
   ============================================================ */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

/* Validation error styles */
.contact__field--error .contact__input {
  border-color: rgba(244, 67, 54, 0.5) !important;
  background: rgba(244, 67, 54, 0.02) !important;
}

.contact__field--error .contact__field-label {
  color: #f44336 !important;
}

.contact__field-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.contact__input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200,200,200,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact__input::placeholder {
  color: rgba(200,200,200,0.2);
  font-weight: 300;
}

.contact__input:focus {
  border-color: rgba(200,200,200,0.4);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(200,200,200,0.05) inset;
}

.contact__input:focus::placeholder {
  color: rgba(200,200,200,0.1);
}

/* Select arrow */
.contact__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236a6a6a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact__select option {
  background: #111;
  color: var(--chrome);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Form footer row */
.contact__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact__form-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(200,200,200,0.25);
  letter-spacing: 0.05em;
}

.contact__submit {
  flex-shrink: 0;
  min-width: 180px;
}

/* ============================================================
   FOOTER BAR
   ============================================================ */
.contact__footer {
  border-top: 1px solid rgba(200,200,200,0.07);
  background: rgba(4,4,4,0.98);
}

.contact__footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact__footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  color: rgba(200,200,200,0.3);
  text-transform: uppercase;
}

.contact__footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  color: rgba(200,200,200,0.2);
  letter-spacing: 0.05em;
  text-align: center;
  flex: 1;
}

.contact__footer-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(200,200,200,0.2);
}

.contact__footer-links a {
  color: rgba(200,200,200,0.25);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.contact__footer-links a:hover {
  color: var(--chrome);
}

/* ============================================================
   CONTACT RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact__image-panel {
    min-height: 60vw;
    position: relative;
  }

  .contact__image-wrap {
    position: absolute;
    inset: 0;
  }

  .contact__form-panel {
    padding: 4rem 2rem 4rem;
  }

  .contact__form-panel::before {
    display: none;
  }

  .contact__info-card {
    bottom: 5rem;
    left: 1.5rem;
    right: 1.5rem;
  }

  .contact__socials {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact__submit {
    width: 100%;
  }

  .contact__footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .contact__footer-links {
    justify-content: center;
  }

  .contact__title {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--charcoal);
  border: 1px solid rgba(200,200,200,0.15);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  max-width: 400px;
  pointer-events: all;
  animation: toastSlideIn 0.3s ease, toastFadeOut 0.3s ease 4.7s;
  animation-fill-mode: both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast--success {
  border-left: 3px solid #4caf50;
}

.toast--error {
  border-left: 3px solid #f44336;
}

.toast--info {
  border-left: 3px solid var(--chrome);
}

.toast__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast__message {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--chrome-hi);
  flex: 1;
}

.toast__close {
  background: none;
  border: none;
  color: var(--chrome-dim);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.toast__close:hover {
  color: var(--white);
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastFadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-showcase {
  background: var(--black);
  padding: 8rem 0;
  border-top: 1px solid rgba(200,200,200,0.05);
  border-bottom: 1px solid rgba(200,200,200,0.05);
  position: relative;
}

.video-showcase__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.video-showcase__header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video-showcase__label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--chrome-dim);
}

.video-showcase__label-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.video-showcase__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.video-showcase__grid {
  width: 100%;
}

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

.video-showcase__featured--reverse {
  grid-template-columns: 1fr 1.5fr;
}

.video-showcase__player-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: var(--charcoal);
  border: 1px solid rgba(200,200,200,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  overflow: hidden;
}

.video-showcase__player-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-showcase__link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-showcase__link:hover .video-showcase__thumb {
  transform: scale(1.05);
}

/* Play Button Overlay */
.video-showcase__play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.video-showcase__link:hover .video-showcase__play-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.video-showcase__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease;
}

.video-showcase__play-btn svg {
  margin-left: 4px; /* Align play triangle perfectly centeralized */
  transition: transform 0.3s ease;
}

.video-showcase__link:hover .video-showcase__play-btn {
  transform: scale(1.1);
  background: var(--chrome-hi);
}

.video-showcase__link:hover .video-showcase__play-btn svg {
  transform: scale(1.05);
}

.video-showcase__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-showcase__featured-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}

.video-showcase__featured-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.video-showcase__featured-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(200,200,200,0.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .video-showcase {
    padding: 6rem 0;
  }
  
  .video-showcase__featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-showcase__featured--reverse {
    grid-template-columns: 1fr;
  }

  /* Force video to show on top of text on mobile even for reversed items */
  .video-showcase__featured--reverse .video-showcase__link {
    order: -1;
  }
}

/* ============================================================
   LIGHTBOX GALLERY
   ============================================================ */
/* Make images look clickable */
.bio__img,
.live__img,
.contact__img {
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.bio__img:hover,
.live__img:hover,
.contact__img:hover {
  filter: brightness(1.1) contrast(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--chrome-dim);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 2010;
}

.lightbox__close:hover {
  color: var(--white);
  transform: scale(1.1);
}

.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 1px solid rgba(200, 200, 200, 0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
}

.lightbox__caption {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  text-align: center;
}

.lightbox__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,200,200,0.15);
  color: var(--chrome-hi);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lightbox__download:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  border: 1px solid rgba(200,200,200,0.15);
  border-radius: 50%;
  color: var(--chrome);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.back-to-top:hover {
  background: rgba(200,200,200,0.1);
  border-color: rgba(200,200,200,0.3);
  color: var(--white);
  transform: translateY(0) scale(1.05);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--chrome);
  outline-offset: 2px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   READING PROGRESS INDICATOR
   ============================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--chrome-dim), var(--chrome-hi));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  /* Hide decorative elements */
  .hero__particles,
  .hero__noise,
  .hero__scroll,
  .hero__accent,
  .live__scanlines,
  .live__noise,
  .reading-progress,
  .back-to-top,
  .toast-container,
  .mobile-nav,
  .hero__nav,
  .lang-switcher {
    display: none !important;
  }

  /* Reset backgrounds */
  .hero,
  .rider,
  .live,
  .contact {
    background: white !important;
    color: black !important;
  }

  /* Make text readable */
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }

  /* Rider section for promoters */
  .rider {
    page-break-inside: avoid;
  }

  .rider__bg,
  .rider__bg-overlay,
  .live__bg,
  .live__overlay,
  .hero__overlay {
    display: none !important;
  }

  /* Ensure images print */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Links show URL */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  /* Form elements */
  .contact__form-panel,
  .contact__footer {
    display: none !important;
  }

  /* Layout adjustments */
  .rider__grid {
    display: block !important;
  }

  .rcard {
    page-break-inside: avoid;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
  }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--fade {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  text-align: center;
}

.preloader__logo-wrap {
  margin-bottom: 2rem;
}

.preloader__logo-img {
  width: 180px;
  height: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.7; filter: brightness(1.2); }
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: var(--charcoal);
  margin: 0 auto;
  overflow: hidden;
}

.preloader__progress {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 0.3s ease;
}

/* ============================================================
   TYPEWRITER EFFECT
   ============================================================ */
.typewriter {
  opacity: 1;
}

.typewriter__cursor {
  display: inline-block;
  animation: cursorBlink 1s step-end infinite;
  color: var(--chrome);
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================================================
   SHARE BUTTON
   ============================================================ */
.share-btn {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  border: 1px solid var(--chrome-dim);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome);
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
}

.share-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.share-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .share-btn {
    right: 1rem;
    bottom: 5rem;
  }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
/* Hide default cursor on desktop */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* Cursor principal - punto central */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  mix-blend-mode: difference;
}

/* Anillo seguidor */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--chrome);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

/* Estados hover */
.cursor.hover {
  width: 12px;
  height: 12px;
  background: var(--chrome-hi);
}

.cursor-follower.hover {
  width: 48px;
  height: 48px;
  border-color: var(--white);
  border-width: 2px;
}

/* Estado click */
.cursor.click {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor-follower.click {
  transform: translate(-50%, -50%) scale(0.9);
}

/* Hide custom cursor on mobile/tablet */
@media (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }
  
  * {
    cursor: auto !important;
  }
}
