:root {
  --ink: #f4efe6;
  --paper: #090807;
  --muted: rgba(244, 239, 230, 0.64);
  --line: rgba(244, 239, 230, 0.18);
}

* {
  box-sizing: border-box;
  font-stretch: inherit;
  font-width: inherit;
  font-variation-settings: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-stretch: 150%;
  font-width: 150%;
  font-variation-settings: "wdth" 150;
  letter-spacing: 0;
}

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

.project-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 8, 7, 0.78);
  backdrop-filter: blur(16px);
  text-transform: uppercase;
}

.wordmark {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.project-topbar nav {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  color: var(--muted);
  font-size: 11px;
}

.scroll-shell {
  width: min(1180px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 38px 0 80px;
}

.project-hero {
  margin-bottom: 28px;
  text-transform: uppercase;
}

.project-hero p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.project-hero h1 {
  margin: 0;
  font-size: clamp(44px, 9vw, 126px);
  line-height: 0.86;
}

.long-image-frame {
  width: min(100%, 920px);
  margin: 0 auto;
}

.long-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.52);
}

@media (max-width: 760px) {
  .project-topbar {
    align-items: flex-start;
    padding: 18px;
  }

  .project-topbar nav {
    display: grid;
    gap: 8px;
    text-align: right;
  }

  .scroll-shell {
    width: min(100vw - 16px, 760px);
    padding-top: 28px;
  }
}
