/* ==========================================================================
   HOMME FORCE — Typography System
   ========================================================================== */

/* Condensed Grotesk Headings */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--text-pure);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-pure);
}

.hero-title span {
  display: block;
}

.giant-watermark {
  font-family: var(--font-display);
  font-size: var(--text-display-giant);
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--text-pure);
}

.section-subhead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 680px;
}

/* Editorial Quotes in Serif */
.editorial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.35;
  color: var(--text-primary);
  position: relative;
  padding-left: var(--space-8);
  border-left: 2px solid var(--accent-amber);
  margin: var(--space-8) 0;
}

.editorial-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* Technical Metadata Labels (Field Notes / Dossier Tags) */
.meta-tag, .technical-label {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.meta-tag.amber {
  color: var(--accent-amber);
}

.meta-tag::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 50%;
}

.meta-tag.no-dot::before {
  display: none;
}

.meta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.meta-block span {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.meta-block span.accent {
  color: var(--accent-amber);
}

/* Dossier Stamp */
.dossier-stamp {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-amber);
  border: 1px solid var(--border-accent);
  padding: 3px 8px;
  display: inline-block;
  background: var(--accent-amber-subtle);
  border-radius: var(--radius-sm);
}

/* Lead & Body Text */
.lead-paragraph {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.body-copy p {
  margin-bottom: var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.75;
}

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