:root {
  color-scheme: dark;
  --paper: rgba(246, 243, 228, 0.9);
  --muted: rgba(246, 243, 228, 0.66);
  --line: rgba(246, 243, 228, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: #050507;
  color: var(--paper);
  font-family:
    "Source Code Pro", "IBM Plex Mono", "SFMono-Regular", Consolas,
    monospace;
  letter-spacing: 0;
}

#film-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: #050507;
}

body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.62),
      rgba(0, 0, 0, 0.18) 34%,
      rgba(0, 0, 0, 0.24) 64%,
      rgba(0, 0, 0, 0.68)
    ),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.54) 100%
    );
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand,
.nav a {
  color: var(--paper);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  box-shadow: inset 0 0 0 6px rgba(0, 0, 0, 0.36);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 12px;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 84px);
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 9vh;
}

.hero-copy {
  max-width: 720px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.92;
}

.hero-copy > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.7;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .site-header {
    align-items: flex-start;
    width: min(100% - 32px, 560px);
    padding: 20px 0;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 66px);
    width: min(100% - 32px, 560px);
    padding-bottom: 7vh;
  }

  h1 {
    font-size: clamp(42px, 16vw, 72px);
  }
}
