.merch-home {
  background: #0b0e0c;
  border-top: 1px solid #292d28;
  border-bottom: 1px solid #292d28;
}

.merch-heading {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: 80px;
  align-items: end;
}

.merch-intro p {
  margin: 0 0 24px;
  color: #9ca198;
  font-size: 16px;
  line-height: 1.65;
}

.merch-store .merch-intro p {
  color: #5e625a;
}

.merch-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.merch-product-card {
  min-width: 0;
  border: 1px solid #30342f;
  background: #151815;
  transition: transform .25s ease, border-color .25s ease;
}

.merch-product-card:hover,
.merch-product-card:focus-visible {
  transform: translateY(-5px);
  border-color: #89b83f;
}

.merch-product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f2f2ef;
}

.merch-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}

.merch-product-card:hover .merch-product-image img {
  transform: scale(1.025);
}

.merch-product-copy {
  padding: 21px 20px 23px;
}

.merch-product-copy > span {
  color: #858a81;
  font: 9px monospace;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.merch-product-copy h2,
.merch-product-copy h3 {
  min-height: 52px;
  margin: 9px 0 18px;
  color: #e0e3dc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.merch-product-copy p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #30342f;
  color: #dfe2da;
  font: 700 11px monospace;
}

.merch-product-copy p b {
  color: #89b83f;
  font-weight: 700;
  text-transform: uppercase;
}

.merch-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 88px;
  background: #0c100d;
}

.merch-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #070908fa, #070908dc 47%, #07090862),
    url('/assets/dfw-hero.webp') center / cover no-repeat;
}

.merch-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 68px;
  align-items: center;
  padding-block: 100px 92px;
}

.merch-hero h1 {
  font-size: clamp(58px, 7.4vw, 104px);
}

.merch-hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c1c3bd;
  font-size: 18px;
  line-height: 1.65;
}

.merch-hero-product {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(242, 242, 239, .94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .36);
  transform: rotate(2deg);
}

.merch-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.merch-store {
  background: #efeee8;
  color: #0b0d0c;
}

.merch-store .merch-product-card {
  border-color: #c6c7c2;
  background: #f6f5ef;
}

.merch-store .merch-product-card:hover,
.merch-store .merch-product-card:focus-visible {
  border-color: #699e0a;
}

.merch-store .merch-product-copy > span {
  color: #777b73;
}

.merch-store .merch-product-copy h2 {
  color: #171a18;
}

.merch-store .merch-product-copy p {
  border-color: #c6c7c2;
  color: #343832;
}

.merch-store .merch-product-copy p b {
  color: #4f7907;
}

.merch-band {
  padding: 115px 0;
  border-top: 1px solid #292d28;
  background: linear-gradient(90deg, #070908f0, #070908a8), url('/assets/dfw-hero.webp') center 58% / cover no-repeat;
}

.merch-band-inner {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 100px;
  align-items: end;
}

.merch-band-inner > div:last-child > p {
  margin: 0 0 28px;
  color: #aeb3aa;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .merch-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .merch-hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .merch-heading,
  .merch-band-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .merch-hero-grid {
    grid-template-columns: 1fr;
  }

  .merch-hero-product {
    display: none;
  }
}

@media (max-width: 820px) {
  .merch-hero {
    min-height: auto;
    padding-top: 74px;
  }

  .merch-hero-grid {
    padding-block: 82px 88px;
  }
}

@media (max-width: 560px) {
  .merch-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .merch-product-grid-home .merch-product-card:nth-child(n+3) {
    display: none;
  }

  .merch-product-copy h2,
  .merch-product-copy h3 {
    min-height: auto;
  }

  .merch-hero-lede {
    font-size: 16px;
  }

  .merch-band {
    padding: 82px 0;
  }

  .merch-band .button {
    width: 100%;
  }
}
