:root {
  color-scheme: dark;
  --ink: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.68);
  --line: rgba(246, 241, 232, 0.2);
  --red: #f14b33;
  --page: #111111;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
}

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

.page,
.hero {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.72) 48%, rgba(17, 17, 17, 0.44) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.08) 44%, rgba(17, 17, 17, 0.92));
}

.image-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  opacity: 0.92;
}

.image-field img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.topbar,
.strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 4vw, 52px);
}

.topbar {
  border-bottom: 1px solid var(--line);
}

.mark {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
}

.mark::after {
  color: var(--red);
  content: ".";
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.copy {
  align-self: center;
  width: min(900px, 100%);
  padding: clamp(48px, 9vw, 112px) clamp(20px, 4vw, 52px);
}

.eyebrow,
.strip {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 8.5ch;
  margin: 18px 0 0;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lede {
  max-width: 42rem;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.strip {
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-field {
    grid-template-columns: 1fr;
  }

  .image-field img:nth-child(2),
  .image-field img:nth-child(3) {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.5)),
      linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.62));
  }

  h1 {
    max-width: 7.5ch;
  }
}
