:root {
  color-scheme: dark;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #101112;
  color: #f6f6f3;
}

.site-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.page-mark {
  align-items: center;
  display: flex;
  gap: 5px;
  left: 32px;
  position: absolute;
  top: 32px;
}

.page-mark span {
  background: #ef7d00;
  display: block;
  height: 7px;
  width: 7px;
}

.page-mark span:nth-child(2) {
  background: #f6f6f3;
}

.page-mark span:nth-child(3) {
  background: #5f6464;
}

.hero {
  align-self: center;
  max-width: 620px;
  padding: 36px 7vw 24px 4vw;
}

.kicker,
footer {
  color: #949999;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.kicker {
  margin: 0 0 26px;
}

h1 {
  font-size: clamp(42px, 5.3vw, 82px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.intro {
  color: #bfc3c2;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
  margin: 30px 0 0;
  max-width: 390px;
}

.image-frame {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.image-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.image-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  width: 100%;
}

footer {
  align-items: end;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 28px;
}

@media (max-width: 760px) {
  .site-shell {
    display: flex;
    flex-direction: column;
    gap: 34px;
    min-height: 100dvh;
    padding: 24px;
  }

  .page-mark {
    left: 24px;
    top: 24px;
  }

  .hero {
    padding: 66px 0 0;
  }

  h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .intro {
    margin-top: 24px;
  }

  .image-frame {
    min-height: min(56vw, 310px);
  }

  footer {
    margin-top: auto;
    padding-top: 0;
  }
}
