* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --home-ink: rgba(244, 247, 236, 0.94);
  --home-muted: rgba(232, 231, 205, 0.72);
  --home-faint: rgba(229, 188, 124, 0.74);
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #151611;
  color: var(--home-ink);
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Liberation Mono", Menlo, monospace;
}

body {
  overflow: hidden;
}

.home-frame {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #151611;
}

.home-bg,
.home-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-bg {
  z-index: -1;
}

.home-bg img {
  object-fit: cover;
  object-position: center;
}

.home-frame::before,
.home-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-frame::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.02) 46%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22));
}

.home-frame::after {
  z-index: 1;
  opacity: 0.055;
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 210, 142, 0.018) 0 1px, transparent 1px 7px);
}

.home-copy {
  position: absolute;
  z-index: 2;
  top: clamp(58px, 9vh, 104px);
  left: clamp(34px, 5.4vw, 82px);
  width: min(620px, calc(100vw - 68px));
  display: grid;
  gap: 14px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.76);
}

.home-label {
  margin: 0;
  color: var(--home-faint);
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-lines {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  color: var(--home-muted);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
}

.home-lines p {
  margin: 0;
}

.home-mark {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 84px);
  bottom: clamp(28px, 5vw, 76px);
  display: grid;
  gap: 7px;
  color: rgba(236, 232, 205, 0.46);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-mark span {
  display: block;
}

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

  .home-frame {
    min-height: 100svh;
  }

  .home-bg img {
    object-position: 58% center;
  }

  .home-frame::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.1)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36));
  }

  .home-copy {
    inset: auto 24px 52px;
    width: auto;
    gap: 14px;
  }

  .home-lines {
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .home-mark {
    display: none;
  }
}
