:root {
  color-scheme: light;
  --background: #f4f1ea;
  --foreground: #191816;
  --muted: #6f6a62;
  --edge: clamp(22px, 4vw, 52px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", YuGothic, sans-serif;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--foreground);
  background: var(--background);
}

.coming-soon {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: var(--edge);
}

.site-header,
.site-footer,
.statement {
  text-align: center;
}

.site-header,
.site-footer {
  color: var(--muted);
  letter-spacing: 0.08em;
}

.site-header {
  padding-bottom: clamp(14px, 2vh, 22px);
  border-bottom: 1px solid rgba(25, 24, 22, 0.14);
  font-size: 12px;
}

.site-footer {
  padding-top: clamp(14px, 2vh, 22px);
  border-top: 1px solid rgba(25, 24, 22, 0.14);
  font-size: 9px;
}

.site-header p,
.site-footer p,
.statement p,
.statement h1 {
  margin: 0;
}

.statement {
  display: grid;
  place-items: center;
  padding: clamp(52px, 10vh, 112px) 0;
}

.statement-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statement h1 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.4;
}

.philosophy {
  margin-top: 17px !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.5;
}

.purpose {
  margin-top: 7px !important;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: clamp(34px, 6vh, 60px);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.contact p {
  color: var(--muted);
}

.contact a {
  color: var(--foreground);
  text-decoration: none;
  text-underline-offset: 4px;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}

.contact a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

@media (max-height: 560px) {
  .coming-soon {
    min-height: 560px;
  }

  .statement {
    padding: 42px 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .statement-copy {
    animation: appear 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes appear {
    from {
      opacity: 0;
      transform: translateY(5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
