/* Need I Suffer one-page metal band site */

:root {
  --black: #080a09;
  --black-soft: #101311;
  --panel: #141916;
  --bone: #d8d0ba;
  --muted: #9b9e95;
  --green: #789a7a;
  --green-dark: #223629;
  --line: rgba(216, 208, 186, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(71, 113, 76, 0.14), transparent 30rem),
    var(--black);
  color: var(--bone);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(4, 7, 5, 0.22), rgba(4, 7, 5, 0.96)),
    radial-gradient(circle at center, rgba(76, 112, 77, 0.2), transparent 52%);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), transparent 20%, transparent 80%, rgba(0,0,0,.75)),
    linear-gradient(0deg, rgba(0,0,0,.78), transparent 45%);
  pointer-events: none;
}

.nav-wrap {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--bone);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px 0;
  background: var(--bone);
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1100px);
  text-align: center;
}

.hero-logo {
  width: min(100%, 980px);
  margin: 0 auto;
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(1.08);
  box-shadow: 0 0 80px rgba(99, 142, 104, 0.07);
}

.hero-tagline {
  margin: 20px 0 30px;
  color: var(--muted);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bone);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  background: var(--bone);
  color: var(--black);
}

.button-outline:hover,
.button-small:hover {
  background: var(--bone);
  color: var(--black);
}

.button-small {
  min-height: 40px;
  padding: 8px 16px;
}

.scroll-mark {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 60px;
}

.section-heading > span {
  padding-top: 9px;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 600;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  margin-bottom: 0;
  max-width: 850px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 500;
}

h3 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: center;
  gap: clamp(40px, 7vw, 95px);
}

.band-photo {
  position: relative;
  margin: 0;
  background: var(--panel);
}

.band-photo::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid rgba(120, 154, 122, .45);
  z-index: -1;
}

.band-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.72) contrast(1.08);
}

.band-copy {
  color: var(--muted);
}

.band-copy .lead {
  color: var(--bone);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
}

.members {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.members div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.members strong {
  color: var(--bone);
  font-weight: 500;
}

.members span {
  color: var(--green);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-align: right;
}

.music-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(rgba(12, 17, 13, .94), rgba(12, 17, 13, .94)),
    url("assets/band-members.jpg") center 25% / cover;
  border-block: 1px solid var(--line);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.album-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(119, 154, 122, .22), transparent 58%),
    repeating-linear-gradient(45deg, #101510, #101510 8px, #141b15 8px, #141b15 16px);
  border: 1px solid var(--line);
  box-shadow: 0 25px 80px rgba(0,0,0,.42);
}

.album-placeholder span {
  color: rgba(216, 208, 186, .45);
  text-align: center;
  letter-spacing: .3em;
}

.release-copy {
  max-width: 620px;
}

.release-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.release-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.stream-links a,
.social-links a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.show-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.show-row time {
  display: flex;
  flex-direction: column;
}

.show-row time strong {
  color: var(--green);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
}

.show-row time span,
.show-row p {
  color: var(--muted);
  font-size: .88rem;
}

.show-row h3 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}

.show-row p {
  margin-bottom: 0;
}

.contact-section {
  padding-top: 60px;
}

.contact-panel {
  padding: clamp(40px, 8vw, 100px);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(120, 154, 122, .15), transparent 50%),
    var(--panel);
  border: 1px solid var(--line);
}

.contact-panel h2 {
  margin-inline: auto;
}

.contact-panel > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.email-link {
  display: inline-block;
  margin: 16px 0 32px;
  color: var(--bone);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-underline-offset: 7px;
  text-decoration-color: var(--green);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

footer {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 30px 0 45px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

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

@media (max-width: 820px) {
  .nav-wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    background: rgba(8, 10, 9, .97);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .section {
    width: min(calc(100% - 32px), var(--max));
    padding: 85px 0;
  }

  .section-heading {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    margin-bottom: 42px;
  }

  .band-grid,
  .release-card {
    grid-template-columns: 1fr;
  }

  .band-photo {
    width: min(100%, 560px);
  }

  .music-section {
    width: 100%;
    padding-inline: 16px;
  }

  .album-placeholder {
    width: min(100%, 430px);
  }

  .show-row {
    grid-template-columns: 100px 1fr;
  }

  .show-row .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 760px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-tagline {
    letter-spacing: .12em;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-mark {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .members div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .members span {
    text-align: left;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .show-row .button {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
  }
}
