h1 {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    h2 {
      font-size: clamp(14px, 1.4vw, 16px);
      font-weight: 500;
      font-family: var(--mono);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--ink-mute);
      margin-top: 56px;
      margin-bottom: 28px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--rule);
    }
    h2:first-of-type { margin-top: 0; }

    /* Accordion */
    .faq-list {
      display: flex;
      flex-direction: column;
    }
    .faq-item {
      border-bottom: 1px solid var(--rule);
    }
    .faq-q {
      width: 100%;
      text-align: left;
      padding: 22px 0;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color .15s;
    }
    .faq-q:hover { color: var(--ember); }
    .faq-q .arrow {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      transition: transform .25s;
      color: var(--ink-mute);
    }
    .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
    .faq-item.open .faq-q { color: var(--ember); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.open .faq-a {
      max-height: 800px;
    }
    .faq-a-inner {
      padding: 0 0 24px 0;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.7;
    }
    .faq-a-inner p + p { margin-top: 12px; }

    /* Back link */
    .back-link {
      font-size: 14px;
      color: var(--ember);
      font-weight: 500;
      margin-top: 48px;
    }
    .back-link:hover { color: var(--ember-h); }


    @media (max-width: 600px) {
      .faq-q { font-size: 15px; padding: 18px 0; }
    }
