:root {
  color-scheme: light;
  --canvas: #f7f2e8;
  --paper: #fffdf8;
  --ink: #292620;
  --muted: #716b61;
  --forest: #203b31;
  --brass: #92794d;
  --rule: #ded5c6;
  --content: 760px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: SUIT, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--forest); text-underline-offset: 3px; }
.topbar {
  border-bottom: 1px solid var(--rule);
  background: rgba(247, 242, 232, .94);
}
.topbar__inner {
  max-width: calc(var(--content) + 48px);
  min-height: 64px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { color: var(--ink); font-weight: 750; letter-spacing: -.02em; text-decoration: none; }
.brand small { color: var(--muted); font-size: 12px; font-weight: 500; margin-left: 8px; }
.language { display: flex; gap: 14px; font-size: 13px; }
main { max-width: var(--content); margin: 0 auto; padding: 72px 24px 104px; }
.eyebrow { color: var(--brass); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 14px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 7vw, 58px); font-weight: 500; line-height: 1.12; letter-spacing: -.035em; }
.lead { max-width: 650px; color: var(--muted); font-size: 18px; }
.meta { margin-top: 28px; color: var(--muted); font-size: 13px; }
.document { margin-top: 64px; padding-top: 2px; }
.document + .document { margin-top: 88px; border-top: 1px solid var(--rule); padding-top: 72px; }
h2 { margin: 44px 0 12px; font-size: 22px; line-height: 1.4; letter-spacing: -.02em; }
h3 { margin: 28px 0 8px; font-size: 17px; }
p, li { color: #454139; }
ul, ol { padding-left: 22px; }
li + li { margin-top: 6px; }
.summary, .contact {
  margin: 36px 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.summary p:first-child, .contact p:first-child { margin-top: 0; }
.summary p:last-child, .contact p:last-child { margin-bottom: 0; }
.links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 40px; }
.link-card { min-height: 118px; padding: 20px; border: 1px solid var(--rule); border-radius: 12px; background: var(--paper); text-decoration: none; }
.link-card strong { display: block; color: var(--ink); margin-bottom: 8px; }
.link-card span { color: var(--muted); font-size: 14px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; margin-top: 16px; padding: 0 22px; border-radius: 10px; background: var(--forest); color: white; font-weight: 650; text-decoration: none; }
footer { border-top: 1px solid var(--rule); color: var(--muted); font-size: 13px; }
footer div { max-width: calc(var(--content) + 48px); margin: auto; padding: 28px 24px 44px; }
@media (max-width: 620px) {
  .topbar__inner { align-items: flex-start; flex-direction: column; padding-top: 16px; padding-bottom: 16px; gap: 6px; }
  main { padding-top: 52px; }
  .links { grid-template-columns: 1fr; }
  .summary, .contact { padding: 20px; }
}
@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; --canvas: #1d1e1a; --paper: #24251f; --ink: #f0ebe1; --muted: #aaa398; --forest: #d8c69b; --brass: #c2a871; --rule: #3c3b34; }
  p, li { color: #d0c9bd; }
  .button { background: #e5dccb; color: #20372f; }
}
