* { box-sizing: border-box; }

:root {
  --ink: #171613;
  --paper: #eee8dc;
  --red: #b43a28;
  --muted: #6f6a62;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 86px 1fr 44px;
  border: 2px solid var(--ink);
}

.header {
  padding: 17px 24px 15px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 2px solid var(--ink);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  letter-spacing: -.03em;
}

.wordmark span {
  font-size: 14px;
  font-weight: 800;
}

.wordmark strong {
  font-size: 31px;
  line-height: .8;
  font-weight: 900;
}

.meta {
  display: flex;
  gap: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}

.meta i {
  color: var(--red);
  font-style: normal;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .45fr);
}

.headline {
  min-width: 0;
  padding: clamp(28px, 4.8vh, 56px) 3.2vw 26px 24px;
  border-right: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .19em;
}

h1 {
  margin: 0;
  font-size: clamp(88px, 12vw, 182px);
  line-height: .76;
  letter-spacing: -.075em;
  font-weight: 900;
  max-width: 100%;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.side {
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(23,22,19,.03) 0,
      rgba(23,22,19,.03) 1px,
      transparent 1px,
      transparent 14px
    );
}

.stamp {
  align-self: flex-end;
  margin: 8px 4px 0 0;
  padding: 9px 11px 7px;
  border: 3px solid var(--red);
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(-7deg);
}

.side-bottom {
  max-width: 330px;
}

.tagline {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1;
  letter-spacing: -.035em;
}

.small-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--ink);
}

.footer {
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

@media (min-width: 900px) and (min-height: 650px) {
  html, body { height: 100%; }
  body { overflow: hidden; }
  .page { height: 100svh; min-height: 0; }
}

@media (max-width: 900px) {
  .page {
    grid-template-rows: 78px auto 42px;
  }

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

  .headline {
    min-height: 58svh;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    padding: 32px 18px 26px;
  }

  h1 {
    font-size: clamp(78px, 18vw, 130px);
  }

  .side {
    min-height: 320px;
    padding: 20px 18px 24px;
  }

  .side-bottom {
    margin-top: 80px;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 14px 14px 13px;
  }

  .wordmark span { font-size: 10px; }
  .wordmark strong { font-size: 26px; }

  .meta span:first-child,
  .meta i { display: none; }

  .headline {
    min-height: 54svh;
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(70px, 22vw, 106px);
  }

  .side {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tagline {
    font-size: 34px;
  }

  .footer {
    padding: 0 14px;
  }

  .footer span:first-child { display: none; }
}
