@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUZiZQ-ccbb9b2b8d.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 700;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/GrgcKwrN6d3Uz8EwcLHZxwEfC4-362b168da8.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/cRJyLNuTJR5jbyKzGi33wU9cqIQ-67b2070d1a.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/e97VFGU1js4GGgvQCnvIiHpRf0-68a3fe7fd8.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --black: #000;
  --white: #fff;
  --muted: #d4d4d4;
  --grey: #525252;
  --orange: #9d4d00;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

img,
svg,
iframe {
  display: block;
}

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

.utility-links {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000 url("/assets/images/ballers-hero-vimeo-poster.webp") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .52);
  pointer-events: none;
}

.hero-lockup {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 136px;
  transform: translateY(-6px);
}

.round-logo {
  position: relative;
  width: 220px;
  height: 220px;
}

.round-logo__text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: round-logo-spin 24s linear infinite;
  transform: rotate(107deg);
  transform-origin: center;
  will-change: transform;
}

@keyframes round-logo-spin {
  from {
    transform: rotate(107deg);
  }

  to {
    transform: rotate(467deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .round-logo__text {
    animation: none;
  }
}

.round-logo__text text {
  fill: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 3.6px;
  word-spacing: 5.5px;
}

.round-logo img {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 90px;
  height: 135px;
  transform: translate(-50%, -50%);
}

.hero-title h1 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 43px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  font-weight: 200;
}

.ticker {
  height: 72px;
  overflow: hidden;
  background: #000;
}

.ticker__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: ticker-scroll 34s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.ticker span {
  flex: 0 0 auto;
  color: #eee;
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: .37em;
  line-height: 1.6;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker img {
  width: 42px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  animation: ticker-mascot-spin 5.6s linear infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes ticker-mascot-spin {
  from {
    transform: rotate(126deg);
  }

  to {
    transform: rotate(486deg);
  }
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
}

.photo-panel,
.copy-panel {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.photo-panel img,
.copy-panel::before,
.hire::before,
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel img {
  position: absolute;
  inset: 0;
}

.photo-panel--slice img {
  object-position: center 40%;
}

.photo-panel--wine img {
  object-position: center 50%;
}

.photo-panel--van img {
  object-position: center 48%;
}

.copy-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 500;
}

.copy-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.copy-panel--intro::before,
.copy-panel--heath::before {
  background-image: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)), url("/assets/images/qz7ncb32dC0d5WcHTsZQ8qmUwkY-e2338f493f.jpg");
}

.copy-panel--heath::before {
  background-image: linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)), url("/assets/images/9oO67zwz7Ql6Ge0Pqb3XY4PSzQA-aabe5d9492.jpg");
}

.copy-panel--closure::before,
.hire::before {
  background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url("/assets/images/DwNmvb4OBNbYD9bqa0e7zrw8NoY-2e0c4b6a71.jpg");
}

.copy-panel__content {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
}

.copy-panel__content--narrow {
  width: min(100%, 344px);
}

.wordmark {
  width: 192px;
  height: auto;
  margin: 0 0 58px;
}

.copy-panel p {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.5px;
  line-height: 1.45;
}

.copy-panel p:last-child {
  margin-bottom: 0;
}

.copy-panel h2,
.copy-panel h3,
.hire h2,
.subscribe h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-title h1,
.copy-panel h2,
.copy-panel h3,
.copy-panel p,
.hire h2,
.hire p,
.subscribe h2,
.form-status,
.credits p {
  text-wrap: balance;
}

.copy-panel h2 {
  margin-bottom: 33px;
  line-height: 1.35;
}

.copy-panel h2 span {
  display: block;
  font-size: 27px;
  letter-spacing: .05em;
  line-height: 1;
}

.copy-panel h2 small {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .38em;
  line-height: 1.4;
}

.copy-panel h3 {
  margin: 38px 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3.7px;
}

.story-grid--closure .copy-panel,
.story-grid--closure .photo-panel,
.story-grid--heath .copy-panel,
.story-grid--heath .photo-panel {
  min-height: 720px;
}

.story-grid--heath .copy-panel,
.story-grid--heath .photo-panel {
  min-height: 599px;
}

.copy-panel--closure {
  align-items: center;
  justify-content: flex-start;
  padding-left: 290px;
}

.copy-panel--heath {
  align-items: center;
  justify-content: flex-start;
  padding-left: 290px;
}

.hire {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  background: #000;
}

.hire::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .7;
  background-size: cover;
  background-position: center 40%;
}

.hire__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 184px;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 24px;
  text-align: center;
}

.hire img {
  width: 142px;
  height: 156px;
  object-fit: contain;
}

.hire h2 {
  margin-bottom: 20px;
  font-size: 26px;
  letter-spacing: .05em;
  line-height: .92;
}

.hire p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.5px;
}

.hire a {
  color: #d14412;
  font-weight: 700;
}

.gallery-strip {
  height: 170px;
  margin: 0;
  overflow: hidden;
}

.gallery-strip img {
  object-position: center 53%;
}

.ticker--footer {
  height: 72px;
}

.site-footer {
  display: grid;
  min-height: 358px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 90px 52px 44px;
  background: #000;
}

.credits {
  color: var(--grey);
}

.credits p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.credits p + p {
  margin-top: 38px;
  font-size: 11px;
}

.credits a {
  color: var(--orange);
  font-weight: 700;
}

.credits p + p a {
  color: #333;
  font-weight: 500;
}

.subscribe {
  justify-self: end;
  width: min(100%, 500px);
}

.subscribe h2 {
  margin-bottom: 34px;
  font-size: 25px;
  letter-spacing: .05em;
  line-height: .8;
  text-align: center;
}

.subscribe-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 15px;
}

.honeypot {
  position: absolute;
  visibility: hidden;
}

.subscribe-form input,
.subscribe-form button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  outline: none;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.subscribe-form input[type="email"] {
  min-width: 0;
  padding: 15px;
  background: #ebebeb;
  color: #000;
}

.subscribe-form button {
  cursor: pointer;
  padding: 15px 18px;
  background: #333;
  color: #fff;
  font-weight: 600;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  margin-top: 26px;
}

.social-links a {
  width: 20px;
  height: 20px;
  color: #fff;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 1399px) {
  .hero {
    min-height: 700px;
  }

  .hero-lockup {
    gap: 100px;
  }

  .round-logo {
    width: 205px;
    height: 205px;
  }

  .hero-title h1 {
    font-size: 41px;
  }

  .photo-panel,
  .copy-panel {
    min-height: 690px;
  }

  .story-grid--closure,
  .story-grid--heath {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid--closure .copy-panel {
    grid-column: 1 / 2;
    min-height: 740px;
    padding-left: 98px;
  }

  .story-grid--heath .copy-panel {
    grid-column: 2 / 3;
    min-height: 599px;
    padding-left: 100px;
  }
}

@media (max-width: 900px) {
  .hero-lockup {
    gap: 55px;
  }

  .round-logo {
    width: 190px;
    height: 190px;
  }

  .round-logo img {
    width: 78px;
    height: 118px;
  }

  .hero-title h1 {
    font-size: 36px;
  }

  .ticker span {
    font-size: 17px;
  }

  .photo-panel,
  .copy-panel {
    min-height: 640px;
  }

  .copy-panel__content {
    width: min(100%, 315px);
  }

  .copy-panel--intro .copy-panel__content {
    padding-left: 15px;
  }

  .wordmark {
    width: 175px;
    margin-bottom: 42px;
  }

  .copy-panel p {
    font-size: 15px;
  }

  .story-grid--closure .copy-panel {
    min-height: 725px;
    padding-left: 65px;
  }

  .story-grid--heath .copy-panel {
    min-height: 720px;
    padding-left: 60px;
  }

  .hire__inner {
    gap: 28px;
    justify-content: flex-start;
    padding-left: 160px;
  }

  .hire h2 {
    max-width: 260px;
    font-size: 25px;
  }

  .site-footer {
    min-height: 362px;
    padding: 58px 50px 42px;
  }

  .subscribe {
    width: 420px;
  }
}

@media (max-width: 809px) {
  .hero {
    min-height: 372px;
    align-items: flex-start;
    padding-top: 86px;
  }

  .hero-lockup {
    flex-direction: column;
    gap: 22px;
    transform: none;
  }

  .round-logo {
    width: 145px;
    height: 145px;
  }

  .round-logo img {
    width: 62px;
    height: 92px;
  }

  .round-logo__text text {
    font-size: 6px;
    letter-spacing: 3.6px;
    word-spacing: 5.5px;
  }

  .hero-title h1 {
    font-size: 26px;
    line-height: 1.05;
    text-align: center;
  }

  .ticker {
    height: 72px;
  }

  .ticker__track {
    animation-duration: 26s;
  }

  .ticker__group {
    gap: 24px;
    padding-right: 24px;
  }

  .ticker span {
    font-size: 14px;
    letter-spacing: .42em;
  }

  .ticker img {
    width: 34px;
    height: 37px;
  }

  .story-grid {
    display: block;
  }

  .story-grid--intro .photo-panel,
  .story-grid--closure .photo-panel--slice,
  .story-grid--heath .photo-panel--slice {
    display: none;
  }

  .copy-panel {
    min-height: 425px;
  }

  .copy-panel--intro {
    min-height: 385px;
    align-items: flex-start;
    padding-top: 58px;
  }

  .copy-panel--intro .copy-panel__content {
    width: 260px;
    padding-left: 0;
    text-align: center;
  }

  .wordmark {
    width: 145px;
    margin: 0 auto 25px;
  }

  .copy-panel p {
    font-size: 14px;
    letter-spacing: -.35px;
    line-height: 1.5;
  }

  .story-grid--closure {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .story-grid--closure .copy-panel {
    min-height: 485px;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    padding-top: 70px;
  }

  .copy-panel--closure::before {
    background-size: cover;
    background-position: center top;
  }

  .copy-panel__content--narrow {
    width: 300px;
    text-align: center;
  }

  .copy-panel h2 {
    margin-bottom: 22px;
  }

  .copy-panel h2 span {
    font-size: 25px;
  }

  .copy-panel h2 small {
    font-size: 13px;
  }

  .story-grid--heath {
    padding-top: 0;
    padding-bottom: 0;
  }

  .story-grid--heath .copy-panel {
    min-height: 280px;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    padding-top: 84px;
  }

  .copy-panel--heath::before {
    background-position: center;
  }

  .story-grid--closure .photo-panel,
  .story-grid--heath .photo-panel {
    display: block;
  }

  .story-grid--closure .photo-panel {
    order: -1;
    min-height: 632px;
  }

  .story-grid--heath .photo-panel {
    min-height: 410px;
  }

  .copy-panel h3 {
    margin: 28px 0 12px;
    font-size: 13px;
  }

  .hire {
    min-height: 480px;
  }

  .hire::before {
    opacity: .75;
    background-position: center top;
  }

  .hire__inner {
    min-height: 480px;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
    padding: 62px 34px 30px;
  }

  .hire img {
    width: 166px;
    height: 182px;
  }

  .hire h2 {
    max-width: 250px;
    margin: 0 auto 18px;
    font-size: 25px;
    line-height: 1.12;
  }

  .hire p {
    font-size: 14px;
    line-height: 1.45;
  }

  .gallery-strip {
    display: block;
    height: 163px;
  }

  .site-footer {
    display: flex;
    min-height: 382px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 54px;
    padding: 54px 15px 45px;
  }

  .subscribe {
    width: 100%;
  }

  .subscribe h2 {
    margin-bottom: 28px;
    font-size: 21px;
  }

  .subscribe-form {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 10px;
  }

  .subscribe-form input,
  .subscribe-form button {
    border-radius: 5px;
    font-size: 12px;
  }

  .subscribe-form input[type="email"] {
    padding: 15px 13px;
  }

  .subscribe-form button {
    padding: 15px 12px;
  }

  .form-status {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    gap: 22px;
    margin-top: 22px;
  }

  .social-links a {
    width: 18px;
    height: 18px;
  }

  .credits {
    text-align: center;
  }

  .credits p {
    font-size: 14px;
  }

  .credits p + p {
    margin-top: 24px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 372px;
    padding-top: 91px;
  }

  .copy-panel--intro {
    min-height: 385px;
  }

  .story-grid--closure {
    padding-top: 0;
  }

  .story-grid--heath {
    padding-top: 0;
  }
}
