/* FAQ page. Same grammar as the service pages: a hero, then the question list
   as a single numbered section built on the two-column split. */

.faq-hero {
  padding-top: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  background: radial-gradient(circle at 82% 12%, rgba(168, 126, 20, 0.09), rgba(247, 246, 244, 0) 42%), var(--bg);
}

.faq-hero .container {
  max-width: 1100px;
}

.faq-hero h1 {
  max-width: 1000px;
}

.faq-hero-lede {
  max-width: 66ch;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(3.5rem, 8vw, 8rem);
}

/* The questions carry their own headings, so the left rail of the one numbered
   section is the label alone: a margin marker, not a second heading. */
.faq-rail .eyebrow {
  margin-bottom: 0;
}

/* One numbered section, so it takes the tint the first section takes elsewhere,
   with a hairline at both boundaries. */
.faq-section {
  border-block: 1px solid var(--hairline);
  background: var(--surface-tint);
}

.accent-copy {
  min-width: 0;
  max-width: 68ch;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--accent);
}

/* Quiet hairline rows: no number column and no summary, so the trigger is
   question and marker, and the label is a single column. */
.faq-disclosures .disclosure-trigger {
  grid-template-columns: minmax(0, 1fr) auto;
}

.faq-disclosures .disclosure-label {
  display: block;
}

.faq-disclosures .disclosure-content {
  max-width: 68ch;
  padding: 0 1.5rem 2.25rem 0;
}

.faq-disclosures .disclosure-content a:not(.text-link) {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

@media (max-width: 960px) {
  .split-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .accent-copy {
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid var(--accent);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .faq-disclosures .disclosure-trigger {
    gap: 1rem;
  }

  .faq-disclosures .disclosure-content {
    padding-right: 0;
  }
}
