main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 3rem 6rem;
}

/* ── Page title ────────────────────────── */
.faq-page-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── Two-column layout ─────────────────── */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Section header ────────────────────── */
.faq-section-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}

.faq-section-rule {
  height: 1px;
  background: var(--text);
  margin-bottom: 0;
}

/* ── FAQ item ──────────────────────────── */
.faq-item {
  margin-top: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  padding: 1.1rem 0;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.faq-icon {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1.4;
  transition: transform 0.2s;
}

/* ── Answer panel ──────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 1rem;
}

.faq-answer p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

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

.faq-answer ul {
  list-style: none;
  margin-top: 0.4rem;
}

.faq-answer ul li {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  padding-left: 1.2rem;
  position: relative;
}

.faq-answer ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ── Separator between items ───────────── */
.faq-rule {
  height: 1px;
  background: var(--text);
  opacity: 0.25;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 720px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  main { padding: 2.5rem 1.5rem 4rem; }
}
