:root {
  --ink: #111111;
  --muted: #686868;
  --rule: #d9d9d9;
  --page: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: currentColor;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

main {
  display: grid;
  grid-template-rows: auto minmax(22rem, 1fr) auto auto;
  min-height: 100svh;
  width: min(100%, 120rem);
  margin: 0 auto;
  padding: 0 3rem;
}

header {
  display: flex;
  align-items: center;
  height: 6rem;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-size: 1.375rem;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.introduction {
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.label,
dt,
footer {
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.label {
  margin: 0 0 2rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 6.75rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.company-details {
  border-top: 1px solid var(--ink);
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

dl > div {
  min-height: 10rem;
  padding: 1.25rem 2rem 1.75rem 0;
}

dl > div + div {
  padding-left: 2rem;
  border-left: 1px solid var(--rule);
}

dt {
  margin-bottom: 2.5rem;
}

dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

address {
  font-style: normal;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--rule);
}

footer p {
  margin: 0;
}

@media (max-width: 700px) {
  main {
    grid-template-rows: auto minmax(24rem, 1fr) auto auto;
    padding: 0 1.25rem;
  }

  header {
    height: 5rem;
  }

  .introduction {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.75rem);
  }

  dl {
    grid-template-columns: 1fr;
  }

  dl > div {
    min-height: 0;
    padding: 1.25rem 0 1.75rem;
  }

  dl > div + div {
    padding-left: 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  dt {
    margin-bottom: 1rem;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 0.5rem;
  }
}

@media print {
  main {
    min-height: auto;
  }
}
