:root {
  --ink: #f3eee4;
  --muted: #bcb6aa;
  --paper: #141614;
  --panel: #1e211e;
  --panel-2: #29251e;
  --line: rgba(243, 238, 228, 0.16);
  --gold: #d8ac5e;
  --moss: #6f8068;
  --brick: #9e5648;
  --shadow: rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 64px);
  background: linear-gradient(to bottom, rgba(10, 12, 10, 0.8), rgba(10, 12, 10, 0));
}

.brand {
  display: block;
  width: 148px;
  height: 18px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(250px, 36vw, 460px);
  display: block;
  overflow: hidden;
  padding: 0;
  background: #050505;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.96) contrast(1.04) brightness(0.95);
}

.hero__shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0) 22%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0) 28%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 11vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary,
.signup-form button {
  background: var(--gold);
  color: #17140f;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button--ghost {
  border-color: rgba(243, 238, 228, 0.38);
  background: rgba(20, 22, 20, 0.18);
}

.section,
.mailing-list,
.site-footer {
  padding-left: clamp(20px, 7vw, 96px);
  padding-right: clamp(20px, 7vw, 96px);
}

.album-banner {
  padding: 34px 0 0;
}

.album-banner a {
  max-width: 960px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
}

.album-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.section--music {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.48) 52%, rgba(5, 5, 5, 0.78)),
    url("assets/listen-background.jpg") center / cover no-repeat;
}

.section--music .section__header,
.section--music .embed-grid {
  position: relative;
  z-index: 1;
}

.section__header {
  display: block;
  margin-bottom: 24px;
  text-align: left;
}

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

.embed-grid--listen {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
}

.embed-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 20px 60px var(--shadow);
  overflow: hidden;
}

.ffm-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 820px;
}

.ffm-crop {
  width: calc(100% + 88px);
  height: 100%;
  overflow: hidden;
  transform: translateX(-44px);
}

.ffm-embed {
  width: 100%;
  height: 1180px;
  transform: translateY(-50px);
}

.embed-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
}

.embed-card__title span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spotify-embed,
.ffm-embed,
.embed-placeholder {
  display: block;
  border: 0;
  background: #0f1110;
}

.embed-placeholder {
  min-height: 352px;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
}

.embed-placeholder p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.embed-placeholder span {
  color: var(--muted);
  line-height: 1.5;
}

.section--videos {
  background: #191b19;
}

.video-card {
  display: grid;
  grid-template-rows: auto auto;
}

.video-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090a09;
}

.video-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.video-link:hover img {
  transform: scale(1.03);
  opacity: 0.82;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 42px;
  border-radius: 7px;
  background: #fe0000;
  transform: translate(-50%, -50%);
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 11px;
  border-left: 16px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-card h3 {
  padding: 16px 18px 18px;
}

.instagram-strip {
  background: #050505;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.instagram-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #10120f;
}

.instagram-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.instagram-grid a:nth-child(1) img,
.instagram-grid a:nth-child(4) img {
  object-position: center;
}

.instagram-grid a:nth-child(3) img,
.instagram-grid a:nth-child(6) img {
  object-position: center;
}

.instagram-grid a:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(111, 128, 104, 0.32), rgba(158, 86, 72, 0.22)),
    var(--panel-2);
}

.video-placeholder p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.video-placeholder span,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mailing-list {
  display: grid;
  grid-template-columns: max-content minmax(300px, 520px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  justify-content: start;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--panel);
}

.mailing-list h2 {
  text-align: left;
}

.mailing-list p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.signup-form__row {
  display: grid;
  grid-template-columns: minmax(220px, 340px) auto;
  gap: 10px;
}

.signup-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(243, 238, 228, 0.24);
  border-radius: 4px;
  background: #111310;
  color: var(--ink);
  font: inherit;
  padding: 0 16px;
}

.signup-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.signup-form__message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.signup-form__message.is-success {
  color: #d8f2de;
}

.signup-form__message.is-error {
  color: #f1b2a8;
}

.form-note {
  margin: 12px 0 0;
}

.mailchimp-hidden {
  position: absolute;
  left: -5000px;
}

.social-section {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 42px clamp(20px, 7vw, 96px);
  background: #050505;
}

.social-section a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  text-decoration: none;
}

.social-section svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-section a:nth-child(2) svg,
.social-section a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.social-section a:hover {
  color: var(--gold);
}

.bottom-photo {
  min-height: clamp(280px, 46vw, 620px);
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.08)),
    url("assets/listen-background-original.jpg") center / cover no-repeat;
}

.site-footer {
  display: grid;
  place-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    gap: 12px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 270px;
  }

  .embed-grid,
  .video-grid,
  .instagram-grid,
  .mailing-list {
    grid-template-columns: 1fr;
  }

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

  .section__header {
    display: block;
  }

  .signup-form__row {
    grid-template-columns: 1fr;
  }

  .signup-form button {
    width: 100%;
  }

  .album-banner a {
    min-height: 128px;
    place-content: center;
  }

  .ffm-crop {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .embed-card__title {
    display: block;
  }
}
