:root {
  --text: #1d1d1b;
  --muted: #66645f;
  --background: #f8f7f3;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

main {
  margin: 0 auto;
  max-width: 980px;
  min-height: 100vh;
  padding: 0 28px;
}

section {
  min-height: calc(100vh - 77px);
  padding: clamp(156px, calc(13vh + 76px), 216px) 0 90px;
}

h1 {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.description {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  margin-top: 0;
  max-width: 650px;
}

.description strong {
  color: var(--text);
}

.description p {
  margin: 0 0 14px;
}

.description .status {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.contact {
  display: grid;
  font-size: 14px;
  gap: 24px;
  grid-template-columns: max-content max-content;
  margin-top: 32px;
  max-width: 980px;
  padding-top: 24px;
}

.contact span {
  color: var(--muted);
  white-space: nowrap;
}

.contact a {
  color: var(--text);
  font-weight: 700;
  text-underline-offset: 4px;
}

footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  min-height: 77px;
}

@media (max-width: 680px) {
  .contact {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .contact span {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  section {
    min-height: calc(100vh - 77px);
    padding-top: 140px;
  }

  .description {
    font-size: 18px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }
}
