/* =============================================
   FAQ PAGE STYLES
   ============================================= */

/* Hero */
.faq-hero {
  background: var(--secondary);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(228,198,160,0.04) 0deg, transparent 3deg, transparent 30deg);
  pointer-events: none;
}

.faq-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.faq-hero .section-eyebrow { justify-content: center; color: rgba(228,198,160,0.5); margin-bottom: 20px; }

.faq-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1.1;
  margin-bottom: 20px;
}

.faq-hero-title em { color: var(--primary); }

.faq-hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(228,198,160,0.65);
  margin-bottom: 44px;
}

.faq-category-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.faq-cat-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(228,198,160,0.6);
  background: rgba(228,198,160,0.08);
  border: 1px solid rgba(228,198,160,0.15);
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.faq-cat-btn:hover, .faq-cat-btn.active {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

/* FAQ Page wrapper */
.faq-page { background: var(--bg); }

/* FAQ Section */
.faq-section { padding: 80px 40px; }
.faq-section-alt { background: var(--white); }

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

.faq-section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.faq-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.faq-section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
}

/* FAQ Items */
.faq-list { display: flex; flex-direction: column; }

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

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

.faq-q:hover { color: var(--secondary); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-dark);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--secondary); }

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

.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }

.faq-a p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.faq-a p:last-child { margin-bottom: 0; }

.faq-a ul {
  margin: 12px 0 12px 0;
  padding-left: 0;
  list-style: none;
}

.faq-a ul li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.faq-a ul li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-size: 9px;
  top: 9px;
}

.faq-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* CTA Strip */
.faq-cta-strip {
  background: var(--secondary);
  padding: 80px 40px;
  text-align: center;
}

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

.faq-cta-strip h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.faq-cta-strip p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(228,198,160,0.65);
  margin-bottom: 36px;
}

.faq-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.faq-cta-strip .btn-ghost {
  color: var(--primary-light);
  border-color: rgba(228,198,160,0.35);
}

.faq-cta-strip .btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero { padding: 100px 20px 60px; }
  .faq-section { padding: 60px 20px; }
  .faq-q { font-size: 1.1rem; padding: 20px 0; }
  .faq-cta-strip { padding: 60px 20px; }
}
