:root {
  --paper: #f4f1e9;
  --ink: #111111;
  --teal: #729fa2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.poster {
  width: min(1180px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 54px 0 38px;
}

/* top marks */
.masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 112px;
}

.color-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 150px;
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
}

.color-bar span:nth-child(1) { background: #111; }
.color-bar span:nth-child(2) { background: #bfdfe1; }
.color-bar span:nth-child(3) { background: #164a4f; }

.mpa-logo {
  width: 160px;
  height: auto;
  display: block;
  translate: 4px -23px;
}

/* title row */
.headline-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin: 10px 0 28px;
}

.tagline {
  margin: 0 0 2px;
  color: var(--teal);
  font-size: 23px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  margin: 0;
  text-align: right;
  font-size: clamp(58px, 7.2vw, 92px);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

/* main square / image window */
.hero-image {
  width: 100%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 5px rgba(0,0,0,.28);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-top: 16px;
}

.fine-print {
  font-size: 15px;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.fine-print a {
  color: inherit;
  text-decoration: none;
}

.fine-print a:hover {
  text-decoration: underline;
}

.page-number {
  margin-top: -2px;
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

/* responsive */
@media (max-width: 820px) {
  .poster {
    width: min(100% - 30px, 1180px);
    padding-top: 26px;
  }

  .masthead {
    min-height: 82px;
  }

  .color-bar {
    width: 118px;
    height: 8px;
    margin-top: 10px;
  }

  .mpa-logo {
    width: 118px;

  }

  .headline-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 68px);
    white-space: normal;
  }

  .fine-print {
    font-size: 12px;
    max-width: 76%;
  }
}
