:root {
  --black: #000;
  --white: #fff;
  --muted: #767676;
  --line: #d9d9d9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 28px 20px 18px;
}

.logo {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1;
  margin-bottom: 24px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

nav a {
  opacity: 0.78;
}

nav a:hover {
  opacity: 1;
}

/* HOMEPAGE */

.home-page {
  padding-top: 0;
}

.home-feature {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 90px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.home-feature:nth-child(even) {
  background: #fafafa;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 12vw, 150px);
  letter-spacing: 0.16em;
  line-height: 0.9;
}

h2 {
  font-size: clamp(46px, 9vw, 118px);
  letter-spacing: 0.14em;
  line-height: 0.9;
}

h3 {
  font-size: 30px;
  letter-spacing: 0.12em;
}

.text-link,
.button,
.stream-buttons a {
  display: inline-block;
  margin-top: 4px;
  padding: 14px 32px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background 0.2s ease, color 0.2s ease;
}

.text-link:hover,
.button:hover,
.stream-buttons a:hover {
  background: var(--black);
  color: var(--white);
}

/* GENERAL SECTIONS */

.section {
  padding: 115px 8vw;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.section p {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}

.copy-block {
  max-width: 620px;
  margin: 0 auto;
}

/* VIDEO */

.video-frame {
  margin: 44px auto 0;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--black);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ARCHIVE */

.gallery-grid {
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
}

.era-card {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.era-card img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

/* ERA PAGE */

.era-page .section {
  padding: 115px 8vw;
}

.era-hero,
.centered-era {
  padding: 170px 5vw 105px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.era-hero h1,
.centered-era h1 {
  font-size: clamp(70px, 16vw, 180px);
  letter-spacing: 0.16em;
  line-height: 0.85;
}

.stream-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 38px 0 44px;
}

.spotify-frame,
.spotify-embed iframe {
  margin-top: 40px;
  border-radius: 0 !important;
}

.photo-collage {
  max-width: 1180px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-collage img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

/* FOOTER */

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 44px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

footer div {
  display: flex;
  gap: 22px;
}

/* REMOVE OLD ELEMENTS */

.hero,
.hero-overlay,
.hero-content,
.announcement,
.close {
  display: none;
}

/* MOBILE */

@media (max-width: 800px) {
  .site-header {
    padding: 24px 16px 18px;
  }

  .logo {
    font-size: 22px;
    letter-spacing: 0.24em;
    margin-bottom: 20px;
  }

  nav {
    gap: 16px;
    font-size: 10px;
  }

  .home-feature {
    min-height: 72vh;
    padding: 80px 20px;
  }

  h1 {
    letter-spacing: 0.1em;
  }

  h2 {
    letter-spacing: 0.1em;
  }

  .gallery-grid,
  .photo-collage {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 34px 22px;
  }

  footer div {
    flex-wrap: wrap;
    justify-content: center;
  }
}
