/* WCAG contrast and motion-preference refinements. */
.benefit-grid article > span,
.plan:not(.plan-featured) li::before {
  color: #765f00;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; transform: none; }
}

/* Decorative off-canvas effects must never widen the document. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.hero {
  overflow: clip;
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
}

.faq h2 {
  font-size: clamp(53px, 6.2vw, 77px);
  letter-spacing: -.03em;
}

.faq h2 em {
  color: #a08000;
}

.faq .kicker {
  color: #6b5700;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}

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

.faq summary::after {
  color: #765f00;
  content: '+';
  font-family: var(--body);
  font-size: 24px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  max-width: 610px;
  margin: -3px 0 21px;
  color: #606060;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq summary {
    font-size: 22px;
  }
}
