:root {
  --black: #080808;
  --white: #ffffff;
  --ink: #171717;
  --muted: #5c5c5c;
  --line: #d8d8d8;
  --paper: #f7f4ef;
  --electric: #00c2ff;
  --hot: #ff2f92;
  --gold: #f0c85a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .2) 72%, transparent);
  color: var(--white);
}

.brand,
nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  font-family: Syncopate, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 32px);
  font-family: "Readex Pro", sans-serif;
  font-size: 15px;
}

nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--electric);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .32) 44%, rgba(0, 0, 0, .72)),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .86));
}

.hero-copy {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 86px;
}

h1,
h2 {
  margin: 0 0 18px;
  font-family: Syncopate, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(48px, 10vw, 118px);
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(20px, 3vw, 30px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--hot);
  font-family: "Readex Pro", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 2px solid currentColor;
  color: inherit;
  background: transparent;
  font: 600 15px/1 "Readex Pro", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  color: var(--black);
  background: var(--white);
}

section:not(.hero) {
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.intro-band,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro-band {
  background: var(--paper);
}

.intro-band img,
.contact-section img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.copy-grid p {
  margin: 0;
  font-size: 18px;
}

.split-section {
  align-items: start;
}

.work-intro {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
}

.work-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  align-items: stretch;
  min-height: 158px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.work-item video,
.work-item audio {
  display: block;
  width: 100%;
}

.work-item video {
  height: 100%;
  min-height: 158px;
  object-fit: cover;
  background: var(--black);
}

.work-item audio {
  padding: 14px;
  background: var(--paper);
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
}

.work-copy h3 {
  margin: 0;
  font: 600 clamp(20px, 2.4vw, 28px)/1.2 "Readex Pro", sans-serif;
}

.work-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.band-life-section {
  border-top: 1px solid var(--line);
  background: var(--white);
  scroll-margin-top: 120px;
}

.band-life-list {
  max-width: 900px;
  margin-top: 28px;
}

.band-life-item {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.band-life-item video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
  background: var(--black);
}

.band-life-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
}

.band-life-copy h3,
.band-life-copy p {
  margin: 0;
}

.band-life-copy h3 {
  font: 600 clamp(20px, 2.4vw, 28px)/1.2 "Readex Pro", sans-serif;
}

.band-life-copy p {
  margin-top: 8px;
  color: var(--muted);
}

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

.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin-top: 28px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.gallery-item a,
.gallery-item img {
  display: block;
  width: 100%;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform .25s ease;
}

.gallery-item a:hover img {
  transform: scale(1.02);
}

.gallery-item figcaption {
  padding: 10px 12px 12px;
  font-size: 14px;
  color: var(--muted);
}

.video-wrap {
  overflow: hidden;
  background: var(--black);
  min-height: 158px;
  height: 100%;
}

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

.events-section {
  color: var(--white);
  background: var(--black);
}

.songs-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-top: clamp(44px, 6vw, 76px);
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  margin: 0 0 24px;
  font-size: clamp(20px, 3vw, 28px);
}

.song-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px clamp(28px, 5vw, 72px);
  margin-top: clamp(24px, 4vw, 44px);
}

.song-group h3 {
  margin: 0 0 14px;
  font: 600 22px/1.2 "Readex Pro", sans-serif;
}

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

.song-item {
  display: grid;
  min-height: 74px;
  align-content: center;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.song-item span {
  font-weight: 700;
}

.song-item small {
  color: var(--muted);
  font-size: 15px;
}

.section-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.events {
  display: grid;
  gap: 42px;
  margin-top: 28px;
}

.event-group-title {
  margin: 0;
  color: var(--white);
  font: 600 18px/1.2 "Readex Pro", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event {
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.event:target {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.event-with-poster {
  grid-template-columns: 96px minmax(0, 1fr) auto 160px;
}

.event-next {
  margin-top: 12px;
  padding-right: 18px;
  padding-left: 18px;
  border: 1px solid rgba(228, 190, 92, .55);
  background: rgba(228, 190, 92, .08);
}

.event-label {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: var(--muted);
  font: 600 11px/1 "Readex Pro", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.event-label-next {
  border-color: var(--gold);
  color: var(--gold);
}

.event-group-recent .event {
  opacity: .62;
}

.events-empty {
  margin: 18px 0 0;
  color: var(--muted);
}

.event-date {
  color: var(--gold);
  font: 700 20px/1.1 "Readex Pro", sans-serif;
}

.event h3 {
  margin: 0 0 6px;
  font: 600 24px/1.2 "Readex Pro", sans-serif;
}

.event p {
  margin: 0 0 4px;
}

.event a {
  color: var(--white);
}

.event-actions {
  min-width: 38px;
}

.event-link {
  display: block;
  margin-top: 8px;
}

.event-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.event-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.contact-section {
  background: var(--paper);
}

form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

form button {
  width: fit-content;
  color: var(--black);
}

form button:hover {
  color: var(--white);
  background: var(--black);
}

footer {
  padding: 28px;
  color: var(--white);
  background: var(--black);
  text-align: center;
  font-family: Syncopate, sans-serif;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .64)),
    linear-gradient(90deg, rgba(255, 47, 146, .38), transparent 42%, rgba(0, 194, 255, .36)),
    var(--black);
}

.thanks-panel {
  width: min(760px, calc(100% - 36px));
  padding: 72px 0;
}

.thanks-panel h1 {
  font-size: clamp(58px, 12vw, 118px);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: clamp(20px, 3vw, 28px);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 82vh;
  }

  section:not(.hero) {
    scroll-margin-top: 128px;
  }

  .intro-band,
  .split-section,
  .contact-section,
  .song-groups,
  .copy-grid,
  .gallery-list {
    grid-template-columns: 1fr;
  }

  .work-item {
    grid-template-columns: minmax(126px, 42%) 1fr;
    min-height: 104px;
  }

  .band-life-item {
    grid-template-columns: minmax(126px, 42%) 1fr;
  }

  #behind-the-band {
    scroll-margin-top: 156px;
  }

  .work-item video,
  .video-wrap,
  .band-life-item video {
    min-height: 104px;
  }

  .work-copy {
    padding: 16px;
  }

  .band-life-copy {
    padding: 16px;
  }

  .gallery-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item figcaption {
    padding: 8px 10px 10px;
    font-size: 13px;
  }

  .video-wrap {
    position: static;
  }

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

  .event-with-poster {
    grid-template-columns: 1fr;
  }

  .event-poster {
    width: min(240px, 100%);
  }
}
