/* ============================================================
   Content / prose pages — The Practice, Our Story, FAQ,
   Shipping, Returns, Contact. Warm-earth dark, editorial.
   ============================================================ */

.doc-hero {
  min-height: 46vh;
  padding: 170px 32px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-organic);
  position: relative;
}
.doc-hero .doc-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--khaki);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.doc-hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: 0.5px;
  line-height: 1.14;
  color: var(--terra);
  max-width: 820px;
}
.doc-hero .doc-sub {
  margin-top: 24px;
  max-width: 620px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 84px 32px 120px;
}
.doc > section { margin-bottom: 8px; }
.doc h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: 0.5px;
  color: var(--khaki);
  margin: 58px 0 18px;
}
.doc > *:first-child { margin-top: 0; }
.doc h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.5px;
  color: var(--bone);
  margin: 30px 0 6px;
}
.doc p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.doc p strong { color: var(--bone); font-weight: 500; }
.doc ul { padding-left: 20px; margin: 4px 0 22px; }
.doc li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.doc a { color: var(--khaki); text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { color: var(--ember); }

/* Pull quote (Our Story) */
.doc .pull {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.5;
  color: var(--bone);
  margin: 34px 0;
  padding-left: 24px;
  border-left: 2px solid var(--terra);
}
.doc .signoff {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--khaki);
  margin-top: 28px;
}

/* Numbered step list (process / Ba Zi) */
.doc-steps { counter-reset: step; margin: 14px 0 22px; }
.doc-step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 26px; }
.doc-step-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.doc-step-body h3 { margin-top: 4px; }
.doc-step-body p { margin-bottom: 0; }

/* CTA row */
.doc-cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }

/* FAQ */
.faq-item { border-top: 0.5px solid rgba(196, 135, 58, 0.18); padding: 26px 0; }
.faq-item:last-child { border-bottom: 0.5px solid rgba(196, 135, 58, 0.18); }
.faq-item h3 { margin: 0 0 8px; color: var(--bone); }
.faq-item p { margin-bottom: 0; }

@media (max-width: 600px) {
  .doc { padding: 64px 24px 90px; }
  .doc-hero { padding: 140px 24px 56px; }
  .doc-cta { flex-direction: column; }
  .doc-cta .btn-primary, .doc-cta .btn-secondary { width: 100%; }
}

/* Editorial figure (brand photography in prose pages) */
.doc-figure { margin: 10px 0 38px; }
.doc-figure img { width: 100%; height: auto; display: block; border-radius: 4px; }
.doc-figure figcaption {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-faint);
  text-align: center;
}

/* Figures go full-bleed on mobile */
@media (max-width: 600px) {
  .doc-figure {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
  .doc-figure img { border-radius: 0; }
}

/* Unified body-copy colour */
.doc p, .doc li { color: var(--body); }
