:root {
  --font: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --serif: "EB Garamond", Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --bg: #f4f2ef;
  --fg: #1a1a1a;
  --muted: #706b66;
  --accent: #3d5a47;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  padding: 56px 48px 40px;
}

.hero-inner {
  max-width: 480px;
}

.hero-title {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: lowercase;
}

.hero-paren {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85em;
}

.hero-rest { color: var(--fg); }

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.hero-links a:hover { color: var(--fg); }

/* ── Music ── */
.music {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.music-art {
  aspect-ratio: 1;
  overflow: hidden;
}

.music-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-controls {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.music-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.music-now {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.music-ep {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  font-weight: 500;
}

.music-track-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

.music-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.music-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: grid;
  place-items: center;
  padding: 0;
  transition: color 0.15s ease;
}

.music-btn:hover { color: var(--fg); }

.music-btn--play {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--fg);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.music-btn--play:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.music-btn--skip {
  width: 24px;
  height: 24px;
}

.music-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.music-time {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  min-width: 24px;
}

.music-time:last-child { text-align: right; }

.music-progress {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
  cursor: pointer;
  transition: height 0.15s ease;
}

.music-progress:hover { height: 3px; }

.music-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

.music-tracklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.music-tracklist-item {
  font-size: 12px;
  padding: 6px 0;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.15s ease;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.music-tracklist-item:last-child { border-bottom: none; }
.music-tracklist-item:hover { color: var(--fg); }

.music-tracklist-item--active {
  color: var(--fg);
}

.music-tracklist-item--active::before {
  content: '— ';
  color: var(--accent);
}

.music-external {
  display: flex;
  gap: 16px;
  padding-top: 4px;
}

.music-external a {
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.15s ease;
}

.music-external a:hover { color: var(--accent); }

/* ── Bottom Row: Zine + Teaser ── */
.bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

/* ── Zine ── */
.zine-section {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zine-preview {
  display: flex;
  gap: 12px;
}

.zine-preview-page {
  display: block;
  width: 140px;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.zine-preview-page:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.zine-preview-page img {
  width: 100%;
  height: auto;
  display: block;
}

.zine-cta {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.zine-cta:hover { color: var(--fg); }

/* ── Teaser ── */
.teaser {
  position: relative;
  overflow: hidden;
  width: 320px;
}

.teaser-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}

.teaser::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.teaser-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: #fff;
  z-index: 2;
}

.teaser-label {
  display: inline-block;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 8px;
  margin-bottom: 8px;
}

.teaser-title {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.teaser-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  opacity: 0.6;
}

.teaser-pause {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 3;
}

.teaser:hover .teaser-pause { opacity: 1; }
.teaser-pause:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── Footer ── */
.site-footer {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.5px;
  transition: color 0.15s ease;
}

.footer-links a:hover { color: var(--fg); }

.copyright {
  color: var(--muted);
  font-size: 10px;
  opacity: 0.4;
}

/* ── Back Link (zine page) ── */
.back-link {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--fg);
  background: rgba(244,242,239,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 20px;
  line-height: 1;
  transition: border-color 0.15s ease;
  z-index: 100;
}

.back-link:hover { border-color: rgba(0,0,0,0.15); }

/* ── Zine Viewer ── */
.zine {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: grid;
  place-items: center;
  padding: 56px 24px;
  z-index: 10;
}

.zine-spread {
  position: absolute;
  display: flex;
  gap: 4px;
  max-width: min(100% - 48px, 1200px);
  max-height: calc(100% - 112px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.zine-spread--active {
  opacity: 1;
  pointer-events: auto;
}

.zine-page {
  max-height: calc(100vh - 112px);
  width: auto;
  height: auto;
  object-fit: contain;
  flex: 1;
  min-width: 0;
}

.zine-nav {
  position: absolute;
  top: 56px;
  bottom: 56px;
  width: 15%;
  min-width: 60px;
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  padding: 0;
}

.zine-nav--prev { left: 0; }
.zine-nav--next { right: 0; }

.zine-nav-hint {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(244,242,239,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  opacity: 0.5;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.zine-nav:hover .zine-nav-hint { opacity: 1; }

.zine-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  z-index: 2;
}

.zine-info {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}

.zine-info-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

.zine-info-link {
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
  padding: 7px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  transition: border-color 0.2s ease;
}

.zine-info-link:hover { border-color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 40px 24px 28px; }
  .hero-title { font-size: 30px; }

  .music { grid-template-columns: 1fr; }

  .music-art { aspect-ratio: 16/9; }

  .music-controls { padding: 24px; }

  .music-meta { flex-direction: column; align-items: flex-start; gap: 12px; }

  .bottom-row {
    grid-template-columns: 1fr;
  }

  .teaser { width: 100%; height: 280px; }

  .zine-section { padding: 28px 24px; }
  .zine-preview-page { width: 110px; }
}

@media (max-width: 520px) {
  .hero { padding: 28px 20px 20px; }
  .hero-title { font-size: 26px; }
  .hero-tagline { font-size: 13px; }
  .hero-links { gap: 12px; }

  .music-controls { padding: 20px; }
  .music-track-title { font-size: 18px; }

  .teaser { height: 240px; }

  .zine-section { padding: 20px; }
  .zine-preview { flex-wrap: wrap; }
  .zine-preview-page { width: 80px; }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }

  .zine { padding: 48px 8px 56px; }
  .zine-spread { max-width: calc(100% - 16px); max-height: calc(100% - 104px); }
  .zine-page { max-height: calc(100vh - 104px); }
  .zine-nav { width: 20%; min-width: 44px; top: 48px; bottom: 56px; }
  .zine-nav-hint { opacity: 0.85; }
  .zine-counter { bottom: 42px; }
  .zine-info { bottom: 44px; white-space: normal; max-width: 300px; }
}
