/* faq.css — non-critical (below-fold + interaction) */
/* Critical CSS (variables, reset, header, hero) inlined w faq.html */

.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 24px auto;
}

/* FAQ CONTENT */
.faq-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.faq-category { margin-bottom: 64px; }

.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.faq-category-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  margin-top: 8px;
}

.faq-list { }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.1); }
.faq-q {
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 1.3rem; transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.85;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* CTA */
.faq-cta {
  text-align: center;
  padding: 80px 48px;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.faq-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}
.faq-cta p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  transition: opacity .3s, transform .3s;
}
.btn-gold:hover { opacity: 0.85; transform: translateY(-2px); }

/* FOOTER */
.footer-new {
  padding: 64px 48px 40px;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; max-width: 1100px; margin: 0 auto 48px; flex-wrap: wrap; }
.footer-brand .logo-footer { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.footer-brand .logo-footer span { color: var(--text); font-weight: 400; }
.footer-brand p { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.82rem; color: var(--text-dim); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-copy { font-size: 0.74rem; color: var(--text-dim); }
.footer-bottom-data { font-size: 0.72rem; color: rgba(138,128,112,0.6); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 60px; }
  .faq-content { padding: 48px 24px 80px; }
  .faq-cta { padding: 60px 24px; }
  .footer-top { flex-direction: column; }
  .footer-new { padding: 48px 24px 32px; }
}
