/* ── YOI ANSWERS PAGE ── */

/* TOC nav override — prevent global nav fixed positioning from applying */
nav.toc {
  position: static !important;
  z-index: auto !important;
  top: auto !important; left: auto !important; right: auto !important;
  background: none !important;
  border-bottom: none !important;
  height: auto !important;
  display: block !important;
  max-width: 800px; margin: 0 auto;
  padding: 56px 48px 0;
}
.toc-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: #999; margin-bottom: 20px;
}
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.toc-grid a {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #555; font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.toc-grid a:hover { color: #C9A84C; border-bottom-color: #C9A84C; }

/* Hero */
.answers-hero {
  background: #0A0A0A;
  padding: 140px 48px 80px;
  text-align: center;
}
.answers-hero .eyebrow { margin-bottom: 24px; }
.answers-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #FAFAF8; line-height: 1.08; margin-bottom: 20px;
  font-weight: 400;
}
.answers-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 300; color: rgba(250,250,248,0.55);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* Answers Section */
.answers-section { padding: 48px 48px 80px; max-width: 800px; margin: 0 auto; }

.answer-block {
  padding: 48px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.answer-block:last-child { border-bottom: none; }

.answer-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: #1A1A1A;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 500;
}
.answer-block p {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 300; color: #444;
  line-height: 1.85; margin-bottom: 16px;
}
.answer-block p:last-of-type { margin-bottom: 0; }
.answer-block strong { font-weight: 500; color: #1A1A1A; }
.answer-block em { font-style: italic; }
.answer-links {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 20px;
}
.answer-source {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; color: #A07820;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #C9A84C; padding-bottom: 1px;
}
.answer-source:hover { color: #C9A84C; }
.inline-link { color: #A07820; border-bottom: 1px solid #C9A84C; }
.inline-link:hover { color: #C9A84C; }

/* CTA Band */
.cta-band {
  background: #0A0A0A;
  padding: 100px 48px;
  text-align: center;
}
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #FAFAF8; margin-bottom: 16px; font-weight: 400;
}
.cta-band p {
  font-family: 'Inter', sans-serif;
  font-size: 17px; color: rgba(250,250,248,0.55);
  margin: 0 auto 32px; font-weight: 300;
}
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* Simple footer for answers page */
.answers-footer {
  background: #0A0A0A; color: rgba(250,250,248,0.5);
  padding: 60px 48px 40px; text-align: center;
}
.answers-footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: #C9A84C; margin-bottom: 24px; display: block;
}
.answers-footer-links {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.answers-footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(250,250,248,0.5);
  transition: color 0.2s;
}
.answers-footer-links a:hover { color: #C9A84C; }
.answers-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(250,250,248,0.3);
}
.answers-footer-family {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(250,250,248,0.3); margin-top: 16px;
}
.answers-footer-family a {
  color: rgba(250,250,248,0.5); border-bottom: 1px solid rgba(250,250,248,0.15);
}
.answers-footer-family a:hover { color: #C9A84C; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .answers-hero { padding: 100px 24px 56px; }
  nav.toc { padding: 36px 24px 0 !important; }
  .toc-grid { grid-template-columns: 1fr; gap: 6px; }
  .answers-section { padding: 36px 24px 56px; }
  .answer-block { padding: 36px 0; }
  .cta-band { padding: 56px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .answers-footer { padding: 40px 24px 32px; }
}
@media (max-width: 480px) {
  .answers-hero p { font-size: 16px; }
  .answer-block p { font-size: 16px; }
  .answer-block h2 { font-size: 24px; }
}
