@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #101010;
  --paper: #f1f0eb;
  --line: rgba(16,16,16,.22);
  --acid: #ff4f2e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, sans-serif; }
a { color: inherit; text-decoration: none; }
.topbar {
  position: fixed; z-index: 20; inset: 0 0 auto; display: grid;
  grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: start;
  padding: 18px 22px; color: white; mix-blend-mode: difference;
  font: 500 11px/1.25 "DM Mono", monospace; letter-spacing: .04em;
}
.topbar p { margin: 0; }
.wordmark { font-size: 13px; }
.menu { border: 0; padding: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.drawer {
  position: fixed; z-index: 19; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 80px 22px 28px; background: var(--acid);
  transform: translateY(-102%); transition: transform .55s cubic-bezier(.76,0,.24,1);
}
.drawer.open { transform: translateY(0); }
.drawer a { font-size: clamp(3rem, 10vw, 9rem); line-height: .88; letter-spacing: -.07em; border-top: 1px solid rgba(0,0,0,.25); }
.hero {
  min-height: 100svh; display: grid; grid-template-columns: 1fr 2fr;
  align-content: space-between; gap: 2rem; padding: 100px 22px 24px;
}
.eyebrow, .intro, .scroll-cue, .project-meta, .project-footer p, footer {
  font: 400 11px/1.4 "DM Mono", monospace; letter-spacing: .04em;
}
.eyebrow { margin: 0; }
.hero h1 {
  grid-column: 2; margin: 0; align-self: center;
  font-size: clamp(5rem, 15vw, 14rem); line-height: .72; letter-spacing: -.09em; font-weight: 500;
}
.intro { grid-column: 2; max-width: 430px; margin: 0; text-transform: uppercase; }
.scroll-cue { align-self: end; }
.work { border-top: 1px solid var(--line); }
.project { min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto; padding: 22px; overflow: hidden; }
.project-meta { display: flex; justify-content: space-between; }
.stage { min-height: 58vh; display: grid; place-items: center; margin: 3vw 0; overflow: hidden; }
.project-dark { color: white; background: #0c0d0e; }
.project-dark .stage { position: relative; background: radial-gradient(circle at 50% 42%, #335f8e 0, #182a3f 24%, #0c0d0e 62%); }
.stage-mark { margin: 0; font-size: clamp(9rem, 28vw, 27rem); font-weight: 600; letter-spacing: -.12em; opacity: .9; }
.stage-caption { position: absolute; right: 5%; bottom: 7%; font: 500 clamp(1.4rem,3vw,3rem)/.9 "DM Mono",monospace; }
.project-light { background: #d9d6ce; }
.stage-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tile { height: 100%; min-height: 55vh; display: grid; place-items: center; font-size: clamp(7rem,18vw,18rem); line-height: 1; letter-spacing: -.1em; }
.tile-a { background: #171717; color: #f5f3ed; }
.tile-b { background: #c4ff32; }
.tile-c { background: #8a8cff; }
.project-accent { background: var(--acid); }
.project-accent .stage { border: 1px solid rgba(0,0,0,.25); background: repeating-linear-gradient(90deg, transparent 0 12.4%, rgba(0,0,0,.1) 12.5% 12.7%); }
.frame-copy { margin: 0; font-size: clamp(5rem, 15vw, 15rem); line-height: .72; letter-spacing: -.09em; text-align: center; font-weight: 600; }
.project-footer { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 2rem; }
.project-footer h2 { margin: 0; font-size: clamp(3rem, 7vw, 7rem); line-height: .88; letter-spacing: -.065em; font-weight: 500; }
.project-footer p { margin: 0; max-width: 360px; }
.about { min-height: 85svh; padding: 24px 22px; display: grid; grid-template-columns: 1fr 3fr; align-content: space-between; border-top: 1px solid var(--line); }
.about h2 { grid-column: 2; margin: 10vh 0; max-width: 1200px; font-size: clamp(3rem, 8vw, 8rem); line-height: .92; letter-spacing: -.065em; font-weight: 500; }
.about-grid { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; font: 400 clamp(1rem,1.5vw,1.35rem)/1.35 "DM Mono",monospace; }
.about-grid p { margin: 0; max-width: 550px; }
.about-grid a { justify-self: end; align-self: end; border-bottom: 1px solid; }
footer { display: flex; justify-content: space-between; padding: 22px; border-top: 1px solid var(--line); }
@media (max-width: 720px) {
  .topbar { grid-template-columns: 1fr auto; }
  .topbar p { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 86px; }
  .hero h1, .intro { grid-column: 1; }
  .hero h1 { font-size: clamp(4.4rem, 25vw, 8rem); }
  .project { padding: 16px; }
  .project-meta span:last-child { text-align: right; }
  .stage-grid { gap: 5px; }
  .tile { min-height: 45vh; }
  .project-footer, .about-grid { grid-template-columns: 1fr; }
  .project-footer p { margin-top: 14px; }
  .about { grid-template-columns: 1fr; }
  .about h2, .about-grid { grid-column: 1; }
  .about-grid a { justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
