:root {
  --background: #f3f1e9;
  --paper: #faf9f4;
  --ink: #17372d;
  --muted: #66756f;
  --line: #d8ddd5;
  --accent: #356a57;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 82% 5%, rgb(220 232 223 / 80%), transparent 28rem), var(--background);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  margin: 0;
  word-break: keep-all;
}

a { color: inherit; }

.site-header {
  align-items: center;
  border-bottom: 1px solid rgb(23 55 45 / 14%);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 24px 28px;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  background: var(--accent);
  border-radius: 999px;
  display: block;
  height: 13px;
  position: relative;
  width: 13px;
}

.wordmark-mark::after {
  background: var(--background);
  content: "";
  height: 1px;
  left: 3px;
  position: absolute;
  top: 6px;
  transform: rotate(-38deg);
  width: 8px;
}

.header-label {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-shell {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 96px 28px 80px;
}

.intro-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.58fr);
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 10px;
}

h1 {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(46px, 7.4vw, 88px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.04;
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
  margin: 36px 0 0;
  max-width: 670px;
}

.policy-meta {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 90px 0 0;
}

.policy-meta div { padding: 25px 24px 26px 0; }
.policy-meta div + div { border-left: 1px solid var(--line); padding-left: 28px; }
.policy-meta dt { color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: 0.07em; margin-bottom: 9px; text-transform: uppercase; }
.policy-meta dd { font-size: 15px; font-weight: 650; margin: 0; }
.policy-sections { margin-top: 68px; }

.policy-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  padding: 38px 0 42px;
}

.section-heading { align-items: baseline; display: flex; gap: 20px; }
.section-heading span { color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
h2 { font-size: 22px; letter-spacing: -0.035em; line-height: 1.4; margin: 0; }
.section-body { color: #40534c; font-size: 16px; line-height: 1.95; }
.section-body p { margin: 0; }
.section-body p + p { margin-top: 15px; }

.summary-note {
  align-items: flex-start;
  background: var(--ink);
  border-radius: 24px;
  color: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1.6fr);
  margin-top: 46px;
  padding: 34px 38px;
}

.summary-note span { color: #a8c5b8; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.summary-note p { font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(20px, 3vw, 30px); letter-spacing: -0.035em; line-height: 1.5; margin: 0; }

footer {
  align-items: center;
  border-top: 1px solid rgb(23 55 45 / 14%);
  color: var(--muted);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 28px;
}

footer p { margin: 0; }
footer a { text-underline-offset: 4px; }

@media (max-width: 720px) {
  .site-header { padding: 19px 20px; }
  .policy-shell { padding: 64px 20px 56px; }
  .intro-grid, .policy-section, .summary-note { grid-template-columns: 1fr; }
  .intro-grid { gap: 26px; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .lede { font-size: 17px; margin-top: 26px; }
  .policy-meta { grid-template-columns: 1fr; margin-top: 60px; }
  .policy-meta div { padding: 18px 0; }
  .policy-meta div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .policy-sections { margin-top: 44px; }
  .policy-section { gap: 22px; padding: 30px 0 34px; }
  .summary-note { gap: 18px; padding: 28px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
