/* ─── PAGE BANNER ────────────────────────────────── */
.page-banner {
  height: 380px;
  background: url('/images/lib/faq-hero-1800w.webp') center 50%/cover no-repeat;
}

.page-banner::after {
  background: linear-gradient(
    to right,
    rgba(10,24,16,0.82) 0%,
    rgba(10,24,16,0.60) 40%,
    rgba(10,24,16,0.22) 70%,
    rgba(10,24,16,0.05) 100%
  );
}

/* ─── FAQ INTRO ──────────────────────────────────── */
.faq-intro {
  background: var(--linen);
  padding: 72px 80px 56px;
  max-width: 860px;
}

.faq-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 20px;
}

/* ─── FAQ SECTION ────────────────────────────────── */
.faq-section { background: var(--linen); padding: 0 80px 88px; }

.faq-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 56px;
}

.faq-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.35), rgba(201,168,76,0));
}

.faq-divider-line.right {
  background: linear-gradient(90deg, rgba(201,168,76,0), rgba(201,168,76,0.35));
}

/* ─── FAQ CATEGORY ───────────────────────────────── */
.faq-category { margin-bottom: 60px; }
.faq-category:last-child { margin-bottom: 0; }

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.faq-category-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-category-icon svg { width: 18px; height: 18px; }

.faq-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.5px;
}

/* ─── ACCORDION ──────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.15); }
.faq-item:first-of-type { border-top: 1px solid rgba(201,168,76,0.15); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  transition: color 0.2s;
}

.faq-question:hover .faq-question-text,
.faq-item.open .faq-question-text { color: var(--green-deep); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.35s;
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-toggle svg { width: 12px; height: 12px; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner { padding-bottom: 28px; }

.faq-answer-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a { color: var(--green-mid); text-underline-offset: 3px; }
.faq-answer-inner a:hover { color: var(--green-deep); }

/* ─── CTA SECTION ────────────────────────────────── */
.faq-cta-section {
  background: var(--cream-dark);
  padding: 80px 80px 88px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.faq-cta-section .section-title { max-width: 560px; margin: 0 auto; }

.faq-cta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 520px;
  margin: 24px auto 40px;
}

.faq-cta-script {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
  margin-bottom: 24px;
}

/* ─── CONTACT SECTION OVERRIDE ───────────────────── */
.contact-section { padding: 14px 80px; gap: 32px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .faq-intro { padding: 56px 24px 48px; }
  .faq-section { padding: 0 24px 64px; }
  .faq-cta-section { padding: 56px 24px; }
}
