:root {
  color: #ffffff;
  background: #000000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  background: #000000;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000000;
}

.hero-placeholder,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  z-index: 0;
  filter: blur(14px);
  transform: scale(1.04);
}

.hero-image {
  z-index: 1;
}

.site-title {
  position: absolute;
  z-index: 3;
  top: clamp(3rem, 9.45vh, 12.75rem);
  left: clamp(2rem, 4.17vw, 10rem);
  width: min(clamp(20rem, 36.224vw, 86.9375rem), calc(100vw - 3rem));
  margin: 0;
  line-height: 0;
}

.site-title img {
  display: block;
  width: 100%;
  height: auto;
}

.roles {
  position: absolute;
  z-index: 3;
  bottom: clamp(3rem, 12.5vh, 16.875rem);
  left: clamp(2rem, 4.17vw, 10rem);
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: clamp(2rem, 2.25vw, 5.4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.68;
  list-style: none;
}

@media (max-width: 900px) {
  .site-title {
    top: clamp(3rem, 8.5vh, 5.5rem);
    left: clamp(1.5rem, 5vw, 3rem);
  }

  .roles {
    bottom: clamp(2rem, 8vh, 4rem);
    left: clamp(1.5rem, 5vw, 3rem);
    font-size: clamp(1.75rem, 4.3vw, 2.4rem);
    line-height: 1.56;
  }
}

@media (max-width: 600px) {
  .hero::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.16) 62%, transparent 100%);
    pointer-events: none;
  }

  .hero-placeholder,
  .hero-image {
    object-position: center;
  }

  .site-title {
    top: 50%;
    left: 1.5rem;
    padding: 0.5rem 0.65rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.20);
    transform: translateY(-50%);
  }

  .roles {
    bottom: 2.25rem;
    left: 1.5rem;
    font-size: clamp(1.65rem, 7.1vw, 2rem);
    line-height: 1.55;
  }
}
