:root {
  color-scheme: light;
  --color-greige-canvas: #ebebeb;
  --color-smoke-grey: #e7e5e4;
  --color-slate-surface: #c4c3b6;
  --color-black-ink: #000000;
  --color-warm-grey: #595855;
  --color-off-white: #dfdcd5;
  --font-display: "Times New Roman", Times, "Playfair Display", Georgia, serif;
  --font-utility: Inter, "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-utility);
  background: var(--color-greige-canvas);
  color: var(--color-black-ink);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.045) 0 1px, transparent 1px 19px),
    linear-gradient(180deg, var(--color-greige-canvas), #deddd5);
  color: var(--color-black-ink);
}

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

p,
h1 {
  margin: 0;
}

.shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: clamp(18px, 2.6vw, 36px);
}

.topbar,
.bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-utility);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.25;
}

.wordmark,
.topnote,
.bottomline p,
.bottomline a,
.kicker,
.object-caption {
  font-weight: 500;
  letter-spacing: 0;
}

.wordmark {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 0.95;
}

.topnote,
.bottomline {
  color: var(--color-warm-grey);
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 8vh, 86px) 0;
}

.hero-copy {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.kicker {
  max-width: 360px;
  font-family: var(--font-utility);
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1.25;
  color: var(--color-warm-grey);
}

h1 {
  max-width: 8ch;
  font-family: var(--font-display);
  font-size: clamp(82px, 11vw, 164px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  font-family: var(--font-utility);
  font-size: clamp(22px, 2.45vw, 36px);
  font-weight: 400;
  line-height: 1.06;
}

.object-stage {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
}

.object-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.76;
  overflow: hidden;
  background: var(--color-black-ink);
  border: 1px solid rgba(0, 0, 0, 0.9);
}

.object-frame::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 62% 28%, rgba(223, 220, 213, 0.58), transparent 0 11%, transparent 12%),
    radial-gradient(circle at 42% 56%, rgba(196, 195, 182, 0.3), transparent 0 26%, transparent 27%);
  mix-blend-mode: screen;
}

.object-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(255, 255, 255, 0.07) 68%, transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px);
  opacity: 0.72;
}

.object-field {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 49, 112, 0.92), rgba(5, 14, 43, 0.96) 43%, rgba(2, 6, 18, 0.98)),
    var(--color-black-ink);
}

.band {
  position: absolute;
  display: block;
  filter: blur(0.2px);
}

.band-a {
  left: 0;
  top: 45%;
  width: 74%;
  height: 38%;
  background: var(--color-off-white);
  clip-path: polygon(0 16%, 72% 35%, 100% 63%, 100% 88%, 0 74%);
}

.band-b {
  right: 0;
  top: 7%;
  width: 30%;
  height: 40%;
  background: #f1e9c9;
}

.band-c {
  right: 16%;
  top: 30%;
  width: 26%;
  height: 45%;
  background: rgba(18, 151, 137, 0.46);
}

.band-d {
  left: 28%;
  bottom: 9%;
  width: 36%;
  height: 30%;
  background: rgba(206, 99, 126, 0.34);
}

.object-caption {
  font-size: 12px;
  line-height: 1.25;
  color: var(--color-warm-grey);
}

.bottomline {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  padding-top: 16px;
}

.bottomline p {
  max-width: 520px;
}

.bottomline a {
  color: var(--color-black-ink);
}

@media (max-width: 860px) {
  .shell {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 54px 0 42px;
  }

  h1 {
    font-size: clamp(68px, 21.2vw, 148px);
  }

  .lede {
    font-size: clamp(24px, 7vw, 38px);
  }

  .object-frame {
    width: min(100%, 420px);
  }
}

@media (max-width: 560px) {
  .shell {
    padding: 16px;
  }

  .topbar,
  .bottomline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
