/* =============================================
   FAQ Page
   ============================================= */

/* Hero subtitle */
.page-hero-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
}

/* Page section */
.faq-page {
  padding: 4rem 0 5rem;
  background: #F5F2EF;
}
.faq-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section titles */
.faq-section-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 300 !important;
  color: #1a1a1a !important;
  text-align: center;
  margin: 0 0 2rem !important;
  line-height: 1.2 !important;
}
.faq-section-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 3rem 0;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Question button */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question:focus-visible {
  outline: 2px solid #C78665;
  outline-offset: -2px;
  border-radius: 12px;
}
.faq-question-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Plus/minus icon */
.faq-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background: #F5F2EF;
  border-radius: 50%;
}
.faq-icon-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #835E38;
  border-radius: 1px;
  transition: transform 0.3s ease;
}
.faq-icon-h {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon-v {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-icon-v {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer-inner p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.faq-answer-inner a {
  color: #835E38;
  text-decoration: underline;
}
.faq-answer-inner a:hover {
  color: #C78665;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 567px) {
  .faq-page {
    padding: 2.5rem 0 3rem;
  }
  .faq-container {
    padding: 0 1.25rem;
  }
  .faq-section-title {
    font-size: 1.6rem !important;
  }
  .faq-question {
    padding: 1rem 1.25rem;
  }
  .faq-question-text {
    font-size: 0.75rem;
  }
  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
  }
}
