:root {
  --mmb-band-red: #e1262f;
  --mmb-band-red-dark: #b7161e;
  --mmb-band-black: #08090b;
  --mmb-band-panel: #111216;
  --mmb-band-panel-soft: #17181d;
  --mmb-band-white: #ffffff;
  --mmb-band-muted: rgba(255, 255, 255, 0.68);
  --mmb-band-line: rgba(255, 255, 255, 0.12);
}

.mmb-band,
.mmb-band * {
  box-sizing: border-box;
}

.mmb-band {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(225, 38, 47, 0.13),
      transparent 27%
    ),
    linear-gradient(180deg, #090a0c 0%, #101115 48%, #08090b 100%);
  color: var(--mmb-band-white);
  font-family: inherit;
}

.mmb-band::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 62%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 62%);
  pointer-events: none;
}

.mmb-band__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1460px);
  margin-inline: auto;
  padding-block: clamp(58px, 8vw, 112px) clamp(70px, 9vw, 126px);
}

.mmb-band__header {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.mmb-band__header-mark {
  width: clamp(42px, 6vw, 92px);
  height: 5px;
  flex: 0 0 auto;
  background: var(--mmb-band-red);
}

.mmb-band__header h1 {
  margin: 0;
  color: var(--mmb-band-white);
  font-size: clamp(3rem, 7.4vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.mmb-band__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.mmb-band__member {
  position: relative;
  display: flex;
  min-width: 0;
  grid-column: span 4;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mmb-band-line);
  background: rgba(17, 18, 22, 0.94);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.mmb-band__member:nth-child(-n + 2) {
  display: grid;
  min-height: 520px;
  grid-column: span 6;
  grid-template-columns: minmax(235px, 0.88fr) minmax(0, 1.12fr);
}

.mmb-band__member::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease;
}

.mmb-band__member:hover {
  border-color: rgba(225, 38, 47, 0.72);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.mmb-band__member:hover::after {
  border-color: rgba(225, 38, 47, 0.28);
}

.mmb-band__portrait {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(225, 38, 47, 0.13), transparent 52%),
    var(--mmb-band-panel-soft);
  place-items: center;
}

.mmb-band__member:nth-child(n + 3) .mmb-band__portrait {
  aspect-ratio: 3 / 4;
}

.mmb-band__portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, rgba(8, 9, 11, 0.28));
  content: "";
  pointer-events: none;
}

.mmb-band__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--mmb-band-position-y, 50%);
  filter: saturate(0.92) contrast(1.04);
  transition:
    filter 500ms ease,
    transform 700ms ease;
}

/*
 * The first two source portraits are small WordPress thumbnails. Keep them at
 * their intrinsic dimensions so the browser never upscales and softens them.
 */
.mmb-band__member:nth-child(-n + 2) .mmb-band__portrait img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mmb-band__member:hover .mmb-band__portrait img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.018);
}

.mmb-band__member:nth-child(-n + 2):hover .mmb-band__portrait img {
  transform: none;
}

.mmb-band__profile {
  position: relative;
  min-width: 0;
  padding: clamp(25px, 3vw, 40px);
}

.mmb-band__profile::before {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 21px;
  background: var(--mmb-band-red);
  content: "";
}

.mmb-band__profile h2 {
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--mmb-band-white);
  font-size: clamp(1.35rem, 2vw, 2.08rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-transform: uppercase;
}

.mmb-band__profile dl,
.mmb-band__profile dt,
.mmb-band__profile dd {
  margin: 0;
  padding: 0;
}

.mmb-band__profile dl {
  display: grid;
  gap: 0;
}

.mmb-band__profile dl > div {
  padding: 15px 0;
  border-top: 1px solid var(--mmb-band-line);
}

.mmb-band__profile dl > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.mmb-band__profile dt {
  margin-bottom: 5px;
  color: var(--mmb-band-red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mmb-band__profile dd {
  overflow-wrap: anywhere;
  color: var(--mmb-band-muted);
  font-size: clamp(0.91rem, 1.04vw, 1.02rem);
  line-height: 1.52;
}

.mmb-band__member:nth-child(n + 3) .mmb-band__profile {
  flex: 1 1 auto;
}

@media (prefers-reduced-motion: no-preference) {
  .mmb-band__member {
    animation: mmb-band-reveal 620ms ease-out both;
  }

  .mmb-band__member:nth-child(2) {
    animation-delay: 70ms;
  }

  .mmb-band__member:nth-child(3) {
    animation-delay: 140ms;
  }

  .mmb-band__member:nth-child(4) {
    animation-delay: 210ms;
  }

  .mmb-band__member:nth-child(5) {
    animation-delay: 280ms;
  }

  @keyframes mmb-band-reveal {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1120px) {
  .mmb-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmb-band__member,
  .mmb-band__member:nth-child(-n + 2) {
    display: flex;
    min-height: 0;
    grid-column: auto;
    flex-direction: column;
  }

  .mmb-band__member:last-child {
    grid-column: 1 / -1;
  }

  .mmb-band__portrait,
  .mmb-band__member:nth-child(n + 3) .mmb-band__portrait {
    aspect-ratio: 3 / 4;
  }

  .mmb-band__member:last-child {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .mmb-band__member:last-child .mmb-band__portrait {
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .mmb-band__inner {
    width: min(100% - 36px, 620px);
    padding-block: 54px 78px;
  }

  .mmb-band__header {
    margin-bottom: 34px;
  }

  .mmb-band__header-mark {
    width: 34px;
    height: 4px;
  }

  .mmb-band__header h1 {
    font-size: clamp(3rem, 15vw, 5.1rem);
  }

  .mmb-band__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mmb-band__member,
  .mmb-band__member:last-child {
    display: flex;
    grid-column: auto;
    flex-direction: column;
  }

  .mmb-band__portrait,
  .mmb-band__member:last-child .mmb-band__portrait {
    aspect-ratio: 3 / 4;
  }

  .mmb-band__profile {
    padding: 27px 24px 30px;
  }

  .mmb-band__profile h2 {
    margin-bottom: 25px;
    font-size: clamp(1.42rem, 7vw, 1.9rem);
  }

  .mmb-band__profile dd {
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .mmb-band__inner {
    width: min(100% - 28px, 390px);
  }

  .mmb-band__header {
    gap: 13px;
  }

  .mmb-band__header-mark {
    width: 26px;
  }
}
