.faq {
  background: var(--onyx-bg);
  padding: 64px 24px;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: left;
}
.faq__eyebrow {
  color: var(--onyx-gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.faq__title {
  font-family: var(--font-michroma);
  font-size: 40px;
  color: var(--onyx-text);
  line-height: 1.2;
}

.faq__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--onyx-card);
  border: 1px solid var(--onyx-border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  transition: border-color 0.25s ease;
}
.faq-item.is-open {
  border-color: rgba(212, 175, 55, 0.5);
}

.faq-item__q {
  background: transparent;
  border: 0;
  color: var(--onyx-text);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-item__icon::before {
  width: 14px;
  height: 2px;
}
.faq-item__icon::after {
  width: 2px;
  height: 14px;
}
.faq-item.is-open .faq-item__icon {
  background: var(--onyx-gold);
  border-color: var(--onyx-gold);
}
.faq-item.is-open .faq-item__icon::before {
  background: #000;
}
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  color: var(--onyx-muted);
  font-family: var(--font-montserrat);
  font-size: 15px;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.3s ease,
    margin-top 0.3s ease;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  margin-top: 12px;
}

@media (max-width: 1023px) {
  .faq__title {
    font-size: 32px;
  }
  .faq__columns {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 48px 16px;
  }
  .faq__title {
    font-size: 24px;
  }
  .faq-item {
    padding: 16px 20px;
  }
  .faq-item__q {
    font-size: 16px;
  }
}
