.faq-section {
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 9vw;
  background: #fff;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.faq-intro h1,
.faq-intro h2 {
  margin: 20px 0;
  font: 400 clamp(2.8rem, 4.3vw, 4.8rem)/1 Italiana, serif;
}

.faq-page .nav {
  position: relative;
  background: var(--deep);
}

.faq-page .nav a[aria-current="page"] {
  color: var(--gold);
}

.faq-page .faq-section {
  min-height: calc(100svh - 90px);
}

.faq-intro > p:not(.kicker) {
  max-width: 560px;
  color: #667477;
  line-height: 1.8;
}

.faq-contact {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.faq-contact a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}

.faq-contact a:hover,
.faq-contact a:focus-visible {
  color: #9a782c;
}

.faq-contact small {
  color: #7b878a;
  font-size: .62rem;
  letter-spacing: .14em;
}

.faq-contact strong {
  text-align: right;
  font-size: .78rem;
  font-weight: 500;
}

.faq-social-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq-social-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
}

.faq-social-fill {
  fill: var(--gold);
  stroke: none;
}

.faq-list {
  border-top: 1px solid #bdc7c7;
}

.faq-list details {
  border-bottom: 1px solid #bdc7c7;
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  list-style: none;
  font: 400 1.35rem/1.35 Italiana, serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: var(--gold);
  font: 300 1.6rem Manrope, sans-serif;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 52px 25px 0;
  color: #667477;
  font-size: .92rem;
  line-height: 1.8;
}

@media (min-width: 901px) {
  .nav nav {
    gap: clamp(12px, 1.8vw, 28px);
    font-size: .74rem;
  }
}

@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 520px) {
  .faq-contact a {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .faq-contact strong {
    text-align: left;
  }

  .faq-list summary {
    font-size: 1.2rem;
  }
}
