@font-face {
  font-family: "Helvetica Now Display";
  src: url("/assets/fonts/font-fbaa7677.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Helvetica Now Display";
  src: url("/assets/fonts/font-2b640a87.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --font: "Helvetica Now Display", "Helvetica Neue", Arial, sans-serif;
  --black: #000;
  --cream: #f1f0eb;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.55);
  --nav-height: 64px;
  --page-max: 1460px;
  --hero-inset: 32px;
  --mission-inset: 31px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--black);
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--black);
  overscroll-behavior: none;
}

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

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

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

/* Navigation */

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  background: var(--black);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0 var(--nav-inset, var(--hero-inset));
}

.site-nav--light {
  background: var(--cream);
}

.site-nav--light .site-nav__link,
.site-nav--light .site-nav__contact {
  color: var(--black);
}

.site-nav--light .site-nav__menu-line {
  background: var(--black);
}

.site-nav--light .site-nav__logo {
  filter: invert(1);
}

.site-nav__logo {
  width: 135px;
  height: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link,
.site-nav__contact {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 1.17;
  color: var(--white);
}

.site-nav__link[aria-current="page"] {
  opacity: 0.65;
}

.site-nav__menu {
  display: none;
  width: 27px;
  height: 12px;
  position: relative;
}

.site-nav__menu-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.site-nav__menu-line:first-child {
  top: 0;
}

.site-nav__menu-line:last-child {
  bottom: 0;
}

.site-nav__drawer {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.96);
  padding: 24px 32px;
}

.site-nav__drawer.is-open {
  display: block;
}

.site-nav--light .site-nav__drawer {
  background: rgba(241, 240, 235, 0.98);
}

.site-nav__drawer-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav--light .site-nav__drawer-link {
  color: var(--black);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Home */

.page-home {
  height: 100vh;
  overflow: hidden;
  padding-top: var(--nav-height);
  box-sizing: border-box;
}

.hero {
  height: calc(100vh - var(--nav-height));
  width: 100%;
  padding: 0 var(--hero-inset) var(--hero-inset);
  box-sizing: border-box;
  overflow: hidden;
}

.hero__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.hero__video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: var(--black);
}

.hero__video--mobile {
  display: none;
}

/* Mission */

.page-mission {
  --nav-inset: var(--mission-inset);
  background: var(--black);
  padding-top: var(--nav-height);
  overscroll-behavior: none;
}

.page-mission main {
  background: var(--cream);
}

.mission-spacer {
  height: 75px;
}

.mission-section {
  padding: 0 var(--mission-inset);
}

.mission-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mission-heading {
  margin: 0;
  font-size: 55px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mission-heading__line {
  display: block;
}

.mission-hero-image {
  width: 100%;
  height: auto;
  margin-top: 24px;
}

.mission-about {
  padding: 48px var(--mission-inset) 64px;
}

.mission-body {
  max-width: 700px;
  margin: 16px 0 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px var(--mission-inset) 48px;
}

.site-footer__inner {
  display: grid;
  gap: 48px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.site-footer__brand {
  width: 160px;
}

.site-footer__copyright {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

.site-footer__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

.site-footer__link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.site-footer__link + .site-footer__link {
  margin-top: 8px;
}

/* 404 */

.page-404 {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.page-404 h1 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 500;
}

.page-404 p {
  margin: 0 0 24px;
  color: var(--muted);
}

.page-404 a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */

@media (max-width: 919px) {
  .site-nav__links {
    display: none;
  }

  .site-nav__menu {
    display: block;
  }

  .page-home {
    --nav-inset: 28px;
    --hero-inset: 3px;
  }

  .page-mission {
    --mission-inset: 15px;
  }

  .hero__video--desktop {
    display: none;
  }

  .hero__video--mobile {
    display: block;
  }

  .mission-spacer {
    height: 32px;
  }

  .mission-heading {
    font-size: 32px;
  }

  .mission-body {
    font-size: 25px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 920px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
