/* ==========================================================================
   Home landing page stylesheet
   BEM naming: block__element--modifier. JS state classes: .is-open,
   .is-visible, .is-locked.
   Breakpoint order matches the cascade the design depends on:
   base -> min-1280 -> min-1440 -> min-1920 -> max-991 -> max-767 -> max-479
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens & icon font
   -------------------------------------------------------------------------- */

:root {
  --base-dark: #151515;
  --primary: #ff4e4e;
  --primary-light: #faf6f6;
  --paragraph: #858585;
  --white: white;
  --ease-out: cubic-bezier(.25, 1, .5, 1);
}

/* Brand icon glyphs used by the footer social links */
@font-face {
  font-family: "Fa brands 400";
  src: url("https://cdn.prod.website-files.com/63b7f08aa7e15100e972d40a/63b7f08aa7e1511c5d72d440_fa-brands-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: var(--paragraph);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1em;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
  display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--base-dark);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Anton, sans-serif;
  line-height: 1.2em;
  font-weight: bold;
}

h1 {
  letter-spacing: 3px;
  font-size: 74px;
}

h2 {
  letter-spacing: 2px;
  font-size: 62px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  color: var(--paragraph);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  letter-spacing: .8px;
  text-transform: uppercase;
  align-items: center;
  font-family: Anton, sans-serif;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

button, input, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.section {
  scroll-margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section--story {
  background-color: var(--base-dark);
  padding-top: 0;
  overflow: hidden;
}

.section--store {
  background-color: var(--primary-light);
}

/* Centered intro above a section */
.section__intro {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin-top: 0;
}

/* In-column heading group */
.section__heading {
  margin-bottom: 30px;
}

.section__heading--padded {
  padding-right: 100px;
}

.subtitle {
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Anton, sans-serif;
  font-size: 18px;
  line-height: 1em;
}

.two-col {
  z-index: 999;
  column-gap: 100px;
  row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.two-col--story {
  min-height: 460px;
}

.two-col__col {
  width: 50%;
  height: 100%;
}

.two-col__text {
  margin-top: 0;
  margin-bottom: 0;
}

/* Image with the offset red square behind it (about / player sections) */
.accent-media {
  flex-direction: column;
  display: flex;
  position: relative;
  margin: 0;
}

.accent-media__img {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.accent-media__accent {
  z-index: 0;
  width: 360px;
  height: 360px;
  position: absolute;
}

.accent-media--tl .accent-media__accent {
  inset: -40px auto auto -40px;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 16px 34px;
  font-family: Anton, sans-serif;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

.btn:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--primary);
}

.btn:active {
  transition: transform .1s var(--ease-out);
  transform: scale(.97);
}

.btn--outline-white {
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}

.btn--outline-white:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--base-dark);
}

.btn--outline-hover:hover {
  border-color: var(--primary);
  background-color: transparent;
}

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */

/* Pinned to the viewport: transparent over the hero, solid once scrolled */
.site-header {
  z-index: 1000;
  background-color: transparent;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color .3s var(--ease-out), box-shadow .3s var(--ease-out), transform .35s var(--ease-out);
  position: fixed;
  inset: 0 0 auto;
}

.site-header.is-scrolled {
  background-color: var(--base-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.site-header__container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

/* Brand and actions are equal flexible columns so the nav sits dead center */
.site-header__brand {
  color: var(--white);
  white-space: nowrap;
  column-gap: 10px;
  align-items: center;
  flex: 1;
  font-size: 24px;
  letter-spacing: 1px;
  display: flex;
}

/* The PL badge mark used in every brand lockup; sized so the LP inside
   optically matches the wordmark's cap height */
.brand-mark {
  width: auto;
  height: 38px;
  flex: none;
}

.site-header__actions {
  column-gap: 10px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.site-header__toggle {
  display: none;
}

/* Slide-out panel header (mobile only) */
.nav__panel-head {
  display: none;
}

.nav__brand {
  color: var(--white);
  white-space: nowrap;
  column-gap: 10px;
  align-items: center;
  font-size: 24px;
  letter-spacing: 1px;
  display: none;
}

.nav__close {
  display: none;
}

.nav__contact {
  display: none;
}

.nav__list {
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav__link {
  color: var(--white);
  letter-spacing: 0;
  padding: 20px;
  font-family: Anton, sans-serif;
  font-size: 20px;
  display: inline-block;
  position: relative;
  transition: opacity .3s;
}

.nav__link:hover {
  opacity: .7;
}

.nav__cta {
  display: none;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, .5), transparent),
    linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
    url("https://cdn.prod.website-files.com/63b7f08aa7e15100e972d40a/63b86e911432c173b97d3d27_jimmy-conover-SEQ2VI0KI6A-unsplash%202.webp");
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  align-items: center;
  min-height: 86vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.hero__content {
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1170px;
  height: 100%;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.hero__title-wrap {
  flex-direction: column;
  width: 70%;
  margin-bottom: 40px;
  padding-top: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.hero__title {
  z-index: 999;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.hero__title-bg {
  width: 230px;
  height: 230px;
  position: absolute;
  inset: 0 0 auto auto;
}

.hero__text {
  color: #fff;
  width: 60%;
  margin-top: 0;
  margin-bottom: 0;
}

.hero__buttons {
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 50px;
  display: flex;
}

/* Slanted white edge at the bottom of the hero */
.hero__edge {
  background-image: linear-gradient(177deg, transparent 55.5%, #fff 56%);
  height: 90px;
  position: absolute;
  inset: auto 0 0;
}

/* --------------------------------------------------------------------------
   League marquee (outlined wordmarks scrolling under the hero)
   -------------------------------------------------------------------------- */

.league-marquee {
  padding-top: 30px;
  overflow: hidden;
}

.league-marquee__track {
  width: max-content;
  display: flex;
  animation: league-marquee-scroll 70s linear infinite;
}

.league-marquee__group {
  column-gap: 70px;
  align-items: center;
  margin: 0;
  padding: 0 70px 0 0;
  list-style: none;
  display: flex;
}

.league-marquee__item {
  color: var(--white);
  text-shadow:
    0 0 1.2px var(--primary),
    0 0 1.2px var(--primary),
    0 0 1.2px var(--primary),
    0 0 1.2px var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: center;
  font-family: Anton, sans-serif;
  font-size: 62px;
  line-height: 1.2em;
  display: flex;
}

/* Red square separator, echoing the accent squares used across the page */
.league-marquee__item::after {
  content: "";
  background-color: var(--primary);
  flex: none;
  width: 14px;
  height: 14px;
  margin-left: 70px;
}

@keyframes league-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

/* --------------------------------------------------------------------------
   9. Story section & accordion
   -------------------------------------------------------------------------- */

.story__hero {
  margin-bottom: 50px;
  position: relative;
}

.story__hero-img {
  z-index: 5;
  object-fit: cover;
  width: 100%;
  max-width: 1170px;
  height: 450px;
  position: relative;
}

.story__accent {
  z-index: 1;
  opacity: .2;
  width: 360px;
  height: 360px;
  position: absolute;
  bottom: 0;
  left: -15px;
}

.story__heading {
  color: var(--white);
}

.story__bottom {
  z-index: 0;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  inset: auto 0 0;
}

.story__bottom-img {
  margin-top: 50px;
}

/* White band behind the top image */
.story__band {
  z-index: 0;
  background-color: var(--white);
  width: 100%;
  height: 220px;
  position: absolute;
  inset: 0 0 auto;
}

.accordion {
  width: 100%;
}

.accordion__item {
  background-color: transparent;
  width: 100%;
  margin-bottom: 0;
  padding: 0 0 20px;
}

.accordion__heading {
  margin: 0;
}

.accordion__toggle {
  white-space: normal;
  text-align: left;
  border-bottom: 1px solid rgba(133, 133, 133, .3);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  transition: border .3s;
  display: flex;
}

.accordion__toggle:hover {
  border-bottom-color: rgba(133, 133, 133, .8);
}

.accordion__title {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Anton, sans-serif;
  font-size: 40px;
  line-height: 1.2em;
  display: block;
}

/* Plus that morphs into a minus when the item opens */
.accordion__indicator {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 10px 0 10px 20px;
  position: relative;
}

.accordion__indicator::before,
.accordion__indicator::after {
  content: "";
  background-color: var(--primary);
  width: 16px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion__indicator::after {
  transition: transform .3s;
  transform: translateY(-50%) rotate(90deg);
}

.accordion__item.is-open .accordion__indicator::after {
  transform: translateY(-50%) rotate(0deg);
}

/* Height animates via the 0fr -> 1fr grid track trick */
.accordion__panel {
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease-out);
  display: grid;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.accordion__text {
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* --------------------------------------------------------------------------
   10. Next match
   -------------------------------------------------------------------------- */

.results__container {
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1170px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.results__content {
  width: 48%;
  height: 100%;
}

.results__title {
  margin-top: 0;
  font-size: 42px;
}

.results__text {
  margin-top: 0;
  margin-bottom: 0;
}

/* Single row always: gaps and labels scale fluidly instead of wrapping */
.results__counter {
  column-gap: clamp(12px, 2.5vw, 30px);
  flex-flow: row nowrap;
  margin-top: 50px;
  display: flex;
}

.results__counter-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.results__counter-label {
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Anton, sans-serif;
  font-size: clamp(11px, 1.4vw + 4px, 18px);
}

.results__counter-number {
  color: var(--white);
  text-align: center;
  text-shadow:
    0 0 1.2px var(--primary),
    0 0 1.2px var(--primary),
    0 0 1.2px var(--primary),
    0 0 1.2px var(--primary);
  margin-top: 10px;
  font-family: Anton, sans-serif;
  font-size: 74px;
  line-height: 1.2em;
}

.results__cta {
  margin-top: 50px;
}

.results__image {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 auto;
}

/* --------------------------------------------------------------------------
   11. Store
   -------------------------------------------------------------------------- */

.store__grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.product-card {
  row-gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-card__media {
  position: relative;
}

.product-card__img-link {
  width: 100%;
  display: block;
  overflow: hidden;
}

.product-card__img {
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: transform .3s;
  box-shadow: 7px 7px 50px rgba(0, 0, 0, .05);
}

.product-card__img:hover {
  transform: scale(1.06);
}

.product-card__footer {
  column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.product-card__name {
  color: var(--base-dark);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: Anton, sans-serif;
  font-size: 20px;
  line-height: 1.2em;
}

.product-card__price-wrap {
  column-gap: 15px;
  flex-wrap: wrap;
  display: flex;
}

.product-card__price {
  color: var(--primary);
  letter-spacing: 2px;
  font-family: Anton, sans-serif;
  font-size: 20px;
}

/* --------------------------------------------------------------------------
   Contact section & form
   -------------------------------------------------------------------------- */

.section--contact {
  background-color: var(--base-dark);
}

.contact__heading {
  color: var(--white);
}

.contact__emails {
  flex-direction: column;
  row-gap: 30px;
  margin-top: 40px;
  display: flex;
}

.contact__email-label {
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-family: Anton, sans-serif;
  font-size: 18px;
  line-height: 1em;
}

.contact__email {
  color: var(--white);
  letter-spacing: .2px;
  text-transform: none;
  font-family: Inter, sans-serif;
  font-size: 18px;
  transition: color .3s;
}

.contact__email:hover {
  color: var(--primary);
}

.form {
  row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.form__row {
  column-gap: 20px;
  row-gap: 20px;
  width: 100%;
  display: flex;
}

.form__field {
  color: var(--white);
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom-color: rgba(255, 255, 255, .3);
  width: 100%;
  padding: 12px 20px 12px 0;
  font-size: 20px;
  line-height: 1em;
  display: block;
}

.form__field::placeholder {
  color: #999;
  text-transform: uppercase;
  font-family: Anton, sans-serif;
  font-size: 20px;
  line-height: 1em;
}

.form__field:focus {
  border-color: transparent transparent var(--primary);
  outline: 0;
}

.form__textarea {
  min-height: 140px;
  line-height: 1.4em;
  resize: vertical;
}

.form__success {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
}

.form__error {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--white);
  text-align: center;
  padding-top: 60px;
}

.footer__top {
  text-align: center;
  border-bottom: 1px solid rgba(21, 21, 21, .2);
  width: 100%;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.footer__body {
  column-gap: 30px;
  row-gap: 30px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer__nav {
  column-gap: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer__nav-link {
  color: var(--base-dark);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all .3s;
}

.footer__nav-link:hover {
  color: var(--primary);
}

.footer__bottom {
  background-color: var(--base-dark);
  width: 100%;
  padding-top: 26px;
  padding-bottom: 26px;
}

.footer__meta {
  column-gap: 40px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer__brand-wrap {
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.footer__brand {
  color: var(--white);
  white-space: nowrap;
  column-gap: 10px;
  align-items: center;
  font-size: 24px;
  letter-spacing: 1px;
  display: flex;
}

.footer__copyright {
  color: var(--paragraph);
  letter-spacing: .2px;
  text-transform: none;
  width: 100%;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6em;
}

.footer__credits {
  color: var(--paragraph);
  font-size: 14px;
  line-height: 1.6em;
}

.footer__social {
  column-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  width: 20%;
  display: flex;
}

.footer__social-link {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  transition: all .3s;
}

.footer__social-link:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   14. Scroll reveal (progressive enhancement; html.js is set from main.js)
   -------------------------------------------------------------------------- */

.reveal {
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

html.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

/* Hero load choreography: headline slams in, copy rushes in, buttons punch up */
.hero__title.reveal.is-visible {
  animation: hero-slam .55s var(--ease-out) .05s both;
}

.hero__title-bg.reveal {
  transition-delay: .25s;
}

.hero__text.reveal.is-visible {
  animation: hero-rush .5s var(--ease-out) .35s both;
}

.hero__buttons.reveal.is-visible {
  animation: hero-punch .5s var(--ease-out) .5s both;
}

/* The CTA heading gets the same slam — it's the loudest ask on the page */
.contact__heading.reveal.is-visible {
  animation: hero-slam .55s var(--ease-out) both;
}

@keyframes hero-slam {
  from {
    opacity: 0;
    transform: scale(1.12);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-rush {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

@keyframes hero-punch {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Yearbook grid reveals left-to-right per row */
.store__grid .product-card:nth-child(4n+2) {
  transition-delay: .08s;
}

.store__grid .product-card:nth-child(4n+3) {
  transition-delay: .16s;
}

.store__grid .product-card:nth-child(4n) {
  transition-delay: .24s;
}

/* Accent squares spiral in behind their photo, then settle into a slow drift */
.accent-media__accent.is-visible,
.story__accent.is-visible,
.hero__title-bg.is-visible {
  animation:
    accent-spiral .9s var(--ease-out) both,
    accent-drift 7s ease-in-out 1.4s infinite alternate;
}

@keyframes accent-spiral {
  from {
    transform: rotate(-270deg) scale(.2);
  }

  to {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes accent-drift {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-10px, 10px);
  }
}

/* Accessibility: collapse all motion to near-instant */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --------------------------------------------------------------------------
   15. Breakpoints
   -------------------------------------------------------------------------- */

@media screen and (min-width: 1280px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section--story {
    padding-top: 0;
  }

  .site-header__container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero__content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__title-wrap {
    width: 59%;
  }

  .hero__edge {
    height: 100px;
  }

  .two-col {
    column-gap: 100px;
  }

  .story__bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .story__accent {
    left: -40px;
  }

  .results__container {
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer {
    padding-top: 80px;
  }

  .footer__body {
    column-gap: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer__meta {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1440px) {
  .hero__content {
    padding-bottom: 0;
  }

  .story__accent {
    left: -80px;
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 110px;
  }

  h2 {
    font-size: 74px;
  }

  .site-header__container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content {
    margin-top: 0;
  }

  .hero__title-wrap {
    width: 76%;
    padding-top: 100px;
  }

  .hero__title {
    font-size: 100px;
  }

  .hero__title-bg {
    width: 346px;
    height: 346px;
  }

  .hero__edge {
    background-image: linear-gradient(177.5deg, transparent 55.5%, #fff 56%);
    height: 160px;
  }

  .accent-media__accent {
    width: 400px;
    height: 400px;
  }

  .story__accent {
    width: 400px;
    height: 400px;
    left: -200px;
  }

  .results__counter-number {
    font-size: 90px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 46px;
  }

  h4 {
    font-size: 28px;
  }

  /* Comfortable thumb targets on touch devices */
  .btn {
    padding: 15px 24px;
    font-size: 16px;
  }

  .site-header__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    filter: brightness(200%) invert() grayscale();
    text-align: right;
    padding: 0;
    display: block;
  }

  .site-header__toggle-icon {
    margin-bottom: 4px;
    transition: transform .3s var(--ease-out);
  }

  .site-header__toggle[aria-expanded="true"] .site-header__toggle-icon {
    transform: rotate(90deg);
  }

  /* Slide-out navigation panel */
  .nav {
    z-index: 1001;
    background-color: var(--base-dark);
    flex-direction: column;
    width: 320px;
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform .45s var(--ease-out), visibility .45s var(--ease-out);
    display: flex;
    position: fixed;
    inset: 0 auto 0 0;
    overflow-y: auto;
    box-shadow: 10px 0 50px rgba(0, 0, 0, .35);
  }

  /* Page dims behind the open panel */
  body::after {
    content: "";
    z-index: 999;
    background-color: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s var(--ease-out);
    position: fixed;
    inset: 0;
  }

  body.is-locked::after {
    opacity: 1;
    pointer-events: auto;
  }

  .nav.is-open {
    visibility: visible;
    transform: none;
  }

  .nav__panel-head {
    justify-content: space-between;
    align-items: center;
    height: 82px;
    padding: 15px 0 15px 15px;
    display: flex;
    flex: none;
  }

  .nav__brand {
    display: flex;
  }

  .nav__close {
    padding: 0 10px 0 0;
    display: block;
  }

  .nav__close-icon {
    filter: brightness(0) invert(1);
    max-width: 60%;
    transition: transform .25s var(--ease-out);
  }

  .nav__close:active .nav__close-icon {
    transform: rotate(90deg) scale(.9);
  }

  .nav__list {
    background-color: transparent;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Panel contents cascade in as the menu slides open */
  .nav__item {
    opacity: 0;
    width: 100%;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
    transform: translateX(-16px);
  }

  .nav.is-open .nav__item {
    opacity: 1;
    transform: none;
  }

  .nav.is-open .nav__item:nth-child(2) {
    transition-delay: .05s;
  }

  .nav.is-open .nav__item:nth-child(3) {
    transition-delay: .1s;
  }

  .nav.is-open .nav__item:nth-child(4) {
    transition-delay: .15s;
  }

  .nav.is-open .nav__item:nth-child(5) {
    transition-delay: .2s;
  }

  .nav.is-open .nav__item:nth-child(6) {
    transition-delay: .25s;
  }

  .nav__link {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    align-items: center;
    width: 100%;
    padding: 12px 0;
    display: flex;
  }

  /* Signature red dash in front of each panel link; draws in after the
     links cascade into place */
  .nav__link::before {
    content: "";
    background-color: var(--primary);
    flex: none;
    width: 16px;
    height: 2px;
    margin-right: 12px;
    transition: transform .3s var(--ease-out);
    transform: scaleX(0);
    transform-origin: 0 50%;
  }

  .nav.is-open .nav__link::before {
    transition-delay: .4s;
    transform: scaleX(1);
  }

  .nav__link:hover {
    color: var(--primary);
    opacity: 1;
  }

  .nav__cta {
    margin-top: 30px;
    display: block;
  }

  /* Direct emails pinned to the bottom of the panel */
  .nav__contact {
    opacity: 0;
    row-gap: 20px;
    flex-direction: column;
    margin-top: auto;
    padding: 30px 20px;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
    transform: translateX(-16px);
    display: flex;
  }

  .nav.is-open .nav__contact {
    opacity: 1;
    transition-delay: .3s;
    transform: none;
  }

  .nav__contact-label {
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 4px;
    font-family: Anton, sans-serif;
    font-size: 14px;
    line-height: 1em;
  }

  .nav__contact-link {
    color: var(--white);
    letter-spacing: .2px;
    text-transform: none;
    font-family: Inter, sans-serif;
    font-size: 16px;
    transition: color .3s;
  }

  .nav__contact-link:hover {
    color: var(--primary);
  }

  .hero {
    min-height: auto;
  }

  /* Clear the floating transparent header */
  .hero__content {
    margin-top: 0;
    padding-bottom: 40px;
  }

  .hero__title-wrap {
    width: 70%;
    padding-top: 50px;
    padding-right: 40px;
  }

  .hero__title-bg {
    width: 180px;
    height: 180px;
  }

  .hero__text {
    width: 90%;
  }

  .section__intro {
    max-width: 560px;
  }

  .two-col {
    column-gap: 60px;
    flex-direction: row;
  }

  .two-col__col {
    width: 100%;
  }

  .accent-media {
    justify-content: center;
    align-items: center;
  }

  .accent-media__accent {
    width: 240px;
    height: 240px;
  }

  .accent-media--tl .accent-media__accent {
    top: -30px;
    left: -30px;
  }

  .story__hero-img {
    height: 320px;
  }

  .story__accent {
    width: 240px;
    height: 240px;
  }

  .story__bottom-img {
    max-width: 45%;
  }

  .results__counter-number {
    font-size: 52px;
  }

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

  .footer__body {
    flex-wrap: wrap;
  }

  .footer__nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer__meta {
    column-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  .accordion__title {
    font-size: 32px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section--story {
    padding-top: 0;
  }

  .section__intro {
    margin-bottom: 40px;
  }

  .section__heading--padded {
    padding-right: 0;
  }

  .nav {
    width: 80%;
  }

  .hero {
    /* Shorter copy leaves the hero stubby; keep the image tall enough to breathe */
    min-height: 70vh;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__content {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }

  .hero__title-wrap {
    width: 77%;
  }

  .hero__title-bg {
    width: 150px;
    height: 150px;
  }

  .hero__text {
    width: 100%;
  }

  /* Drop the detail clause on phones: keeps the lead line off the hero image */
  .hero__text-detail {
    display: none;
  }

  .hero__edge {
    height: 60px;
  }

  .league-marquee {
    padding-top: 20px;
  }

  .league-marquee__group {
    column-gap: 40px;
    padding-right: 40px;
  }

  .league-marquee__item {
    letter-spacing: 1px;
    font-size: 40px;
  }

  .league-marquee__item::after {
    width: 10px;
    height: 10px;
    margin-left: 40px;
  }

  .two-col {
    flex-direction: column;
  }

  .two-col--story {
    min-height: auto;
  }

  .accent-media--tl .accent-media__img {
    padding-top: 20px;
    padding-left: 20px;
  }

  .accent-media__accent {
    width: auto;
    height: 60%;
  }

  .accent-media--tl .accent-media__accent {
    inset: 0 auto auto 0;
  }

  .story__bottom {
    position: relative;
  }

  .story__bottom-img {
    object-fit: cover;
    width: 100%;
    max-width: none;
  }

  .story__accent {
    width: auto;
    height: 60%;
    left: -15px;
  }

  .results__container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 380px;
  }

  .results__content {
    width: 100%;
  }

  .results__title {
    font-size: 34px;
  }

  /* Fixed 2x1 arrangement: two stats up top, partners return below */
  .results__counter {
    column-gap: 40px;
    row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .results__counter-item:nth-child(3) {
    flex-basis: 100%;
  }

  .results__counter-label {
    font-size: 16px;
  }

  .results__counter-number {
    font-size: 52px;
  }

  .results__image {
    width: 100%;
    height: 380px;
    inset: auto 0 0;
  }

  .product-card {
    text-align: center;
  }

  .product-card__price-wrap {
    justify-content: center;
  }

  .footer__nav {
    column-gap: 40px;
    flex-wrap: wrap;
  }

  .footer__meta {
    row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }

  .footer__brand-wrap {
    align-items: center;
    width: 100%;
  }

  .footer__social {
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .nav {
    width: 85%;
  }

  .nav__link {
    width: 99%;
  }

  .hero__content {
    text-align: center;
  }

  .hero__title-wrap {
    width: 100%;
    padding-top: 40px;
    padding-right: 0;
  }

  .hero__buttons {
    flex-flow: column wrap;
    justify-content: center;
    align-self: stretch;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .accordion__toggle {
    text-align: left;
  }

  .accordion__text {
    text-align: center;
  }

  .results__container {
    text-align: center;
  }

  .results__counter {
    justify-content: center;
  }

  .results__counter-label {
    letter-spacing: 1px;
  }

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

  .footer {
    text-align: left;
  }

  .footer__nav {
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }

  .form__row {
    flex-direction: column;
  }

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

  .footer__meta {
    flex-wrap: wrap;
    margin-top: 0;
  }
}