/* Alducin — base element defaults + helpers.
   Kept light: sets sensible document typography and a few utility classes. */

:root {
  color-scheme: light;
}

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

.als-lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--text-body);
  font-weight: var(--fw-light);
  margin: 0;
}
.als-body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  margin: 0;
}
.als-small { font-family: var(--font-body); font-size: var(--fs-small); line-height: 1.5; color: var(--text-muted); }

/* Overline — the recurring gold/navy label used across the brand */
.als-overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--text-accent);
}

/* The gold rule flanking headings, echoing the logo's dashes */
.als-rule {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-muted);
}
.als-rule::before,
.als-rule::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

a {
  color: var(--gold-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--navy-900); }
