:root {
  --paper: #f4f0e8;
  --ink: #090909;
  --red: #d9141c;
  --deep-red: #8b050b;
  --smoke: #ddd5c8;
  --muted: #625d55;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
}

.page {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  min-height: 92vh;
  border-bottom: 2px solid var(--ink);
}

.logo-lockup {
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #070707;
  background-size: 46px 46px;
  border-right: 2px solid var(--ink);
}

.logo-lockup img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  display: grid;
  align-content: end;
  padding: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(217, 20, 28, 0.09), transparent 44%),
    radial-gradient(circle at 88% 18%, rgba(217, 20, 28, 0.18), transparent 28%),
    var(--paper);
}

.kicker,
.label,
.program span,
.city-grid span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker,
.label,
.program span {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 930px;
  margin-top: 18px;
  font-size: clamp(4rem, 11vw, 12rem);
  line-height: 0.88;
}

.lede {
  max-width: 740px;
  margin-top: 28px;
  color: #28231f;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.32;
}

.mission,
.markets {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(58px, 8vw, 112px) clamp(22px, 6vw, 86px);
  border-bottom: 2px solid var(--ink);
}

.mission h2,
.markets h2,
.close h2 {
  margin-top: 14px;
  font-size: clamp(2.8rem, 6.6vw, 7.6rem);
  line-height: 0.93;
}

.mission > p {
  max-width: 760px;
  align-self: end;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 700;
  line-height: 1.45;
}

.program {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--ink);
}

.program article {
  min-height: 340px;
  padding: clamp(26px, 5vw, 58px);
  border-right: 2px solid var(--ink);
  background: var(--paper);
}

.program article:nth-child(2) {
  background: #fffaf2;
}

.program article:nth-child(3) {
  background: var(--red);
  color: #fff;
  border-right: 0;
}

.program article:nth-child(3) span,
.program article:nth-child(3) p {
  color: #fff2f2;
}

.program h3 {
  margin-top: 26px;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.program p {
  max-width: 380px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.markets {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    #efe6d9;
  background-size: 34px 34px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-self: center;
}

.city-grid span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.city-grid span:nth-child(3n) {
  background: var(--red);
  color: #fff;
}

.city-grid span:nth-child(4n) {
  background: #111;
  color: #fff;
}

.close {
  min-height: 62vh;
  display: grid;
  align-content: center;
  padding: clamp(62px, 9vw, 124px) clamp(22px, 6vw, 86px);
  background: var(--ink);
  color: #fff;
}

.close h2 {
  max-width: 1200px;
}

@media (max-width: 900px) {
  .hero,
  .mission,
  .markets,
  .program {
    grid-template-columns: 1fr;
  }

  .logo-lockup {
    min-height: 320px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .program article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .program article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.4rem, 18vw, 5.7rem);
  }

  .mission h2,
  .markets h2,
  .close h2 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

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