.faq-section {
  --fq-ink: var(--heading-color, #1f1b16);
  --fq-body: var(--default-color, #4a4038);
  --fq-accent: #6e1423;
  --fq-gold: #a6813d;
  --fq-surface: #f6f2ec;
  --fq-line: rgba(31, 27, 22, 0.12);

  background: var(--background-color, #ffffff);
  padding-block: clamp(64px, 9vw, 112px);
}

.faq__inner {
  max-width: 800px;
}

.faq-category {
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--fq-accent);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fq-line);
}

.faq-category:first-of-type {
  margin-top: 8px;
}

.faq-item {
  border: 1px solid var(--fq-line);
  border-radius: 6px;
  margin-bottom: 12px;
  background-color: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--fq-accent);
  box-shadow: 0 4px 14px rgba(31, 27, 22, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fq-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--fq-surface);
  color: var(--fq-accent);
}

.faq-question:focus-visible {
  outline: 3px solid var(--fq-gold);
  outline-offset: -3px;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--fq-accent);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  background-color: #ffffff;
}

.faq-answer-content {
  padding-bottom: 18px;
  color: var(--fq-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer-content p {
  margin: 0 0 10px;
}

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

.faq-answer-content ul {
  margin: 8px 0;
  padding-left: 20px;
}

.faq-answer-content li {
  margin-bottom: 4px;
}

.faq-answer-content a {
  color: var(--fq-accent);
  text-decoration: underline;
}

.faq-answer-content a:hover {
  color: var(--fq-gold);
}

.faq-note {
  font-style: italic;
  color: var(--fq-body);
  opacity: 0.75;
  font-size: 0.9em;
  margin-top: 8px;
}