/* ── FAQ 히어로 헤더 ── */
.faq-hero {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,32,0.88) 0%, rgba(26,37,56,0.75) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px 36px;
  text-align: center;
}
.faq-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 8px;
}
.faq-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.08em;
  color: #F5F2EC;
  margin: 0 0 12px;
}
.faq-hero-divider {
  width: 32px;
  height: 1px;
  background: #C9A96E;
  margin: 0 auto 10px;
}
.faq-hero-desc {
  font-size: 13px;
  color: rgba(245,242,236,0.55);
  line-height: 1.7;
}

/* ── 콘텐츠 영역 ── */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 120px;
}

/* 빈 상태 */
.faq-empty {
  text-align: center;
  color: var(--text-on-light-mid, #6f809a);
  font-size: 14px;
  padding: 60px 0;
}

/* 아이템 */
.faq-item {
  border-bottom: 1px solid var(--border, #d8ccb4);
}
.faq-item:first-child {
  border-top: 1px solid var(--border, #d8ccb4);
}

/* 질문 버튼 */
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover .faq-q-text { color: var(--navy, #1a2538); }

.faq-q-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold, #C9A96E);
  flex-shrink: 0;
  margin-top: 1px;
  width: 16px;
}
.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink, #1a2538);
  line-height: 1.6;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-deep, #B8922E);
  margin-top: 2px;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

/* 답변 */
.faq-a {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  display: flex;
  gap: 16px;
  padding: 0 4px 24px;
}
.faq-a-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #1a2538);
  flex-shrink: 0;
  width: 16px;
}
.faq-a-content {
  font-size: 14px;
  color: var(--text-on-light-mid, #6f809a);
  line-height: 1.9;
  letter-spacing: -0.005em;
}
.faq-a-content p { margin: 0 0 8px; }
.faq-a-content p:last-child { margin-bottom: 0; }

/* 열린 상태 배경 강조 */
.faq-item.is-open .faq-q {
  /* subtle highlight */
}
.faq-item.is-open .faq-q-text {
  color: var(--navy, #1a2538);
}
