/* ===== ADDASON AUDITS — LONG-FORM GUIDE LAYOUT =====
   Shared by: /client-guide/, /about/, /faq/, /privacy/, /terms/
   Uses tokens from main.css (--gold, --cream, --bg-elevated, --mono, etc.)
*/

.guide-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}

.guide-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.guide-title {
  font-family: var(--heading);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 18px;
}

.guide-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-dim);
  margin-bottom: 50px;
  max-width: 640px;
}

.guide-toc {
  border: 1px solid var(--cream-faint);
  padding: 20px 24px;
  margin-bottom: 60px;
  background: var(--bg-elevated);
}

.guide-toc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.guide-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}

.guide-toc li {
  counter-increment: toc;
  padding: 6px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.guide-toc li::before {
  content: counter(toc, decimal-leading-zero) " · ";
  color: var(--gold);
}

.guide-toc a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.guide-toc a:hover { border-bottom-color: var(--gold); }

.guide-section {
  margin-bottom: 70px;
  scroll-margin-top: 100px;
}

.guide-section h2 {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.guide-section .section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.guide-section h3 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
}

.guide-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 18px;
}

.guide-section ul, .guide-section ol {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin: 0 0 18px 0;
  padding-left: 24px;
}

.guide-section li {
  padding: 4px 0;
}

.guide-section strong { color: var(--cream); font-weight: 500; }

.guide-section code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-elevated);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--gold);
}

.callout {
  border-left: 2px solid var(--gold);
  padding: 18px 24px;
  margin: 24px 0;
  background: var(--bg-elevated);
}

.callout.warn { border-left-color: var(--red); }
.callout.green { border-left-color: var(--green); }

.callout-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.callout.warn .callout-label { color: var(--red); }
.callout.green .callout-label { color: var(--green); }
.callout p { margin: 0; font-size: 15px; color: var(--cream); }

.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 640px) {
  .do-dont { grid-template-columns: 1fr; }
}

.do, .dont {
  border: 1px solid var(--cream-faint);
  padding: 22px 24px;
  background: var(--bg-elevated);
}

.do { border-left: 2px solid var(--green); }
.dont { border-left: 2px solid var(--red); }

.do h4, .dont h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.do h4 { color: var(--green); }
.dont h4 { color: var(--red); }

.do ul, .dont ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.do li, .dont li { padding: 3px 0; }

hr.rule {
  border: 0;
  border-top: 1px solid var(--cream-faint);
  margin: 60px 0;
}

.footer-cta {
  margin-top: 100px;
  padding: 40px 32px;
  border: 1px solid var(--cream-faint);
  text-align: center;
  background: var(--bg-elevated);
}

.footer-cta .cta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-cta h3 {
  font-family: var(--heading);
  font-size: 26px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-cta p {
  font-size: 15px;
  color: var(--cream-dim);
  margin-bottom: 22px;
}

.footer-cta a {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
}

.footer-cta a:hover {
  background: var(--gold-hover);
}

/* FAQ-specific accordion-ish (no JS, uses native <details>) */
.faq-list { margin: 30px 0; }
.faq-item {
  border-bottom: 1px solid var(--cream-faint);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--heading);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  font-family: var(--mono);
  font-size: 22px;
  color: var(--gold);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:hover { color: var(--gold); }
.faq-item-body {
  padding: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-dim);
}
.faq-item-body p { margin-bottom: 12px; }
.faq-item-body p:last-child { margin-bottom: 0; }
.faq-item-body strong { color: var(--cream); font-weight: 500; }
.faq-item-body a { color: var(--gold); border-bottom: 1px solid currentColor; }
