/* ------------------faq-------------------- */
.faq-section {
  padding: 100px 8%;
  background-color: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-text {
  h2.faq-title {
    font-family: var(--header-font), serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
  }
  p.faq-desc {
    font-family: var(--accent-font), serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 300;
  }
}
.faq-accordion {
  width: 100%;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--header-font), serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  font-family: var(--general-font), serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 48px 5%;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .faq-q {
    font-size: 14px;
    padding: 18px 0;
  }
}
