:root {
  --signature-orange: #5E6B3B;
  --signature-orange-hover: #49542E;
  --signature-orange-tint: #AEB78A;

  --bg: #F7F1EA;
  --bg-soft: #FFF9F3;
  --panel: #FFFDF9;
  --panel-2: #FBF6F0;
  --line: rgba(30, 26, 23, 0.10);
  --line-strong: rgba(30, 26, 23, 0.16);

  --text: #1E1A17;
  --text-soft: #6B625A;
  --text-faint: #8A7F75;

  --ok: #2F7D52;
  --ok-bg: rgba(47, 125, 82, 0.08);
  --err: #B23B2E;
  --err-bg: rgba(178, 59, 46, 0.07);

  --shadow-sm: 0 8px 24px rgba(38, 26, 16, 0.06);
  --shadow-md: 0 16px 48px rgba(38, 26, 16, 0.08);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --max: 1180px;
  --section-gap: 112px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(174, 183, 138, 0.10), transparent 24%),
    linear-gradient(180deg, #FFF9F3 0%, #F7F1EA 100%);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

::selection { background: rgba(94, 107, 59, 0.18); color: var(--text); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(94, 107, 59, 0.22);
  outline-offset: 2px;
  border-radius: 12px;
}

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(94, 107, 59, 0.18);
  background: rgba(94, 107, 59, 0.06);
  border-radius: 999px;
  color: var(--signature-orange);
  font-size: 13px; font-weight: 700; letter-spacing: 0.01em;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--signature-orange); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 249, 243, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 26, 23, 0.06);
}

.nav {
  min-height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px;
  background: var(--panel); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); padding: 4px; flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 16px; font-weight: 800; letter-spacing: -0.03em; }
.brand-sub { margin-top: 4px; font-size: 12px; color: var(--text-soft); }

.nav-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14px; color: var(--text-soft);
}
.nav-links a { transition: color .24s var(--ease), opacity .24s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-user { font-size: 13px; color: var(--text-soft); white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px;
  border-radius: 14px; border: 1px solid transparent;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  transition: background-color .24s var(--ease), border-color .24s var(--ease),
    color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 0 12px; font-size: 13px; border-radius: 11px; }
.btn-primary { background: var(--signature-orange); color: #FFF9F3; box-shadow: 0 10px 24px rgba(94, 107, 59, 0.18); }
.btn-primary:hover { background: var(--signature-orange-hover); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(73, 84, 46, 0.20); }
.btn-secondary { background: rgba(255, 255, 255, 0.5); border-color: var(--line); color: var(--text); }
.btn-secondary:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-1px); }
.btn-tertiary { background: transparent; color: var(--text-soft); border-color: var(--line); }
.btn-tertiary:hover { color: var(--text); background: rgba(255,255,255,0.42); }
.btn-danger { background: var(--err-bg); color: var(--err); border-color: rgba(178, 59, 46, 0.2); }
.btn-danger:hover { background: rgba(178, 59, 46, 0.14); }

.hero { padding: 72px 0 44px; }
.hero-shell { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: stretch; }

.card, .hero-main, .hero-side, .service-card, .principle-card,
.timeline-card, .cta-band, .contact-card, .auth-card, .panel-card {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.hero-main { padding: 38px; }
.hero-main h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12; letter-spacing: -0.045em; font-weight: 800; max-width: 18ch;
}
.hero-main p { margin: 0; max-width: 720px; font-size: 18px; color: var(--text-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(30, 26, 23, 0.08);
}
.meta-item strong { display: block; margin-bottom: 6px; font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.meta-item span { color: var(--text-soft); font-size: 13px; line-height: 1.55; }

.hero-side { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.product-preview {
  padding: 18px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(251,246,240,0.92));
  border: 1px solid rgba(30, 26, 23, 0.08);
}
.preview-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.status-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px;
  background: rgba(94, 107, 59, 0.08); border: 1px solid rgba(94, 107, 59, 0.16);
  color: var(--signature-orange); font-size: 12px; font-weight: 700;
}
.preview-logo {
  width: 82px; height: 82px; margin: 6px 0 16px; border-radius: 22px;
  background: #fff; border: 1px solid var(--line); padding: 8px;
}
.preview-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }
.preview-title { margin: 0 0 8px; font-size: 24px; line-height: 1.15; letter-spacing: -0.03em; }
.preview-text { margin: 0; color: var(--text-soft); font-size: 15px; }
.preview-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.preview-list li {
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.74); border: 1px solid rgba(30, 26, 23, 0.07);
  color: var(--text-soft); font-size: 14px;
}
.quote-box { padding: 18px 18px 20px; border-radius: 22px; background: #FBF6F0; border: 1px solid rgba(30, 26, 23, 0.07); }
.quote-box strong { display: block; margin-bottom: 8px; font-size: 14px; letter-spacing: -0.02em; }
.quote-box p { margin: 0; color: var(--text-soft); font-size: 14px; }

.section { padding: var(--section-gap) 0 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.section-head h2 { margin: 0 0 8px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.08; letter-spacing: -0.045em; }
.section-head p { margin: 0; max-width: 720px; color: var(--text-soft); font-size: 16px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(94, 107, 59, 0.18); }
.service-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.service-icon {
  width: 50px; height: 50px; border-radius: 16px;
  background: rgba(94, 107, 59, 0.08); border: 1px solid rgba(94, 107, 59, 0.14);
  display: grid; place-items: center; color: var(--signature-orange); font-weight: 800; font-size: 16px;
}
.service-tag {
  padding: 7px 11px; border-radius: 999px; border: 1px solid rgba(30,26,23,0.08);
  background: rgba(255,255,255,0.65); color: var(--text-soft); font-size: 12px; font-weight: 700;
}
.service-card h3 { margin: 0; font-size: 24px; line-height: 1.15; letter-spacing: -0.03em; }
.service-card p { margin: 0; color: var(--text-soft); font-size: 15px; }
.service-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 10px; border-radius: 999px; font-size: 12px; color: var(--text-soft);
  background: rgba(255,255,255,0.64); border: 1px solid rgba(30, 26, 23, 0.08);
}
.service-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 6px; }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-card { padding: 24px; }
.principle-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; letter-spacing: -0.03em; }
.principle-card p { margin: 0; color: var(--text-soft); font-size: 15px; }

.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timeline-card { padding: 24px; }
.timeline-step {
  width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(94, 107, 59, 0.08); color: var(--signature-orange);
  border: 1px solid rgba(94, 107, 59, 0.14); font-size: 12px; font-weight: 800;
}
.timeline-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; letter-spacing: -0.03em; }
.timeline-card p { margin: 0; color: var(--text-soft); font-size: 15px; }

.cta-band {
  margin-top: 28px; padding: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(174, 183, 138, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(251,246,240,0.95));
  border-color: rgba(94, 107, 59, 0.12); box-shadow: var(--shadow-md);
}
.cta-band h3 { margin: 0 0 8px; font-size: clamp(1.8rem, 2.4vw, 2.4rem); letter-spacing: -0.04em; line-height: 1.12; }
.cta-band p { margin: 0; max-width: 760px; color: var(--text-soft); font-size: 16px; }

.contact-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
.contact-card { padding: 26px; }
.contact-card h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -0.03em; }
.contact-card p { margin: 0; color: var(--text-soft); font-size: 15px; }
.contact-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.contact-list li {
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.66); border: 1px solid rgba(30,26,23,0.08);
  color: var(--text-soft); font-size: 14px;
}
.contact-list a { color: var(--text); font-weight: 700; }

.footer { padding: 34px 0 54px; color: var(--text-soft); font-size: 14px; }
.footer-line {
  border-top: 1px solid rgba(30,26,23,0.08); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: block; margin-bottom: 6px; color: var(--text); }

/* ── 인증/대시보드/관리자 공통 ─────────────────────────── */
.page-narrow { width: min(560px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0; }
.page-wide { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 56px 0; }

.flash {
  margin: 0 auto 18px; padding: 13px 16px; border-radius: 14px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--line);
}
.flash-success { background: var(--ok-bg); color: var(--ok); border-color: rgba(47, 125, 82, 0.22); }
.flash-error { background: var(--err-bg); color: var(--err); border-color: rgba(178, 59, 46, 0.22); }

.auth-card { padding: 36px; }
.auth-head { margin-bottom: 22px; }
.auth-head h1 { margin: 12px 0 6px; font-size: 30px; letter-spacing: -0.04em; }
.auth-head p { margin: 0; color: var(--text-soft); font-size: 15px; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; color: var(--text-soft); }
.form-field input {
  width: 100%; min-height: 50px; padding: 0 15px;
  border-radius: 13px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--text); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus { border-color: var(--signature-orange-tint); box-shadow: 0 0 0 4px rgba(94, 107, 59, 0.10); outline: none; }
.form-hint { margin-top: 6px; font-size: 12px; color: var(--text-faint); }

.error-list { margin: 0 0 18px; padding: 13px 16px 13px 32px; border-radius: 14px; background: var(--err-bg); border: 1px solid rgba(178, 59, 46, 0.22); color: var(--err); font-size: 14px; }
.error-list li { margin: 2px 0; }

.auth-foot { margin-top: 18px; text-align: center; font-size: 14px; color: var(--text-soft); }
.auth-foot a { color: var(--signature-orange); font-weight: 700; }

/* 대시보드 */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.panel-card { padding: 24px; }
.panel-card h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -0.02em; }
.panel-card p { margin: 0; color: var(--text-soft); font-size: 14px; }
.stat-num { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }

/* 권한 배지 */
.role-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 700;
  border: 1px solid var(--line);
}
.role-free  { background: rgba(138, 127, 117, 0.10); color: var(--text-soft); border-color: rgba(138,127,117,0.22); }
.role-paid  { background: rgba(94, 107, 59, 0.10); color: var(--signature-orange); border-color: rgba(94,107,59,0.22); }
.role-admin { background: rgba(30, 26, 23, 0.88); color: #FFF3E6; border-color: transparent; }

/* 관리자 테이블 */
.table-wrap { margin-top: 8px; overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255,253,249,0.82); }
table.members { width: 100%; border-collapse: collapse; min-width: 720px; }
table.members th, table.members td { padding: 14px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.members th { font-size: 12px; font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; background: rgba(251,246,240,0.6); }
table.members tr:last-child td { border-bottom: none; }
table.members td .muted { color: var(--text-faint); font-size: 12px; }
.row-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.row-actions form { display: inline-flex; gap: 6px; align-items: center; margin: 0; }
.role-select { min-height: 38px; padding: 0 10px; border-radius: 10px; border: 1px solid var(--line-strong); background: #fff; }
.you-tag { font-size: 11px; color: var(--signature-orange); font-weight: 700; }

/* 오류 페이지 */
.error-page { text-align: center; padding: 96px 0; }
.error-page .code { font-size: 72px; font-weight: 800; letter-spacing: -0.05em; color: var(--signature-orange); }
.error-page p { color: var(--text-soft); margin: 8px 0 22px; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero-shell, .service-grid, .principle-grid, .timeline-grid, .contact-wrap, .stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  :root { --section-gap: 80px; }
  .nav-links { display: none; }
  .hero { padding-top: 44px; }
  .hero-main, .hero-side, .service-card, .principle-card, .timeline-card,
  .cta-band, .contact-card, .auth-card { padding: 22px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; }
}

/* ── 지식 아카이브 리디자인 컴포넌트 ───────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Hero 정체성 카드 */
.identity-card {
  padding: 22px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(251,246,240,0.94));
  border: 1px solid rgba(30, 26, 23, 0.08);
}
.identity-q-label {
  margin: 10px 0 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--signature-orange);
}
.identity-question {
  margin: 0 0 16px; font-size: 22px; line-height: 1.28; letter-spacing: -0.03em; font-weight: 800;
}
.flow-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid rgba(30,26,23,0.08);
}
.flow-line span {
  padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: rgba(94, 107, 59, 0.08); border: 1px solid rgba(94,107,59,0.16); color: var(--signature-orange);
}
.flow-line i { color: var(--text-faint); font-style: normal; }
.flow-line--lg { margin-top: 8px; }
.flow-line--lg span { font-size: 13px; padding: 7px 13px; }

/* 주제 카드 번호 */
.topic-icon {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  margin-bottom: 12px; font-size: 13px; font-weight: 800;
  background: rgba(94, 107, 59, 0.08); color: var(--signature-orange); border: 1px solid rgba(94,107,59,0.14);
}

/* 곧 공개 박스 */
.coming-box {
  padding: 30px; border-radius: var(--radius-xl); text-align: center;
  background: rgba(255,253,249,0.7); border: 1px dashed var(--line-strong);
}
.coming-box p { margin: 14px auto 18px; max-width: 560px; color: var(--text-soft); }

/* 영상 카드 */
.video-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: rgba(255,253,249,0.82); border: 1px solid var(--line);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(94,107,59,0.18); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #efe7dd; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: 999px;
  background: rgba(94,107,59,0.92); color: #FFF9F3; font-size: 18px; padding-left: 4px;
  box-shadow: 0 8px 24px rgba(73,84,46,0.35);
}
.video-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.video-body h3 { margin: 0; font-size: 18px; line-height: 1.3; letter-spacing: -0.02em; }

/* 뉴스레터 박스 */
.newsletter-box {
  padding: 34px; border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background:
    radial-gradient(circle at top right, rgba(174, 183, 138, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(251,246,240,0.95));
  border: 1px solid rgba(94, 107, 59, 0.14); box-shadow: var(--shadow-md);
}
.newsletter-copy { flex: 1 1 380px; }
.newsletter-copy h2 { margin: 12px 0 8px; font-size: clamp(1.6rem, 2.4vw, 2.2rem); letter-spacing: -0.04em; line-height: 1.15; }
.newsletter-copy p { margin: 0; color: var(--text-soft); max-width: 560px; }
.newsletter-form { flex: 1 1 300px; display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1 1 200px; min-height: 50px; padding: 0 15px; border-radius: 13px;
  border: 1px solid var(--line-strong); background: #fff;
}
.newsletter-form input:focus { border-color: var(--signature-orange-tint); box-shadow: 0 0 0 4px rgba(94,107,59,0.10); outline: none; }
.newsletter-form .btn { min-height: 50px; }

/* Connect 카드 (링크형) */
.connect-card { display: block; transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease); }
.connect-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(94,107,59,0.18); }

/* About / Manifesto 본문 */
.about-hero { max-width: 760px; }
.about-hero h1 { margin: 16px 0 14px; font-size: clamp(2.2rem, 4.4vw, 3.8rem); line-height: 1.06; letter-spacing: -0.05em; font-weight: 800; }
.about-hero p { margin: 0; font-size: 18px; color: var(--text-soft); max-width: 680px; }
.prose { max-width: 760px; }
.prose-block { margin-bottom: 30px; }
.prose-block h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.035em; margin: 0 0 12px; }
.prose-block p { color: var(--text-soft); font-size: 16px; margin: 0 0 12px; }
.prose-block strong { color: var(--text); }
.prose-block blockquote {
  margin: 16px 0; padding: 16px 20px; border-left: 3px solid var(--signature-orange);
  background: rgba(94,107,59,0.05); border-radius: 0 14px 14px 0;
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--text);
}
.prose-list { display: grid; gap: 12px; }
.prose-list > div {
  padding: 14px 16px; border-radius: 14px; background: rgba(255,253,249,0.8);
  border: 1px solid var(--line); color: var(--text-soft); font-size: 15px;
}
.prose-bullets { margin: 0 0 12px; padding-left: 20px; color: var(--text-soft); }
.prose-bullets li { margin: 6px 0; font-size: 15px; }

@media (max-width: 820px) {
  .newsletter-box { padding: 24px; }
  .identity-question { font-size: 20px; }
}

/* ── 콘텐츠 카드/목록 ─────────────────────────────────── */
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.content-card {
  background: rgba(255,253,249,0.82); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(94,107,59,0.18); }
.content-card > a { display: flex; flex-direction: column; height: 100%; }
.content-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-cover { aspect-ratio: 16 / 9; overflow: hidden; background: #efe7dd; border-bottom: 1px solid var(--line); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; }
.content-card-top { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.content-card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; letter-spacing: -0.03em; }
.content-card p { margin: 0; color: var(--text-soft); font-size: 14px; }
.content-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.content-card .service-meta { margin-top: 12px; }
.card-cta { font-size: 13px; font-weight: 700; color: var(--signature-orange); white-space: nowrap; }
.content-date { font-size: 12px; color: var(--text-faint); }
.chip-soft { background: rgba(255,255,255,0.5); }
.lock-chip {
  padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: rgba(94,107,59,0.08); color: var(--signature-orange); border: 1px solid rgba(94,107,59,0.16);
}

/* ── 글 상세 / paywall ───────────────────────────────── */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-back { display: inline-block; margin-bottom: 18px; color: var(--text-soft); font-size: 14px; }
.article-back:hover { color: var(--signature-orange); }
.article-meta-top { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.article-title { margin: 0 0 8px; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; letter-spacing: -0.045em; }
.article-cover { width: 100%; border-radius: var(--radius-lg); margin: 18px 0; border: 1px solid var(--line); }
.article-body { font-size: 17px; line-height: 1.85; color: var(--text); }
.article-body .lead { font-size: 19px; color: var(--text-soft); }
.article-body h2 { font-size: 1.5rem; letter-spacing: -0.03em; margin: 28px 0 12px; }
.article-body h3 { font-size: 1.2rem; margin: 22px 0 10px; }
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 22px; }
.article-body li { margin: 6px 0; }
.article-body blockquote { margin: 16px 0; padding: 12px 18px; border-left: 3px solid var(--signature-orange); background: rgba(94,107,59,0.05); border-radius: 0 12px 12px 0; color: var(--text-soft); }
.article-body img { border-radius: 12px; border: 1px solid var(--line); }
.article-body a { color: var(--signature-orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.paywall-fade { height: 80px; margin-top: -20px; background: linear-gradient(180deg, transparent, var(--bg)); }
.paywall {
  margin-top: 8px; padding: 30px; text-align: center; border-radius: var(--radius-xl);
  background: rgba(255,253,249,0.9); border: 1px solid rgba(94,107,59,0.18); box-shadow: var(--shadow-sm);
}
.paywall h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -0.03em; }
.paywall p { margin: 0 0 16px; color: var(--text-soft); }

/* ── 상태 배지 ────────────────────────────────────────── */
.status-badge-approved, .status-badge-pending, .status-badge-blocked {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 700; border: 1px solid var(--line);
}
.status-badge-approved { background: var(--ok-bg); color: var(--ok); border-color: rgba(47,125,82,0.22); }
.status-badge-pending { background: rgba(94,107,59,0.10); color: var(--signature-orange); border-color: rgba(94,107,59,0.22); }
.status-badge-blocked { background: var(--err-bg); color: var(--err); border-color: rgba(178,59,46,0.22); }

/* ── 관리자 폼 ────────────────────────────────────────── */
.inline-form { display: inline-flex; gap: 6px; align-items: center; margin: 0; }
.note-form { display: flex; gap: 6px; margin-top: 8px; }
.note-form input { min-height: 32px; padding: 0 8px; border-radius: 9px; border: 1px solid var(--line-strong); background: #fff; font-size: 12px; max-width: 220px; }
.md-textarea {
  width: 100%; padding: 14px; border-radius: 13px; border: 1px solid var(--line-strong);
  background: #fff; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; line-height: 1.6; resize: vertical;
}

@media (max-width: 1120px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ── Archive 허브 ─────────────────────────────────────── */
.archive-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--text-soft); background: rgba(255,255,255,0.5);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.filter-tab:hover { color: var(--text); border-color: var(--line-strong); }
.filter-tab.is-active { background: var(--signature-orange); color: #FFF9F3; border-color: transparent; }
.archive-search { display: flex; gap: 8px; }
.archive-search input {
  min-height: 42px; padding: 0 14px; border-radius: 11px; border: 1px solid var(--line-strong);
  background: #fff; min-width: 200px;
}
.archive-search input:focus { border-color: var(--signature-orange-tint); box-shadow: 0 0 0 4px rgba(94,107,59,0.10); outline: none; }
.archive-search .btn { min-height: 42px; }
.archive-result-meta { margin-top: 18px; color: var(--text-soft); font-size: 14px; }
.archive-result-meta a { color: var(--signature-orange); font-weight: 700; }

.chip-type { background: rgba(94,107,59,0.10); color: var(--signature-orange); border-color: rgba(94,107,59,0.20); font-weight: 700; }
.article-byline { color: var(--text-faint); font-size: 13px; margin: 0; }

@media (max-width: 640px) {
  .archive-controls { align-items: stretch; }
  .archive-search { width: 100%; }
  .archive-search input { flex: 1; min-width: 0; }
}

/* ── Featured Archive (홈) ────────────────────────────── */
.featured-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; align-items: stretch; }
.featured-side { display: grid; gap: 18px; align-content: start; }
.content-card--lg .content-card-body { padding: 32px; }
.content-card--lg h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; }
.content-card--lg p { font-size: 16px; margin-top: 4px; }
@media (max-width: 900px) {
  .featured-layout { grid-template-columns: 1fr; }
}

/* 운영 노트 */
.editorial-note { padding: 32px; max-width: 820px; }
.editorial-note p { margin: 14px 0 18px; font-size: 17px; line-height: 1.8; color: var(--text-soft); }

/* 잠금 미리보기 카드 */
.locked-preview {
  display: block; padding: 24px; border-radius: var(--radius-xl);
  background: rgba(255,253,249,0.7); border: 1px dashed var(--line-strong);
  transition: transform .24s var(--ease), border-color .24s var(--ease);
}
.locked-preview:hover { transform: translateY(-3px); border-color: var(--signature-orange-tint); }
.locked-preview-top { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.locked-preview h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.03em; line-height: 1.25; }
.locked-preview p { margin: 0 0 14px; color: var(--text-soft); font-size: 14px; }

/* FAQ */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: rgba(255,253,249,0.82); padding: 4px 18px;
}
.faq-item summary {
  cursor: pointer; padding: 14px 0; font-weight: 700; letter-spacing: -0.02em; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; color: var(--signature-orange); font-size: 18px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 16px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
