/* ============================================================
   YOGAL · FAQ page
   Editorial Q&A list. Numbered, hairline dividers, no accordions —
   reads as a magazine column.
   ============================================================ */

.page-faq { background: var(--paper); }

/* ===== Hero ===== */
.faq-hero {
  position: relative;
  padding: 200px 0 96px;
  background:
    radial-gradient(120% 60% at 80% 0%, rgba(216,175,111,0.18), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.faq-hero::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  border-bottom: 1px solid var(--line-light);
}

.faq-hero-inner {
  max-width: 1080px;
}

.faq-hero-kicker {
  display: block;
  margin-bottom: 56px;
  color: var(--bronze);
}

.faq-hero-headline {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 36px;
  text-wrap: balance;
  max-width: 18ch;
}

.faq-hero-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.42;
  color: var(--muted-light);
  max-width: 60ch;
  margin: 0;
}


/* ===== FAQ list ===== */
.faq-list-section {
  padding: var(--space-7) 0;
  background: var(--paper);
}

.faq-list {
  list-style: none;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  counter-reset: faq;
}

.faq-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line-light);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-light); }

.faq-num {
  grid-column: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--bronze-3);
  padding-top: 12px;
}

.faq-q {
  grid-column: 2;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 26ch;
}
.faq-q em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.faq-a {
  grid-column: 2;
  max-width: 56ch;
}
.faq-a p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.82;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong {
  font-weight: 600;
  color: var(--ink);
  opacity: 1;
}
.faq-a em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bronze-3);
  font-size: 1.02em;
}

.faq-link-wrap {
  margin-top: 16px !important;
}


/* ===== CTA ===== */
.faq-cta {
  position: relative;
  padding: var(--space-7) 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  text-align: center;
}
.faq-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(216,175,111,0.20), transparent 65%),
    radial-gradient(40% 30% at 80% 100%, rgba(139,106,61,0.18), transparent 70%);
  pointer-events: none;
}
.faq-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.faq-cta-eyebrow {
  display: block;
  margin-bottom: 32px;
  color: var(--bronze-2);
}
.faq-cta-headline {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--paper);
  margin: 0 0 24px;
  text-wrap: balance;
}
.faq-cta-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze-2);
}
.faq-cta-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--muted-dark);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.faq-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-cta-buttons .btn {
  flex: 0 1 320px;
  min-width: 280px;
  justify-content: space-between;
  padding: 20px 24px;
  min-height: 60px;
  box-sizing: border-box;
  line-height: 1.2;
}


/* ===== Responsive ===== */
@media (max-width: 720px) {
  .faq-hero { padding: 140px 0 64px; }
  .faq-hero-kicker { margin-bottom: 32px; }
  .faq-hero-headline { font-size: clamp(36px, 9vw, 56px); }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
  .faq-num { padding-top: 0; grid-column: 1; }
  .faq-q { grid-column: 1; margin-bottom: 12px; max-width: none; }
  .faq-a { grid-column: 1; }

  .faq-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
  }
  .faq-cta-buttons .btn {
    justify-content: space-between;
    padding: 20px 24px;
    min-height: 60px;
    box-sizing: border-box;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .faq-hero { padding: 120px 0 48px; }
  .faq-hero-headline { font-size: clamp(32px, 11vw, 48px); }
  .faq-hero-lede { font-size: 18px; }
  .faq-q { font-size: clamp(20px, 6.5vw, 26px); }
  .faq-a p { font-size: 16px; }
}
