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

/* Hero */
.faq-hero {
  min-height: 28vh;
  background:
    linear-gradient(135deg, rgba(26,23,20,0.95) 0%, rgba(45,41,36,0.9) 100%),
    repeating-conic-gradient(var(--stone-700) 0% 25%, transparent 0% 50%) 0 0 / 60px 60px;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 3rem;
}

.faq-hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-content .overline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.faq-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-hero-content .tagline {
  font-size: 1rem;
  color: var(--stone-400);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* Sticky section nav */
.faq-nav-bar {
  background: var(--stone-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 2rem;
  position: sticky;
  top: 76px;
  z-index: 100;
}

.faq-nav-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(184,146,63,0.3);
  color: var(--stone-300);
  text-decoration: none;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.faq-nav-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.faq-nav-link.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--stone-900);
}

/* Main wrapper */
.faq-main {
  background: var(--cream);
}

/* Section */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--stone-200);
}

.faq-section:last-of-type {
  border-bottom: none;
}

.faq-section-header {
  margin-bottom: 2.5rem;
}

.faq-section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(184,146,63,0.1);
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.faq-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.faq-section-header p {
  font-size: 0.95rem;
  color: var(--stone-500);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}

/* FAQ accordion items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--stone-200);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(184,146,63,0.4);
}

.faq-item summary {
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--stone-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  background: white;
  transition: background 0.15s ease, color 0.15s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--stone-50);
  color: var(--stone-900);
}

.faq-item[open] summary {
  color: var(--stone-900);
  border-bottom: 1px solid var(--stone-100);
}

.faq-answer {
  padding: 1.2rem 1.4rem 1.4rem;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--stone-600);
  line-height: 1.75;
  font-weight: 300;
}

.faq-answer p strong {
  color: var(--stone-800);
  font-weight: 600;
}

.faq-answer p a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer p a:hover {
  color: var(--gold);
}

.faq-answer ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-answer ul li {
  font-size: 0.91rem;
  color: var(--stone-600);
  line-height: 1.65;
  font-weight: 300;
}

.faq-answer ul li strong {
  color: var(--stone-800);
  font-weight: 600;
}

/* CTA section */
.faq-cta {
  background: var(--stone-900);
  padding: 5rem 2rem;
  text-align: center;
}

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

.faq-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.faq-cta p {
  font-size: 1rem;
  color: var(--stone-400);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.faq-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 640px) {
  .faq-hero { padding-top: 7rem; }
  .faq-section { padding: 3rem 1.25rem; }
  .faq-item summary { padding: 0.9rem 1rem; font-size: 0.9rem; }
  .faq-answer { padding: 1rem 1rem 1.25rem; }
  .faq-nav-bar { position: static; }
}
