/* ── FAQ ── */
.faq-section {
  padding: 100px 80px;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}

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

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--oat-darker);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--oat-darker);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--oat);
}

.faq-q.open {
  background: var(--oat);
  color: var(--terracotta);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--oat-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  font-style: normal;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-a p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

.faq-a strong {
  color: var(--charcoal);
  font-weight: 700;
}