/* ============================================================
   CATCHLIGHT — inner pages (About / FAQ)
   Supplementary only. Loads after style.css and reuses its
   tokens, .wrap, .nav, .footer, .letter. Adds the page header,
   prose blocks and the Q&A list.
   ============================================================ */

.page { padding-top: var(--nav-h); }

/* ---------- page header ---------- */

.page-head {
  padding: clamp(72px, 9vw, 132px) 0 clamp(38px, 4.6vw, 60px);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: 0.008em;
  max-width: 20ch;
}
.page-head h1 em { font-style: italic; color: var(--gold); }

.page-lede {
  max-width: 62ch;
  margin-top: clamp(24px, 2.6vw, 34px);
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- body ---------- */

.page-body { padding: clamp(52px, 6.4vw, 92px) 0 clamp(88px, 10vw, 140px); }

.prose { max-width: 74ch; }
.prose > * + * { margin-top: 22px; }
.prose p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 19.5px);
  line-height: 1.85;
  color: #46423c;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.25;
  color: var(--ink);
  margin-top: clamp(46px, 5vw, 68px);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: clamp(38px, 4vw, 52px);
}
.prose ul { list-style: none; max-width: 74ch; }
.prose ul li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: var(--ink-soft);
}
.prose ul li + li { margin-top: 12px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 12px; height: 1px;
  background: var(--gold);
}
.prose a { border-bottom: 1px solid var(--line); transition: border-color 0.3s, color 0.3s; }
.prose a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- fact strip ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 3.6vw, 46px) 0;
  margin: clamp(40px, 4.6vw, 60px) 0 0;
}
.facts dt {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.facts dd {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
}

/* ---------- Q&A list ---------- */

.qa-group + .qa-group { margin-top: clamp(56px, 6.4vw, 88px); }

.qa-group-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.qa-group-title::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(36px, 5vw, 64px);
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.qa { border-bottom: 1px solid var(--line); padding: clamp(28px, 3.2vw, 40px) 0; }
.qa:last-child { border-bottom: none; }

.qa-q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 40ch;
}
.qa-a { max-width: 76ch; color: var(--ink-soft); font-size: 16px; }
.qa-a p + p { margin-top: 14px; }
.qa-a ul { list-style: none; margin-top: 14px; }
.qa-a ul li { position: relative; padding-left: 26px; }
.qa-a ul li + li { margin-top: 10px; }
.qa-a ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 12px; height: 1px;
  background: var(--gold);
}
.qa-a strong { font-weight: 400; color: var(--ink); }
.qa-a a { border-bottom: 1px solid var(--line); }
.qa-a a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- closing note ---------- */

.page-note {
  margin-top: clamp(56px, 6vw, 84px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(28, 26, 23, 0.04);
  padding: clamp(30px, 4vw, 52px);
  max-width: 74ch;
}
.page-note p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
}
.page-note a { border-bottom: 1px solid var(--line); }
.page-note a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .facts { grid-template-columns: 1fr; gap: 26px; }
  .page-head h1 { max-width: none; }
}
