:root {
  --bg: #f4efe4;
  --bg-accent: #e7dcc7;
  --text: #1f1a16;
  --muted: #65584c;
  --brand: #8f4b24;
  --brand-strong: #6d3214;
  --font-body: "Avenir Next", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-display: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 143, 94, 0.28), transparent 32%),
    radial-gradient(circle at right 18% top 12%, rgba(140, 82, 35, 0.18), transparent 26%),
    linear-gradient(160deg, var(--bg) 0%, #f7f4ec 52%, #efe6d8 100%);
}

a {
  color: var(--brand-strong);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.page-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

p {
  margin: 0 0 14px;
}

main {
  display: block;
}

.eyebrow {
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.lede {
  color: var(--muted);
  font-size: 18px;
}

.plain-links,
.lang-switch,
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 14px 0;
}

.plain-links a,
.lang-switch a,
.meta a {
  font-weight: 700;
}

.support-list {
  margin-top: 18px;
}

.support-item {
  margin: 0 0 12px;
}

.support-label {
  display: inline;
  color: var(--brand-strong);
  font-size: 15px;
  font-weight: 700;
}

.support-value {
  display: inline;
}

.footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.notice {
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 980px);
    padding: 24px 0 34px;
  }
}
