/* ═══════════════════════════════════════════════
   FONTS
═══════════════════════════════════════════════ */
@font-face {
  font-family: 'artdystopia';
  src: url('fonts/ArtDystopia.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'blastimosans';
  src: url('fonts/BLASTIMOSANS.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'monofonto';
  src: url('fonts/monofonto.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'nagasaki';
  src: url('fonts/nagasaki.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'futurist';
  src: url('fonts/FUTRFW.TTF') format('truetype');
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   THEME TOKENS
═══════════════════════════════════════════════ */
:root {
  --bg:           #000315;
  --bg2:          #000820;
  --bg3:          #010c28;
  --accent:       #bdf2ff;
  --accent2:      #5be0ff;
  --accent-glow:  rgba(93, 224, 255, 0.18);
  --text:         #daeeff;
  --text-muted:   #2e4d66;
  --border:       rgba(93, 224, 255, 0.12);
  --font-display: 'artdystopia', sans-serif;
  --font-sans:    'blastimosans', sans-serif;
  --font-mono:    'monofonto', monospace;
}

/* ── MELANCHOLIA palette ── */
[data-theme="melancholia"] {
  --bg:           #07051a;
  --bg2:          #100c2e;
  --bg3:          #18113f;
  --accent:       #c084fc;
  --accent2:      #a855f7;
  --accent-glow:  rgba(168, 85, 247, 0.18);
  --text:         #ede0ff;
  --text-muted:   #5b3d80;
  --border:       rgba(168, 85, 247, 0.14);
}

/* ── WHISPER palette ── */
[data-theme="whisper"] {
  --bg:           #07080f;
  --bg2:          #0e0f1a;
  --bg3:          #131524;
  --accent:       #c8d8f0;
  --accent2:      #9ab8e8;
  --accent-glow:  rgba(180, 210, 240, 0.15);
  --text:         #e8f0f8;
  --text-muted:   #3a4a6a;
  --border:       rgba(180, 210, 240, 0.12);
}

/* ── ETERNALLY palette ── */
[data-theme="eternally"] {
  --bg:           #0c0800;
  --bg2:          #1a1000;
  --bg3:          #251600;
  --accent:       #fbbf24;
  --accent2:      #f59e0b;
  --accent-glow:  rgba(251, 191, 36, 0.16);
  --text:         #fff8e0;
  --text-muted:   #7a6030;
  --border:       rgba(251, 191, 36, 0.14);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  overflow-x: hidden;
  transition: background 1s ease, color 0.8s ease;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ═══════════════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════════════ */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: screen;
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: linear-gradient(to bottom, rgba(0,3,21,0.92), transparent);
  backdrop-filter: blur(6px);
  transform: translateY(-100%);
  transition: background 0.6s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#nav.visible { transform: translateY(0); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-shadow: 0 0 14px var(--accent-glow);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--text); opacity: 1; }
.nav-link:hover::after { width: 100%; }

.nav-yt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.nav-yt:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ═══════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════ */
section {
  min-height: 100vh;
  position: relative;
  padding: 120px 40px;
  transition: background 1s ease;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: 0.12em;
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
  margin-bottom: 60px;
  line-height: 1;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}

#waveform {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--text);
  opacity: 0;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 13rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--text);
  text-shadow:
    0 0 60px var(--accent-glow),
    0 0 120px var(--accent-glow);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════
   GLITCH TITLE
═══════════════════════════════════════════════ */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--accent2);
  clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
  transform: translate(-3px, 0);
  animation: glitch-a 4s infinite linear;
  opacity: 0.7;
}

.glitch::after {
  color: #ff4dff;
  clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%);
  transform: translate(3px, 0);
  animation: glitch-b 3.2s infinite linear;
  opacity: 0.6;
}

@keyframes glitch-a {
  0%, 87%  { clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%); transform: translate(-3px, 0); }
  88%      { clip-path: polygon(0 8%,  100% 8%,  100% 28%, 0 28%); transform: translate(4px, 1px); }
  92%      { clip-path: polygon(0 55%, 100% 55%, 100% 68%, 0 68%); transform: translate(-2px, -1px); }
  96%      { clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%); transform: translate(3px, 0); }
  100%     { clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%); transform: translate(-3px, 0); }
}

@keyframes glitch-b {
  0%, 90%  { clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%); transform: translate(3px, 0); }
  91%      { clip-path: polygon(0 35%, 100% 35%, 100% 50%, 0 50%); transform: translate(-4px, -1px); }
  95%      { clip-path: polygon(0 80%, 100% 80%, 100% 92%, 0 92%); transform: translate(2px, 1px); }
  100%     { clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%); transform: translate(3px, 0); }
}

/* ═══════════════════════════════════════════════
   CREATIONS
═══════════════════════════════════════════════ */
#creations {
  background: var(--bg);
  padding-top: 80px;
}

.section-eyebrow {
  padding: 0 40px 60px;
}

.creation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: background 1s ease;
  overflow: hidden;
}

.creation:nth-child(even) {
  direction: rtl;
}

.creation:nth-child(even) > * {
  direction: ltr;
}

.creation-art {
  position: relative;
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s;
  filter: saturate(0.85) brightness(0.9);
}

.creation-art:hover .cover-img {
  transform: scale(1.03);
  filter: saturate(1.1) brightness(1);
}

/* Chromatic aberration on hover */
.creation-art:hover .cover-img {
  animation: chroma 0.4s steps(1, end);
}

@keyframes chroma {
  0%   { filter: saturate(1.1) brightness(1); }
  20%  { filter: saturate(2) brightness(1.1) hue-rotate(15deg); transform: scale(1.03) translate(2px, 0); }
  40%  { filter: saturate(2) brightness(1.1) hue-rotate(-10deg); transform: scale(1.03) translate(-2px, 0); }
  60%  { filter: saturate(1.5) brightness(1.05) hue-rotate(5deg); transform: scale(1.03) translate(1px, 0); }
  80%  { filter: saturate(1.1) brightness(1); transform: scale(1.03) translate(0, 0); }
  100% { filter: saturate(1.1) brightness(1); transform: scale(1.03); }
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, var(--bg2));
  pointer-events: none;
  transition: opacity 0.6s;
}

.creation-info {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(40px);
}

.creation:nth-child(even) .creation-info {
  transform: translateX(-40px);
}

.creation-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.creation-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: 0.08em;
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
  line-height: 1;
}

.creation-desc {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text);
  opacity: 0.8;
  max-width: 48ch;
}

.creation-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.watch-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
}

.watch-btn:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow);
  transform: translateY(-2px);
}

.watch-pulse {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 2px solid var(--accent);
  animation: watchPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes watchPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.stream-pills {
  display: flex;
  gap: 10px;
}

.stream-pill {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.stream-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about {
  background: var(--bg3);
  padding: 120px 40px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-bio {
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  opacity: 0.85;
  max-width: 55ch;
}

.about-bio .word {
  display: inline-block;
  overflow: hidden;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.6s;
}

.about-img:hover {
  filter: grayscale(0%) contrast(1.1);
}

.img1 {
  width: 65%;
  height: 75%;
  top: 0;
  right: 0;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.6);
}

.img2 {
  width: 55%;
  height: 60%;
  bottom: 0;
  left: 0;
  box-shadow: 20px -20px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   LIVE EVENTS — concert poster
═══════════════════════════════════════════════ */
#live {
  background:
    linear-gradient(to bottom, rgba(0,3,21,0.72) 0%, rgba(0,3,21,0.55) 50%, rgba(0,3,21,0.78) 100%),
    url('IMAGE222.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--border);
}

.poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 40px;
  max-width: 640px;
  border: 1px solid var(--border);
  position: relative;
}

/* torn corner effect */
.poster::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.poster-top {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.poster-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--text);
  text-shadow: 0 0 50px var(--accent-glow);
}

.poster-divider {
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 4px 0;
}

.poster-coming {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.5em;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  text-transform: uppercase;
}

.poster-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  border-top: 1px solid var(--border);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s, color 0.3s;
}

.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.email-prompt {
  color: var(--accent);
  margin-right: 8px;
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.contact-socials {
  display: flex;
  gap: 32px;
}

.contact-socials a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-socials a:hover { color: var(--accent); }

.footer-sig {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════════════════ */
#video-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#video-modal:not([hidden]) {
  pointer-events: all;
}

#video-modal.open {
  opacity: 1;
}

#modal-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}

#modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.modal-frame {
  width: min(90vw, 1200px);
  aspect-ratio: 16 / 9;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#video-modal.open .modal-frame {
  transform: scale(1);
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   COMING SOON BUTTON STATE
═══════════════════════════════════════════════ */
.watch-btn--soon {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  margin-left: 8px;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ═══════════════════════════════════════════════
   MOBILE NAV PANEL
═══════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 3, 21, 0.97);
  backdrop-filter: blur(16px);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 3.5rem);
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-nav-link:hover {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.mobile-nav-yt {
  font-size: clamp(0.9rem, 4vw, 1.2rem);
  letter-spacing: 0.25em;
  font-family: var(--font-sans);
  color: var(--accent);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS — initial hidden states
═══════════════════════════════════════════════ */
.creation-info {
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .glitch::before, .glitch::after { display: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .creation {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .creation:nth-child(even) { direction: ltr; }

  .creation-art {
    height: 60vw;
    max-height: 480px;
  }

  .creation-info {
    padding: 48px 28px;
    transform: translateY(30px) !important;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 340px;
  }

  #nav { padding: 16px 20px; }
  .nav-links { gap: 20px; }

  section { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-yt { display: none; }
  .hero-name { font-size: clamp(3rem, 18vw, 5rem); }
  .hero-actions { gap: 10px; }
  .btn-primary, .btn-ghost { padding: 12px 18px; font-size: 0.72rem; }
  .creation-info { padding: 32px 20px; }
  .creation-title { font-size: clamp(2.2rem, 10vw, 4rem); }
  .poster { padding: 40px 24px; width: 90%; }
  .contact-socials { gap: 20px; flex-wrap: wrap; justify-content: center; }
  section { padding: 70px 20px; }
}

/* ── Touch device improvements ── */
@media (hover: none) and (pointer: coarse) {
  .watch-btn, .btn-primary, .btn-ghost, .stream-pill {
    min-height: 44px;
  }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
}
