@charset "UTF-8";
/* ============================================================
   진연 JINYEON — 브랜드 스타일시트
   컬러 토큰은 브랜드 무드보드 팔레트를 그대로 사용합니다.
   ============================================================ */

:root {
  /* 무드보드 팔레트 */
  --cream:      #F7F5F0;   /* Cream — 기본 배경 */
  --sand:       #E4DACE;   /* Sand Beige — 보조 배경 */
  --oat:        #DBCDBD;   /* Oat — 구분선 */
  --taupe:      #B7A898;   /* Warm Taupe — 장식·캡션 */
  --sage:       #C5D1BE;   /* Light Sage — 부드러운 포인트 */
  --cocoa:      #8D7869;   /* Muted Cocoa — 브랜드 액센트 */
  --champagne:  #E7D3B0;   /* Champagne Gold — 프리미엄 포인트 */

  /* 파생 토큰 */
  --surface:    #FFFFFF;
  --surface-2:  #FCFAF7;
  --cocoa-deep: #6B5A4E;   /* 버튼·링크 (대비 확보) */
  --cocoa-dark: #574940;   /* hover */
  --ink:        #35302B;   /* 제목 */
  --text:       #57504A;   /* 본문 */
  --text-sub:   #736B65;   /* 보조 */
  --border:     #E6DED3;
  --border-2:   #EFE9E1;

  --sans: "Pretendard Variable", Pretendard, "Noto Sans KR", -apple-system,
          BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", sans-serif;
  --serif-en: "Cormorant Garamond", "Playfair Display", Georgia, serif;

  --radius:    14px;
  --radius-sm: 10px;
  --shadow:      0 2px 10px rgba(53, 48, 43, 0.05);
  --shadow-lift: 0 14px 40px rgba(53, 48, 43, 0.10);
  --header-h: 76px;
}

/* ---- 리셋 ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.42;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 860px; }

/* ---- 공통 섹션 ---- */
.section { padding: 108px 0; }
.section.tight { padding: 84px 0; }
.section.alt { background: var(--surface-2); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.section-head { margin-bottom: 54px; max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-en);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--cocoa);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--taupe); }
.section-head.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--taupe); }

.section-title { font-size: clamp(27px, 3.3vw, 38px); margin-bottom: 18px; }
.section-lead { font-size: 16.5px; color: var(--text-sub); line-height: 1.9; }
.body-text { font-size: 16px; color: var(--text-sub); line-height: 1.9; margin-top: 18px; }

/* ---- 버튼 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cocoa-deep); color: #fff; }
.btn-primary:hover { background: var(--cocoa-dark); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--oat); color: var(--ink); background: rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--cocoa); color: var(--cocoa-deep); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost-light { border: 1px solid rgba(247,245,240,0.5); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(247,245,240,0.12); }

/* ---- 헤더 ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 245, 240, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.header.scrolled { border-bottom-color: var(--border); background: rgba(247, 245, 240, 0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 34px; height: auto; }
.brand-name {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.16em;
  line-height: 1.15;
}
.brand-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  color: var(--taupe);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 15px; color: var(--text); transition: color 0.2s ease; }
.nav a:hover { color: var(--cocoa-deep); }
.nav a.active { color: var(--ink); font-weight: 600; }
.nav a.active::after { content: ""; display: block; height: 1.5px; background: var(--cocoa); margin-top: 5px; }
.nav .btn { margin-left: 4px; padding: 12px 24px; font-size: 14.5px; }

.nav-toggle { display: none; width: 40px; height: 40px; padding: 9px; margin-right: -8px; }
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   히어로 — 첫 화면에 한눈에 들어오도록 높이 제한
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 52px) 0 76px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--surface-2) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: 60px; align-items: center; }
.hero-copy { max-width: 520px; }
.hero-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--taupe);
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(31px, 4.1vw, 47px);
  line-height: 1.34;
  margin-bottom: 20px;
  letter-spacing: -0.038em;
}
.hero-title em { font-style: normal; color: var(--cocoa-deep); }
.hero-sub { font-size: 16px; color: var(--text-sub); line-height: 1.9; margin-bottom: 30px; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust span { font-size: 13.5px; color: var(--text-sub); display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cocoa); }

.hero-visual { position: relative; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3; max-height: 430px; object-fit: cover; }
.hero-card {
  position: absolute;
  left: -26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 13px 19px;
  box-shadow: var(--shadow-lift);
}
.hero-card-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sage); color: #3E4C3B;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card b { display: block; font-size: 14px; color: var(--ink); }
.hero-card small { display: block; font-size: 12.5px; color: var(--text-sub); }

/* ---- 브랜드 가치 ---- */
.values { background: var(--surface); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); padding: 46px 0; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value { text-align: center; }
.value-icon {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--cocoa);
  display: flex; align-items: center; justify-content: center;
}
.value b { display: block; font-size: 15.5px; color: var(--ink); letter-spacing: 0.02em; }
.value span {
  display: block; font-family: var(--serif-en); font-size: 12.5px;
  letter-spacing: 0.14em; color: var(--taupe); text-transform: uppercase; margin-top: 3px;
}

/* ---- 포지셔닝 ---- */
.spectrum { position: relative; margin: 10px 0 52px; padding-top: 34px; }
.spectrum-line { height: 1px; background: linear-gradient(90deg, var(--border) 0%, var(--taupe) 50%, var(--border) 100%); }
.spectrum-points { display: flex; justify-content: space-between; margin-top: -6px; }
.spectrum-point { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 33%; text-align: center; }
.spectrum-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--taupe); }
.spectrum-point.is-jinyeon .spectrum-dot {
  width: 17px; height: 17px; margin-top: -3px;
  background: var(--cocoa-deep); box-shadow: 0 0 0 5px rgba(141, 120, 105, 0.16);
}
.spectrum-label { font-size: 13.5px; color: var(--text-sub); }
.spectrum-label b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 3px; }
.spectrum-point.is-jinyeon .spectrum-label b { color: var(--cocoa-deep); }

.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.compare-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.compare-col.is-jinyeon { border-color: var(--cocoa); box-shadow: var(--shadow-lift); position: relative; overflow: hidden; }
.compare-col.is-jinyeon::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--champagne), var(--cocoa));
}
.compare-col h3 { font-size: 19px; margin-bottom: 4px; }
.compare-col.is-jinyeon h3 { color: var(--cocoa-deep); }
.compare-note { font-size: 13px; color: var(--taupe); margin-bottom: 20px; }
.compare-col dl { display: grid; gap: 14px; }
.compare-col dt { font-size: 12.5px; color: var(--taupe); }
.compare-col dd { font-size: 14.5px; color: var(--text); margin-top: 2px; }

/* ---- 기둥 카드 ---- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--taupe); }
.pillar-num { display: block; font-family: var(--serif-en); font-size: 30px; font-weight: 600; color: var(--taupe); line-height: 1; margin-bottom: 16px; }
.pillar h3 { font-size: 20px; margin-bottom: 12px; }
.pillar p { font-size: 15px; color: var(--text-sub); margin-bottom: 20px; }
.pillar-link { font-size: 14px; font-weight: 600; color: var(--cocoa-deep); }

/* ---- 프로그램 미리보기 ---- */
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mini-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.mini-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.mini-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mini-card:hover .mini-photo img { transform: scale(1.04); }
.mini-body { padding: 20px 22px 22px; }
.mini-body h3 { font-size: 18.5px; margin-bottom: 6px; }
.mini-body p { font-size: 13.5px; color: var(--text-sub); margin-bottom: 12px; }
.mini-price { font-size: 13.5px; font-weight: 700; color: var(--cocoa-deep); }

/* ---- 키 메시지 ---- */
.keymsg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.keymsg { background: var(--surface); padding: 32px 28px; }
.keymsg-icon { color: var(--cocoa); margin-bottom: 14px; }
.keymsg h3 { font-size: 17.5px; margin-bottom: 9px; }
.keymsg p { font-size: 14.5px; color: var(--text-sub); }

/* ---- 인용 밴드 ---- */
.band { position: relative; background: var(--cocoa-deep); color: var(--cream); padding: 104px 0; overflow: hidden; text-align: center; }
.band-mark { width: 54px; margin: 0 auto 26px; opacity: 0.55; }
.band .container { position: relative; }
.band-quote { font-size: clamp(21px, 2.7vw, 30px); line-height: 1.68; color: var(--cream); letter-spacing: -0.03em; font-weight: 500; }
.band-en { font-family: var(--serif-en); font-style: italic; font-size: 17px; color: var(--champagne); margin-top: 18px; letter-spacing: 0.03em; }

/* ---- 신뢰 요약 ---- */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.trust-item { padding-top: 22px; border-top: 1px solid var(--oat); }
.trust-item h3 { font-size: 18.5px; margin-bottom: 10px; }
.trust-item p { font-size: 15px; color: var(--text-sub); }

/* ---- 더보기 링크 ---- */
.more-link { margin-top: 38px; }
.more-link.center { text-align: center; }
.more-link a { font-size: 15px; font-weight: 600; color: var(--cocoa-deep); border-bottom: 1px solid var(--oat); padding-bottom: 3px; transition: border-color 0.2s ease; }
.more-link a:hover { border-color: var(--cocoa); }

/* ---- 신청 CTA ---- */
.apply { position: relative; padding: 108px 0; overflow: hidden; }
.apply-bg { position: absolute; inset: 0; }
.apply-bg img { width: 100%; height: 100%; object-fit: cover; }
.apply-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(87,73,64,0.93) 0%, rgba(87,73,64,0.75) 100%); }
.apply-inner { position: relative; max-width: 620px; }
.apply-inner h1, .apply-inner h2 { color: var(--cream); font-size: clamp(27px, 3.4vw, 39px); margin-bottom: 18px; }
.apply-inner p { color: rgba(247,245,240,0.85); font-size: 16px; margin-bottom: 30px; }
.apply-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.apply-small { font-size: 13px; color: rgba(247,245,240,0.6); margin-top: 22px !important; }

/* ---- 푸터 ---- */
.footer { background: var(--ink); color: rgba(247,245,240,0.62); padding: 62px 0 40px; font-size: 13.5px; }
.footer .brand-name { color: var(--cream); }
.footer .brand-en { color: var(--taupe); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 34px; }
.footer-slogan { margin-top: 14px; color: rgba(247,245,240,0.6); font-size: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: flex-start; }
.footer-nav a { color: rgba(247,245,240,0.72); font-size: 14px; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--cream); }
.footer-nav a.strong { color: var(--cream); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(247,245,240,0.13); padding-top: 26px; display: grid; gap: 12px; }
.footer-legal { line-height: 1.8; color: rgba(247,245,240,0.5); }
.footer-copy { color: rgba(247,245,240,0.42); font-family: var(--serif-en); letter-spacing: 0.05em; }

/* ---- 페이지 헤더 ---- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 62px) 0 62px;
  background: var(--surface-2); border-bottom: 1px solid var(--border-2); overflow: hidden;
}
.page-hero-mark { position: absolute; right: 2%; top: 50%; transform: translateY(-46%); width: 168px; opacity: 0.09; pointer-events: none; }
.page-hero .container { position: relative; }
.page-title { font-size: clamp(30px, 4vw, 44px); line-height: 1.34; margin-bottom: 18px; max-width: 700px; }
.page-lead { font-size: 16.5px; color: var(--text-sub); max-width: 640px; line-height: 1.9; }

/* ---- 페이지 하단 CTA ---- */
.page-cta { position: relative; background: var(--cocoa-deep); color: var(--cream); padding: 92px 0; overflow: hidden; }
.page-cta-mark { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: 200px; opacity: 0.12; pointer-events: none; }
.page-cta-inner { position: relative; max-width: 620px; }
.page-cta-inner h2 { font-size: clamp(26px, 3.3vw, 36px); color: var(--cream); margin-bottom: 18px; }
.page-cta-inner p { font-size: 16px; color: rgba(247,245,240,0.82); margin-bottom: 30px; }
.page-cta-actions { display: flex; gap: 11px; flex-wrap: wrap; }

/* ---- 진연 소개 ---- */
.name-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.name-symbol { text-align: center; }
.name-symbol img { width: 100%; max-width: 200px; margin: 0 auto; }
.name-caption { font-size: 13.5px; color: var(--taupe); margin-top: 22px; }

.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.story-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-photo img { width: 100%; aspect-ratio: 4/5; max-height: 480px; object-fit: cover; }

.solve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solve-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; }
.solve-card .q { font-size: 15px; color: var(--cocoa-deep); font-weight: 600; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border-2); }
.solve-card p { font-size: 14.5px; color: var(--text-sub); }
.solve-card p b { color: var(--ink); font-weight: 600; }

.formula-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.formula-item { background: var(--surface); padding: 30px 28px; }
.formula-en { display: block; font-family: var(--serif-en); font-size: 15px; font-style: italic; letter-spacing: 0.1em; color: var(--cocoa); font-weight: 600; margin-bottom: 10px; }
.formula-item h3 { font-size: 18.5px; margin-bottom: 10px; }
.formula-item p { font-size: 14.5px; color: var(--text-sub); }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promise { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.promise-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--cocoa);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.promise h3 { font-size: 17.5px; margin-bottom: 10px; }
.promise p { font-size: 14.5px; color: var(--text-sub); }

.space-criteria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.crit { padding: 22px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.crit b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 7px; }
.crit span { font-size: 14.5px; color: var(--text-sub); }

.space-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 16px; }
.space-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.space-grid figure:first-child { grid-row: span 2; }
.space-grid img { width: 100%; height: 100%; object-fit: cover; }
.space-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 22px 16px;
  background: linear-gradient(180deg, rgba(53,48,43,0) 0%, rgba(53,48,43,0.74) 100%);
  color: var(--cream); font-size: 13.5px;
}

.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.persona { padding: 28px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.persona h3 { font-size: 17.5px; margin-bottom: 10px; color: var(--cocoa-deep); }
.persona p { font-size: 14.5px; color: var(--text-sub); }

/* ---- 검증 기준 ---- */
.vlevel-list { display: flex; flex-direction: column; gap: 18px; }
.vlevel {
  display: grid; grid-template-columns: 250px 1fr; gap: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 34px;
}
.vlevel-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.vlevel-tag { font-family: var(--serif-en); font-size: 17px; font-weight: 600; font-style: italic; letter-spacing: 0.06em; color: var(--cocoa-deep); }
.vlevel-req { font-size: 11.5px; font-weight: 600; color: var(--text-sub); background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 3px 9px; }
.vlevel-head h3 { font-size: 20px; width: 100%; margin-top: 6px; }
.vlevel-body p { font-size: 15px; color: var(--text-sub); }
.vlevel-data { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-2); font-size: 14px !important; }
.vlevel-data b { color: var(--ink); margin-right: 6px; }

.verify-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.verify-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.verify-photos img { border-radius: var(--radius-sm); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.verify-photos img:first-child { margin-top: 26px; }
.verify-rules { display: grid; gap: 13px; margin-top: 26px; }
.verify-rules li { list-style: none; position: relative; padding-left: 26px; font-size: 15px; color: var(--text-sub); }
.verify-rules li::before { content: ""; position: absolute; left: 0; top: 12px; width: 12px; height: 1px; background: var(--cocoa); }

.table-wrap { overflow-x: auto; }
.info-table { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; font-size: 14.5px; }
.info-table th {
  text-align: left; background: var(--surface-2); color: var(--ink);
  font-weight: 600; font-size: 13.5px; padding: 15px 20px;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.info-table td { padding: 15px 20px; border-bottom: 1px solid var(--border-2); color: var(--text-sub); vertical-align: top; }
.info-table tbody tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }

.note-box { margin-top: 26px; padding: 24px 28px; background: var(--surface); border: 1px solid var(--border); border-left: 2px solid var(--taupe); border-radius: var(--radius-sm); }
.note-box.sage { border-left-color: var(--sage); }
.note-box b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 8px; }
.note-box p { font-size: 14.5px; color: var(--text-sub); }

.code-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.code-card { padding: 22px 24px; background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--taupe); border-radius: var(--radius-sm); }
.code-card.grave { border-top-color: var(--cocoa-deep); }
.code-card b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 7px; }
.code-card span { font-size: 14.5px; color: var(--text-sub); }

.respond { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 40px; }
.respond h3 { font-size: 20px; margin-bottom: 22px; }
.respond-steps { counter-reset: r; display: grid; gap: 14px; }
.respond-steps li { list-style: none; counter-increment: r; position: relative; padding-left: 40px; font-size: 15px; color: var(--text-sub); }
.respond-steps li::before {
  content: counter(r); position: absolute; left: 0; top: 1px;
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--cocoa-deep);
  font-family: var(--serif-en); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.respond-steps li b { color: var(--ink); margin-right: 6px; }

/* ---- 프로그램 ---- */
.prog-detail { padding: 92px 0; }
.prog-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.prog-grid.flip .prog-photo { order: 2; }
.prog-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.prog-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.program-badge {
  display: inline-block; background: var(--surface-2); border: 1px solid var(--border);
  color: var(--cocoa-deep); font-size: 12.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.prog-name { font-size: clamp(26px, 3.1vw, 34px); margin-bottom: 10px; }
.prog-copy { font-size: 16.5px; color: var(--cocoa-deep); font-weight: 500; margin-bottom: 18px; }
.prog-desc { font-size: 15.5px; color: var(--text-sub); line-height: 1.9; margin-bottom: 24px; }
.prog-meta { display: flex; gap: 8px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px; }
.prog-meta span { font-size: 13px; color: var(--text); background: var(--surface); border: 1px solid var(--border); padding: 6px 13px; border-radius: 999px; }
.prog-meta .price { color: var(--cocoa-deep); font-weight: 700; border-color: var(--taupe); background: var(--surface-2); }
.prog-fit { margin-top: 22px; display: grid; gap: 9px; }
.prog-fit li { list-style: none; position: relative; padding-left: 22px; font-size: 14.5px; color: var(--text-sub); }
.prog-fit li::before { content: ""; position: absolute; left: 0; top: 12px; width: 10px; height: 1px; background: var(--cocoa); }
.prog-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.prog-tags span { font-size: 13px; color: var(--text-sub); background: var(--sand); padding: 6px 13px; border-radius: 999px; }

.timeline, .flow { margin-top: 54px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 40px; }
.timeline h3, .flow h3 { font-size: 20px; margin-bottom: 24px; }
.timeline h3 small { font-size: 13.5px; color: var(--text-sub); font-weight: 400; margin-left: 8px; }
.trow { display: grid; grid-template-columns: 76px 166px 1fr; gap: 20px; align-items: baseline; padding: 15px 0; border-top: 1px solid var(--border-2); }
.trow:first-child { border-top: none; padding-top: 0; }
.ttime { font-family: var(--serif-en); font-size: 17px; font-weight: 600; color: var(--cocoa-deep); }
.trow b { font-size: 15.5px; color: var(--ink); }
.trow p { font-size: 14.5px; color: var(--text-sub); }

.flow { background: var(--surface-2); }
.flow-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 30px; counter-reset: f; }
.flow-steps li { list-style: none; counter-increment: f; padding-left: 38px; position: relative; }
.flow-steps li::before { content: "0" counter(f); position: absolute; left: 0; top: 0; font-family: var(--serif-en); font-size: 16px; font-weight: 600; color: var(--taupe); }
.flow-steps b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 4px; }
.flow-steps span { font-size: 14px; color: var(--text-sub); }

.rule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.rule { padding: 28px 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.rule h3 { font-size: 18.5px; margin-bottom: 10px; }
.rule p { font-size: 15px; color: var(--text-sub); }

.soon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.soon-card { padding: 30px 32px; border: 1px solid var(--champagne); border-radius: var(--radius); background: linear-gradient(160deg, rgba(231,211,176,0.22), rgba(231,211,176,0.05)); }
.gold-tag { display: block; font-family: var(--serif-en); font-style: italic; letter-spacing: 0.13em; font-size: 13.5px; color: var(--cocoa); font-weight: 600; margin-bottom: 12px; }
.soon-card h3 { font-size: 20px; margin-bottom: 10px; }
.soon-card p { font-size: 14.5px; color: var(--text-sub); }
.programs-note { margin-top: 28px; font-size: 13.5px; color: var(--taupe); text-align: center; }

.pick-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pick {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.2s ease, transform 0.2s ease;
}
.pick:hover { border-color: var(--cocoa); transform: translateX(3px); }
.pick span { font-size: 15px; color: var(--text-sub); }
.pick b { font-size: 16px; color: var(--cocoa-deep); white-space: nowrap; }

/* ---- 참여 방법 ---- */
.phase-head { margin-bottom: 42px; }
.phase-tag { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; color: var(--cream); background: var(--cocoa-deep); padding: 6px 15px; border-radius: 999px; margin-bottom: 18px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps.four { grid-template-columns: repeat(4, 1fr); }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; }
.step-num { font-family: var(--serif-en); font-size: 29px; font-weight: 600; color: var(--taupe); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-sub); }

.etiquette { margin-top: 32px; padding: 30px 34px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.etiquette h3 { font-size: 18.5px; margin-bottom: 16px; }
.etiquette ul { display: grid; gap: 10px; }
.etiquette li { list-style: none; position: relative; padding-left: 24px; font-size: 15px; color: var(--text-sub); }
.etiquette li::before { content: ""; position: absolute; left: 0; top: 12px; width: 11px; height: 1px; background: var(--cocoa); }

.nonmatch { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.nonmatch-quote { background: var(--sand); padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.nonmatch-quote p { font-size: 16.5px; line-height: 1.85; color: var(--ink); margin-bottom: 16px; }
.nonmatch-quote span { font-size: 13px; color: var(--cocoa); }
.nonmatch-body { background: var(--surface); padding: 38px 40px; }
.nonmatch-body h3 { font-size: 19.5px; margin-bottom: 14px; }
.nonmatch-body p { font-size: 15px; color: var(--text-sub); line-height: 1.9; }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 56px 21px 26px; font-size: 16px; font-weight: 600; color: var(--ink); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 26px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--taupe); border-bottom: 1.5px solid var(--taupe);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item[open] summary { color: var(--cocoa-deep); }
.faq-body { padding: 0 26px 24px; font-size: 15px; color: var(--text-sub); line-height: 1.9; }
.faq-cat + .faq-cat { margin-top: 50px; }
.faq-cat-title { font-size: 21px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

/* ---- 참가 신청 ---- */
.apply-page { padding: calc(var(--header-h) + 76px) 0 100px; }
.ready-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ready { padding: 32px 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.ready-num {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cocoa-deep); color: var(--cream);
  font-family: var(--serif-en); font-size: 17px; font-weight: 600; margin-bottom: 18px;
}
.ready h3 { font-size: 18.5px; margin-bottom: 10px; }
.ready p { font-size: 15px; color: var(--text-sub); }

/* ---- 약관·개인정보 ---- */
.legal-notice { padding: 22px 26px; background: var(--surface); border: 1px solid var(--border); border-left: 2px solid var(--champagne); border-radius: var(--radius-sm); margin-bottom: 44px; }
.legal-notice b { display: block; font-size: 15px; color: var(--ink); margin-bottom: 7px; }
.legal-notice p { font-size: 14.5px; color: var(--text-sub); }
.legal-body h2 { font-size: 19.5px; margin: 46px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15.5px; color: var(--text-sub); line-height: 1.95; }
.legal-body p + p { margin-top: 14px; }
.legal-body ol { counter-reset: lg; display: grid; gap: 11px; margin-top: 6px; }
.legal-body ol li { list-style: none; counter-increment: lg; position: relative; padding-left: 28px; font-size: 15.5px; color: var(--text-sub); line-height: 1.9; }
.legal-body ol li::before { content: counter(lg) "."; position: absolute; left: 0; color: var(--taupe); font-weight: 600; }
.legal-body .table-wrap { margin: 20px 0 8px; }
.legal-body a { color: var(--cocoa-deep); border-bottom: 1px solid var(--oat); }
.legal-sub { font-size: 14px !important; margin-top: 12px; }
.legal-contact { margin-top: 14px; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14.5px !important; }
.legal-date { margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 14px !important; color: var(--taupe) !important; }

/* ---- 등장 애니메이션 ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}
:focus-visible { outline: 2px solid var(--cocoa-deep); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1080px) {
  .section { padding: 88px 0; }
  .hero { padding: calc(var(--header-h) + 40px) 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: none; }
  .hero-visual { max-width: 620px; }
  .hero-photo img { aspect-ratio: 16/10; max-height: 360px; }
  .hero-card { left: auto; right: 18px; bottom: 18px; }
  .values-grid { gap: 12px; }
  .value b { font-size: 14.5px; }
  .compare { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .compare-col.is-jinyeon { order: -1; }
  .spectrum { display: none; }
  .pillar-grid, .keymsg-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; gap: 26px; }
  .name-grid, .story-grid, .verify-grid { grid-template-columns: 1fr; gap: 40px; }
  .name-symbol { order: -1; }
  .story-photo { max-width: 460px; }
  .verify-photos { max-width: 520px; }
  .solve-grid, .formula-grid, .promise-grid, .space-criteria, .code-grid, .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .space-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .space-grid figure:first-child { grid-row: auto; grid-column: span 2; }
  .space-grid figure:first-child img { aspect-ratio: 16/9; }
  .space-grid figure img { aspect-ratio: 4/3; }
  .vlevel { grid-template-columns: 1fr; gap: 18px; padding: 28px 26px; }
  .prog-grid { grid-template-columns: 1fr; gap: 36px; }
  .prog-grid.flip .prog-photo { order: 0; }
  .prog-photo { max-width: 640px; }
  .flow-steps, .steps, .steps.four { grid-template-columns: repeat(2, 1fr); }
  .nonmatch { grid-template-columns: 1fr; }
  .ready-grid { grid-template-columns: 1fr; }
  .band-mark, .page-hero-mark, .page-cta-mark { opacity: 0.07; }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .section.tight { padding: 60px 0; }
  .page-hero { padding: calc(var(--header-h) + 40px) 0 48px; }
  .page-cta, .apply { padding: 72px 0; }
  .apply-page { padding: calc(var(--header-h) + 48px) 0 76px; }
  .prog-detail { padding: 64px 0; }
  .band { padding: 76px 0; }
  .timeline, .flow, .respond { padding: 28px 24px; }
  .trow { grid-template-columns: 64px 1fr; row-gap: 6px; }
  .trow p { grid-column: 2; }
  .rule-grid, .soon-grid, .pick-list { grid-template-columns: 1fr; }
  .nonmatch-quote, .nonmatch-body { padding: 30px 26px; }
  .info-table { font-size: 14px; }
  .info-table th, .info-table td { padding: 13px 16px; }
  .values-grid { gap: 8px; }
  .value-icon { width: 40px; height: 40px; }
  .value b { font-size: 13.5px; }
  .value span { font-size: 10.5px; letter-spacing: 0.1em; }

  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 28px 22px; display: none;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: 15px 2px; border-bottom: 1px solid var(--border-2); font-size: 16px; }
  .nav a.active::after { display: none; }
  .nav a:last-of-type { border-bottom: none; }
  .nav .btn { margin: 14px 0 0; padding: 15px; font-size: 15px; }
  .nav-toggle { display: block; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .hero { padding: calc(var(--header-h) + 28px) 0 52px; }
  .hero-photo img { aspect-ratio: 3/2; max-height: 260px; }
  .hero-card { right: 12px; bottom: 12px; padding: 10px 15px; gap: 10px; }
  .hero-card-dot { width: 26px; height: 26px; }
  .values { padding: 34px 0; }
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 8px; }
  .mini-grid, .solve-grid, .formula-grid, .promise-grid,
  .space-criteria, .persona-grid, .code-grid, .flow-steps,
  .steps, .steps.four { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: 1fr; }
  .space-grid figure:first-child { grid-column: auto; }
  .space-grid figure:first-child img, .space-grid figure img { aspect-ratio: 4/3; }
  .pick { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pick b { white-space: normal; }
  .band-mark, .page-hero-mark, .page-cta-mark { display: none; }
  .respond { padding: 26px 20px; }
  .respond-steps li { padding-left: 34px; }
  .faq-item summary { padding: 18px 48px 18px 20px; font-size: 15.5px; }
  .faq-body { padding: 0 20px 20px; }
  .footer-top { flex-direction: column; gap: 26px; }

  /* 표는 모바일에서 카드형으로 */
  .info-table, .info-table tbody, .info-table tr, .info-table td { display: block; width: 100%; }
  .info-table thead { display: none; }
  .info-table tr { border-bottom: 1px solid var(--border); padding: 6px 0; }
  .info-table tbody tr:last-child { border-bottom: none; }
  .info-table td { border-bottom: none; padding: 8px 18px; white-space: normal !important; }
  .info-table td::before {
    content: attr(data-label); display: block; font-size: 11.5px;
    font-weight: 600; color: var(--taupe); margin-bottom: 3px;
  }
  .info-table td:first-child { padding-top: 15px; }
  .info-table tr td:last-child { padding-bottom: 15px; }
}
