@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Noto+Serif+JP:wght@400;600&family=Shippori+Mincho:wght@400;600&display=swap");

@font-face {
  font-family: "GyeonggiBatang";
  src: url("/fonts/GyeonggiBatang-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  color-scheme: light dark;
  --paper: #f8f6ef;
  --ink: #171717;
  --muted: #57534e;
  --line: rgba(23, 23, 23, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121212;
    --ink: #f4f1e8;
    --muted: rgba(244, 241, 232, 0.72);
    --line: rgba(244, 241, 232, 0.18);
  }
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "GyeonggiBatang", "Apple SD Gothic Neo", "Malgun Gothic", serif;
  line-height: 1.7;
}

main {
  width: min(720px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

h1,
h2 {
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

h2 {
  margin-top: 36px;
  font-size: 1.05rem;
}

h3 {
  margin: 0 0 12px;
  font-size: 0.96rem;
  line-height: 1.35;
}

p,
li {
  margin: 0 0 12px;
}

ul {
  margin: 0;
  padding-left: 18px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.language-note {
  color: var(--muted);
}

.language-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

[lang="en"] {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  hyphens: auto;
}

[lang="ja"] {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-break: strict;
}

a {
  color: inherit;
}

strong {
  font-weight: 700;
}

@media (max-width: 640px) {
  main {
    width: min(100vw - 24px, 720px);
    padding: 32px 0 56px;
  }

  .language-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
