:root {
  color-scheme: dark;
  --app-height: 100svh;
  --black: #0d0c0a;
  --white: #f7f4ee;
  --beige: #d9c9b6;
  --page-x: clamp(1.25rem, 3.2vw, 3.75rem);
}

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

html {
  background: var(--black);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

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

.site-shell,
.hero {
  min-height: var(--app-height);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  background: #8d8171;
}

.hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(9 8 6 / 0.32) 0%, transparent 38%),
    linear-gradient(180deg, transparent 48%, rgb(8 7 5 / 0.76) 100%);
}

.brand-lockup {
  position: absolute;
  top: max(1.5rem, env(safe-area-inset-top));
  left: var(--page-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.65rem, 1.1vh, 0.9rem);
}

.brand-mark {
  width: clamp(6.5rem, 9.5vw, 9.25rem);
  aspect-ratio: 1773 / 971;
  background: #e5d6c6;
  -webkit-mask: url("na-logo-locked.svg") center / contain no-repeat;
  mask: url("na-logo-locked.svg") center / contain no-repeat;
}

.brand-name {
  color: #e5d6c6;
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hero__content {
  align-self: end;
  padding:
    0
    var(--page-x)
    max(1.35rem, env(safe-area-inset-bottom));
}

.business-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 3.5rem);
  margin: 0 0 clamp(2.4rem, 5.3vh, 4.25rem);
  padding: 0;
  list-style: none;
}

.business-units li {
  min-width: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.secondary-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.5rem);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.07em;
}

.secondary-links a {
  color: rgb(247 244 238 / 0.84);
}

.secondary-links a:focus-visible {
  outline: 1px solid var(--beige);
  outline-offset: 0.45rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 48rem) {
  :root {
    --page-x: clamp(1.15rem, 5.2vw, 1.75rem);
  }

  .hero__image {
    object-position: 55% center;
  }

  .brand-lockup {
    top: max(1.15rem, env(safe-area-inset-top));
    gap: 0.55rem;
  }

  .brand-mark {
    width: clamp(5.75rem, 25vw, 7rem);
  }

  .brand-name {
    font-size: clamp(0.62rem, 2.5vw, 0.76rem);
    letter-spacing: 0.11em;
  }

  .hero__content {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .business-units {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.15rem;
    column-gap: 1rem;
    margin-bottom: clamp(2.25rem, 5vh, 3rem);
  }

  .business-units li {
    font-size: clamp(0.9rem, 4vw, 1.05rem);
    white-space: normal;
  }

  .business-units li:nth-child(even) {
    text-align: right;
  }

  .secondary-links {
    gap: 1.5rem;
    font-size: 0.84rem;
  }
}

@media (max-height: 34rem) and (orientation: landscape) {
  .brand-lockup {
    top: 1rem;
  }

  .brand-mark {
    width: 5.5rem;
  }

  .hero__content {
    padding-bottom: 0.9rem;
  }

  .business-units {
    margin-bottom: 1.3rem;
  }
}

@media (prefers-contrast: more) {
  .hero__shade {
    background:
      linear-gradient(180deg, rgb(9 8 6 / 0.28) 0%, transparent 35%),
      linear-gradient(180deg, transparent 36%, rgb(8 7 5 / 0.9) 100%);
  }
}
