:root {
  --ink: #111111;
  --muted: #666666;
  --hairline: #d9d9d9;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 64px 28px 48px;
}

.hero {
  width: min(780px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(620px, 92%);
  height: auto;
  margin: 0 auto;
}

.rule {
  width: 72px;
  height: 1px;
  background: var(--hairline);
  margin: 34px auto 30px;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro,
.body-copy {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  font-weight: 300;
}

.intro {
  margin-top: 0;
  margin-bottom: 18px;
}

.body-copy {
  color: #333333;
  margin-top: 0;
  margin-bottom: 28px;
}

.status {
  margin: 0 0 34px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #bbbbbb;
  padding-bottom: 2px;
}

.contact a:hover,
.contact a:focus {
  border-bottom-color: var(--ink);
}

.dot {
  color: #aaaaaa;
}

footer {
  padding: 20px 28px 26px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #888888;
}

@media (max-width: 560px) {
  .page {
    padding-top: 38px;
  }

  .logo {
    width: 100%;
  }

  h1 {
    letter-spacing: 0.12em;
  }

  .contact {
    flex-direction: column;
    gap: 6px;
  }

  .contact .dot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
