/*
  Brand components — REVEAL
  Stark monogram lettermark (Challenger archetype) built as inline SVG,
  a rubber-stamp seal made of straight rules only — no curves, no
  border-radius, consistent with the sharp/rectangular shape language.
*/

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
}

.wordmark__mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.wordmark__mark rect.seal-frame {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.wordmark__mark .seal-slash {
  stroke: var(--brand-accent);
  stroke-width: 3;
}

.wordmark__mark text {
  font-family: var(--font-display);
  font-weight: 700;
  fill: currentColor;
}

.wordmark__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark__text em {
  font-style: normal;
  color: var(--brand-accent);
}

.wordmark--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

/* Redaction bar — the recurring decorative device used across the site
   to punctuate claims, replace a rule/divider, or mask a "before" price */
.redact {
  display: inline-block;
  background: var(--brand-primary);
  color: transparent;
  padding: 0 0.35em;
  user-select: none;
}

.redact-bar {
  display: block;
  height: 0.9em;
  background: var(--brand-primary);
  width: 100%;
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  transform: rotate(-2deg);
}

.stamp--inverse {
  border-color: var(--text-inverse);
  color: var(--text-inverse);
}

/* Case-file number tab — small annotation used to label exhibits/photos */
.exhibit-tag {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.exhibit-tag::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand-accent);
  display: inline-block;
}
