#faq { padding: 7rem 0; background: var(--bg2); }

.faqg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.faql { display: flex; flex-direction: column; }

.faqi { border-bottom: 1px solid var(--brd); }

.faqq {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  gap: 1rem;
}
.faqq span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--tx);
  transition: color .3s;
}
.faqq:hover span:first-child { color: var(--gold); }

.faqico { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faqi.op .faqico { transform: rotate(45deg); }

.faqa {
  font-size: .88rem;
  font-weight: 200;
  line-height: 1.9;
  color: var(--txm);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faqa a { color: var(--gold); text-decoration: none; }
.faqa a:hover { text-decoration: underline; }
.faqi.op .faqa { max-height: 400px; padding-bottom: 1.5rem; }
