/* Base typography & layout primitives */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-base);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Section heading block */
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--center { text-align: center; margin-inline: auto; }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--text);
}

.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

/* Focus ring */
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Selection */
::selection { background: var(--gold); color: var(--ink); }
