/* ==========================================================================
   HOMME FORCE — Editorial Article Spreads
   High-End Architectural & Magazine Layouts
   ========================================================================== */

/* Reading Progress Indicator */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent-amber);
  width: 0%;
  z-index: 1000;
  transition: width 80ms ease-out;
}

/* Article Hero Spread */
.article-hero {
  position: relative;
  min-height: 70vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  background-color: var(--bg-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) contrast(1.15);
  z-index: 1;
}

.article-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.7) 0%, rgba(9, 10, 12, 0.4) 40%, rgba(9, 10, 12, 0.95) 85%, var(--bg-primary) 100%);
  z-index: 2;
}

.article-hero-content {
  position: relative;
  z-index: 3;
}

.article-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-pure);
  line-height: 0.96;
  margin: var(--space-4) 0 var(--space-6) 0;
  letter-spacing: -0.01em;
}

.article-hero-subtitle {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 780px;
  margin-bottom: var(--space-6);
}

.article-meta-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-meta-item strong {
  color: var(--text-pure);
}

/* Article Body Typography & Flow */
.article-body-wrapper {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.article-prose {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #cfd3dc;
}

.article-prose p {
  margin-bottom: var(--space-6);
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  line-height: 1.05;
  position: relative;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-subtle);
}

.article-prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.article-prose strong {
  color: var(--text-pure);
  font-weight: 600;
}

.article-prose ul, .article-prose ol {
  margin: var(--space-6) 0 var(--space-6) var(--space-6);
}

.article-prose ul {
  list-style: square;
}

.article-prose li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-2);
}

.article-prose li::marker {
  color: var(--accent-amber);
}

/* Editorial Pull Quote Spread */
.article-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--text-pure);
  border-left: 3px solid var(--accent-amber);
  padding: var(--space-5) 0 var(--space-5) var(--space-8);
  margin: var(--space-10) 0;
  background: linear-gradient(90deg, var(--accent-amber-subtle) 0%, transparent 100%);
}

.article-pullquote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: var(--text-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-top: var(--space-3);
}

/* Tactical Action Box in Article */
.tactical-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-top: 3px solid var(--accent-amber);
  border-radius: var(--radius-sm);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  margin: var(--space-10) 0;
}

.tactical-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-subtle);
}

.tactical-box-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-amber);
  font-weight: 600;
}

.tactical-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tactical-box li {
  font-size: var(--text-sm);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.6;
}

.tactical-box li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-amber);
  font-family: var(--font-mono);
}

/* Article Author Sign-off & Dossier Seal */
.article-signoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-8) 0;
  margin-top: var(--space-12);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.article-signoff-info {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.signoff-seal {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-amber);
  font-size: 1.1rem;
}

.signoff-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.signoff-text strong {
  display: block;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.share-strip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.share-btn {
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
}

/* Related Articles Section */
.related-articles-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: clamp(3rem, 6vw, 6rem) 0;
}
