:root {
  --black: #050505;
  --paper: #f0efeb;
  --white: #ffffff;
  --ink: #151515;
  --muted: #616161;
  --blue: #91b8f3;
  --red: #fa6265;
  --yellow: #f4c558;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: #cfcec9;
  --max: 1280px;
  --sans: "Avenir Next", Avenir, Montserrat, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  letter-spacing: 0;
  line-height: 1.55;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 82px;
  padding: 0 42px;
  border-bottom: 1px solid transparent;
  align-items: center;
  justify-content: space-between;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.96);
}

.logo {
  width: 310px;
}

.logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav a,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  min-height: 44px;
  padding: 12px 0;
}

.site-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 10px 7px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 94svh;
  overflow: hidden;
  background: #737d83;
  align-items: flex-end;
}

.hero-picture,
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-media {
  object-fit: cover;
  object-position: 58% 40%;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.22);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 48px 72px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.62);
}

.hero-copy > p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy > p i {
  margin: 0 8px;
  color: var(--red);
  font-style: normal;
}

.hero h1 {
  max-width: 930px;
  margin: 0 0 28px;
  font-size: 7.2rem;
  line-height: 0.84;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  gap: 10px;
  padding: 9px 0 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  align-items: center;
}

.scroll-cue {
  display: flex;
  width: 44px;
  min-height: 52px;
  margin: 24px auto 0;
  color: var(--white);
  text-decoration: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.scroll-chevron {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.black-section,
.paper-section {
  padding: 112px 48px;
}

.black-section {
  background: var(--black);
  color: var(--white);
}

.paper-section {
  background: var(--paper);
  color: var(--ink);
}

.about-layout,
.music-layout,
.screen-heading,
.video-grid,
.career-heading,
.career-grid,
.artist-path-layout,
.contact-layout,
.footer-row {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blue {
  color: var(--blue);
}

.red {
  color: var(--red);
}

.yellow {
  color: var(--yellow);
}

.section-heading h2,
.artist-path-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 5.1rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px 74px;
  align-items: start;
}

.about {
  padding-bottom: 72px;
}

.about-layout .section-heading {
  grid-column: 1 / -1;
}

.about-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #181818;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.about-copy {
  max-width: 760px;
  padding-top: 6px;
  align-self: center;
}

.about-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-copy p:first-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.career {
  padding-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.career-heading {
  margin-bottom: 52px;
}

.career-heading h2 {
  max-width: 760px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.career-card {
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
}

.career-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.career-card > div {
  padding: 28px;
}

.career-card h3 {
  margin: 0 0 14px;
  font-size: 1.32rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.career-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: center;
}

.spotify-player iframe {
  display: block;
  border: 0;
  border-radius: 8px;
}

.screen-heading {
  margin-bottom: 56px;
}

.screen-heading h2 {
  max-width: 980px;
}

.screen-heading > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.66);
}

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

.video-card {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.video-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #181818;
}

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

.play-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-width: 68px;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.video-card:hover .video-image img {
  opacity: 0.82;
  transform: scale(1.02);
}

.video-caption {
  display: block;
  padding: 18px 0 0;
}

.video-caption strong,
.video-caption small {
  display: block;
}

.video-caption strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.video-caption small {
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-path {
  scroll-margin-top: 82px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--paper);
  color: var(--ink);
}

.artist-path-question {
  width: min(100%, var(--max));
  margin: 0 auto 30px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-path-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.artist-path-image {
  margin: 0;
  overflow: hidden;
  background: #d8d7d2;
  aspect-ratio: 4 / 3;
}

.artist-path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.artist-path-copy {
  padding: 0;
}

.artist-path-copy h2 {
  max-width: 620px;
  font-size: 3.4rem;
}

.artist-path-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.button-link {
  display: inline-flex;
  min-height: 54px;
  gap: 14px;
  padding: 15px 20px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.button-link:hover {
  background: transparent;
  color: var(--black);
}

.artist-path .button-link {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.artist-path .button-link:hover {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}

.contact {
  padding-bottom: 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  padding-bottom: 0;
  align-items: start;
}

.contact-copy {
  padding: 0;
}

.contact-copy h2 {
  max-width: 970px;
  margin-bottom: 28px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 24px;
}

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

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: #111111;
  color: var(--white);
  font: inherit;
  font-size: 1rem;
}

.contact-form input {
  min-height: 52px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.contact-form button {
  min-height: 54px;
  padding: 14px 22px;
  border: 2px solid var(--white);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: transparent;
  color: var(--white);
}

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

.form-status {
  min-height: 1.6em;
  margin: -8px 0 0;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--red);
}

.form-trap {
  position: absolute !important;
  left: -9999px !important;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer {
  padding-top: 38px;
  padding-bottom: 38px;
}

.footer-row img {
  width: 300px;
}

.footer-row nav {
  display: flex;
  gap: 24px;
}

.footer-row a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.client-access-link {
  display: inline-block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.62rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.client-access-link:hover,
.client-access-link:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

.video-modal {
  width: min(94vw, 1180px);
  max-width: none;
  max-height: 94vh;
  margin: auto;
  padding: 0;
  border: 0;
  background: var(--black);
  color: var(--white);
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.video-modal-inner {
  position: relative;
  padding: 58px 24px 24px;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.modal-heading {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: baseline;
  justify-content: space-between;
}

.modal-heading strong {
  font-size: 1.15rem;
}

.modal-heading span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-modal iframe {
  display: block;
  width: 100%;
  border: 0;
  max-height: calc(94vh - 120px);
  background: #000;
  aspect-ratio: 16 / 9;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    min-height: 74px;
    padding: 0 24px;
  }

  .logo {
    width: 250px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 19;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 42px 28px;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    font-size: 1.65rem;
  }

  .hero h1 {
    font-size: 5.1rem;
  }

  .section-heading h2,
  .artist-path-copy h2,
  .contact-copy h2 {
    font-size: 3.9rem;
  }

  .about-layout,
  .music-layout,
  .artist-path-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .logo {
    width: min(72vw, 282px);
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    object-position: 56% 40%;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.3);
  }

  .hero-copy {
    padding: 110px 22px 48px;
  }

  .hero-copy > p {
    display: flex;
    width: 100%;
    max-width: none;
    font-size: 0.64rem;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy > p i {
    margin: 0;
  }

  .scroll-cue {
    position: absolute;
    right: 22px;
    bottom: 28px;
    width: 28px;
    min-height: 34px;
    margin: 0;
    color: rgba(0, 0, 0, 0.52);
    opacity: 1;
  }

  .scroll-chevron {
    width: 10px;
    height: 10px;
    border-width: 0 1px 1px 0;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 4rem;
    line-height: 0.88;
  }

  .black-section,
  .paper-section {
    padding: 74px 22px;
  }

  .section-heading h2,
  .artist-path-copy h2,
  .contact-copy h2 {
    font-size: 2.95rem;
    line-height: 0.94;
  }

  .about-copy p,
  .about-copy p:first-child {
    font-size: 1rem;
  }

  .about-image {
    aspect-ratio: 4 / 3;
  }

  .about {
    padding-bottom: 54px;
  }

  .career {
    padding-top: 44px;
  }

  .career-heading {
    margin-bottom: 36px;
  }

  .career-card > div {
    padding: 24px;
  }

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

  .play-label {
    right: 8px;
    bottom: 8px;
    min-width: 50px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.63rem;
  }

  .video-caption {
    padding-top: 12px;
  }

  .video-caption strong {
    font-size: 0.93rem;
  }

  .video-caption small {
    font-size: 0.61rem;
  }

  .artist-path-layout {
    gap: 34px;
  }

  .artist-path {
    scroll-margin-top: 68px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .artist-path-question {
    margin-bottom: 24px;
    font-size: 0.78rem;
  }

  .artist-path-image {
    aspect-ratio: 16 / 10;
  }

  .artist-path-copy h2 {
    max-width: 330px;
    font-size: 2.3rem;
    line-height: 0.98;
  }

  .artist-path-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button-link {
    width: 100%;
    text-align: center;
  }

  .contact-layout {
    gap: 48px;
    padding-bottom: 70px;
  }

  .contact {
    padding-bottom: 74px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-row {
    gap: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer-row img {
    width: min(100%, 290px);
  }

  .footer-row nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .video-modal {
    width: 100vw;
    max-height: 100svh;
  }

  .video-modal-inner {
    padding: 56px 12px 18px;
  }

  .modal-heading {
    gap: 5px;
    flex-direction: column;
  }

  .video-modal iframe {
    max-height: calc(100svh - 118px);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }

  .hero-copy.reveal {
    opacity: 1;
    transform: none;
  }

  .hero-copy > p {
    display: flex;
    min-height: 48px;
    margin: 0;
    padding: 0 72px 0 24px;
    background: rgba(5, 5, 5, 0.84);
    font-size: 0.62rem;
    line-height: 1.2;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
  }

  .scroll-cue {
    position: absolute;
    right: 20px;
    bottom: 7px;
    width: 28px;
    min-height: 34px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
