/* Liborius constructions — placeholder page. Sumi-e: paper, one stroke, two lines, a seal. */

:root {
  color-scheme: only light;   /* opt out of browser forced-dark (Brave night mode, Chrome auto dark) */
  --paper: #f4efe6;
  --paper-edge: #ebe4d8;
  --ink: #1c1a17;
  --ink-soft: #6b665e;
  --shu: #c8402e;            /* vermilion seal */
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--paper);
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    linear-gradient(var(--paper), var(--paper-edge));
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 8vh 6vw;
}

.scroll {
  position: relative;
  width: min(560px, 100%);
  text-align: center;
  padding-bottom: 3.5rem;
}

.stroke {
  margin: 0 auto 2.6rem;
  width: 100%;
}

.stroke svg {
  display: block;
  width: 100%;
  height: auto;
}

.ink {
  fill: var(--ink);
  opacity: .92;
}

.ink.dry {
  fill: var(--paper);
  opacity: .55;
}

.title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.6;
}

.soon {
  margin: .55rem 0 0;
  font-style: italic;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  letter-spacing: .12em;
  color: var(--ink-soft);
}

/* hanko */
.seal {
  position: absolute;
  right: .25rem;
  bottom: 0;
  width: 1.65rem;
  height: 1.65rem;
  border: 2px solid var(--shu);
  border-radius: .18rem;
  color: var(--shu);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.45rem;
  transform: rotate(-3deg);
  opacity: .9;
}

@media (max-width: 480px) {
  body { padding: 10vh 8vw; }
  .stroke { margin-bottom: 2rem; }
  .title { letter-spacing: .16em; }
}

@media (prefers-reduced-motion: no-preference) {
  .stroke { animation: settle 1.2s ease-out both; }
  .title, .soon, .seal { animation: settle 1.2s ease-out .5s both; }
  @keyframes settle { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
}
