/* ── ANSWERS PAGE ── */

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  z-index: 9999;
  background: var(--teal-dark); color: #fff;
  padding: 12px 24px; font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; width: auto; height: auto; }

/* Hero */
.answers-hero {
  background: var(--teal-dark);
  padding: 100px 40px 80px;
  text-align: center;
}
.answers-hero-eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.answers-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ivory); line-height: 1.1; margin-bottom: 20px;
}
.answers-hero p {
  font-size: 18px; font-weight: 300; color: rgba(250,248,243,0.7);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* Table of Contents */
.toc {
  max-width: 800px; margin: 0 auto;
  padding: 48px 40px 0;
}
.toc-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.toc-grid a {
  font-size: 15px; color: var(--teal-dark); font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.toc-grid a:hover { color: var(--teal); border-bottom-color: var(--teal); }

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

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

.answer-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--teal-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.answer-block p {
  font-size: 17px; font-weight: 300; color: #444;
  line-height: 1.85; margin-bottom: 18px;
}
.answer-block p:last-of-type { margin-bottom: 0; }
.answer-block strong { font-weight: 500; color: var(--dark); }
.answer-block em { font-style: italic; }
.answer-links {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 20px;
}
.answer-source {
  display: inline-block;
  font-size: 13px; font-weight: 500; color: var(--teal);
  letter-spacing: 0.03em; text-decoration: none;
}
.answer-source:hover { text-decoration: underline; }
.inline-link { color: var(--teal); border-bottom: 1px solid var(--teal); text-decoration: none; }
.inline-link:hover { color: #23847a; }

/* CTA Band */
.cta-band {
  background: var(--teal-dark);
  padding: 80px 40px;
  text-align: center;
}
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ivory); margin-bottom: 16px;
}
.cta-band p {
  font-size: 17px; color: rgba(250,248,243,0.7);
  margin: 0 auto 32px; font-weight: 300;
}
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn-outline {
  display: inline-block; border: 2px solid rgba(250,248,243,0.3); color: var(--ivory);
  font-size: 15px; font-weight: 500; padding: 16px 36px;
  border-radius: 100px; transition: all 0.25s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .answers-hero { padding: 72px 24px 56px; }
  .toc { padding: 36px 24px 0; }
  .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; }
}
@media (max-width: 480px) {
  .answers-hero p { font-size: 16px; }
  .answer-block p { font-size: 16px; }
  .answer-block h2 { font-size: 22px; }
}
