@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #060606;
  --bg-soft: #0d0d0d;
  --panel: #101010;
  --text: #ddd6c9;
  --muted: #8c8579;
  --line: #222222;
  --line-strong: #313131;
  --accent: #efe7d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.65;
  letter-spacing: 0.01em;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 36px, 36px 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: white;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 6, 6, 0.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.92;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

main {
  flex: 1;
}

.hero,
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding-top: 6rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("vozurna_web_images/retrospectralcover.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(20px);
  transform: scale(1.12);
  opacity: 0.22;
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(6, 6, 6, 0.98) 0%,
      rgba(6, 6, 6, 0.56) 14%,
      rgba(6, 6, 6, 0.14) 28%,
      rgba(6, 6, 6, 0.14) 72%,
      rgba(6, 6, 6, 0.56) 86%,
      rgba(6, 6, 6, 0.98) 100%
    ),
    linear-gradient(to bottom,
      rgba(6, 6, 6, 0.8) 0%,
      rgba(6, 6, 6, 0.24) 30%,
      rgba(6, 6, 6, 0.38) 75%,
      rgba(6, 6, 6, 0.92) 100%
    );
  z-index: -2;
}

.hero-inner {
  width: 100%;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  border-top: 1px solid var(--line-strong);
  padding-top: 1rem;
  max-width: 700px;
}

.eyebrow,
h2,
.footer-inner {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 1rem 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2 {
  margin: 0 0 1rem 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-weight: 500;
}

h2 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-top: 0.2rem;
  font-weight: 500;
  color: var(--muted);
  opacity: 0.82;
}

p {
  margin: 0 0 1rem 0;
  max-width: 65ch;
}

.lead {
  font-size: 1rem;
  max-width: 56ch;
}

.muted {
  color: var(--muted);
}

.section {
  border-top: 1px solid var(--line);
}

.block {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2.25rem;
}

.music-list,
.link-list {
  display: grid;
  gap: 0.9rem;
}

.music-item,
.link-list a {
  padding-top: 0.15rem;
}

.music-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}

.embed-item {
  padding-top: 0.6rem;
  padding-bottom: 1.2rem;
}

.embed-item iframe {
  display: block;
  max-width: 100%;
}

.music-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.terminal-note {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0.72;
}

footer {
  border-top: 1px solid var(--line-strong);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.8rem 1rem;
  }

  .hero,
  .section {
    padding: 3rem 1.25rem;
  }

  .hero {
    min-height: 58vh;
    padding-top: 5rem;
  }

  .block {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 6rem);
  }

  .embed-item iframe {
  width: 100%;
  height: 470px;
}
}