/* ============================================================
   base.css — Elementos, tipografia, container, utilitários
   ============================================================ */

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: inherit;
}

h1 {
  font-size: var(--fs-3xl);
}
h2 {
  font-size: var(--fs-2xl);
}
h3 {
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
}

p {
  max-width: 65ch;
}

strong {
  font-weight: var(--fw-semibold);
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---- Section shell ---- */
.section {
  padding-block: var(--section-y);
}

.section--dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

/* ---- Eyebrow / kicker ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section--dark .eyebrow {
  color: var(--gold);
}

/* ---- Section header ---- */
.section-head {
  max-width: 60ch;
  margin-bottom: var(--sp-7);
}

.section-head p {
  margin-top: var(--sp-4);
  color: var(--text-muted);
  font-size: var(--fs-md);
}

.section--dark .section-head p {
  color: var(--text-on-dark-muted);
}

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

.section-head--center p {
  margin-inline: auto;
}

/* ---- Metallic text ---- */
.text-metal {
  background: var(--grad-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Utilities ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: var(--z-overlay);
  padding: var(--sp-3) var(--sp-5);
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--r-sm);
  transition: top var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--sp-4);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.no-scroll {
  overflow: hidden;
}
