/* ─── BRAND.CSS — Wordmark, logo mark, brand elements ─── */

/* ─── ADVERTORIAL TAG ─── */
.advertorial-tag {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px var(--page-px);
  background: var(--surface-deep);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-seam);
  position: relative;
  z-index: 100;
}

/* ─── WORDMARK ─── */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;  /* Anton is optically heavy at weight 400 */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  font-feature-settings: var(--font-feature-display);
  line-height: 1;
}

.wordmark-sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-top: 1px;
  line-height: 1;
}

/* ─── HERO WORDMARK (large, decorative) ─── */
.brand-statement {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  line-height: 0.9;
}

/* ─── DECORATIVE BACKGROUND MONOGRAM ─── */
.bg-monogram {
  position: absolute;
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--brand-primary);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* ─── REASON NUMBER BADGE ─── */
.reason-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.reason-num::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--brand-primary);
}

/* ─── LARGE BACKGROUND NUMERAL (Mandatory layout moment) ─── */
.section-numeral {
  position: absolute;
  top: -0.1em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 400;
  color: var(--brand-primary);
  opacity: 0.055;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  text-transform: uppercase;
}

/* ─── STAT METRIC (hero dashboard panels) ─── */
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--brand-primary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.stat-unit {
  font-size: 0.65em;
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: var(--space-1);
  line-height: 1.3;
}

/* ─── FOOTER BRAND ─── */
.footer-brand-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  line-height: 1;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-top: var(--space-2);
}
