/* ============================================================
   faq.css
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.faq-hero {
  background: var(--black);
  padding: 56px 0 48px;
  text-align: center;
}
.faq-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(165,133,66,.5);
  color: rgba(165,133,66,.9);
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.faq-hero__title {
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
  font-family: 'Georgia', serif;
}
.faq-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.faq-hero__accent { color: var(--gold); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.page-section--faq {
  background: #ebebeb;
  padding: 0 !important;
}
.faq-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  padding: 0 0 80px;
}

/* ── NAV CATÉGORIES ──────────────────────────────────────── */
.faq-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  padding: 0 56px;
  margin-bottom: 0;
}
.faq-nav__item {
  padding: 20px 20px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.faq-nav__item:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── SECTIONS ────────────────────────────────────────────── */
.faq-section {
  padding: 48px 56px 0;
}
.faq-section__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ── ACCORDÉON ───────────────────────────────────────────── */
.faq-accordion { display: flex; flex-direction: column; }

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

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.5;
  transition: color .2s;
}
.faq-item__question:hover { color: var(--gold); }
.faq-item--open .faq-item__question { color: var(--gold); }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.faq-item--open .faq-item__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.faq-item__answer {
  padding: 0 44px 20px 0;
}
.faq-item__answer p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}
.faq-link {
  color: var(--gold);
  text-decoration: none;
}
.faq-link:hover { text-decoration: underline; }

/* ── CTA ─────────────────────────────────────────────────── */
.faq-cta {
  margin: 56px 56px 0;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.faq-cta__inner {
  padding: 48px;
  text-align: center;
}
.faq-cta__icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: .6;
}
.faq-cta__title {
  font-size: 22px;
  font-weight: 400;
  font-family: 'Georgia', serif;
  color: var(--black);
  margin-bottom: 8px;
}
.faq-cta__desc {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 24px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .faq-hero__title { font-size: 28px; }
  .faq-section { padding: 40px 24px 0; }
  .faq-nav { padding: 0 24px; }
  .faq-cta { margin: 40px 24px 0; }
  .faq-cta__inner { padding: 32px 24px; }
  .faq-item__answer { padding-right: 0; }
}
