
:root {
  --bg: #000;
  --fg: #fff;
  --muted: #a8a8a8;
  --pad: 24px;
  --small: 13px;
  --body: 17px;
}

* { box-sizing: border-box; }

html { margin: 0; padding: 0; scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.45;
}

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

a:hover { text-decoration: underline; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px var(--pad);
  background: var(--bg);
}

.site-logo {
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 54px;
  align-items: flex-start;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.dropdown {
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  font-size: 13px;
  line-height: 1.35;
}

.page {
  min-height: 100vh;
  padding: 120px var(--pad) 80px;
}

.home {
  min-height: 100vh;
  padding: 120px var(--pad) 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-intro {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.42;
}

.home-location {
  align-self: flex-end;
  text-align: right;
  font-size: var(--small);
  line-height: 1.35;
}

.page-title {
  margin: 0 0 70px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.lead {
  max-width: 620px;
  margin-bottom: 80px;
  font-size: 18px;
  line-height: 1.48;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 46px;
  max-width: 900px;
}

.project-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
}

.project-year {
  font-size: var(--small);
  color: var(--muted);
}

.project-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400;
}

.project-card p {
  max-width: 650px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.project-page {
  max-width: 1000px;
}

.project-meta {
  margin-top: 8px;
  margin-bottom: 70px;
  font-size: var(--small);
  color: var(--muted);
}

.project-hero {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin-bottom: 60px;
}

.project-copy {
  max-width: 620px;
  margin-bottom: 60px;
  font-size: 17px;
  line-height: 1.52;
}

.project-media {
  max-width: 900px;
  margin: 0 0 60px;
}

.project-media img,
.project-media video {
  display: block;
  width: 100%;
  height: auto;
}

audio {
  width: 100%;
  max-width: 620px;
  margin-bottom: 60px;
}

.back-link {
  display: inline-block;
  margin-top: 10px;
  font-size: var(--small);
}

.event-groups {
  display: flex;
  flex-direction: column;
  gap: 75px;
  max-width: 950px;
}

.event-group h2 {
  margin: 0 0 30px;
  font-size: 15px;
  font-weight: 400;
}

.event-list {
  display: flex;
  flex-direction: column;
}

.event {
  display: grid;
  grid-template-columns: 80px 160px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid #333;
}

.event:last-child { border-bottom: 1px solid #333; }

.event-year,
.event-role,
.event-place {
  font-size: var(--small);
}

.about {
  max-width: 720px;
}

.about-bio {
  margin-bottom: 90px;
  font-size: 20px;
  line-height: 1.48;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 400;
}

.about-section p,
.about-section ul {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.about-section ul {
  padding-left: 18px;
}

.music-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.music-list a {
  font-size: 20px;
}

.contact {
  font-size: 15px;
}

@media (max-width: 760px) {
  :root { --pad: 18px; }

  .site-header {
    padding: 17px var(--pad);
  }

  .site-nav {
    gap: 18px;
  }

  .site-logo,
  .nav-link {
    font-size: 13px;
  }

  .home {
    padding-top: 105px;
  }

  .home-intro {
    max-width: 90%;
    font-size: 17px;
  }

  .home-location {
    font-size: 12px;
  }

  .page {
    padding-top: 105px;
  }

  .project-card {
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }

  .event {
    grid-template-columns: 55px 1fr;
    gap: 12px;
  }

  .event-place {
    grid-column: 2;
    margin-top: -8px;
  }

  .about-bio {
    font-size: 18px;
  }
}
