/* =========================================
   FAQ – Seitenspezifische Styles
   ========================================= */

.faq-hero {
  background: var(--color-beige);
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid #e8ddd0;
}

.faq-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-dark-green);
  line-height: 1.1;
}

/* --- FAQ LISTE --- */
.faq-content {
  background: var(--color-cream);
  padding: 4rem 2rem 5rem;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* --- ITEM (details/summary) --- */
.faq-item {
  border-bottom: 1px solid #e0d5c5;
}

.faq-item:first-child {
  border-top: 1px solid #e0d5c5;
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-green);
  line-height: 1.3;
  user-select: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-mid-green);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--color-mid-green);
}

.faq-answer {
  padding: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- ZITAT --- */
.faq-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-green);
  border-left: 3px solid var(--color-mid-green);
  padding-left: 1.2rem;
  margin: 0.5rem 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.faq-quote cite {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  font-style: normal;
}

/* --- CTA --- */
.faq-cta {
  background: var(--color-dark-green);
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.faq-cta .hero-tagline { color: rgba(255,255,255,0.75); }
.faq-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .faq-hero h1 { font-size: 2.2rem; }
  .faq-question { font-size: 1.05rem; }
  .faq-cta h2 { font-size: 1.6rem; }
}
