:root {
  color-scheme: dark;
  --ink: #f6f0e8;
  --muted: #c9c0b5;
  --line: rgba(246, 240, 232, 0.32);
  --shade: #151412;
  --accent: #d7b36a;
}

* {
  box-sizing: border-box;
}

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

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

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.96) 0%, rgba(25, 23, 20, 0.88) 48%, rgba(39, 35, 29, 0.78) 100%),
    var(--shade);
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.page-shell::before {
  background:
    linear-gradient(120deg, transparent 0%, transparent 52%, rgba(215, 179, 106, 0.12) 52.2%, transparent 52.8%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.58) 0%, transparent 48%, rgba(13, 12, 11, 0.32) 100%);
}

.page-shell::after {
  background-image:
    linear-gradient(rgba(246, 240, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 240, 232, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.55) 46%, transparent 100%);
}

.hero-content {
  align-self: end;
  width: min(720px, calc(100% - 40px));
  margin: clamp(24px, 7vw, 88px);
  padding-block: clamp(42px, 9vh, 104px);
}

.eyebrow,
.status {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 14px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 8.5rem;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: var(--ink);
}

.status::before {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--line);
  content: "";
}

@media (max-width: 720px) {
  .page-shell::before {
    background:
      linear-gradient(132deg, transparent 0%, transparent 58%, rgba(215, 179, 106, 0.13) 58.2%, transparent 59%),
      linear-gradient(0deg, rgba(13, 12, 11, 0.62) 0%, transparent 52%, rgba(13, 12, 11, 0.34) 100%);
  }

  .page-shell::after {
    background-size: 44px 44px;
    mask-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.45) 42%, transparent 100%);
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 16px;
    padding-block: 48px;
  }

  h1 {
    max-width: 8ch;
    font-size: 4rem;
  }

  .lede {
    font-size: 1.08rem;
  }

  .eyebrow,
  .status {
    font-size: 0.78rem;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  h1 {
    font-size: 6.5rem;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 3.4rem;
  }
}
