:root {
  --bg: #0a1024;
  --bg-soft: #111a33;
  --text: #f4f0e8;
  --muted: #c8d0e0;
  --silver: #c8d0e0;
  --rose: #8a3a5c;
  --line: rgba(200, 208, 224, 0.3);
  --card: rgba(17, 26, 51, 0.95);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans KR', 'Playfair Display', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 22% 14%, rgba(200, 208, 224, 0.08), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(138, 58, 92, 0.08), transparent 32%),
    linear-gradient(140deg, #0a1024 0%, #0a1024 48%, #111a33 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
  padding: 36px 0 96px;
  position: relative;
  overflow-x: hidden;
}
.mist {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 60%, rgba(138, 58, 92, 0.1), transparent 42%),
    radial-gradient(circle at 70% 30%, rgba(200, 208, 224, 0.08), transparent 42%);
  filter: blur(46px);
  opacity: 0.72;
  z-index: 0;
}
main { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
header.nav {
  position: sticky;
  top: 0;
  z-index: 3;
  backdrop-filter: blur(12px);
  background: rgba(10, 16, 36, 0.78);
  border-bottom: 1px solid var(--line);
  padding: 12px 28px;
  margin: -36px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.08em;
  font-size: 19px;
  color: var(--silver);
  text-transform: uppercase;
}
nav { display: flex; flex-wrap: wrap; gap: 14px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 6px 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
nav a:hover { color: var(--silver); text-shadow: 0 0 8px rgba(200, 208, 224, 0.5); }
section { margin-top: 68px; }
.section-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: 26px; letter-spacing: 0.05em; color: var(--text); }
.section-head .liner { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
p { color: var(--muted); font-size: 15px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; color: var(--silver); letter-spacing: 0.16em; font-size: 12px; text-transform: uppercase; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 6vw, 48px); letter-spacing: 0.02em; line-height: 1.26; color: var(--text); }
.subcopy { font-size: 16px; color: var(--muted); max-width: 760px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line);
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(200, 208, 224, 0.12), transparent 42%);
  opacity: 0; transition: opacity 0.25s ease;
}
.btn:hover { border-color: rgba(200, 208, 224, 0.65); box-shadow: 0 0 14px rgba(200, 208, 224, 0.35); color: var(--text); }
.btn:hover::after { opacity: 1; }
.btn.primary { background: rgba(200, 208, 224, 0.12); }
.btn.ghost { background: rgba(255, 255, 255, 0.02); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); color: var(--muted); font-size: 12px; letter-spacing: 0.02em; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 20px 22px; box-shadow: var(--shadow), 0 0 20px rgba(200, 208, 224, 0.06); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(200, 208, 224, 0.08), transparent 42%); pointer-events: none; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 20px; letter-spacing: 0.02em; margin-bottom: 8px; color: var(--text); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.tag-row, .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { padding: 6px 10px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); color: var(--muted); font-size: 12px; }
.tag { padding: 7px 11px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); color: var(--text); font-size: 12px; letter-spacing: 0.01em; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.filter-pill { padding: 8px 12px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); color: var(--muted); font-size: 13px; cursor: default; }
.line-block { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: linear-gradient(145deg, rgba(15, 22, 42, 0.92), rgba(17, 26, 51, 0.9)); box-shadow: 0 18px 32px rgba(0,0,0,0.36), 0 0 24px rgba(200, 208, 224, 0.08); font-family: 'Playfair Display', serif; font-size: 20px; letter-spacing: 0.01em; color: var(--text); text-align: center; }
.meta { color: var(--muted); font-size: 14px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 14px 0; }
.check-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.check { border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; color: var(--text); background: rgba(255, 255, 255, 0.02); font-size: 13px; }
.footer { margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.about-card { display: grid; grid-template-columns: 1fr 220px; gap: 26px; align-items: center; }
.about-photo { width: 220px; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; border: 1px solid rgba(200, 208, 224, 0.25); background: radial-gradient(120% 120% at 30% 20%, rgba(200, 208, 224, 0.14) 0%, rgba(17, 26, 51, 0.85) 55%, rgba(11, 16, 36, 0.95) 100%); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo--placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: rgba(244, 240, 232, 0.65); letter-spacing: 0.18em; font-size: 12px; }
@media (max-width: 840px) {
  header.nav { margin: -28px 0 16px; flex-wrap: wrap; gap: 10px; }
  nav { width: 100%; }
  nav a { margin-left: 0; }
}
@media (max-width: 780px) {
  .about-card { grid-template-columns: 1fr; }
  .about-photo { width: 160px; }
}
