/* ─────────────────────────────────────────────
   NAIK INFRA — Typography
───────────────────────────────────────────── */

/* ── Eyebrow / label ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.label--light {
  color: var(--muted);
}
.label--light::before {
  background: var(--muted);
}

/* ── Display headings ── */
.display-1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

.display-4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

/* ── Italic accent ── */
.italic { font-style: italic; }
.gold   { color: var(--gold); }

/* ── Body text ── */
.body-lg {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.body-base {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

.body-sm {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Gold horizontal rule system ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-6);
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-rule);
}

.gold-rule span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-block: var(--space-6);
}

/* ── Page header (inner pages) ── */
.page-header {
  padding-top: calc(var(--nav-h) + var(--space-20));
  padding-bottom: var(--space-20);
  border-bottom: 1px solid var(--border);
}

.page-header .container {
  display: grid;
  gap: var(--space-4);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--muted-2); }
.breadcrumb .current { color: var(--gold); }

/* ── Section header block ── */
.section-header {
  display: grid;
  gap: var(--space-4);
  max-width: 680px;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header--center .label {
  justify-content: center;
}
.section-header--center .label::before {
  display: none;
}
.section-header--center .gold-line {
  margin-inline: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .display-1 { letter-spacing: -0.01em; }
  .page-header {
    padding-top: calc(var(--nav-h) + var(--space-12));
    padding-bottom: var(--space-12);
  }
}
