:root {
  color-scheme: light;
  --bg: #f6f1e7;
  --paper: rgba(255, 252, 246, 0.92);
  --text: #201a14;
  --muted: #6c5c4f;
  --line: rgba(32, 26, 20, 0.12);
  --accent: #b96a2a;
  --accent-soft: rgba(185, 106, 42, 0.12);
  --shadow: 0 24px 48px rgba(39, 28, 17, 0.10);
  --max-width: 860px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Noto Sans JP", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 153, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 240, 205, 0.7), transparent 32%),
    linear-gradient(180deg, #f7f0e4 0%, #f3ede3 100%);
  line-height: 1.7;
}

a { color: var(--accent); }

.shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero, .section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero { padding: 32px; margin-bottom: 18px; }

.eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 { margin: 16px 0 12px; font-size: clamp(32px, 5vw, 48px); line-height: 1.1; }
h2 { margin-top: 0; margin-bottom: 16px; font-size: 24px; color: var(--accent); }
h3 { margin-top: 24px; margin-bottom: 8px; font-size: 18px; }

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

.section { padding: 32px; margin-top: 16px; }

.faq-item { margin-bottom: 24px; border-bottom: 1px dashed var(--line); padding-bottom: 20px; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-weight: 700; font-size: 18px; margin-bottom: 8px; display: block; }
.faq-a { color: var(--muted); font-size: 16px; }

.contact-card {
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  margin-top: 20px;
}

.footer-nav { margin-top: 32px; text-align: center; font-size: 14px; }
.footer-nav a { margin: 0 12px; text-decoration: none; color: var(--muted); }

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 20px), var(--max-width)); padding: 20px 0 36px; }
  .hero, .section { padding: 24px; border-radius: 20px; }
}
