.faq {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

/* Asymmetric — intro left, list right */
.faq__container {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 100px;
}
.faq__intro h2 { margin-top: 18px; max-width: 14ch; }
.faq__intro p { margin-top: 18px; font-size: 0.98rem; }
.faq__intro a { color: var(--mythic-deep); border-bottom: 1px solid currentColor; }

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--line-2);
  transition: background .25s var(--ease);
}
.faq__item:first-child { border-top: 1px solid var(--line-2); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item:hover summary { color: var(--mythic-deep); }

.faq__plus {
  position: relative;
  width: 18px; height: 18px;
  flex: none;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%; top: 50%;
}
.faq__plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: transform .35s var(--ease); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__item p {
  padding: 0 0 24px;
  max-width: 60ch;
  font-size: 0.98rem;
  line-height: 1.6;
  animation: faqIn .35s var(--ease);
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .faq__container { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
}
