@font-face {
  font-family: "ImpactLocal";
  src: local("Impact");
}

:root {
  --paper: #f4f1ea;
  --ink: #181818;
  --muted: #706b64;
  --red: #a9473f;
  --amber: #d89a63;
  --line: #d8d2c7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.5;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: .08;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,.8) 0px,
      rgba(0,0,0,.8) 1px,
      transparent 1px,
      transparent 4px
    );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 58px;
  background: rgba(244, 241, 234, .92);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 0 24px;
  backdrop-filter: blur(6px);
}

.logo {
  position: absolute;
  left: 24px;
  font-family: ImpactLocal, "Arial Black", sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 48px;
}

.nav a, .social-row a, .link-list a, .big-contact a {
  color: var(--ink);
  text-decoration: none;
}

.nav a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav a:hover,
.social-row a:hover,
.link-list a:hover,
.big-contact a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.45)),
    url("assets/hero.png");
  background-size: cover;
  background-position: center;
  filter: contrast(1.25) saturate(.6) grain(.2);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 70%, rgba(216,154,99,.45), transparent 20%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), rgba(255,255,255,.08) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: screen;
  opacity: .55;
}

.hero-title {
  position: absolute;
  left: 7vw;
  bottom: 8vh;
  color: #f8f2e8;
  text-shadow: 0 3px 20px rgba(0,0,0,.7);
}

.hero-quote {
  max-width: 600px;
  margin: 10px auto;
  text-align: center;
}

.hero-quote blockquote {
  font-size: clamp(1.0rem, 2vw, 2rem);
  line-height: 1.2;
  margin: 0 0 24px;
  font-style: italic;
}

.hero-quote p {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.hero-quote a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-quote a:hover {
  color: #B0473E;
}

.kicker {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

h1, h2 {
  font-family: ImpactLocal, "Arial Black", sans-serif;
  line-height: .9;
  letter-spacing: .03em;
  text-transform: lowercase;
}

h1 {
  margin: 0;
  font-size: clamp(70px, 12vw, 190px);
}

h2 {
  text-align: center;
  font-size: clamp(52px, 8vw, 96px);
  margin: 48px 0 40px;
}

h3 {
  font-family: ImpactLocal, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.social-row {
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 28px;
}

.photo-strip {
  width: min(980px, 100%);
  height: 400px;
  margin: 0 auto -25px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

blockquote {
  max-width: 720px;
  margin: 56px auto 0;
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.cover {
  aspect-ratio: 1 / 1;
  margin-bottom: 26px;
}

.release audio {
  width: 100%;
  margin: 16px 0 26px;
}

.release ol {
  list-style: decimal;
  padding-left: 24px;
  border-top: 1px solid var(--line);
}

.release li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.short-bio {
  margin-top: 70px;
  max-width: 260px;
}

.short-bio p {
  margin-top: 30px;
}

.contact-section {
  min-height: 75vh;
}

.contact-section h2 {
  text-align: left;
  font-size: clamp(64px, 10vw, 145px);
}

.big-contact {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  margin-left: 16vw;
}

.newsletter {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: end;
}

.newsletter label {
  grid-column: 1 / -1;
  font-size: 36px;
}

.newsletter input {
  height: 74px;
  border: 2px solid var(--ink);
  background: transparent;
  font-size: 24px;
  padding: 12px 18px;
}

.newsletter button {
  height: 74px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 28px;
  cursor: pointer;
}

.newsletter button:hover {
  background: var(--red);
}

.placeholder {
  background:
    linear-gradient(135deg, rgba(169,71,63,.14), transparent),
    repeating-linear-gradient(45deg, #ddd7cc, #ddd7cc 2px, #f4f1ea 2px, #f4f1ea 8px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  filter: grayscale(.2) contrast(1.1);
}

.placeholder.alt {
  background:
    linear-gradient(135deg, rgba(20,20,20,.86), rgba(169,71,63,.45)),
    repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(255,255,255,.08) 5px, rgba(255,255,255,.08) 6px);
  color: var(--paper);
}

footer {
  padding-bottom: 40px;
}

audio {
  width: 300px;
  height: 32px;
}

@media (max-width: 800px) {
  .site-header {
    justify-content: flex-start;
  }

  .logo {
    position: static;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 18px;
  }

  .nav.open {
    display: flex;
  }

  .music-grid,
  .epk-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .big-contact {
    margin-left: 0;
  }
}

.album {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.album-cover {
  width: 250px;
  display: block;
  margin: 0 auto 20px;
}

audio {
  display: block;
  margin: 10px auto;
}

h3 {
  font-family: ImpactLocal, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.album-title {
  text-transform: lowercase;
}

.track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.track span {
  font-size: 1.2rem;
  font-weight: lighter
}

.track audio {
  width: 350px;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 10px 0;
}

.social-row img {
  width: 32px;
  height: 32px;
  display: block;
}

.social-row a:hover {
  opacity: 0.7;
}

.epk-grid {
  display: grid;
  grid-template-columns: 320px 500px;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.photo-carousel {
  border-top: 1px solid var(--ink);
  padding-top: 18px;

  display: flex;
  gap: 16px;

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: thin; /* Firefox */
}

.photo-carousel::-webkit-scrollbar {
  height: 8px;
}

.photo-carousel img {
  height: 500px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.video-section {
  max-width: 1000px;
  margin: 40px auto 0;
}

.video-section iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.album-window {
  max-width: 760px;
  margin: 30px auto;
  border: 3px double #111;
  background: #f7f2df;
  box-shadow: 8px 8px 0 #111;
  padding: 0;
}

.window-bar {
  display: flex;
  justify-content: space-between;
  background: #111;
  color: #f7f2df;
  font-family: monospace;
  font-size: 14px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.album {
  padding: 28px;
}

.track {
  border-top: 1px dotted #111;
  padding: 14px 0;
}

.album-info {
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 1px;
}