/* ════════════════════════════════════════════════════
   힐링네임 — style.css
   디자인 전략: "A는 입구(딥그린+금박), B는 본문(크림)"
   A존: 히어로 / 원장소개 / 카카오CTA
   B존: 진단 / 서비스 / 가격 / 후기 / 과정 / FAQ
════════════════════════════════════════════════════ */

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); }
ul, ol { list-style: none; }

/* ── 컬러 & 타이포 토큰 ── */
:root {
  /* 컬러 */
  --forest:        #1A2E10;
  --forest-mid:    #2A4018;
  --forest-light:  #3D5A28;
  --gold:          #C8A450;
  --gold-light:    #E2C47A;
  --gold-pale:     #F5EDD8;
  --gold-dim:      rgba(200,164,80,0.12);
  --cream:         #F7F3EC;
  --cream-mid:     #F0EAE0;
  --cream-dark:    #E8DFD0;
  --ink:           #1A1710;
  --ink2:          #35302A;
  --ink3:          #6B6050;
  --ink4:          #9A8F7F;
  --ink-faint:     #BFB5A8;
  --white:         #FDFAF5;

  /* 기존 JS/CSS 참조 호환 */
  --green-dark:    #1A2E10;
  --green:         #2A4018;
  --gold-dark:     #C8A450;
  --bg2:           #F0EAE0;
  --muted:         #6B6050;

  /* 타이포 */
  --serif:  'Noto Serif KR', 'Cormorant Garamond', Georgia, serif;
  --roman:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Noto Sans KR', sans-serif;

  /* 레이아웃 */
  --max-w: 1100px;
  --nav-h: 60px;
}

/* ════════════════════
   레이아웃 유틸
════════════════════ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

/* Reveal 애니메이션 */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════
   NAV — A존 (딥그린 고정)
════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 70px;
  background: rgba(26,46,16,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(200,164,80,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.22); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: auto; width: 160px; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-actions { display: flex; gap: 8px; }

.nav-cta {
  font-size: 11px;
  padding: 8px 16px;
  border: 0.5px solid rgba(200,164,80,0.35);
  background: transparent;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.07em;
  transition: all .2s;
}
.nav-cta:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.nav-cta.primary {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  font-weight: 600;
}
.nav-cta.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ════════════════════
   HERO — A존 (딥그린+금박)
════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--forest);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

/* 한자 배경 장식 */
#hero::before {
  content: '名';
  font-family: var(--serif);
  font-size: clamp(200px, 35vw, 460px);
  font-weight: 900;
  color: rgba(200,164,80,0.04);
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

/* 히어로 왼쪽 */
.hero-content {
  padding: 72px 6% 60px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--roman);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.38;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-headline em {
  color: var(--gold-light);
  font-style: normal;
  display: block;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 360px;
}

.hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-btn-main {
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  transition: background .2s;
}
.hero-btn-main:hover { background: var(--gold-light); }

.hero-btn-sub {
  background: transparent;
  color: rgba(255,255,255,0.68);
  border: 0.5px solid rgba(200,164,80,0.38);
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: all .2s;
}
.hero-btn-sub:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* 히어로 진입 리스트 */
.hero-svc-list {
  margin-top: 36px;
  border-top: 0.5px solid rgba(200,164,80,0.1);
}
.hero-svc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(200,164,80,0.07);
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  cursor: pointer;
  transition: padding-left .2s, color .2s;
  gap: 12px;
}
.hero-svc-item:hover {
  padding-left: 8px;
  color: var(--gold-light);
}
.hero-svc-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.hero-svc-num {
  font-family: var(--roman);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}
.hero-svc-arr {
  font-size: 13px;
  color: rgba(200,164,80,0.35);
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
.hero-svc-item:hover .hero-svc-arr {
  transform: translateX(4px);
  color: var(--gold);
}

/* 히어로 오른쪽 — 사진 */
.hero-photo {
  position: relative;
  background: var(--forest-mid);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
  mix-blend-mode: normal;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(26,46,16,0.08) 0%,
    rgba(26,46,16,0.35) 100%
  );
}
.hero-photo-badge {
  position: absolute;
  bottom: 36px;
  left: 28px;
  right: 28px;
  background: rgba(26,46,16,0.92);
  border-left: 2px solid var(--gold);
  padding: 18px 22px;
}
.hero-photo-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 5px;
}
.hero-photo-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em;
}
.hero-badge-years {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gold);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 14px;
}

/* ── 신뢰 바 (A존 하단) ── */
.trust-strip-new {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  background: rgba(200,164,80,0.07);
  border-top: 0.5px solid rgba(200,164,80,0.14);
  position: relative;
  z-index: 1;
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 52px;
  border-right: 0.5px solid rgba(200,164,80,0.12);
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-num {
  font-family: var(--roman);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.trust-strip-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.1em;
}

/* ════════════════════
   섹션 공통 (B존)
════════════════════ */
section {
  padding: 100px 0;
}
section.alt { background: var(--cream-mid); }

/* section-label */
.section-label {
  font-family: var(--roman);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }
.section-label.center { justify-content: center; }

/* section-title */
.section-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }

.section-sub {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.9;
  max-width: 520px;
}
.section-sub.light { color: rgba(255,255,255,0.45); }

/* 구분선 */
hr.divider {
  border: none;
  border-top: 0.5px solid rgba(160,120,64,0.1);
  margin: 0;
}

/* ── 버튼 (B존) ── */
.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  border: 0.5px solid var(--forest);
  padding: 14px 26px;
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.08em;
  text-align: center;
  transition: background .2s;
}
.btn-primary:hover { background: var(--forest-mid); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink2);
  border: 0.5px solid rgba(26,46,16,0.28);
  padding: 13px 26px;
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.07em;
  text-align: center;
  transition: all .2s;
}
.btn-outline:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* ── 2컬럼 split ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.rev { direction: rtl; }
.split-grid.rev > * { direction: ltr; }

/* 이미지 래퍼 */
.img-block {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-block-tag {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  text-transform: uppercase;
}

/* ════════════════════
   진단 섹션 (B존)
════════════════════ */
#diagnosis { background: var(--cream); }

.diag-container {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.15);
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
  transition: max-width 0.3s ease;
}
.diag-container.result-expanded {
  max-width: 960px;
}

.trust-bar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream-dark);
  border-left: 2px solid var(--forest);
  margin-bottom: 28px;
}
.trust-bar-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-bar p {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.85;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink2);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group { margin-bottom: 16px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 0.5px solid rgba(160,120,64,0.22);
  background: #fff;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.form-input,
.form-select { height: 42px; padding: 0 12px; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8A450' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-textarea {
  padding: 10px 12px;
  resize: vertical;
  min-height: 80px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--forest); }

/* 진단 결과 박스 */
.result-header {
  background: var(--forest);
  padding: 24px 28px;
  margin-bottom: 2px;
  text-align: center;
}
.result-title {
  font-family: var(--roman);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.result-grade {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
}

.result-body {
  background: var(--cream-mid);
  padding: 24px;
  margin-bottom: 2px;
}

.result-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.result-points li {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}
.result-points li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.3;
}

.urgency-block {
  background: var(--gold-pale);
  border: 0.5px solid rgba(200,164,80,0.2);
  padding: 20px 24px;
  margin-bottom: 2px;
}
.urgency-text {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 10px;
}
.urgency-warning {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.8;
}

.funnel-cta {
  background: var(--cream-dark);
  padding: 28px 24px;
  border: 0.5px solid rgba(160,120,64,0.12);
}
.funnel-label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 20px;
}
.funnel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 18px;
}
.funnel-card {
  background: var(--white);
  padding: 18px 14px;
  text-align: center;
  border: 0.5px solid rgba(160,120,64,0.1);
}
.funnel-card.featured {
  background: var(--forest);
  border-color: var(--forest);
}
.funnel-tier {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.funnel-card.featured .funnel-tier { color: rgba(255,255,255,0.45); }
.funnel-name {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 6px;
}
.funnel-card.featured .funnel-name { color: var(--white); }
.funnel-price {
  font-size: 11px;
  color: var(--ink4);
}
.funnel-card.featured .funnel-price { color: rgba(255,255,255,0.45); }

.funnel-btn-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.funnel-btn-row .btn-primary,
.funnel-btn-row .btn-outline,
.funnel-btn-row a {
  text-align: center;
  padding: 14px;
  font-size: 13px;
}
.funnel-booking-btn {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: var(--white) !important;
}

.funnel-note {
  font-size: 11px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 14px;
}

/* ════════════════════
   about / why / services (B존)
════════════════════ */
#about { background: var(--cream-mid); }
#why   { background: var(--cream); }
#services { background: var(--cream-mid); }

/* why 카드 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  padding: 32px 28px;
  border: 0.5px solid rgba(160,120,64,0.1);

  transition: border-color .2s;
}
.why-num {
  font-family: var(--roman);
  font-size: 36px;
  font-weight: 300;
  color: rgba(200,164,80,0.25);
  line-height: 1;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}
.why-card p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.9;
}

/* 서비스 카드 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  padding: 36px 32px;
  border: 0.5px solid rgba(160,120,64,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}
.service-card > button.btn-primary,
.service-card > a.btn-primary {
  margin-top: auto;
}
.service-card:hover { border-color: rgba(200,164,80,0.35); }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--roman);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;

  padding: 4px 10px;
  background: rgba(200,164,80,0.08);
  border: 0.5px solid rgba(200,164,80,0.2);
  width: fit-content;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}
.service-card > p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.9;
}
.service-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 0.5px solid rgba(160,120,64,0.1);
}
.service-points li {
  font-size: 12px;
  color: var(--ink3);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.service-points li::before {
  content: '·';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}
.service-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid rgba(160,120,64,0.1);
  flex-wrap: wrap;
  gap: 10px;
}
.service-price {
  font-family: var(--roman);
  font-size: 22px;
  color: var(--gold);
}
.service-cta {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.07em;
  transition: background .2s;
}
.service-cta:hover { background: var(--forest-mid); }

/* ════════════════════
   작명 가격표 (B존)
════════════════════ */
#naming-pricing { background: var(--cream); }

.pricing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-card {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.14);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  transition: border-color .2s;
}
.price-card:hover { border-color: rgba(200,164,80,0.4); }
.price-card.hot {
  background: var(--forest);
  border-color: var(--forest);
}
.price-card-badge {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--gold);
  color: var(--forest);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 14px;
}
.pc-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 5px;
}
.price-card.hot .pc-name { color: var(--white); }
.pc-desc {
  font-size: 12px;
  color: var(--ink4);
  margin-bottom: 10px;
}
.price-card.hot .pc-desc { color: rgba(255,255,255,0.45); }
.pc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pc-pill {
  font-size: 10px;
  padding: 3px 9px;
  background: rgba(42,64,24,0.07);
  color: var(--forest-light);
  border-radius: 2px;
}
.price-card.hot .pc-pill {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}
.pc-right { text-align: right; flex-shrink: 0; }
.pc-price {
  font-family: var(--roman);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-card.hot .pc-price { color: var(--gold-light); }
.pc-vat {
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.price-card.hot .pc-vat { color: rgba(255,255,255,0.3); }

/* ── 작명 과정 ── */
#naming-process {
  background: var(--forest);
  padding: 100px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 0.5px;
  background: rgba(200,164,80,0.18);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0.5px solid rgba(200,164,80,0.28);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--roman);
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.process-step:first-child .process-num {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.process-step-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.process-step-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

/* ── 작명 문서 ── */
#naming-docs { background: var(--cream-mid); }

/* ════════════════════
   원장 소개 — A요소 재사용
════════════════════ */
#director {
  background: var(--forest);
  padding: 100px 0;
}
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.director-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: none;
}
.director-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,16,0.88) 0%, transparent 55%);
}
.director-photo-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.director-photo-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.director-role {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.08em;
}
.director-phil {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 1px solid rgba(200,164,80,0.3);
}
.director-specs {
  display: flex;
  flex-direction: column;
}
.director-spec {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.spec-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 58px;
  flex-shrink: 0;
}
.spec-val {
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}

/* ════════════════════
   후기 (B존)
════════════════════ */
#reviews { background: var(--cream); }

.reviews-banner {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin-bottom: 56px;
}
.reviews-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.reviews-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26,46,16,0.88) 0%,
    rgba(26,46,16,0.45) 55%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 6%;
}
.reviews-banner-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  max-width: 380px;
}
.reviews-banner-text em {
  color: var(--gold-light);
  font-style: normal;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  background: var(--white);
  padding: 28px 24px;
  border: 0.5px solid rgba(160,120,64,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-type {
  font-family: var(--roman);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.review-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.95;
  flex: 1;
}
.review-meta {
  font-size: 11px;
  color: var(--ink-faint);
  padding-top: 14px;
  border-top: 0.5px solid rgba(160,120,64,0.1);
}

/* ════════════════════
   카카오 CTA — A요소 재사용
════════════════════ */
#kakao-bar {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#kakao-bar::after {
  content: '힐링네임';
  font-family: var(--serif);
  font-size: 130px;
  font-weight: 900;
  color: rgba(200,164,80,0.04);
  position: absolute;
  bottom: -24px;
  right: -8px;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.kakao-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.kakao-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 14px;
}
.kakao-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.9;
}
.kakao-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 200px;
}
.btn-kakao {
  display: block;
  background: #FEE500;
  color: #391B1B;
  border: none;
  padding: 15px 32px;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transition: opacity .2s;
}
.btn-kakao:hover { opacity: 0.88; }
.btn-naver {
  display: block;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.14);
  padding: 14px 32px;
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.07em;
  text-align: center;
  transition: background .2s;
}
.btn-naver:hover { background: rgba(255,255,255,0.12); }

/* ════════════════════
   FAQ (B존)
════════════════════ */
#faq { background: var(--cream-mid); }

.faq-wrap {
  max-width: 720px;
  margin-top: 48px;
}
.faq-item {
  border-bottom: 0.5px solid rgba(160,120,64,0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.9;
  padding-bottom: 20px;
  padding-right: 44px;
}

/* ════════════════════
   최종 CTA (B존)
════════════════════ */
#cta-final {
  background: var(--cream-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
}
.cta-eyebrow {
  font-family: var(--roman);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--gold);
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.9;
  margin-bottom: 44px;
}
.cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════
   FOOTER
════════════════════ */
footer { background: var(--ink); }

.footer-main { padding: 64px 8% 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.footer-logo { height: auto; width: 180px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 2;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.12);
  transition: all .2s;
}
.footer-social a:hover {
  background: rgba(200,164,80,0.12);
  border-color: rgba(200,164,80,0.25);
}
.footer-social svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.55);
}
.footer-social a:hover svg { fill: var(--gold-light); }

.footer-nav-title {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: none;
  margin-bottom: 18px;
  font-family: var(--serif);
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  transition: color .2s;
}
.footer-nav-list a:hover { color: var(--gold-light); }

.footer-cta-col { }
.footer-cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-cta-btn {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-light);
  border: 0.5px solid rgba(200,164,80,0.28);
  padding: 10px 16px;
  letter-spacing: 0.04em;
  transition: all .2s;
}
.footer-cta-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-biz {
  padding: 24px 8% 28px;
}
.footer-biz-inner { }
.footer-biz-left {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin-bottom: 8px;
}
.footer-biz-left a { color: rgba(255,255,255,0.52); }
.footer-biz-left a:hover { color: rgba(255,255,255,0.75); }
.footer-biz-div { color: rgba(255,255,255,0.2); }
.footer-biz-corp {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 2;
}
.footer-biz-email { color: rgba(255,255,255,0.52) !important; }

/* ════════════════════
   예약 모달 / 비즈 모달
════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26,23,16,0.65);
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-box {
  background: var(--white);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* 실시간 토스트 */
.realtime-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 400;
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.2);
  border-left: 2px solid var(--forest);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.toast-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.toast-text { flex: 1; }
.toast-text strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 2px;
}
.toast-text span { font-size: 12px; color: var(--ink3); }
.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ink4);
  padding: 0 4px;
  flex-shrink: 0;
}

/* 한자 피커 모달 */
#diag-hanja-picker > div {
  background: var(--white);
  border-radius: 4px 4px 0 0;
}

/* ════════════════════
   반응형
════════════════════ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 300px; }
  .trust-strip-new { flex-wrap: wrap; }
  .trust-strip-item { padding: 14px 24px; }
  #hero::before { font-size: 180px; }

  .split-grid,
  .split-grid.rev { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .director-grid,
  .pricing-intro { grid-template-columns: 1fr; gap: 40px; }

  
  .service-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .funnel-cards { grid-template-columns: 1fr; }

  
  .process-steps::before { display: none; }

  .kakao-inner { flex-direction: column; text-align: center; }
  .kakao-btns { min-width: unset; width: 100%; }

  

  nav .nav-links { display: none; }
}

@media (max-width: 600px) {
  section { padding: 72px 0; }
  #cta-final { padding: 80px 0; }
  .section-inner { padding: 0 6%; }
  
  
  
  .footer-biz { padding: 20px 6% 24px; }
  
  .price-card { flex-direction: column; }
  .pc-right { text-align: left; }
}

/* ════════════════════
   애니메이션
════════════════════ */
@keyframes sheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ════════════════════════════════════════════════════
   누락 클래스 완전 통합 — 기존 섹션 원본 클래스 재정의
   (about / why / services / faq / cta-final / footer / 모달 / 플로팅)
════════════════════════════════════════════════════ */

/* ── about 섹션 ── */
#about { background: var(--cream-mid); padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { }
.about-text p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.95;
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--ink); font-weight: 500; }

.green-line {
  width: 36px;
  height: 2px;
  background: var(--forest);
  margin: 20px 0;
}

.about-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid rgba(160,120,64,0.14);
  background: var(--white);
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 0.5px solid rgba(160,120,64,0.1);
}
.stat-row:last-child { border-bottom: none; }
.stat-num {
  font-family: var(--roman);
  font-size: 26px;
  font-weight: 300;
  color: var(--forest);
  letter-spacing: -0.01em;
  min-width: 90px;
}
.stat-label {
  font-size: 13px;
  color: var(--ink3);
}

/* ── why 섹션 ── */
#why { background: var(--cream); padding: 100px 0; }


.why-card:hover { border-color: rgba(200,164,80,0.35); }
.why-num {
  font-family: var(--roman);
  font-size: 38px;
  font-weight: 300;
  color: rgba(200,164,80,0.22);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.9;
}

/* ── services 섹션 ── */
#services { background: var(--cream-mid); padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
  margin-bottom: 2px;
  align-items: stretch;
}

.service-card:hover { border-color: rgba(200,164,80,0.32); }
.svc-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin: -36px -32px 0;
  width: calc(100% + 64px);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.service-card:hover .svc-img img { transform: scale(1.03); }


.service-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.service-card > p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.9;
}

.service-points li {
  font-size: 12px;
  color: var(--ink3);
  display: flex;
  gap: 8px;
  align-items: baseline;
  line-height: 1.6;
}
.service-points li::before {
  content: '·';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.1;
}
.svc-connect-note {
  font-size: 12px;
  color: var(--forest-light);
  font-style: italic;
  padding: 8px 12px;
  background: rgba(42,64,24,0.05);
  border-left: 2px solid var(--forest-light);
}
.svc-price-note {
  font-size: 12px;
  color: var(--gold);
  font-family: var(--roman);
  letter-spacing: 0.06em;
}
.svc-sub-label {
  font-size: 14px;
  color: var(--ink4);
  font-family: var(--sans);
  font-weight: 300;
}

/* 이름 검토 블록 */
.naming-doubt-block {
  background: rgba(26,46,16,0.04);
  border: 0.5px solid rgba(26,46,16,0.1);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.naming-doubt-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.naming-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.naming-chip {
  font-size: 11px;
  color: var(--ink3);
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.15);
  padding: 7px 12px;
  line-height: 1.5;
}
.naming-diff-strip {
  background: var(--forest);
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
}
.naming-diff-strip p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin: 0;
}
.naming-diff-strip strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* 리포트 featured 카드 */
.svc-featured-outer {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.14);
  border-top: 2px solid var(--gold);
  margin-top: 2px;
}
.service-card--featured-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: stretch;
  min-height: 360px;
}
.svc-featured-img {
  overflow: hidden;
}
.svc-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-featured-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-featured-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.svc-featured-body > p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.9;
}
.svc-featured-push {
  background: rgba(26,46,16,0.04);
  border: 0.5px solid rgba(200,164,80,0.2);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-push-price {
  display: flex;
  align-items: center;
  gap: 16px;
}
.svc-push-price-left, .svc-push-price-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.svc-push-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink4);
  text-transform: uppercase;
}
.svc-push-original {
  font-size: 14px;
  color: var(--ink4);
  text-decoration: line-through;
}
.svc-push-arrow {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.svc-push-sale {
  font-family: var(--roman);
  font-size: 26px;
  color: var(--forest);
  font-weight: 400;
}
.svc-push-badge {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.6;
}
.svc-push-badge strong { color: var(--forest); }
.svc-featured-btn {
  align-self: flex-start;
  padding: 13px 28px;
  font-size: 13px;
}
.svc-push-footnote {
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  margin-top: -6px;
}

/* ── FAQ 섹션 ── */
#faq { background: var(--cream-mid); padding: 100px 0; }

.faq-list {
  max-width: 720px;
  margin-top: 48px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--forest); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.9;
  padding-bottom: 20px;
  padding-right: 44px;
}

/* ── cta-final 섹션 ── */
#cta-final {
  background: var(--cream-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
#cta-final .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
}
.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
#cta-final .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
  text-align: center;
}
.cta-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 24px;
}
.cta-note {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.9;
  font-style: italic;
  text-align: center;
}

/* ── Footer 보완 ── */
.footer-brand-col {
  grid-column: 1;
}
.footer-nav-col { }

/* ── 예약 모달 클래스 (인라인 style에서 이동) ── */
.bk-svc-card {
  padding: 14px 16px;
  border: 1px solid rgba(196,162,74,0.2);
  background: var(--white);
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.bk-svc-card:hover {
  border-color: var(--forest);
  background: rgba(26,46,16,0.04);
}
.bk-svc-card.selected {
  border-color: var(--forest);
  background: rgba(26,46,16,0.07);
  box-shadow: inset 3px 0 0 var(--forest);
}
.bk-svc-featured {
  border-color: rgba(200,164,80,0.4);
  background: rgba(200,164,80,0.04);
}
.bk-svc-featured.selected {
  border-color: var(--gold);
  box-shadow: inset 3px 0 0 var(--gold);
}
.bk-step { }
.bk-time-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(200,164,80,0.35);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: var(--sans);
  transition: background .15s, color .15s, border-color .15s;
}
.bk-time-btn:hover {
  background: rgba(26,46,16,0.08);
  border-color: var(--forest);
}
.bk-time-btn.selected {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ── 비즈 모달 체크/라디오 ── */
.biz-check-label, .biz-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink2);
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid rgba(200,164,80,0.25);
  background: var(--white);
  transition: border-color .15s, background .15s;
  user-select: none;
}
.biz-check-label:hover, .biz-radio-label:hover {
  border-color: var(--forest);
  background: rgba(26,46,16,0.04);
}
.biz-check-label input, .biz-radio-label input {
  accent-color: var(--forest);
  margin: 0;
}
.biz-check { }

/* ── 플로팅 메뉴 ── */
.fm-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  max-width: 40px;
  transition: max-width .3s cubic-bezier(.4,0,.2,1);
  flex-direction: row-reverse;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.fm-item:last-child { border-bottom: none; }
.fm-item:hover { max-width: 160px; }
.fm-icon {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter .2s;
}
.fm-item:hover .fm-icon { filter: brightness(1.15); }
.fm-label {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 0 12px 0 10px;
  opacity: 0;
  transition: opacity .2s .1s;
  font-family: var(--sans);
}
.fm-item:hover .fm-label { opacity: 1; }
.fm-item:nth-child(1) .fm-label { background: var(--forest); height: 48px; display: flex; align-items: center; }
.fm-item:nth-child(2) .fm-label { background: #FEE500; height: 48px; display: flex; align-items: center; color: #391B1B; }
.fm-item:nth-child(3) .fm-label { background: var(--forest-mid); height: 48px; display: flex; align-items: center; }
.fm-item:nth-child(4) .fm-label { background: #888; height: 48px; display: flex; align-items: center; }
.fm-top { }

/* ── 예약 버튼 강제 오버라이드 ── */
.funnel-booking-btn {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: var(--white) !important;
  font-size: 15px !important;
  padding: 16px 28px !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
}
.funnel-booking-btn:hover {
  background: var(--forest-mid) !important;
  border-color: var(--forest-mid) !important;
}

/* ── 반응형 보완 ── */
@media (max-width: 960px) {
  
  
  
  .service-card--featured-wrap { grid-template-columns: 1fr; }
  .svc-featured-img { height: 220px; }
  .svc-featured-body { padding: 28px 24px; }
  
  .cta-btn-row { flex-direction: column; }
  .footer-brand-col, 
}
@media (max-width: 600px) {
  
  .svc-push-price { flex-direction: column; gap: 8px; }
  .naming-chips { gap: 4px; }
}

/* ── 모달 (예약/비즈) 공통 ── */
.bk-day-btn {
  text-align: center;
  font-size: 12px;
  padding: 6px 2px;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  color: var(--ink);
  border-radius: 2px;
  transition: background .15s, color .15s, border-color .15s;
  width: 100%;
  font-family: var(--sans);
}
.bk-day-btn:hover:not(:disabled) {
  background: rgba(26,46,16,0.08);
  border-color: rgba(26,46,16,0.2);
}
.bk-day-btn.selected {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.bk-day-btn:disabled { color: #ccc; cursor: default; }
.bk-day-btn.today {
  border-color: rgba(200,164,80,0.5);
  font-weight: 700;
}

/* ── OG meta 누락 보완 (HTML head에 추가 필요 — CSS 아님, 주석) ── */
/* <meta property="og:title" content="힐링네임 — 이름 안에 당신의 인생이 담겨 있습니다"> */
/* <meta property="og:description" content="21년 경력 이지윤 원장의 작명·개명·이름 인생상담"> */
/* <meta property="og:url" content="https://healingname.com"> */
/* <meta property="og:type" content="website"> */

/* ── hero-svc-ttl (히어로 서비스 항목 텍스트) ── */
.hero-svc-ttl {
  font-size: 13px;
  color: inherit;
  line-height: 1.5;
}

/* cta-final 내부 중앙 정렬 보완 */
#cta-final .section-label {
  justify-content: center;
}
#cta-final .section-title {
  text-align: center;
}
#cta-final .section-sub {
  text-align: center;
  margin: 0 auto 0;
  max-width: 480px;
}
#cta-final .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#cta-final .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* 인생 패턴 리포트 카드 — 모바일 반응형 */
@media (max-width: 760px) {
  .services-grid > div[style*="grid-column:1/-1"] {
    grid-template-columns: 1fr !important;
  }
  .services-grid > div[style*="grid-column:1/-1"] > div:first-child {
    min-height: 220px !important;
  }
  .services-grid > div[style*="grid-column:1/-1"] > div:last-child {
    padding: 28px 24px !important;
  }
}

/* ── 이름 검토 체크리스트 ── */
.naming-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.naming-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(160,120,64,0.1);
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
}
.naming-check-item:last-child {
  border-bottom: none;
}
.naming-check-icon {
  font-size: 13px;
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ════════════════════════════════════════
   모바일 반응형 보완 — 인라인 그리드 처리
════════════════════════════════════════ */
@media (max-width: 960px) {
  /* why-grid 3열 → 1열 */
  .why-grid { grid-template-columns: 1fr !important; }
  .why-card { padding: 28px 24px; }

  /* services-grid 2열 → 1열 */
  .services-grid { grid-template-columns: 1fr !important; }

  /* about-grid */
  .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* naming-pricing 3열 인라인 그리드 → 1열 */
  #naming-pricing > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* naming-process 6열 → 3열 */
  #naming-process div[style*="repeat(6,1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }

  /* naming-docs 3열 → 1열 */
  #naming-docs div[style*="repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* trust-strip-new flex wrap */
  .trust-strip-new { flex-wrap: wrap; }
  .trust-strip-item { flex: 1 1 45%; padding: 16px 12px; }

  /* footer-inner 4열 → 2열 */
  .footer-inner { grid-template-columns: 1fr 1fr !important; }

  /* 모달 */
  #booking-modal-inner,
  #biz-modal-inner {
    max-width: 100% !important;
    margin: 20px !important;
  }
}

@media (max-width: 600px) {
  /* naming-process 6열 → 2열 */
  #naming-process div[style*="repeat(6,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* naming-process 연결선 숨기기 */
  #naming-process div[style*="position:absolute"] {
    display: none !important;
  }

  /* naming-pricing 3열 → 1열 */
  #naming-pricing > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* naming-docs 체크리스트 */
  #naming-docs div[style*="repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* about stat 박스 */
  .about-stat-box { margin-top: 0; }
  .stat-row { padding: 14px 20px; }
  .stat-num { font-size: 22px; min-width: 70px; }

  /* why 카드 */
  .why-num { font-size: 28px; }

  /* trust strip → 2개씩 */
  .trust-strip-item { flex: 1 1 45%; }
  .trust-strip-num { font-size: 22px; }

  /* footer → 1열 */
  .footer-inner { grid-template-columns: 1fr !important; }

  /* 가격 카드 3열 → 1열 */
  #naming-pricing div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* hero */
  .hero-content { padding: 40px 6% 40px; }
  .hero-svc-list { margin-top: 24px; }
  #hero::before { display: none; }

  /* 카카오 CTA */
  #kakao-bar::after { display: none; }
  .kakao-btns { width: 100%; }
  .btn-kakao, .btn-naver { width: 100%; text-align: center; }

  /* 리뷰 배너 */
  .reviews-banner { height: 180px; }
  .reviews-banner-text { font-size: 18px; }

  /* 원장 소개 */
  .director-phil { font-size: 15px; }

  /* faq */
  .faq-list, .faq-wrap { max-width: 100%; }
  .faq-question { font-size: 13px; }

  /* 섹션 내부 패딩 */
  .section-inner { padding: 0 5%; }

  /* 모달 풀스크린 */
  #booking-modal-inner {
    max-width: 100% !important;
    margin: 10px !important;
    border-radius: 4px;
  }
}

/* ── FAQ open 클래스 기반 표시 (main.js 방식 지원) ── */
.faq-item.open .faq-answer,
.faq-item.open .faq-a {
  display: block !important;
}
.faq-item:not(.open) .faq-answer,
.faq-item:not(.open) .faq-a {
  display: none !important;
}

/* ── 진단 결과 모바일 반응형 ── */
@media (max-width: 600px) {
  /* 결과 박스 전체 */
  #result-box { font-size: 13px; }

  /* 수리 사격 4열 → 2열 */
  #suri-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* fortune-grid */
  #fortune-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* 결과 헤더 */
  .result-header { padding: 18px 16px; }
  .result-grade { font-size: 20px; }

  /* 결과 본문 */
  .result-body { padding: 16px; }
  .result-points li { font-size: 12px; }

  /* 긴급 블록 */
  .urgency-block { padding: 14px 16px; }
  .urgency-text { font-size: 13px; }
  .urgency-warning { font-size: 11px; }

  /* funnel CTA */
  .funnel-cta { padding: 18px 14px; }
  .funnel-label { font-size: 15px; }
  .funnel-cards { grid-template-columns: 1fr !important; gap: 6px; }
  .funnel-card { padding: 12px; }

  /* 결과 grade repeat */
  #result-grade-repeat { padding: 14px 16px; }
  #result-grade-repeat-badge { font-size: 20px; }

  /* 오행 행 */
  #ohang-row { overflow-x: auto; }

  /* 진단 폼 */
  .diag-form-box { padding: 20px 16px; }
  .diag-grid { gap: 32px; }

  /* concern-cta */
  #concern-cta { padding: 12px 14px; }
}

@media (max-width: 960px) {
  /* 수리 사격 4열 → 2열 */
  #suri-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* 진단 그리드 1열 */
  .diag-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

/* ── 진단 결과 표시 시 컨테이너 자동 확장 ── */
/* result-box가 display:block 되면 diag-container도 넓어짐 */
#result-box {
  /* 결과 박스 자체도 최대 폭 제한 없애기 */
  width: 100%;
}

/* 결과 나올 때 컨테이너 전체 폭 확장 */
.diag-container:has(#result-box[style*="block"]) {
  max-width: 960px;
}

/* 결과 내 수리사격 그리드 — PC에서 4열 유지 */
#suri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

/* funnel 카드 PC에서 3열 */
.funnel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 18px;
}

/* 결과 본문 여백 충분히 */
.result-body {
  background: var(--cream-mid);
  padding: 28px 32px;
  margin-bottom: 2px;
}

/* urgency 블록 */
.urgency-block {
  padding: 22px 32px;
}

/* funnel cta */
.funnel-cta {
  padding: 28px 32px;
}

/* ════════════════════════════════════════
   진단 결과 레이아웃 — PC 완전 재정의
════════════════════════════════════════ */

/* 결과 컨테이너 넓히기 */
#diagnosis .diag-container {
  max-width: 900px;
}

/* suri-grid — 한글/한자 두 섹션을 나란히 */
#suri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* suri-section-title */
.suri-section-title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,164,80,0.2);
  grid-column: 1 / -1;
}

/* suri-item — 각 격 카드 */
.suri-item {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.15);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.suri-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: 0.06em;
}
.suri-phase {
  font-size: 10px;
  color: var(--ink4);
  margin-bottom: 6px;
}
.suri-num {
  font-family: var(--roman);
  font-size: 28px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.suri-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 4px;
}
.suri-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.7;
}

/* suri-item 색상 클래스 */
.suri-item.good  { border-color: rgba(42,64,24,0.3); background: rgba(42,64,24,0.03); }
.suri-item.bad   { border-color: rgba(192,57,43,0.25); background: rgba(192,57,43,0.03); }
.suri-item.mid   { border-color: rgba(200,164,80,0.3); }
.suri-num.good   { color: var(--forest); }
.suri-num.bad    { color: #c0392b; }
.suri-num.mid    { color: var(--gold); }
.suri-name.good  { color: var(--forest); }
.suri-name.bad   { color: #c0392b; }
.suri-name.mid   { color: var(--gold); }

/* fortune-grid */
#fortune-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.fortune-item {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.15);
  padding: 14px 10px;
  text-align: center;
}
.fortune-label {
  font-size: 11px;
  color: var(--ink3);
  margin-bottom: 6px;
}
.fortune-stars {
  font-size: 14px;
  line-height: 1.4;
}
.fortune-score {
  font-size: 11px;
  color: var(--ink4);
  margin-top: 4px;
}

/* gua-cards */
.gua-section-title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,164,80,0.2);
}
.gua-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.gua-card {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.15);
  padding: 16px;
}
.gua-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.gua-card-label {
  font-size: 11px;
  color: var(--ink4);
  letter-spacing: 0.06em;
}
.gua-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}
.gua-card-name.bad  { color: #c0392b; }
.gua-card-name.good { color: var(--forest); }
.gua-card-hanja {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--ink4);
}
.gua-card-meaning {
  font-size: 12px;
  color: var(--ink2);
  font-weight: 500;
  margin-bottom: 6px;
}
.gua-card-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.7;
}
.gua-card-sym {
  font-size: 20px;
  letter-spacing: 2px;
}

/* ohang */
#ohang-row {
  margin-bottom: 20px;
}
.ohang-chip-diag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin: 3px;
  font-weight: 500;
}

/* 모바일 반응형 */
@media (max-width: 960px) {
  #suri-grid { grid-template-columns: 1fr; }
  #fortune-grid { grid-template-columns: repeat(3, 1fr); }
  .gua-cards { grid-template-columns: 1fr; }
  #diagnosis .diag-container { max-width: 100%; }
}
@media (max-width: 600px) {
  #fortune-grid { grid-template-columns: repeat(2, 1fr); }
  #suri-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   진단 결과 — 해석 내용 디자인 개선
════════════════════════════════════════ */

/* 결과 헤더 — 등급 표시 */
.result-header {
  background: var(--forest);
  padding: 36px 40px;
  margin-bottom: 2px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.result-header::before {
  content: '名';
  font-family: var(--serif);
  font-size: 160px;
  color: rgba(200,164,80,0.05);
  position: absolute;
  right: -20px;
  top: -20px;
  line-height: 1;
  pointer-events: none;
}
.result-title {
  font-family: var(--roman);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.result-grade {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.result-grade.stable  { color: var(--gold-light); }
.result-grade.caution { color: #F5C842; }
.result-grade.review  { color: #FF8A80; }

#result-grade-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* 결과 본문 */
.result-body {
  background: var(--cream);
  padding: 32px 40px;
  margin-bottom: 2px;
  border: 0.5px solid rgba(160,120,64,0.1);
}

/* suri-section-title */
.suri-section-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(200,164,80,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* suri-item 개선 */
.suri-item {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.15);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s;
}
.suri-item:hover { border-color: rgba(200,164,80,0.35); }
.suri-item.good  {
  border-color: rgba(26,46,16,0.25);
  border-left: 3px solid var(--forest);
}
.suri-item.bad   {
  border-color: rgba(192,57,43,0.2);
  border-left: 3px solid #c0392b;
}
.suri-item.mid   {
  border-color: rgba(200,164,80,0.3);
  border-left: 3px solid var(--gold);
}
.suri-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.suri-phase {
  font-size: 11px;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.suri-num {
  font-family: var(--roman);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2px;
}
.suri-num.good { color: var(--forest); }
.suri-num.bad  { color: #c0392b; }
.suri-num.mid  { color: var(--gold); }
.suri-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.suri-name.good { color: var(--forest); }
.suri-name.bad  { color: #c0392b; }
.suri-name.mid  { color: #8B6914; }
.suri-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.8;
  border-top: 0.5px solid rgba(160,120,64,0.1);
  padding-top: 8px;
  margin-top: 4px;
}

/* result-points 개선 */
.result-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border: 0.5px solid rgba(160,120,64,0.12);
}
.result-points li {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.85;
  padding: 12px 18px;
  border-bottom: 0.5px solid rgba(160,120,64,0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
}
.result-points li:last-child { border-bottom: none; }
.result-points li::before { display: none; }
.point-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* result-grade-repeat 개선 */
#result-grade-repeat {
  background: var(--forest);
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 2px;
  border: none;
}
#result-grade-repeat > div:first-child {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  text-transform: uppercase;
}
#result-grade-repeat-badge {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-light) !important;
  margin-bottom: 10px;
}
#result-grade-repeat-msg {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}

/* urgency-block 개선 */
.urgency-block {
  background: rgba(200,164,80,0.07);
  border: 0.5px solid rgba(200,164,80,0.2);
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin-bottom: 2px;
}
.urgency-text {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 12px;
}
.urgency-text strong { color: var(--forest); }
.urgency-warning {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.9;
  padding-top: 12px;
  border-top: 0.5px solid rgba(200,164,80,0.15);
}

/* gua 섹션 개선 */
.gua-section-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(200,164,80,0.25);
}
.gua-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}
.gua-card {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.12);
  padding: 20px 18px;
}
.gua-card.bad  { border-top: 2px solid #c0392b; }
.gua-card.good { border-top: 2px solid var(--forest); }
.gua-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.gua-card-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.gua-card-sym {
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold);
}
.gua-card-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}
.gua-card-name.bad  { color: #c0392b; }
.gua-card-hanja {
  font-size: 11px;
  color: var(--ink4);
  margin-bottom: 10px;
}
.gua-card-meaning {
  font-size: 13px;
  color: var(--ink2);
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(160,120,64,0.1);
}
.gua-card-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.85;
}

/* fortune-item 개선 */
.fortune-item {
  background: var(--white);
  border: 0.5px solid rgba(160,120,64,0.12);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.fortune-label {
  font-size: 11px;
  color: var(--ink3);
  letter-spacing: 0.04em;
}
.fortune-stars {
  font-size: 16px;
  line-height: 1;
}
.fortune-score {
  font-family: var(--roman);
  font-size: 13px;
  color: var(--gold);
}

/* ohang-chip */
.ohang-chip-diag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 12px;
  margin: 3px;
  font-weight: 500;
  border: 0.5px solid rgba(160,120,64,0.2);
  background: var(--white);
}

/* 모바일 */
@media (max-width: 600px) {
  .result-header { padding: 24px 20px; }
  .result-body { padding: 20px; }
  .urgency-block { padding: 18px 20px; }
  #result-grade-repeat { padding: 20px; }
  .gua-cards { grid-template-columns: 1fr; }
  #fortune-grid { grid-template-columns: repeat(2, 1fr); }
}
