/* ============================================================
   IHR — Base element styles & small brand utilities
   Lightweight resets + default type. Components use tokens
   directly; this just sets sensible page defaults.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--brand-accent-ink); text-decoration: none; }
a:hover { color: var(--gold-600); }

::selection { background: var(--gold-200); color: var(--navy-900); }

/* ---- Brand utilities ---- */

/* Eyebrow / kicker label above headings */
.ihr-eyebrow {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-eyebrow);
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
/* short gold rule that precedes an eyebrow */
.ihr-eyebrow::before {
  content: "";
  width: 28px;
  height: var(--bw-rule-gold);
  background: var(--gold-gradient);
  border-radius: var(--radius-pill);
}

/* metallic gold text fill */
.ihr-gold-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* centered short gold underline accent under a heading */
.ihr-rule {
  width: 56px;
  height: var(--bw-rule-gold);
  background: var(--gold-gradient);
  border: 0;
  border-radius: var(--radius-pill);
  margin: var(--space-4) 0;
}

.ihr-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
