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

:root {
  --bg: #fff;
  --fg: #111;
  --line: #111;
  --muted: #777;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

a:hover {
  opacity: 0.55;
}

/* scroll progress */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--fg);
  z-index: 1000;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* header */

header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  z-index: 900;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 8px 16px -12px rgba(0, 0, 0, 0.25);
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tagline {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  border-bottom: none;
  color: var(--muted);
}

.nav a.active,
.nav a:hover {
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
}

/* entrance animation */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* scroll reveal */

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero .kicker,
  .hero h1,
  .hero .bio,
  .article-head .kicker,
  .article-title {
    animation: none !important;
  }
}

/* hero */

.hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}

.hero .kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.05s both;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero .bio {
  max-width: 560px;
  font-size: 14px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero .bio p + p {
  margin-top: 10px;
}

/* section */

section.block {
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.block-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.block-num {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.block-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.block-body {
  max-width: 600px;
}

.block-body p + p {
  margin-top: 10px;
}

/* ep list */

.ep-list {
  list-style: none;
}

.ep-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-top: 1px solid #ddd;
  transition: padding-left 0.25s ease, opacity 0.25s ease;
}

.ep-list li:hover {
  padding-left: 8px;
  opacity: 0.6;
}

.ep-list li:first-child {
  border-top: none;
}

.ep-year {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  padding-top: 2px;
}

.ep-title {
  flex: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

/* timeline */

.timeline {
  list-style: none;
}

.timeline li {
  padding: 18px 0;
  border-top: 1px solid #ddd;
  transition: padding-left 0.25s ease, opacity 0.25s ease;
}

.timeline li:hover {
  padding-left: 8px;
  opacity: 0.6;
}

.timeline li:first-child {
  border-top: none;
}

.timeline .t-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.timeline .t-year {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.timeline .t-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.timeline .t-desc {
  max-width: 560px;
  font-size: 13px;
  color: #333;
}

/* now */

.now-box {
  border: 1px solid var(--line);
  padding: 20px;
}

.now-tracks {
  margin-top: 14px;
  list-style: none;
  font-size: 13px;
}

.now-tracks li {
  padding: 4px 0;
  color: #333;
  transition: padding-left 0.2s ease, opacity 0.2s ease;
}

.now-tracks li:hover {
  padding-left: 6px;
  opacity: 0.6;
}

.now-tracks li::before {
  content: "· ";
  color: var(--muted);
}

/* social / footer */

footer {
  padding: 48px 0 64px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 24px;
  font-size: 13px;
}

.social-links a:hover {
  opacity: 0.5;
}

.disclaimer {
  max-width: 560px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.copyright {
  margin-top: 32px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .logo {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: 36px;
  }

  .block-title {
    font-size: 21px;
  }

  .ep-list li,
  .timeline .t-head {
    flex-direction: column;
    gap: 2px;
  }

  .pull-quote {
    font-size: 24px;
  }
}

/* article / interview */

.article-head {
  padding: 48px 0 40px;
}

.article-head .kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease both;
}

.article-title {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: fadeInUp 0.7s ease 0.05s both;
}

.article-intro {
  border-bottom: 1px solid var(--line);
  padding: 24px 0 48px;
}

.article-intro p {
  max-width: 600px;
  font-size: 14px;
}

.article-photo {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.article-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.article-photo:hover img {
  transform: scale(1.035);
}

.article-photo figcaption {
  padding: 14px 24px;
  max-width: 760px;
  margin: 0 auto;
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
}

.qa-block {
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.qa {
  max-width: 620px;
}

.qa + .qa {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #ddd;
}

.qa .q {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.qa .q-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 12px;
}

.qa .a {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.qa .a-text {
  font-size: 14px;
}

.pull-quote-block {
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.pull-quote {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 640px;
}
