/*
 * OJO（大きいメガネのブランド）のサイト。
 * ロゴ（O-J-O とテンプル端のシンボル）を中央に控えめに置くだけの構成。
 * ロゴ SVG は fill="currentColor" なので色は CSS の color で決まる。
 */

:root {
  --ground: #ffffff;
  --ink: #111111;
  --faint: rgba(17, 17, 17, 0.35);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #111111;
    --ink: #f2f2f2;
    --faint: rgba(242, 242, 242, 0.35);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--ground);
  color: var(--ink);
  font-family: Futura, "Century Gothic", "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.wordmark {
  margin: 0;
  line-height: 0;
}

.logo {
  display: block;
  width: clamp(160px, 24vw, 220px);
  height: auto;
  color: var(--ink);
}

.line {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-indent: 0.3em; /* letter-spacing の右余りを相殺して中央に見せる */
}

.soon {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  text-transform: uppercase;
  color: var(--faint);
}

footer {
  padding: 24px 30px;
  text-align: center;
}

footer a {
  color: var(--faint);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
}

footer a:hover {
  color: var(--ink);
}
