:root {
  --paper: #f3efe3;
  --ink: #111111;
  --muted: #5d574d;
  --orange: #f05a28;
  --blue: #1646ff;
  --line: #111111;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(17,17,17,.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .45;
}

a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 3px solid var(--line);
  background: var(--paper);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-5deg);
}

nav {
  display: flex;
  height: 100%;
  border-left: 3px solid var(--line);
}

nav a {
  display: grid;
  place-items: center;
  min-width: 8.2rem;
  padding: 1rem;
  border-right: 3px solid var(--line);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

nav a:hover { background: var(--orange); color: var(--paper); }

.poster {
  min-height: calc(100vh - 67px);
  border-bottom: 3px solid var(--line);
}

.poster-label {
  padding: .65rem clamp(1rem, 4vw, 2rem);
  color: var(--paper);
  background: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.poster-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  min-height: calc(100vh - 104px);
}

.poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.kicker {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 1.4rem;
  font-size: clamp(4.4rem, 12vw, 12rem);
  line-height: .78;
  letter-spacing: -.1em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  line-height: .85;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
h3 {
  margin-bottom: .7rem;
  font-size: 1.35rem;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
p { color: var(--muted); line-height: 1.65; }
.lead { max-width: 680px; font-size: 1.25rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.35rem;
  padding: .95rem 1.25rem;
  border: 3px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--line);
}
.button:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--line); }
.button.dark { color: var(--paper); background: var(--ink); }
.button.light { background: white; }

.stamp-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100%;
  padding: 2rem;
  border-left: 3px solid var(--line);
  background: var(--orange);
  color: var(--ink);
}
.stamp-card span {
  width: max-content;
  padding: .45rem .6rem;
  border: 3px solid var(--line);
  background: var(--paper);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.stamp-card strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.stamp-card small { font-size: 1rem; line-height: 1.55; font-weight: 800; }

.ticker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 3px solid var(--line);
  background: white;
}
.ticker span {
  padding: 1rem;
  border-right: 3px solid var(--line);
  text-align: center;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.manifesto {
  display: grid;
  grid-template-columns: 120px minmax(0, .9fr) minmax(260px, .65fr);
  gap: 2rem;
  align-items: start;
}
.number {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border: 3px solid var(--line);
  color: var(--paper);
  background: var(--blue);
  font-size: 1.2rem;
  font-weight: 950;
  transform: rotate(-4deg);
}

.section-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--line);
  border-left: 3px solid var(--line);
}
.work-grid article {
  min-height: 280px;
  padding: 1.2rem;
  border-right: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  background: white;
}
.work-grid article:nth-child(2), .work-grid article:nth-child(4) { background: #ffe0d2; }
.work-grid article span {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 4rem;
  border: 3px solid var(--line);
  background: var(--paper);
  font-weight: 950;
}

.split-note {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.split-note ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--line);
  border-left: 3px solid var(--line);
}
.split-note li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-right: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  background: white;
}
.split-note strong { text-transform: uppercase; letter-spacing: -.02em; }
.split-note span { color: var(--muted); line-height: 1.55; }

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  border-top: 3px solid var(--line);
}
.contact-copy a { color: var(--blue); font-weight: 950; }
form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 3px solid var(--line);
  background: white;
  box-shadow: 10px 10px 0 var(--orange);
}
label {
  display: grid;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
input, textarea {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: 0;
  padding: .9rem;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
textarea { resize: vertical; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 2rem);
  border-top: 3px solid var(--line);
  color: var(--paper);
  background: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
footer a { text-decoration: none; }

@media (max-width: 940px) {
  .topbar { grid-template-columns: 1fr; }
  nav { border-left: 0; border-top: 3px solid var(--line); overflow-x: auto; }
  nav a { min-width: max-content; }
  .poster-grid, .manifesto, .section-head, .split-note, .contact { grid-template-columns: 1fr; }
  .stamp-card { min-height: 420px; border-left: 0; border-top: 3px solid var(--line); }
  .ticker { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .split-note li { grid-template-columns: 1fr; }
  h1 { font-size: clamp(4rem, 18vw, 7rem); }
}
