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

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #888888;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --border: #222222;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, background 0.8s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.cursor-glow.glow-hero {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.social-link:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  transition: var(--transition);
}

.nav-logo-accent {
  display: inline-block;
  color: var(--text);
  animation: logoBreath 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes logoBreath {
  0%, 100% {
    color: var(--text);
    text-shadow: none;
  }
  40%, 60% {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(230, 57, 70, 0.35);
  }
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-logo:hover .nav-logo-accent {
  animation: none;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  color: var(--accent);
}

.mobile-menu-link:active {
  transform: scale(0.96);
}

/* ===== O-PLAYER ===== */
.hero-title-accent {
  color: var(--accent);
  position: relative;
  cursor: pointer;
  transition: text-shadow 0.4s ease;
}

.hero-title-accent:hover {
  text-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.o-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.o-ring-2 {
  animation-delay: 0.3s;
}

.hero-title-accent.playing .o-ring {
  animation: ringPulse 2s ease-out infinite;
}

.hero-title-accent.playing .o-ring-2 {
  animation: ringPulse 2s ease-out 0.6s infinite;
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.hero-wave-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 20px;
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-wave-bars.active {
  opacity: 1;
}

.hero-wave-bar {
  width: 2.5px;
  border-radius: 1.5px;
  background: var(--accent);
  transform-origin: center;
  animation: waveIdle 2s ease-in-out infinite alternate;
  opacity: 0.4;
}

.hero-wave-bars.active .hero-wave-bar {
  opacity: 1;
  animation: waveMove 1s ease-in-out infinite alternate;
}

@keyframes waveIdle {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(0.7); }
}

@keyframes waveMove {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  background: radial-gradient(
    circle 280px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(255, 255, 255, 0.12) 0%,
    transparent 100%
  );
  mix-blend-mode: soft-light;
}

.hero:hover .hero-spotlight {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-tag {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero-scroll span {
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #c62e3a;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 48px;
}

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

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== MUSIC ===== */
.music {
  background: var(--bg-card);
}

.music-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 40px;
}

.spotify-embed {
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
}

.music-platforms {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.platform-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  padding: 16px 24px;
  opacity: 0.6;
  transition: var(--transition);
}

.platform-link:hover {
  opacity: 1;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 14px var(--accent-glow));
}

.platform-link svg {
  display: block;
}

.platform-name {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: center;
}

.platform-link:hover .platform-name {
  color: var(--accent);
}

/* Coming Soon animation for unavailable platforms */
.coming-soon-link {
  position: relative;
  perspective: 400px;
}

.platform-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.coming-soon-link .coming-soon-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

/* Logo + label: shrink to center on hide, grow from center on return */
.coming-soon-link.show-coming-soon .platform-icon-wrap svg,
.coming-soon-link.show-coming-soon .platform-name {
  animation: shrinkOut 0.3s ease forwards;
}

/* Coming soon text: wipe in from left, hold, then flip away */
.coming-soon-link.show-coming-soon .coming-soon-text {
  animation: wipeInFlipOut 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Logo + label: grow back from center after coming soon disappears */
.coming-soon-link.show-return .platform-icon-wrap svg,
.coming-soon-link.show-return .platform-name {
  animation: growIn 0.4s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

@keyframes shrinkOut {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

@keyframes growIn {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes wipeInFlipOut {
  0%   { clip-path: inset(0 100% 0 0); opacity: 1; transform: rotateY(0deg); }
  25%  { clip-path: inset(0 0% 0 0);   opacity: 1; transform: rotateY(0deg); }
  65%  { clip-path: inset(0 0% 0 0);   opacity: 1; transform: rotateY(0deg); }
  90%  { clip-path: inset(0 0% 0 0);   opacity: 0; transform: rotateY(90deg); }
  100% { clip-path: inset(0 0% 0 0);   opacity: 0; transform: rotateY(90deg); }
}

/* ===== PARALLAX DIVIDERS ===== */
.parallax-divider {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider-short {
  height: 40vh;
  min-height: 280px;
}

.parallax-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.parallax-quote {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0.9;
}

/* ===== FEATURE SPLIT ===== */
.feature-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
  position: relative;
}

.feature-split-image {
  position: relative;
  flex: 0 0 auto;
  max-width: 630px;
  transform: translateX(200px);
  opacity: 0;
  transition: transform 1.4s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.8s ease;
}

.feature-split-image.visible {
  transform: translateX(0);
  opacity: 1;
}

.feature-split-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  transition: transform 0.6s ease;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.4) 5%,
    rgba(0,0,0,1) 15%,
    rgba(0,0,0,1) 85%,
    rgba(0,0,0,0.4) 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.4) 5%,
    rgba(0,0,0,1) 15%,
    rgba(0,0,0,1) 85%,
    rgba(0,0,0,0.4) 95%,
    transparent 100%
  );
}

.feature-split-image:hover img {
  transform: scale(1.03);
}

.feature-split-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  transform: translateX(-200px);
  opacity: 0;
  transition: transform 1.4s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.8s ease;
}

.feature-split-content.visible {
  transform: translateX(0);
  opacity: 1;
}

.feature-split-content .parallax-quote {
  line-height: 1.5;
}

/* feature-split mobile handled in main responsive block */

/* ===== EVENTS ===== */
.events {
  background: var(--bg-card);
}

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

.event-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

.event-row:hover {
  padding-left: 16px;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

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

.event-month {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.event-action {
  flex-shrink: 0;
}

.events-past-title {
  margin-top: 64px;
  color: var(--text-muted);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.events-past .event-row {
  opacity: 0.5;
  transition: opacity var(--transition), padding var(--transition);
}

.events-past .event-row:hover {
  opacity: 0.8;
}

.events-past .event-day {
  font-size: 1.4rem;
  color: var(--text-muted);
}

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

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-text-secondary {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 32px;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  transition: var(--transition);
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  /* Hide cursor glow on touch devices */
  .cursor-glow {
    display: none !important;
  }

  /* Nav */
  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    min-height: -webkit-fill-available;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }

  .hero-scroll {
    bottom: 24px;
  }

  .hero-scroll-line {
    height: 28px;
  }

  /* Sections */
  .section {
    padding: 72px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .container {
    padding: 0 20px;
  }

  /* About */
  .about-image-wrap {
    max-width: 340px;
  }

  .about-image-accent {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .about-stats {
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Feature split — vertical animations on mobile */
  .feature-split {
    flex-direction: column-reverse;
    padding: 24px 0;
    gap: 8px;
  }

  .feature-split-image {
    max-width: 300px;
    transform: translateY(60px);
    opacity: 0;
  }

  .feature-split-image.visible {
    transform: translateY(0);
    opacity: 1;
  }

  .feature-split-content {
    padding: 20px 24px 0;
    transform: translateY(40px);
    opacity: 0;
  }

  .feature-split-content.visible {
    transform: translateY(0);
    opacity: 1;
  }

  .parallax-quote {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  /* Music */
  .music-intro {
    margin-top: -24px;
    margin-bottom: 28px;
    font-size: 0.9rem;
  }

  .spotify-embed {
    margin-bottom: 32px;
  }

  .spotify-embed iframe {
    height: 380px;
  }

  .music-platforms {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    justify-items: center;
  }

  .platform-link {
    padding: 12px 8px;
  }

  .platform-link svg {
    width: 28px;
    height: 28px;
  }

  .platform-name {
    font-size: 0.6rem;
    white-space: nowrap;
  }

  /* Events */
  .event-row {
    gap: 16px;
    padding: 20px 0;
  }

  .event-row:hover {
    padding-left: 0;
  }

  .event-date {
    min-width: 50px;
  }

  .event-day {
    font-size: 1.6rem;
  }

  .event-info h3 {
    font-size: 0.95rem;
  }

  .event-info p {
    font-size: 0.8rem;
  }

  .event-action .btn-sm {
    padding: 6px 14px;
    font-size: 0.65rem;
  }

  .events-past-title {
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .events-past .event-day {
    font-size: 1.2rem;
  }

  /* Parallax */
  .parallax-divider {
    height: 35vh;
    min-height: 220px;
  }

  .parallax-divider-short {
    height: 25vh;
    min-height: 160px;
  }

  /* Contact */
  .contact-info {
    text-align: center;
  }

  .contact-text br {
    display: none;
  }

  .contact-socials {
    justify-content: center;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  /* Form — prevent iOS zoom on focus */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 12px 16px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Scroll reveal — shorter travel on mobile */
  .reveal {
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}

/* --- Small phones (390px and below — iPhone mini/SE) --- */
@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 260px;
  }

  .about-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .event-action .btn-sm {
    padding: 5px 10px;
    font-size: 0.6rem;
  }
}

/* --- iOS safe areas --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .hero {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* --- Touch device hover fix --- */
@media (hover: none) {
  .hero:hover .hero-bg-img {
    transform: scale(1.05);
  }

  .hero:hover .hero-spotlight {
    opacity: 0;
  }

  .event-row:hover {
    padding-left: 0;
  }

  .platform-link:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-outline:hover {
    transform: none;
  }

  .social-link:hover {
    transform: none;
  }
}

/* --- Reduced motion preference --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .feature-split-image,
  .feature-split-content {
    opacity: 1;
    transform: none;
  }
}
