:root {
  --background: #f3f1eb;
  --text: #151515;
  --muted: #6f6d67;
  --line: #c8c5bd;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  display: flex;
  flex-direction: column;
}

.landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 80px 0;

  text-align: center;
}

.mark {
  margin-bottom: 42px;
}

.year {
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.82;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.name {
  margin-top: 24px;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  padding-left: 0.12em;
}

.tagline {
  margin: 0 0 42px 0;
  max-width: 500px;

  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  font-weight: 400;

  color: var(--muted);
}

.contact {
  display: inline-block;

  padding: 13px 22px;

  color: var(--text);
  text-decoration: none;

  border: 1px solid var(--text);

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  transition:
    background 160ms ease,
    color 160ms ease;
}

.contact:hover {
  background: var(--text);
  color: var(--background);
}

footer {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 32px;

  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .landing,
  footer {
    width: min(100% - 40px, 1180px);
  }

  .landing {
    padding: 60px 0;
  }

  .name {
    margin-top: 18px;
    letter-spacing: 0.28em;
  }
}
