/* ─── FAQ Page Hero ─── */
.faq-page-hero {
  background: var(--espresso);
  padding: 96px 40px 80px;
  text-align: center;
}

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

.faq-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  font-weight: 500;
  margin-bottom: 20px;
}

.faq-page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}

.faq-page-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--card);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

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

.faq-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 40px;
}

/* ─── FAQ Accordion ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--espresso);
  font-weight: 500;
  text-align: left;
  gap: 16px;
}

.faq-question span { flex: 1; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--olive);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: #6B5A47;
  line-height: 1.7;
}

.faq-answer a { color: var(--olive); }

/* ─── FAQ Closing CTA ─── */
.faq-cta {
  background: var(--espresso);
  padding: 96px 40px;
  text-align: center;
}

.faq-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.faq-cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  font-weight: 500;
  margin-bottom: 16px;
}

.faq-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.faq-cta-body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.faq-cta-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .faq-page-hero { padding: 72px 24px 64px; }
  .faq-section { padding: 56px 24px; }
  .faq-question { padding: 16px 0; gap: 12px; }
  .faq-cta { padding: 72px 24px; }
}

@media (max-width: 520px) {
  .faq-page-hero { padding: 56px 20px 52px; }
  .faq-section { padding: 40px 20px; }
  .faq-question { font-size: 0.9rem; }
  .faq-cta { padding: 56px 20px; }
}
