:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #050505;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --soft: rgba(255, 255, 255, 0.7);
  --accent: #fa98f0;
  --lead-blue: #0f4f71;
  --lead-cream: rgba(248, 242, 227, 0.98);
  --line: rgba(255, 255, 255, 0.08);
  --sans: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: "Apple Garamond Light", "Apple Garamond", Garamond, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

button {
  appearance: none;
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

img {
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.15rem;
  background: var(--accent);
  color: #050505;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.masthead {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  right: 1rem;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.masthead a {
  pointer-events: auto;
}

.masthead__brand {
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.masthead__hire {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.6vw, 1.8rem);
  line-height: 1;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.08em;
}

.showcase {
  width: 100%;
}

.showcase__bands {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.showcase-band,
.contact-band {
  position: relative;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  text-align: left;
}

.showcase-band {
  display: block;
  cursor: pointer;
}

.showcase-band__image,
.contact-band__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-band__image {
  transform: scale(1);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s ease;
  will-change: transform, filter;
}

.showcase-band__preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.showcase-band__preview iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
}

.showcase-band__scrim,
.contact-band__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.showcase-band--lead {
  height: clamp(32rem, 64vw, 46rem);
}

.showcase-band--lead .showcase-band__scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.showcase-band--photo {
  height: clamp(8rem, 18vw, 12rem);
}

.showcase-band--photo .showcase-band__scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.showcase-band--design {
  height: clamp(8rem, 18vw, 12rem);
}

.showcase-band--design .showcase-band__scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.showcase-band--design .showcase-band__title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.1rem, 2.8vw, 1.9rem);
}

.showcase-band__lead-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  height: 20%;
  padding: 1rem 1rem 1.1rem;
  background: transparent;
}

.showcase-band__lead-title {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--lead-blue);
  font-size: clamp(1.2rem, 2.65vw, 1.95rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
}

.showcase-band__lead-year {
  color: var(--lead-blue);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.9vw, 1.15rem);
  line-height: 1;
}

.showcase-band__title {
  position: absolute;
  left: 0.95rem;
  bottom: 0.95rem;
  z-index: 2;
  color: #fff;
  font-size: clamp(1.1rem, 2.8vw, 1.95rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition: transform 0.45s ease, color 0.45s ease, opacity 0.45s ease;
}

.showcase-band__year {
  position: absolute;
  right: 0.95rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2.05vw, 1.3rem);
  line-height: 1;
  transition: transform 0.45s ease, color 0.45s ease, opacity 0.45s ease;
}

.showcase-band__lead-title,
.showcase-band__lead-year {
  transition: transform 0.45s ease, color 0.45s ease, opacity 0.45s ease;
}

.contact-band {
  height: clamp(32rem, 58vw, 48rem);
}

.contact-band__scrim {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.26) 70%, rgba(0, 0, 0, 0.12) 100%);
}

.contact-band__content {
  position: absolute;
  left: 1rem;
  top: 4rem;
  z-index: 2;
  display: grid;
  gap: 1.2rem;
  max-width: min(56vw, 32rem);
}

.contact-band__eyebrow {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2.1vw, 1.5rem);
  line-height: 1;
  color: #fff;
}

.contact-band__title {
  margin: 0;
  max-width: 9ch;
  color: #fff;
  font-size: clamp(2.05rem, 5.7vw, 4.6rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.contact-band__email {
  width: fit-content;
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.brand-carousel {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
}

.brand-carousel__track {
  display: flex;
  width: max-content;
  --brand-carousel-shift: 0px;
  animation: brand-carousel-scroll 28s linear infinite;
  will-change: transform;
}

.brand-carousel__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.1rem);
  padding: 0.85rem 1rem;
  white-space: nowrap;
}

.brand-carousel__item {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.7vw, 1.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.brand-carousel__item:hover,
.brand-carousel__item:focus-visible {
  color: var(--accent);
  opacity: 1;
}

@keyframes brand-carousel-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--brand-carousel-shift)));
  }
}

@media (hover: hover) and (pointer: fine) {
  .showcase-band:hover .showcase-band__image,
  .showcase-band:focus-visible .showcase-band__image {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.03) brightness(1.03);
  }

  .showcase-band:hover .showcase-band__preview,
  .showcase-band:focus-visible .showcase-band__preview {
    opacity: 1;
  }

  .showcase-band:hover .showcase-band__title,
  .showcase-band:hover .showcase-band__year,
  .showcase-band:hover .showcase-band__lead-title,
  .showcase-band:hover .showcase-band__lead-year,
  .showcase-band:focus-visible .showcase-band__title,
  .showcase-band:focus-visible .showcase-band__year,
  .showcase-band:focus-visible .showcase-band__lead-title,
  .showcase-band:focus-visible .showcase-band__lead-year {
    transform: translateY(-0.08rem);
  }
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
  color: #fff;
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  line-height: 1;
}

.footer__left {
  justify-self: start;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.8vw, 2.75rem);
  white-space: nowrap;
}

.footer__right {
  justify-self: end;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.08em;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.video-modal__shell {
  position: relative;
  z-index: 1;
  width: min(95vw, calc((95svh - 2rem) * 16 / 9 + 2rem));
  max-height: 95svh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #060606;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  padding: 1rem;
}

.video-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}

.video-modal__stage {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.video-modal__stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.showcase-band:focus-visible,
.contact-band a:focus-visible,
.masthead a:focus-visible,
.footer button:focus-visible,
.footer a:focus-visible,
.video-modal__close:focus-visible {
  outline: 2px solid rgba(250, 152, 240, 0.45);
  outline-offset: 3px;
}

@media (max-width: 500px) {
  .masthead {
    top: 0.75rem;
    left: 0.85rem;
    right: 0.85rem;
  }

  .showcase-band--lead {
    height: clamp(20rem, 76vw, 26rem);
  }

  .showcase-band__lead-strip {
    bottom: 17%;
    height: 20%;
    padding-inline: 0.9rem;
  }

  .showcase-band__title {
    left: 0.9rem;
    bottom: 0.9rem;
    white-space: normal;
  }

  .showcase-band__lead-title {
    white-space: normal;
    overflow: visible;
  }

  .showcase-band__year {
    right: 0.9rem;
    bottom: 0.95rem;
  }

  .contact-band__content {
    left: 0.9rem;
    top: 1.45rem;
    max-width: 78vw;
  }

  .brand-carousel__group {
    gap: 1rem;
    padding: 0.8rem 0.9rem;
  }

  .brand-carousel__item {
    font-size: 0.95rem;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-inline: 0.9rem;
    gap: 0.8rem;
  }

  .footer__nav {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .footer__right {
    justify-self: start;
  }

  .video-modal {
    padding: 0;
    place-items: stretch;
  }

  .video-modal__shell {
    width: 100vw;
    height: 100svh;
    max-height: none;
    padding: 0;
    border: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .video-modal__close {
    top: 0.55rem;
    right: 0.55rem;
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.95rem;
    border-width: 1px;
  }

  .video-modal__stage {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
  }
}

@media (max-width: 700px) and (orientation: portrait) {
  .video-modal__stage {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100svh;
    height: 100svw;
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .brand-carousel__track {
    animation: none;
    transform: none;
    --brand-carousel-shift: 0px;
  }
}
