:root {
  color-scheme: light;
  --background: #fffaf7;
  --surface: rgba(255, 255, 255, 0.86);
  --text: #2b2523;
  --muted: #6f6662;
  --accent: #e45f72;
  --border: #eaded8;
  --shadow: 0 18px 50px rgba(87, 56, 47, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 199, 184, 0.42), transparent 32rem),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.72;
}

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

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.brand {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.88rem;
}

.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--accent); font-weight: 700; }

main {
  padding: clamp(26px, 6vw, 54px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

h2 {
  margin: 42px 0 12px;
  font-size: 1.22rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

p, ul { margin: 10px 0; }
ul { padding-left: 1.3rem; }
li + li { margin-top: 7px; }

.updated { margin: 0 0 34px; color: var(--muted); font-size: 0.92rem; }
.lead { font-size: 1.08rem; }
.contact {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff3ef;
}

footer { padding: 22px 4px 0; color: var(--muted); font-size: 0.82rem; text-align: center; }

@media (max-width: 560px) {
  .shell { width: min(100% - 20px, 760px); padding-top: 20px; }
  nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; gap: 10px 14px; }
  main { border-radius: 21px; }
}
