/* ════════════ FAQ ════════════ */
/* tighter top padding — nav sits close under the hero, matching site rhythm */
.faq { background: var(--c-ink); padding: clamp(2.5rem, 6vh, 4rem) var(--pad-x) var(--section); }
.faq__list { max-width: 1000px; }

/* Minimal category anchor nav — existing label type, nothing new */
.faq-nav {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 8vh, 5rem);
}
.faq-nav a {
  font-family: var(--font-ui); font-weight: 500;
  font-size: var(--t-label); letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-grey-dim);
  transition: color .3s;
}
.faq-nav a:hover { color: var(--c-white); }
/* Mobile: never wrap — one swipeable line at every width. Labels are tightened
   (size/tracking only, never renamed) so all four fit at 320px; overflow-x
   scrolls as the safety net with the scrollbar hidden. */
@media (hover: none) and (pointer: coarse) {
  .faq-nav {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .faq-nav::-webkit-scrollbar { display: none; }
  .faq-nav a { flex: none; font-size: 8px; letter-spacing: 0.18em; }
}

/* Category blocks */
.faq-cat { padding-top: clamp(2.5rem, 6vh, 4.5rem); }
.faq-cat:first-of-type { padding-top: 0; }
.faq-cat { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }  /* anchor lands clear of nav */
.faq-cat__label { display: block; margin-bottom: 1.6rem; }

/* Multi-paragraph answers */
.faq-item__a-inner p + p { margin-top: 1em; }
/* Titled sub-points inside an answer — lead phrase reads as the sub-heading */
.faq-sub__t {
  color: var(--c-white);
  font-family: var(--font-ui);
  font-weight: 500;
}
.faq-item { border-top: 1px solid rgba(255,255,255,0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-item__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.6rem, 3.5vh, 2.6rem) 0;
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 3vw, 38px); color: var(--c-white);
}
.faq-item__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; background: var(--c-grey-mid); transition: transform .4s var(--ease-io), background .3s;
}
.faq-item__icon::before { top: 8px; left: 0; width: 18px; height: 1px; }
.faq-item__icon::after  { left: 8px; top: 0; width: 1px; height: 18px; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item.is-open .faq-item__icon::before { background: var(--c-white); }
.faq-item__a { height: 0; opacity: 0; overflow: hidden; }
.faq-item__a-inner {
  padding-bottom: 2.2rem; max-width: 70ch;
  color: var(--c-grey-mid); font-size: var(--t-body);
}
