/* ─── FAQ Hero ─────────────────────────────────────────── */
.faq-hero {
  background: var(--ink);
  padding: 160px 80px 80px;
  text-align: center;
}

.faq-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.faq-hero .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}

.faq-sub {
  font-size: 17px;
  color: var(--ash);
  line-height: 1.65;
}

/* ─── Q&A List ─────────────────────────────────────────── */
.faq-list {
  background: var(--cream);
  padding: var(--space-lg) 80px;
}

.faq-list-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 40px 0;
}

.faq-list-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-list-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
}

.faq-list-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CTA Band ─────────────────────────────────────────── */
.faq-cta-band {
  background: var(--ink);
  padding: 80px;
}

.faq-cta-band .cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-band .cta-band-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 36px;
}

.faq-cta-band .cta-btn {
  display: inline-block;
  background: var(--copper);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.1s ease;
}

.faq-cta-band .cta-btn:hover {
  background: #d4853a;
  transform: translateY(-2px);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-hero { padding: 120px 32px 60px; }
  .faq-list, .faq-cta-band { padding-left: 32px; padding-right: 32px; }
}
