@charset "UTF-8";
:root {
  --bg: #0a0a0a;
  --fg: #fafafa;
  --muted: #8a8a8a;
  --line: #1f1f1f;
  --accent: #FFD60A;
  --paper: #ede6d3;
  --ink: #0a0a0a;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --display: "Anton", Impact, "Helvetica Neue", sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --section-pad: 120px;
  --img-filter: none;
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

[data-theme=light] {
  --bg: #f3eedf;
  --fg: #0a0a0a;
  --muted: #5a5a5a;
  --line: #e0d9c3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #0a0a0a;
}

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

:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  background: var(--accent);
  color: #0a0a0a;
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader__title {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 140px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  display: flex;
  gap: 0.15em;
}
.loader__title span {
  display: inline-block;
  animation: loadBounce 1.2s ease-in-out infinite;
}
.loader__title span:nth-child(2) {
  animation-delay: 0.08s;
}
.loader__title span:nth-child(3) {
  animation-delay: 0.16s;
}
.loader__title span:nth-child(4) {
  animation-delay: 0.24s;
}
.loader__title span:nth-child(5) {
  animation-delay: 0.32s;
}
.loader__title span:nth-child(6) {
  animation-delay: 0.4s;
}

.loader__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.loader__bar {
  width: 240px;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.loader__bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: loadSlide 1.2s ease-in-out infinite;
}

@keyframes loadBounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12%);
    color: var(--accent);
  }
}
@keyframes loadSlide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(350%);
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  mix-blend-mode: difference;
  color: #fafafa;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__brand b {
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__links a:hover::after {
  width: 100%;
}

.nav__right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  border: 1px solid currentColor;
  padding: 6px 10px;
  border-radius: 999px;
}
.lang-toggle button {
  padding: 2px 8px;
  border-radius: 999px;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.lang-toggle button.active {
  background: var(--accent);
  color: #0a0a0a;
}

.nav__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.nav__menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav__menu-btn span::before, .nav__menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
}
.nav__menu-btn span::before {
  top: -5px;
}
.nav__menu-btn span::after {
  top: 5px;
}

.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  padding: 88px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}
.nav__drawer.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.nav__drawer a {
  font-family: var(--display);
  font-size: clamp(40px, 12vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
}
.nav__drawer a:last-of-type {
  border-bottom: none;
}

.nav__drawer-meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 0;
}
.hero__bg .hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__bg .hero__bg-fade-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0.85) 15%, rgba(10, 10, 10, 0.3) 35%, rgba(10, 10, 10, 0) 60%, rgba(10, 10, 10, 0.3) 100%);
}
.hero__bg .hero__bg-fade-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 120px 40px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fafafa;
}

.hero__title-wrap {
  max-width: 100%;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fafafa;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: clamp(22px, 2.2vw, 36px);
  margin-top: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero__kicker {
  color: var(--accent);
  letter-spacing: 0.3em;
}

.hero__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__tagline {
  color: #fafafa;
  max-width: 32ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.35;
  z-index: 1;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: #0a0a0a;
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee--dark {
  background: #0a0a0a;
  color: var(--accent);
}

.marquee__track {
  display: inline-flex;
  gap: 48px;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: marquee 40s linear infinite;
}
.marquee__track > span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee__track .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.section {
  position: relative;
  padding: var(--section-pad) 32px;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 48px;
  gap: 24px;
}

.section__kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.section__title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  text-transform: none;
}

.section__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  max-width: 40ch;
  color: var(--muted);
}

.retro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
  user-select: none;
}
.retro-tag__symbols, .retro-tag__dots, .retro-tag__bars, .retro-tag__stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}
.retro-tag__sep {
  opacity: 0.55;
  padding: 0 2px;
}

.section__kicker-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.retro-tag--now-playing {
  border: none;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.3em;
  gap: 12px;
  color: var(--accent);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.retro-tag--now-playing .retro-tag__symbols {
  gap: 4px;
  font-size: 14px;
  line-height: 1;
}
.retro-tag--now-playing .retro-tag__symbols span {
  display: inline-block;
  animation: retroArrowChase 1.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.retro-tag--now-playing .retro-tag__symbols span:nth-child(1) {
  animation-delay: 0.24s;
}
.retro-tag--now-playing .retro-tag__symbols span:nth-child(2) {
  animation-delay: 0.12s;
}
.retro-tag--now-playing .retro-tag__symbols span:nth-child(3) {
  animation-delay: 0s;
}

.retro-tag--rec {
  color: #ff6e6e;
  border-color: rgba(255, 110, 110, 0.55);
}
.retro-tag--rec .retro-tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: retroBlink 1s steps(2, end) infinite;
}

.retro-tag--side-a {
  border-style: dashed;
  letter-spacing: 0.3em;
}

.retro-tag--frame {
  letter-spacing: 0.2em;
}
.retro-tag--frame .retro-tag__count {
  color: var(--fg);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}
.retro-tag--frame .retro-tag__count i {
  font-style: normal;
  color: var(--accent);
}

.retro-tag--channel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.retro-tag--channel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 214, 10, 0.22) 50%, transparent 100%);
  animation: retroScanline 2.6s linear infinite;
  pointer-events: none;
}

.retro-tag--on-air {
  background: rgba(255, 214, 10, 0.06);
  border-color: var(--accent);
}
.retro-tag--on-air .retro-tag__dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: retroPulse 1.4s ease-in-out infinite;
}
.retro-tag--on-air .retro-tag__dots span:nth-child(2) {
  animation-delay: 0.16s;
}
.retro-tag--on-air .retro-tag__dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.retro-tag--press {
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.4);
}
.retro-tag--press .retro-tag__stars {
  letter-spacing: 0.04em;
}

.retro-tag--transmit {
  border: none;
  padding: 0;
  margin-bottom: 14px;
}
.retro-tag--transmit .retro-tag__bars {
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.retro-tag--transmit .retro-tag__bars span {
  display: inline-block;
  width: 3px;
  background: currentColor;
  transform-origin: bottom center;
  animation: retroBars 1.4s ease-in-out infinite;
}
.retro-tag--transmit .retro-tag__bars span:nth-child(1) {
  height: 4px;
  animation-delay: 0s;
}
.retro-tag--transmit .retro-tag__bars span:nth-child(2) {
  height: 7px;
  animation-delay: 0.14s;
}
.retro-tag--transmit .retro-tag__bars span:nth-child(3) {
  height: 11px;
  animation-delay: 0.28s;
}
.retro-tag--transmit .retro-tag__bars span:nth-child(4) {
  height: 6px;
  animation-delay: 0.42s;
}

.retro-tag--dial {
  letter-spacing: 0.25em;
}

@keyframes retroArrowChase {
  0%, 100% {
    opacity: 0.25;
    transform: translateX(2px);
  }
  50% {
    opacity: 1;
    transform: translateX(-2px);
  }
}
@keyframes retroBlink {
  0%, 49.999% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.15;
  }
}
@keyframes retroScanline {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(110%);
  }
}
@keyframes retroPulse {
  0%, 100% {
    transform: scale(0.55);
    opacity: 0.35;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes retroBars {
  0%, 100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}
.novice__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.novice__feature {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
  aspect-ratio: 4/5;
}
.novice__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.novice__feature:hover img {
  transform: scale(1.04);
}

.novice__feature-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 60%);
  color: #fafafa;
}

.novice__feature-tag {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.novice__feature-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.novice__feature-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.novice__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  position: sticky;
  top: 0;
}

.novice__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  transition: transform 0.3s ease;
}
.novice__item:last-child {
  border-bottom: none;
}
.novice__item:hover {
  transform: translateX(6px);
}

.novice__item-date {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.novice__item-date strong {
  display: block;
  font-size: 36px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.novice__item-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.novice__item-title {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.novice__item-excerpt {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  max-width: 50ch;
}

.bio {
  position: relative;
}

.bio__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.bio__media {
  position: relative;
}

.bio__photo {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bio__photo--accent {
  position: absolute;
  right: -20%;
  bottom: -10%;
  width: 60%;
  aspect-ratio: 3/4;
  background: var(--accent);
  z-index: -1;
}

.bio__text {
  padding-top: 40px;
}

.bio__lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.bio__lead em {
  color: var(--accent);
}

.bio__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 18px;
  max-width: 56ch;
}
.bio__body p.muted {
  color: var(--muted);
}

.foto__filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.foto__filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s ease;
}
.foto__filter.active, .foto__filter:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.foto__grid {
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 900px) {
  .foto__grid {
    column-count: 2;
  }
}
@media (max-width: 560px) {
  .foto__grid {
    column-count: 1;
  }
}

.foto__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #1a1a1a;
}
.foto__item img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.foto__item:hover img {
  transform: scale(1.04);
}
.foto__item::after {
  content: attr(data-cap);
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10, 10, 10, 0.85);
  color: #fafafa;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out-quart), transform 0.3s var(--ease-out-quart);
}
.foto__item:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.foto__item.is-filtered-out {
  display: none;
}

.foto__webgl-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
}

.foto__item--webgl > img {
  visibility: hidden;
}
.foto__item--webgl:hover img {
  transform: none;
}

.video__featured {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 32px;
  cursor: pointer;
}
.video__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s var(--ease-out-quart), transform 0.5s var(--ease-out-quart);
}
.video__featured:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video__play-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}

.video__featured:hover .video__play-btn {
  transform: scale(1.1);
}

.video__featured-meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fafafa;
}
.video__featured-meta .tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.video__featured-meta h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  line-height: 1;
}

.video__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .video__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .video__grid {
    grid-template-columns: 1fr;
  }
}

.video__card {
  cursor: pointer;
}

.video__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
  border: 1px solid var(--line);
}
.video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video__card:hover .video__thumb img {
  transform: scale(1.05);
}

.video__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
}

.video__card-title {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.05;
}

.video__card-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

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

.nastupi__row {
  display: grid;
  grid-template-columns: 100px 1.5fr 1fr 140px 140px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out-quart), background 0.35s var(--ease-out-quart);
  will-change: transform;
}
.nastupi__row:hover {
  transform: translateX(16px);
  background: linear-gradient(90deg, rgba(255, 214, 10, 0.08), transparent);
}

.nastupi__date {
  font-family: var(--display);
  text-align: center;
  line-height: 0.9;
}
.nastupi__date .day {
  font-size: 56px;
  display: block;
  letter-spacing: -0.02em;
}
.nastupi__date .month {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.nastupi__title {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  text-transform: uppercase;
  line-height: 1;
}

.nastupi__venue {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.nastupi__city {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nastupi__btn {
  padding: 12px 18px;
  border: 1px solid var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nastupi__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}
.nastupi__btn--soldout {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}
.nastupi__btn--soldout:hover {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.quotes {
  background: var(--accent);
  color: #0a0a0a;
  padding: var(--section-pad) 32px;
  overflow: hidden;
}
.quotes .section__title,
.quotes .section__title em {
  color: #0a0a0a;
}
.quotes .section__title em {
  font-style: italic;
}

.quotes__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .quotes__inner {
    grid-template-columns: 1fr;
  }
}

.quote {
  border-top: 2px solid #0a0a0a;
  padding-top: 24px;
}

.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  margin-bottom: 24px;
}

.quote__source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.newsletter {
  padding: var(--section-pad) 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.newsletter h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  text-transform: none;
}
.newsletter p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 40px;
}

.newsletter__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 auto 14px;
  max-width: 540px;
  text-align: left;
}

.newsletter__form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.newsletter__form input {
  flex: 1;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  outline: none;
}
.newsletter__form button {
  padding: 0 32px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.newsletter__form button:hover {
  background: var(--fg);
  color: var(--accent);
}
.newsletter__form button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.newsletter__status {
  margin-top: 16px;
  min-height: 1em;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.newsletter__status--ok {
  color: var(--accent);
}
.newsletter__status--err {
  color: #ff8a80;
}

.kontakt {
  padding: var(--section-pad) 32px 60px;
}

.kontakt__email {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: none;
  position: relative;
  transition: color 0.3s ease;
}
.kontakt__email:hover {
  color: var(--accent);
}
.kontakt__email::after {
  content: "↗";
  margin-left: 0.15em;
  display: inline-block;
  transition: transform 0.3s ease;
}
.kontakt__email:hover::after {
  transform: translate(8px, -8px);
}

.kontakt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
@media (max-width: 900px) {
  .kontakt__grid {
    grid-template-columns: 1fr;
  }
}

.kontakt__card-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.kontakt__card h4 {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.kontakt__card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.kontakt__card a {
  border-bottom: 1px solid var(--line);
}
.kontakt__card a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer {
  padding: 60px 32px 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__socials {
  display: flex;
  gap: 18px;
}
.footer__socials a:hover {
  color: var(--accent);
}

.punchline-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 360px;
}
@media (max-width: 560px) {
  .punchline-btn {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-r {
  transform: translateX(-60px);
}

.reveal-r.in {
  transform: translateX(0);
}

.reveal-l {
  transform: translateX(60px);
}

.reveal-l.in {
  transform: translateX(0);
}

.title-reveal .row {
  overflow: hidden;
}
.title-reveal .row span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.title-reveal.in .row span {
  transform: translateY(0);
}
.title-reveal.in .row:nth-child(2) span {
  transition-delay: 0.12s;
}
.title-reveal.in .row:nth-child(3) span {
  transition-delay: 0.24s;
}

[data-parallax] {
  will-change: transform;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__menu-btn {
    display: inline-flex;
  }
  .hero__inner {
    padding: 100px 20px 40px;
  }
  .hero__bg {
    width: 100%;
    opacity: 0.55;
  }
  .hero__title-wrap {
    max-width: 100%;
  }
  .novice__grid,
  .bio__layout {
    grid-template-columns: 1fr;
  }
  .nastupi__row {
    grid-template-columns: 80px minmax(0, 1fr) 100px;
    grid-template-rows: auto auto;
    grid-template-areas: "date title btn" "date venue btn";
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
  }
  .nastupi__row .nastupi__date {
    grid-area: date;
    align-self: center;
  }
  .nastupi__row .nastupi__title {
    grid-area: title;
  }
  .nastupi__row .nastupi__venue {
    grid-area: venue;
  }
  .nastupi__row .nastupi__btn {
    grid-area: btn;
    align-self: center;
  }
  .nastupi__row:not(:has(.nastupi__btn--book)) {
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-areas: "date title" "date venue";
  }
  .nastupi__row .nastupi__city,
  .nastupi__row .nastupi__btn:not(.nastupi__btn--book) {
    display: none;
  }
  .section {
    padding: 80px 20px;
  }
  .nav {
    padding: 16px 20px;
  }
  .newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter__form input {
    flex: none;
    width: 100%;
  }
  .newsletter__form button {
    width: 100%;
  }
}
@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;
  }
  .marquee__track {
    animation: none !important;
  }
  [data-parallax] {
    transform: none !important;
  }
  .reveal,
  .title-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal .row span,
  .title-reveal .row span {
    transform: none !important;
  }
  .loader__title span,
  .loader__bar::after {
    animation: none !important;
  }
  .retro-tag .retro-tag__symbols span,
  .retro-tag .retro-tag__dots span,
  .retro-tag .retro-tag__bars span,
  .retro-tag .retro-tag__dot,
  .retro-tag--channel::before {
    animation: none !important;
  }
}
.scroll-x {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar {
  display: none;
}
