@font-face {
  font-family: "Archivo Black";
  src: url("/assets/fonts/archivo-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #050505;
  --gray: #d4d4ce;
  --yellow: #f0e400;
  --rust: #c07a30;
  --teal: #038686;
  --white: #ffffff;
  --content-wide: 1200px;
  --content-narrow: 850px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 32px;
  font-size: 54px;
  line-height: 1.04;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 32px;
  font-size: 31px;
  line-height: 1.15;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.82);
  transition: background-color 180ms ease;
}

.site-header.is-solid {
  background: var(--black);
}

.wordmark,
.header-contact {
  text-decoration: none;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
}

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

.header-contact {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  max-height: 980px;
  place-items: end start;
  overflow: hidden;
  background-color: var(--black);
  background-image: url("/assets/video/hero-poster.jpg");
  background-position: center;
  background-size: cover;
}

.section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > .section-video,
.hero > .media-shade {
  position: absolute;
  inset: 0;
}

.media-shade {
  background: rgba(5, 5, 5, 0.34);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: 150px 48px 92px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--black);
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-statement {
  margin-bottom: 0;
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.scroll-cue span {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.content-wide,
.content-narrow {
  width: 100%;
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
}

.content-wide {
  max-width: var(--content-wide);
}

.content-narrow {
  max-width: var(--content-narrow);
}

.band-rust {
  background: var(--rust);
  color: var(--black);
}

.band-yellow {
  background: var(--yellow);
  color: var(--black);
}

.band-gray {
  background: var(--gray);
  color: var(--black);
}

.band-teal {
  background: var(--teal);
  color: var(--white);
}

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

.manifesto {
  padding: 98px 0 108px;
}

.display-pair {
  margin-bottom: 54px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 51px;
  line-height: 1.07;
  text-transform: uppercase;
}

.body-copy p {
  margin-bottom: 24px;
}

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

.edge-media {
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.edge-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edge-media-story {
  height: 68vh;
  min-height: 560px;
  max-height: 820px;
}

.inheritance {
  padding: 86px 0 96px;
}

.inheritance h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 64px;
}

.why-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  min-height: 730px;
}

.why-copy {
  align-self: center;
  max-width: 600px;
  padding: 72px 56px 72px max(48px, calc((100vw - var(--content-wide)) / 2 + 48px));
}

.why-image {
  min-height: 730px;
  margin: 0;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.statement-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 28px;
  line-height: 1.22;
  text-transform: uppercase;
}

.statement-list li {
  padding: 12px 0;
  border-bottom: 2px solid currentColor;
}

.why-close {
  margin: 30px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.video-band {
  position: relative;
  height: 58vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.dark-video {
  background: var(--black);
}

.light-video {
  background: var(--gray);
}

.steamroll-video {
  background-image: url("/assets/video/steamroll-poster.jpg");
}

.curiosity-video {
  background-image: url("/assets/video/curiosity-poster.jpg");
}

.purpose-video {
  background-image: url("/assets/video/purpose-poster.jpg");
}

.steamroll {
  padding: 82px 0 90px;
}

.steamroll-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: start;
}

.steamroll h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.statement-list.compact {
  font-size: 22px;
}

.forms-image {
  height: 62vh;
  min-height: 520px;
  max-height: 760px;
  margin: 0;
  overflow: hidden;
}

.forms-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forms-copy {
  padding-top: 94px;
  padding-bottom: 108px;
}

.forms-copy h2 {
  color: var(--yellow);
}

.curiosity-title {
  padding: 48px 0 52px;
}

.curiosity-title h2 {
  margin-bottom: 0;
}

.curiosity-copy {
  padding: 100px 0 112px;
}

.curiosity-copy .emphasis,
.curiosity-copy .question {
  font-weight: 700;
}

.curiosity-copy .emphasis {
  margin-top: 46px;
}

.curiosity-copy .question {
  margin: 30px 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 34px;
  line-height: 1.15;
  text-transform: uppercase;
}

.more-than {
  padding: 104px 0 112px;
}

.coming {
  padding: 28px 0 30px;
}

.coming h2 {
  margin: 0;
  font-size: 38px;
}

.building-media {
  height: 72vh;
  min-height: 580px;
  max-height: 900px;
}

.gallery {
  display: grid;
  grid-template-columns: 0.72fr 1.08fr 1.08fr 1.08fr 0.72fr;
  height: 310px;
  background: var(--black);
}

.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 84px;
  padding: 104px max(48px, calc((100vw - var(--content-wide)) / 2 + 48px)) 112px;
}

.contact-intro {
  max-width: 430px;
}

.contact-intro h2 {
  margin-bottom: 26px;
}

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

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

.contact-form label {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 17px;
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240, 228, 0, 0.24);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  border: 2px solid var(--yellow);
  border-radius: 0;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.button-arrow {
  font-size: 24px;
}

.form-status {
  min-height: 28px;
  margin: -8px 0 0;
  font-weight: 700;
}

.form-status.is-error {
  color: #ffe3e3;
}

.form-status.is-success {
  color: var(--yellow);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 72px 32px 36px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.footer-logo {
  width: 230px;
  height: 230px;
  object-fit: contain;
}

.footer-signature-link {
  margin-top: 12px;
}

.footer-signature {
  width: min(430px, 76vw);
  height: auto;
}

.site-footer p {
  margin: 44px 0 0;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 900px) {
  h2 {
    font-size: 44px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .display-pair {
    font-size: 43px;
  }

  .inheritance h2 {
    font-size: 52px;
  }

  .why-story {
    grid-template-columns: 1fr;
  }

  .why-copy {
    max-width: none;
    padding: 82px 48px;
  }

  .why-image {
    min-height: 620px;
  }

  .steamroll-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-intro {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
    line-height: 1.55;
  }

  h2 {
    margin-bottom: 26px;
    font-size: 32px;
  }

  h3 {
    font-size: 25px;
  }

  .site-header {
    min-height: 64px;
    padding: 13px 18px;
  }

  .wordmark {
    max-width: 210px;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.05;
  }

  .header-contact {
    font-size: 12px;
  }

  .hero {
    min-height: 86vh;
    max-height: 780px;
  }

  .hero-content {
    padding: 118px 24px 84px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-statement {
    font-size: 20px;
  }

  .scroll-cue {
    right: 18px;
    bottom: 20px;
  }

  .content-wide,
  .content-narrow {
    padding-right: 24px;
    padding-left: 24px;
  }

  .manifesto {
    padding: 72px 0 78px;
  }

  .display-pair {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .edge-media-story {
    height: 52vh;
    min-height: 440px;
  }

  .inheritance {
    padding: 62px 0 68px;
  }

  .inheritance h2 {
    font-size: 35px;
  }

  .why-copy {
    padding: 68px 24px;
  }

  .statement-list {
    font-size: 22px;
  }

  .why-image {
    min-height: 560px;
  }

  .video-band {
    height: 50vh;
    min-height: 390px;
  }

  .steamroll {
    padding: 68px 0 74px;
  }

  .steamroll-grid {
    gap: 28px;
  }

  .statement-list.compact {
    font-size: 19px;
  }

  .forms-image {
    height: 48vh;
    min-height: 390px;
  }

  .forms-copy,
  .curiosity-copy,
  .more-than {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .curiosity-title {
    padding: 34px 0 36px;
  }

  .curiosity-copy .question {
    font-size: 27px;
  }

  .coming h2 {
    font-size: 29px;
  }

  .building-media {
    height: 58vh;
    min-height: 480px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .gallery img {
    height: 250px;
  }

  .gallery img:nth-child(3) {
    grid-column: span 2;
  }

  .contact {
    padding: 74px 24px 82px;
  }

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

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

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

  .site-header {
    transition: none;
  }

  .section-video {
    display: none;
  }
}
