:root {
  color-scheme: dark;
  --paper: #c89b58;
  --paper-dark: #8f6432;
  --ink: #120f0b;
  --white: #ecd1a0;
  --amber: #b7772b;
  --red: #9f2f23;
  --green: #71865c;
  --shadow: rgb(0 0 0 / 72%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: #090908;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: start;
  isolation: isolate;
}

.scene,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene {
  z-index: -3;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.88) contrast(1.05);
}

.shade {
  z-index: -2;
  background:
    radial-gradient(circle at 70% 30%, rgb(194 151 72 / 16%), transparent 26rem),
    linear-gradient(90deg, rgb(7 7 6 / 96%) 0%, rgb(7 7 6 / 90%) 29%, rgb(7 7 6 / 28%) 43%, rgb(7 7 6 / 0%) 68%),
    linear-gradient(0deg, rgb(7 7 6 / 58%) 0%, rgb(7 7 6 / 0%) 34%);
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(0deg, rgb(255 246 228 / 8%) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 50% 50%, transparent 0 58%, rgb(0 0 0 / 48%) 100%);
  mix-blend-mode: screen;
}

.copy {
  width: min(500px, 34vw);
  margin-left: clamp(20px, 5.6vw, 86px);
  padding-top: clamp(92px, 15vh, 150px);
  color: var(--white);
}

.kicker {
  margin: 0 0 22px;
  color: var(--amber);
  font-family: "Courier New", monospace;
  font-size: clamp(0.7rem, 0.88vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgb(0 0 0 / 82%);
}

h1 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.65vw, 3.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgb(47 27 9 / 80%),
    0 12px 38px rgb(0 0 0 / 88%);
}

.lead,
.punchline {
  max-width: 470px;
  margin: 24px 0 0;
  font-family: "Courier New", monospace;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.55;
  color: #cba166;
  text-shadow: 0 8px 28px var(--shadow);
}

.lead span {
  color: var(--amber);
  font-weight: 700;
}

.punchline {
  margin-top: 16px;
  color: rgb(203 161 103 / 84%);
}

@media (max-width: 860px) {
  .landing {
    align-items: end;
  }

  .scene {
    object-position: 72% center;
  }

  .shade {
    background:
      linear-gradient(0deg, rgb(7 7 6 / 96%) 0%, rgb(7 7 6 / 80%) 44%, rgb(7 7 6 / 22%) 100%),
      linear-gradient(90deg, rgb(7 7 6 / 36%) 0%, rgb(7 7 6 / 10%) 100%);
  }

  .copy {
    width: min(100% - 36px, 560px);
    margin: 0 auto;
    padding: 38svh 0 54px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 13vw, 4.2rem);
    white-space: normal;
  }

  .lead,
  .punchline {
    font-size: clamp(1rem, 4vw, 1.18rem);
  }

}
