/* ============================================
   STEVE X LIVE — stevexlive.com
   A Year in the Life of a Comic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Space+Mono:ital@0;1&display=swap');

/* ---- TOKENS ---- */
:root {
  --black:      #0a0a0a;
  --deep:       #111111;
  --charcoal:   #1a1a1a;
  --panel:      #1e1e1e;
  --border:     #2a2a2a;
  --red:        #c0392b;
  --red-hot:    #e74c3c;
  --red-dim:    #7a1a12;
  --cream:      #f5f0e8;
  --warm-white: #ede8de;
  --muted:      #888880;
  --dim:        #555550;
  --spotlight:  rgba(255, 230, 180, 0.06);
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Lora', Georgia, serif;
  --font-mono:    'Space Mono', monospace;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0) 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--red) !important;
  color: var(--cream) !important;
  padding: 10px 22px;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-hot) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.65) 70%,
    rgba(10,10,10,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-name em {
  font-style: normal;
  color: var(--red);
}
.hero-tagline {
  margin-top: 24px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--warm-white);
  opacity: 0.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.35);
}
.btn-outline:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* ============================================
   SECTION SHARED
   ============================================ */
section { position: relative; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red-dim);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ============================================
   TICKER TAPE
   ============================================ */
.ticker {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-inner span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 32px;
}
.ticker-inner span.dot { padding: 0; color: rgba(255,255,255,0.4); }

/* ============================================
   ABOUT / PROJECT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left { padding-top: 8px; }
.about-body {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245,240,232,0.75);
  margin-top: 28px;
}
.about-body p + p { margin-top: 20px; }
.about-body em {
  font-style: italic;
  color: var(--cream);
}
.about-quote {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 3px solid var(--red);
  background: var(--charcoal);
}
.about-quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--cream);
}
.about-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-style: normal;
}
.about-right {}
.project-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.project-card-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: all 0.5s;
}
.project-card:hover .project-card-img {
  filter: brightness(0.95) saturate(1.1);
  transform: scale(1.02);
}
.project-card-body {
  padding: 28px 32px 32px;
}
.project-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.project-card-title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.project-card-desc {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}
.project-card-link:hover { gap: 14px; }
.project-card-link::after { content: '→'; }

/* ============================================
   SHOWS / TOUR DATES
   ============================================ */
.shows {
  padding: 120px 0;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.shows-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.shows-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.shows-link:hover { color: var(--cream); border-color: var(--cream); }
.show-list { display: flex; flex-direction: column; }
.show-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}
.show-item::before {
  content: '';
  position: absolute;
  left: -64px;
  right: -64px;
  top: 0; bottom: 0;
  background: var(--charcoal);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
.show-item:hover::before { opacity: 1; }
.show-date {
  text-align: center;
}
.show-date-month {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.show-date-day {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--cream);
}
.show-info {}
.show-venue {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.show-location {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 4px;
}
.show-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-top: 8px;
}
.show-badge.few-left {
  background: rgba(192,57,43,0.15);
  color: var(--red);
  border: 1px solid var(--red-dim);
}
.show-badge.sold-out {
  background: rgba(80,80,80,0.2);
  color: var(--dim);
  border: 1px solid var(--border);
}
.show-badge.new-show {
  background: rgba(100, 200, 100, 0.1);
  color: #7ecf7e;
  border: 1px solid rgba(100, 200, 100, 0.25);
}
.show-action { text-align: right; }
.show-btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.show-btn:hover {
  background: var(--red);
  border-color: var(--red);
}
.show-btn.disabled {
  color: var(--dim);
  cursor: default;
}
.show-btn.disabled:hover {
  background: transparent;
  border-color: var(--border);
}

/* ============================================
   VIDEO / CLIPS
   ============================================ */
.clips {
  padding: 120px 0;
  background: var(--black);
}
.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.clip-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.clip-thumb.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.clip-thumb-bg {
  position: absolute;
  inset: 0;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-placeholder {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--dim);
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.clip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.clip-thumb:hover .clip-overlay { opacity: 1; }
.clip-play {
  align-self: center;
  margin-top: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.clip-thumb:hover .clip-play {
  background: var(--red);
  border-color: var(--red);
}
.clip-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.clip-info {
  margin-top: auto;
  padding-top: 12px;
}
.clip-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.clip-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================
   PRESS / QUOTES
   ============================================ */
.press {
  padding: 100px 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}
.press-quote {
  background: var(--charcoal);
  padding: 40px 36px;
}
.press-quote-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
}
.press-quote-text::before { content: '\201C'; color: var(--red); font-size: 28px; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.press-quote-text::after  { content: '\201D'; color: var(--red); font-size: 28px; line-height: 0; vertical-align: -10px; margin-left: 3px; }
.press-source {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.press-source::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red);
}

/* ============================================
   NEWSLETTER / MAILING LIST
   ============================================ */
.newsletter {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
}
.newsletter .section-label { justify-content: center; }
.newsletter .section-label::after { display: none; }
.newsletter-sub {
  margin-top: 20px;
  font-size: 17px;
  font-style: italic;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-input {
  flex: 1;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-right: none;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--dim); }
.newsletter-input:focus { border-color: var(--red); }
.newsletter-submit {
  background: var(--red);
  border: 1px solid var(--red);
  padding: 16px 28px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-submit:hover { background: var(--red-hot); }
.newsletter-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.socials {
  padding: 60px 0;
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.socials-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  transition: color 0.2s;
}
.social-link:hover { color: var(--cream); }
.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover .social-icon {
  border-color: var(--red);
  background: rgba(192,57,43,0.1);
}
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 64px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--muted); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 1; }
  50%  { transform: scaleY(0.5); opacity: 0.4; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section-inner { padding: 0 40px; }
  .about-grid { gap: 48px; }
  .clips-grid { grid-template-columns: 1fr 1fr; }
  .clip-thumb.featured { grid-column: span 2; grid-row: span 1; }
  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px 64px; }
  .hero-scroll { display: none; }
  .section-inner { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .shows { padding: 80px 0; }
  .show-item { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; }
  .show-action { grid-column: 2; grid-row: 2; }
  .clips-grid { grid-template-columns: 1fr; }
  .clip-thumb.featured { grid-column: span 1; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   MOBILE NAV OPEN
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
}
