:root {
  color-scheme: dark;
  --ink: #070707;
  --ink-2: #101010;
  --ink-3: #171717;
  --paper: #f4f0e8;
  --paper-2: #ebe6dc;
  --muted: #a7a29a;
  --soft: rgba(244, 240, 232, 0.68);
  --line: rgba(244, 240, 232, 0.14);
  --dark-line: rgba(7, 7, 7, 0.28);
  --red: #e11920;
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body: "Roboto Condensed", Arial, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 16% 28%, rgba(244, 240, 232, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 73% 69%, rgba(244, 240, 232, 0.1) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 clamp(26px, 5.4vw, 74px);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0));
}

.wordmark,
nav a,
.line-cta,
.scroll-cue,
.section-number,
.method-grid span,
.deliverables-list h3,
.submission-form button,
.footer strong,
.footer a {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 14px;
  letter-spacing: 0.38em;
  white-space: nowrap;
  line-height: 1;
}

.wordmark img,
.footer-brand img {
  width: 23px;
  height: 23px;
  object-fit: cover;
  filter: invert(1) grayscale(1) contrast(1.15);
  mix-blend-mode: screen;
}

.wordmark i {
  width: 6px;
  height: 6px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--red);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4.5vw, 62px);
}

nav a {
  color: rgba(244, 240, 232, 0.86);
  font-size: 12px;
  letter-spacing: 0.12em;
}

nav a:hover,
.line-cta:hover,
.footer a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 116px clamp(26px, 5.4vw, 74px) 66px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(7, 7, 7, 0.94) 28%, rgba(7, 7, 7, 0.28) 72%, var(--ink) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(7, 7, 7, 0) 25%);
}

.hero::after {
  z-index: 1;
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 240, 232, 0.13), transparent 21%),
    radial-gradient(circle at 44% 58%, rgba(225, 25, 32, 0.11), transparent 18%);
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(62vw, 850px);
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) brightness(0.86) saturate(0);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  margin-top: clamp(48px, 7vh, 96px);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(92px, 11.2vw, 186px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-copy > p {
  max-width: 490px;
  margin: clamp(20px, 2.4vw, 34px) 0 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.32;
}

.hero-actions {
  margin-top: clamp(28px, 4vw, 54px);
}

.line-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.red-line {
  width: clamp(72px, 8vw, 154px);
  height: 1px;
  background: var(--red);
}

.line-cta::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: -18px;
  border-radius: 50%;
  background: var(--red);
}

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: 0 0 auto;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.arrow-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.arrow-icon-light {
  color: var(--paper);
}

.hero-manifesto {
  position: absolute;
  left: clamp(26px, 5.4vw, 74px);
  bottom: clamp(62px, 8vw, 96px);
  z-index: 3;
  margin: 0;
  color: rgba(244, 240, 232, 0.78);
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(23px, 2.3vw, 38px);
  line-height: 1.18;
  text-rendering: geometricPrecision;
}

.scroll-cue {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  bottom: 86px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(244, 240, 232, 0.56);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 12px auto 0;
  background: var(--red);
}

.diagnosis {
  --diagnosis-parallax: 0px;
  --diagnosis-card-y: 16px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(310px, 0.36fr) minmax(0, 0.64fr);
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.diagnosis-card {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(44px, 6vw, 84px);
  background: var(--paper);
  color: var(--ink);
  transform: translate3d(0, var(--diagnosis-card-y), 0);
  will-change: transform;
}

.section-number {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.diagnosis-card h2,
.deliverables-title h2 {
  max-width: 430px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.rule {
  width: min(100%, 330px);
  height: 1px;
  background: currentColor;
  opacity: 0.76;
}

.diagnosis-card p {
  max-width: 315px;
  margin: 0;
  color: rgba(7, 7, 7, 0.64);
  font-size: 17px;
  line-height: 1.45;
}

.diagnosis-image,
.method-photo,
.deliverables-image {
  position: relative;
  overflow: hidden;
}

.diagnosis-image::after,
.method-photo::after,
.deliverables-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.12), rgba(7, 7, 7, 0.68)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.4), rgba(7, 7, 7, 0));
}

.diagnosis-image img,
.method-photo img,
.deliverables-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) brightness(0.82) saturate(0);
}

.diagnosis-image img {
  transform: translate3d(0, var(--diagnosis-parallax), 0) scale(1.08);
  will-change: transform;
}

.method {
  --method-line-scale: 0;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.method-photo {
  min-height: 620px;
}

.method-photo img {
  object-position: center center;
  transform: scale(1.08);
}

.method-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 45%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--red) 18%, var(--red) 72%, transparent);
  transform: scaleY(var(--method-line-scale));
  transform-origin: top;
  will-change: transform;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  padding: clamp(40px, 7vw, 96px);
}

.method-grid article {
  min-height: 232px;
  padding: clamp(24px, 3.4vw, 42px);
  border-top: 1px solid var(--line);
}

.method-grid article:nth-child(1),
.method-grid article:nth-child(2) {
  border-top: 0;
}

.method-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.method-grid span {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.method-grid h3 {
  margin: 22px 0 14px;
  font-family: var(--display);
  font-size: clamp(44px, 4.1vw, 70px);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.method-grid p {
  max-width: 31ch;
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.46;
}

.deliverables {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.48fr) minmax(230px, 0.2fr);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--dark-line);
}

.deliverables-title {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(42px, 6vw, 76px);
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: clamp(18px, 3.4vw, 42px);
  padding: clamp(42px, 6vw, 76px) 0;
}

.deliverables-list h3 {
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.deliverables-list p {
  margin: 9px 0 0;
  color: rgba(7, 7, 7, 0.62);
  font-size: 15px;
  line-height: 1.25;
}

.deliverables-image {
  min-height: 360px;
}

.deliverables-image img {
  object-position: center center;
  transform: scale(1.08);
}

.manifesto {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.35fr);
  gap: clamp(36px, 8vw, 126px);
  align-items: center;
  padding: clamp(62px, 8vw, 92px) clamp(26px, 6vw, 84px);
  background:
    linear-gradient(90deg, var(--ink) 0 48%, var(--ink-2) 48%),
    radial-gradient(circle at 78% 50%, rgba(244, 240, 232, 0.12), transparent 24%);
}

.manifesto h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto p {
  max-width: 360px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.42;
}

.manifesto-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.42);
}

.manifesto-card::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 22px;
  border-radius: 50%;
  background: var(--red);
}

.manifesto-photo {
  min-height: 188px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.42);
}

.manifesto-photo img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) brightness(0.88);
}

.submission {
  padding: 0 clamp(26px, 6vw, 84px) clamp(34px, 5vw, 50px);
  background: var(--ink-2);
}

.submission-form {
  display: grid;
  grid-template-columns: 0.78fr 0.98fr 1.36fr auto;
  border: 1px solid var(--line);
}

.submission-form label {
  min-height: 72px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.submission-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.submission-form input {
  width: 100%;
  min-height: 72px;
  border: 0;
  outline: 0;
  padding: 18px 20px;
  background: transparent;
  color: var(--paper);
  font-size: 15px;
}

.submission-form input::placeholder {
  color: rgba(244, 240, 232, 0.62);
}

.submission-form button {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  padding: 18px 28px;
  background: var(--red);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.submission-form button:hover {
  background: #ff2028;
}

.form-note {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 15px;
}

.footer {
  min-height: 152px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px clamp(26px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(244, 240, 232, 0.62);
  font-size: 13px;
}

.footer strong,
.footer a {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer div {
  display: grid;
  gap: 6px;
}

@media (max-width: 1040px) {
  nav {
    display: none;
  }

  .hero-media {
    width: 76vw;
    opacity: 0.86;
  }

  .hero::before {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(7, 7, 7, 0.94) 42%, rgba(7, 7, 7, 0.32) 100%),
      linear-gradient(0deg, var(--ink) 0%, rgba(7, 7, 7, 0) 30%);
  }

  .diagnosis,
  .method,
  .deliverables,
  .manifesto,
  .submission-form,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .diagnosis-image,
  .method-photo,
  .deliverables-image {
    min-height: 360px;
  }

  .deliverables-list {
    grid-template-columns: 1fr;
    padding: 0 clamp(42px, 6vw, 76px) clamp(42px, 6vw, 76px);
  }

  .submission-form label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 62px;
    padding-inline: 24px;
  }

  .wordmark {
    max-width: none;
    white-space: nowrap;
    font-size: 10px;
    gap: 7px;
    letter-spacing: 0.26em;
  }

  .wordmark img {
    width: 18px;
    height: 18px;
  }

  .wordmark i {
    width: 5px;
    height: 5px;
  }

  .hero {
    min-height: 94svh;
    align-items: end;
    padding: 96px 24px 44px;
  }

  .hero-media {
    inset: 0 0 auto auto;
    width: 100%;
    height: 58%;
    opacity: 0.68;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-copy {
    margin-top: 0;
    margin-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(66px, 21vw, 104px);
    line-height: 0.8;
  }

  .hero-copy > p {
    max-width: 28ch;
    font-size: 18px;
  }

  .line-cta {
    gap: 14px;
    font-size: 12px;
  }

  .red-line {
    width: 72px;
  }

  .hero-manifesto {
    left: 24px;
    right: 24px;
    bottom: 52px;
    font-size: 22px;
    line-height: 1.22;
  }

  .scroll-cue {
    display: none;
  }

  .diagnosis-card,
  .deliverables-title {
    padding: 44px 24px;
  }

  .diagnosis-card h2,
  .deliverables-title h2 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .method-grid {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .method-grid article,
  .method-grid article:nth-child(odd) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .method-grid article:first-child {
    border-top: 0;
  }

  .manifesto {
    padding: 56px 24px;
  }

  .manifesto h2 {
    font-size: clamp(50px, 14vw, 76px);
  }

  .manifesto-photo {
    min-height: 174px;
  }

  .submission {
    padding-inline: 24px;
  }
}
