/* ── DOC HEADER ── */
.doc-header {
  padding: 150px 60px 56px;
  border-bottom: 1px solid var(--iron);
  position: relative;
  overflow: hidden;
}

.doc-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.doc-header-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }

.doc-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.doc-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.doc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
}

.doc-sub {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--fog);
  line-height: 1.5;
}

/* ── DOC BODY ── */
.doc-body { max-width: 820px; margin: 0 auto; padding: 64px 60px 96px; }

.doc-body .lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--fog);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 40px;
}

.doc-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 44px 0 14px;
}

.doc-body p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--fog);
  line-height: 1.8;
  margin: 0 0 16px;
}

.doc-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--rule); transition: border-color 0.2s; }
.doc-body a:hover { border-color: var(--gold); }

.doc-foot {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--iron);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
}

.doc-foot a { color: var(--gold); text-decoration: none; }
.doc-foot a:hover { color: var(--gold2); }

@media (max-width: 900px) {
  .doc-header { padding: 130px 28px 48px; }
  .doc-body { padding: 48px 28px 72px; }
}
