@font-face {
  font-family: "Staatliches";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/staatliches-v15.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #101010;
  --paper: #f4efe3;
  --paper-2: #fffaf0;
  --red: #e23b2e;
  --yellow: #f4c430;
  --blue: #1765c1;
  --green: #2f8f4e;
  --muted: #5f5a52;
  --line: #101010;
  --cell: minmax(0, 1fr);
  --display: "Staatliches", Impact, "Arial Narrow", sans-serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 16, 16, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 3px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--ink);
  background: rgba(244, 239, 227, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  font-family: var(--display);
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--yellow);
  font-size: 15px;
  line-height: 1;
}

.brand-name {
  max-width: 12ch;
  font-size: 16px;
  line-height: 0.98;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 13px;
  font-weight: 950;
  font-family: var(--display);
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: stretch;
  gap: 0;
  padding: 118px clamp(18px, 5vw, 72px) 56px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 3px solid var(--ink);
}

.hero::before {
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  left: clamp(18px, 5vw, 72px);
  bottom: 46px;
  background: var(--red);
}

.hero::after {
  width: clamp(120px, 16vw, 220px);
  aspect-ratio: 1;
  right: clamp(18px, 5vw, 72px);
  top: 128px;
  border-radius: 999px;
  background: var(--blue);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 620px;
  padding: clamp(22px, 4vw, 48px);
  border: 3px solid var(--ink);
  background: var(--paper-2);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-left: 0;
  filter: saturate(0.92) contrast(1.08);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 950;
  font-family: var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--blue);
}

h1,
h2,
h3,
p,
a {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(50px, 8vw, 112px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 650;
  line-height: 1.34;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 0 20px;
  font-weight: 950;
  font-family: var(--display);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-secondary {
  background: var(--yellow);
}

.marquee {
  display: grid;
  grid-template-columns: repeat(8, max-content);
  gap: 0;
  overflow: hidden;
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(20px, 3.2vw, 46px);
  font-weight: 950;
  font-family: var(--display);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span {
  padding: 14px 24px 16px;
  border-right: 3px solid var(--paper);
}

.marquee span:nth-child(2n) {
  color: var(--yellow);
}

.marquee span:nth-child(3n) {
  color: #fff;
}

.section {
  padding: clamp(68px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.studio {
  position: relative;
  background: var(--paper-2);
  border-bottom: 3px solid var(--ink);
}

.studio::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: -42px;
  width: 84px;
  height: 84px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 84px);
  max-width: 1120px;
  margin-top: clamp(32px, 5vw, 64px);
}

.split-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 620;
  line-height: 1.45;
}

.work {
  background: var(--paper);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 66px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}

.work-card {
  min-height: 360px;
  padding: 24px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-radius: 0;
  background: var(--paper-2);
}

.work-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 950;
  font-family: var(--display);
}

.work-card p {
  margin: 0;
  color: rgba(16, 16, 16, 0.72);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.42;
}

.accent-red {
  background: #ffd6d1;
}

.accent-green {
  background: #d9f0c0;
}

.accent-blue {
  background: #d6e7ff;
}

.accent-ink {
  background: #eee8dd;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 86px);
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.process .section-kicker {
  color: var(--yellow);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--paper);
}

.process-list li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 3px solid var(--paper);
}

.process-list strong {
  color: var(--yellow);
  font-size: 19px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
}

.process-list span {
  color: rgba(244, 239, 227, 0.78);
  font-size: 19px;
  font-weight: 620;
  line-height: 1.42;
}

.closing {
  min-height: 58vh;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 86% 28%, var(--red) 0 78px, transparent 80px),
    linear-gradient(90deg, transparent 0 62%, var(--yellow) 62% 76%, transparent 76%),
    var(--green);
  border-bottom: 3px solid var(--ink);
}

.closing .section-kicker {
  color: var(--paper);
}

.closing h2 {
  max-width: 980px;
}

@media (max-width: 1180px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-image {
    min-height: auto;
  }

  .hero-image {
    aspect-ratio: 16 / 9;
    border-left: 3px solid var(--ink);
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero::before {
    width: 126px;
    bottom: 20px;
  }

  .hero::after {
    width: 112px;
    top: 104px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .split-copy,
  .process {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: auto;
  }
}
