:root {
  --home-max-width: 720px;
  --logo-width: 420px;
  --text-width: 62ch;
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem 5rem;
}

.hero {
  width: min(100%, var(--home-max-width));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}

.logo-wrap {
  width: 100%;
  max-width: var(--logo-width);
  margin: 0 auto;
}

.logo {
  width: 100%;
  height: auto;
}

.eyebrow {
  width: 100%;
  margin: 2rem 0 0;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.03em;
  font-weight: 300;
  font-size: 1.8rem;
}

.message {
  width: 100%;
  max-width: min(100%, var(--text-width));
  margin: 0 auto;
  letter-spacing: 0.002em;
}

.message p {
  margin: 0 0 1.05rem;
  font-size: clamp(0.98rem, 0.96rem + 0.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-secondary);
}

.message p:first-child {
  margin-top: 0;
}

.message p:last-child {
  margin-bottom: 0;
}

.contact {
  margin-top: 3.0rem;
  font-weight: 300;
}

.contact a {
  color: var(--color-primary);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0.6rem 0.8rem;
  font-size: clamp(0.7rem, 0.65rem + 0.3vw, 0.9rem);

  background: rgba(255, 255, 255, 0.96);
  color: var(--color-muted);
  
  white-space: nowrap;
}

.footer a {
  color: var(--color-primary);
}

.footer span {
  opacity: 1;
}

:root {
  --logo-duration: 5.0s;
  --eyebrow-delay: 5.15s;
  --message-delay: 6.15s;
}

@keyframes contentReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-strokes path {
  animation-duration: var(--logo-duration);
}

@media (prefers-reduced-motion: no-preference) {
  .js .eyebrow,
  .js .message {
    opacity: 0;
    transform: translateY(10px);
  }

  .js .eyebrow {
    animation: contentReveal 0.55s ease-out forwards;
    animation-delay: var(--eyebrow-delay);
  }

  .js .message {
    animation: contentReveal 0.75s ease-out forwards;
    animation-delay: var(--message-delay);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .eyebrow,
  .js .message {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  :root {
    --logo-width: 320px;
  }

  .site {
    padding: 2rem 1rem 5rem;
  }

  .hero {
    gap: 1rem;
  }

  .eyebrow {
    margin-top: 1.2rem;
    font-size: 1.3rem;
  }

  .message p {
    font-size: 0.98rem;
    line-height: 1.68;
  }
}
