/* Slava Elastichny — bold dark theme, acid accent, typographic identity. */

:root {
  --bg:        #0b0b0c;
  --bg-raised: #141416;
  --line:      #26262a;
  --text:      #f2f2f0;
  --muted:     #8e8e94;
  --accent:    #e5ff00;
  --accent-ink:#0b0b0c;

  --measure: 62ch;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Archivo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: .6rem 1rem;
  z-index: 10;
}
.skip-link:focus { left: 0; }

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

/* ---------- header ---------- */

.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover { color: var(--text); border-bottom-color: var(--accent); }

/* ---------- hero ---------- */

.hero {
  padding: clamp(3.5rem, 12vh, 8rem) var(--gutter) clamp(3rem, 9vh, 6rem);
  border-bottom: 1px solid var(--line);
}

.hero-name {
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(3rem, 15vw, 11rem);
  line-height: .86;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.hero-line { display: block; }
.hero-line--accent { color: var(--accent); }

.hero-tagline {
  max-width: 28ch;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  line-height: 1.3;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.btn {
  display: inline-block;
  padding: .8rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { border-color: var(--text); }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover { background: #fff; border-color: #fff; }

/* ---------- sections ---------- */

.section {
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin: 0 0 2rem;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-text {
  max-width: var(--measure);
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}
.about-text strong { color: var(--accent); font-weight: 600; }

/* ---------- shows ---------- */

.shows {
  display: grid;
  gap: 1rem;
}

.shows-state {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.shows-state--error { color: #ff6b5e; }

.show {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.show-when {
  font-family: "Archivo Black", Archivo, sans-serif;
  line-height: 1.15;
  text-transform: uppercase;
}
.show-date { display: block; font-size: 1.3rem; }
.show-time { display: block; margin-top: .35rem; font-family: Archivo, sans-serif; font-weight: 400; font-size: .85rem; color: var(--muted); letter-spacing: .08em; }

.show-title { margin: 0; font-size: 1.15rem; font-weight: 600; }
.show-venue { margin: .3rem 0 0; font-size: .95rem; color: var(--muted); }

.show-poster {
  display: block;
  width: 100%;
  max-width: 8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.show-cta { white-space: nowrap; }

@media (max-width: 46rem) {
  .show {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .show-cta { justify-self: start; }
}

/* ---------- footer ---------- */

.site-footer {
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter) 3rem;
}

.footer-lead {
  max-width: var(--measure);
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
.footer-links a {
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.footer-links a:hover { color: var(--accent); }

.footer-fine {
  margin: 3rem 0 0;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
