/* Clear Self-Defense — Article stylesheet */
:root {
  --cream: #FAF7F0;
  --cream-2: #FFFCF5;
  --navy: #1E3A5F;
  --navy-deep: #14283F;
  --orange: #D9531E;
  --orange-deep: #B73F12;
  --text: #1F2937;
  --text-mute: #4B5563;
  --text-faint: #6B7280;
  --line: #E5E0D2;
  --line-soft: #EEF2F7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
a:hover { color: var(--orange); }
.display { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; letter-spacing: -0.02em; }

/* Nav */
.article-nav {
  background: var(--cream);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.article-nav .wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.article-nav a.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.article-nav a.logo .dot { color: var(--orange); }
.article-nav .crumb {
  font-size: 12px;
  color: var(--text-mute);
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.article-nav .crumb:hover { color: var(--orange); }

/* Article container */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}

/* Article header */
.article-eyebrow {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--orange);
}
h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 24ch;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-mute);
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.article-meta strong { color: var(--navy); font-weight: 600; }

/* Article body */
.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 22px;
}
.article-body p.lead {
  font-size: 21px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 500;
}
.article-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--navy);
  margin: 56px 0 20px;
}
.article-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
}
.article-body ul, .article-body ol {
  padding-left: 22px;
}
.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.article-body strong {
  color: var(--navy);
  font-weight: 600;
}
.article-body em {
  font-style: italic;
  color: var(--text);
}
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  background: var(--line-soft);
  border-radius: 0 6px 6px 0;
  padding-right: 24px;
  font-style: italic;
  color: var(--navy);
}
.article-body blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-mute);
  font-style: normal;
  font-weight: 500;
}

.callout {
  background: var(--line-soft);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 36px 0;
}
.callout-eyebrow {
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.callout p { margin-bottom: 0; font-size: 17px; }

.fact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 32px 0;
}
.fact-card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.fact-card p {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.55;
  margin-bottom: 0;
}
.fact-card cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-faint);
  font-style: normal;
}

/* FAQ */
.faq-section {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-section h2 {
  margin-top: 0 !important;
  margin-bottom: 28px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.faq-a {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}
.faq-a a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--orange); }

/* Sources / references */
.sources-section {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.sources-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.sources-list {
  list-style: none;
  padding-left: 0;
  counter-reset: source;
}
.sources-list li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  counter-increment: source;
}
.sources-list li::before {
  content: counter(source) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.sources-list li a {
  color: var(--text-mute);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}
.sources-list li a:hover { color: var(--orange); text-decoration-color: var(--orange); }

/* In-text citation links */
.cite-ref {
  font-size: 0.75em;
  vertical-align: super;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  margin-left: 1px;
}
.cite-ref:hover { text-decoration: underline; }

/* CTA */
.article-cta {
  margin-top: 72px;
  padding: 40px 36px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 14px;
}
.article-cta h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.article-cta h3 em { color: var(--orange); font-style: italic; font-weight: 700; }
.article-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 240, 232, 0.85);
  margin-bottom: 24px;
}
.article-cta a.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--orange);
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.article-cta a.btn::after { content: '→'; }
.article-cta a.btn:hover { background: var(--orange-deep); transform: translateY(-1px); }

/* Related articles */
.related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.related h3 {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.related-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.related-item:hover { border-color: var(--orange); transform: translateY(-2px); }
.related-item-eyebrow {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.related-item-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Footer */
.article-footer {
  background: var(--navy-deep);
  color: rgba(244, 240, 232, 0.6);
  padding: 48px 0 32px;
  font-size: 13px;
  margin-top: 80px;
}
.article-footer .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.article-footer .brand-mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.article-footer .brand-mark .dot { color: var(--orange); }
.article-footer a { color: rgba(244, 240, 232, 0.7); text-decoration: none; }
.article-footer a:hover { color: var(--orange); }
.article-footer .meta { text-align: right; line-height: 1.7; }
.article-footer .footer-links { margin-top: 6px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }

/* Mobile */
@media (max-width: 720px) {
  .article { padding: 40px 22px 60px; }
  .article-body p, .article-body ul, .article-body ol { font-size: 17px; }
  .article-body p.lead { font-size: 19px; }
  .article-body h2 { margin: 44px 0 16px; font-size: 26px; }
  .article-body h3 { font-size: 19px; margin: 30px 0 12px; }
  .article-cta { padding: 28px 22px; }
  .article-footer .wrap { flex-direction: column; align-items: flex-start; }
  .article-footer .meta { text-align: left; }
  .article-footer .footer-links { justify-content: flex-start; }
}
