
:root {
  --ink: #211b16;
  --brown: #3b2b22;
  --cream: #f6efe3;
  --paper: #fffaf1;
  --line: #d8c7ae;
  --muted: #7a6a5c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: var(--cream);
  color: var(--ink);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 18px 56px;
}

.hero {
  text-align: center;
  padding: 34px 16px 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 22px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 14vw, 92px);
  line-height: .9;
  letter-spacing: .035em;
  font-weight: 700;
}

.ko {
  margin-top: 18px;
  font-size: 22px;
  letter-spacing: .28em;
  font-weight: 600;
}

.sub {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: .04em;
}

.notice {
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.section { margin-top: 26px; }

.section h2 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .03em;
}

.item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(216,199,174,.55);
}

.item-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
  font-size: 18px;
}

.price { white-space: nowrap; }

.desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  background: var(--brown);
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.footer {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
