/* ============================================================
   STHERB — FAQ Redesign
   Scoped to .stherb-redesign-faq (body class on
   template-faq-redesign.php). Reuses design tokens + base classes
   (.sr-container, .sr-btn) from homepage-redesign.css, which is
   always enqueued first. No accent override — standard blue
   (--accent), matches the mockup's own tokens.
   ============================================================ */

/* ---- Hero ---- */
.sr-faq-hero {
  background: var(--dark);
  padding: 80px 0 64px;
  text-align: center;
}

.sr-faq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8995B;
  margin-bottom: 20px;
}

.sr-faq-eyebrow-rule {
  width: 30px;
  height: 1.5px;
  background: #C8995B;
}

.stherb-redesign-home .sr-faq-hero h1 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: #fff;
}

.sr-faq-hero-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #c7cfd6;
  font-size: 16px;
  line-height: 1.75;
}

/* ---- FAQ accordion list ---- */
.sr-faq-list-section {
  padding: 64px 0 76px;
}

.sr-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.sr-faq-item {
  border-bottom: 1px solid var(--border);
}

.sr-faq-item:first-child {
  border-top: 1px solid var(--border);
}

.sr-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-transform: none;
  padding: 22px 4px;
  text-align: left;
  font-family: 'Mulish', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.sr-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

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

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

.sr-faq-a p {
  margin: 0 0 22px;
  padding: 0 4px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- CTA ---- */
.sr-faq-cta-section {
  padding: 0 0 80px;
}

.sr-faq-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 6px 18px rgba(34, 30, 24, 0.04);
}

.sr-faq-cta-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.sr-faq-cta-card h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.3px;
}

.sr-faq-cta-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 34em;
}

.sr-faq-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.sr-faq-wa-btn svg {
  width: 18px;
  height: 18px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sr-faq-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .sr-faq-hero { padding: 56px 0 48px; }

  .stherb-redesign-home .sr-faq-hero h1 { font-size: 34px; }

  .sr-faq-hero-sub { font-size: 14.5px; }

  .sr-faq-list-section { padding: 48px 0 56px; }

  .sr-faq-q { font-size: 15px; padding: 18px 2px; }

  .sr-faq-cta-section { padding: 0 0 56px; }

  .sr-faq-cta-card { padding: 32px 24px; }

  .sr-faq-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .sr-faq-cta-actions .sr-btn {
    width: 100%;
    justify-content: center;
  }
}
