.faq {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(0.75rem, 2.5vw, 2rem)
    clamp(2.5rem, 5vw, 3.5rem);
}

.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 20rem;
  position: sticky;
  top: 1.5rem;
}

.faq__label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(20, 20, 20, 0.42);
}

.faq__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.faq__text {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(20, 20, 20, 0.55);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.faq__item {
  overflow: hidden;
  border-radius: 1.15rem;
  background: #ecece8;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  border: none;
  background: none;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}

.faq__mark {
  flex-shrink: 0;
  color: rgba(20, 20, 20, 0.35);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__mark {
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer p {
  padding: 0 1.25rem 1.2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(20, 20, 20, 0.55);
  max-width: 32rem;
}

@media (max-width: 820px) {
  .faq {
    padding: 0.55rem;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0.85rem 2.5rem;
  }

  .faq__intro {
    position: static;
    max-width: none;
  }

  .faq__item {
    border-radius: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__mark,
  .faq__answer {
    transition: none;
  }
}
