/* ── FAQ page styles ───────────────────────────────────────────────────────── */

/* HERO */
.faq-hero { border-bottom: 2px solid var(--rule); display: grid; grid-template-columns: 1fr 1fr; }
.faq-hero__left { padding: 72px 64px; border-right: 2px solid var(--rule); }
.faq-hero__right {
  padding: 72px 64px; background: var(--bg-dark); color: #f5f1ea;
  display: flex; flex-direction: column; justify-content: center;
}
.faq-hero__title { font-size: 64px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; }
.faq-hero__sub { font-size: 17px; color: var(--ink-mid); line-height: 1.6; max-width: 380px; }
.faq-hero__right p { font-size: 15px; color: rgba(245,241,234,0.55); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.faq-hero__right p:last-child { margin-bottom: 0; }
.faq-hero__right strong { color: #f5f1ea; }

/* JUMP NAV */
.faq-jump {
  border-bottom: 2px solid var(--rule); background: var(--bg);
  position: sticky; top: 64px; z-index: 50;
}
.faq-jump__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: flex; align-items: stretch; gap: 0; overflow-x: auto;
}
.faq-jump__item {
  padding: 16px 24px; font-size: 13px; font-weight: 600;
  color: var(--ink-mid); text-decoration: none;
  border-right: 1px solid rgba(17,17,17,0.1); white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.faq-jump__item:hover { color: var(--ink); background: rgba(17,17,17,0.04); }
.faq-jump__item:first-child { padding-left: 0; }

/* FAQ SECTIONS */
.faq-section-block { border-bottom: 2px solid var(--rule); }
.faq-section-header {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
}
.faq-section-label { padding: 48px 0 48px 64px; border-right: 2px solid var(--rule); }
.faq-section-label h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.faq-section-label p { font-size: 13px; color: var(--ink-low); line-height: 1.6; max-width: 180px; }
.faq-section-items { padding: 32px 64px; max-width: 100%; }

/* CONTACT STRIP */
.contact-strip { background: var(--bg-dark); color: #f5f1ea; }
.contact-strip__inner {
  max-width: var(--max); margin: 0 auto; padding: 64px;
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
}
.contact-strip__text h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.contact-strip__text p { font-size: 15px; color: rgba(245,241,234,0.55); line-height: 1.6; max-width: 480px; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .faq-hero { grid-template-columns: 1fr; }
  .faq-hero__left { border-right: none; border-bottom: 2px solid var(--rule); padding: 48px 24px; }
  .faq-hero__right { padding: 48px 24px; }
  .faq-hero__title { font-size: 48px; }
  .faq-section-header { grid-template-columns: 1fr; }
  .faq-section-label { border-right: none; border-bottom: 1px solid rgba(17,17,17,0.08); padding: 32px 24px; }
  .faq-section-items { padding: 24px; }
  .faq-jump__inner { padding: 0 24px; }
  .contact-strip__inner { flex-direction: column; align-items: flex-start; padding: 48px 24px; }
}
