/* ============================================================
   VIGOR GROUP — Base / Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video, iframe { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: var(--lh-snug); letter-spacing: -.01em; }
strong, b { font-weight: 700; }

::selection { background: var(--gold-500); color: var(--navy-950); }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-xs);
}

/* Typographic helpers */
.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: var(--lh-tight); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--red-500); display: inline-block;
}
.eyebrow.is-light { color: var(--gold-300); }
.eyebrow.is-center { justify-content: center; }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--slate); }
.text-grad {
  background: var(--grad-brand); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.text-accent { color: var(--accent); }

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

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--navy-950); color: var(--d-text); }
.section--dark .lead { color: var(--d-muted); }
.section--dark .section-title { color: var(--d-text); }

.section-head { max-width: 820px; margin-bottom: clamp(48px, 5vw, 84px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); margin-top: 18px; letter-spacing: var(--tracking-display); line-height: var(--lh-snug); text-wrap: balance; }
.section-head .lead { margin-top: 18px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--navy-900); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); transition: top var(--dur-1) var(--ease);
}
.skip-link:focus { top: 16px; }

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

/* utility */
.u-mt-0 { margin-top: 0; }
.u-center { text-align: center; }
.u-relative { position: relative; }
.u-nowrap { white-space: nowrap; }
.measure { max-width: 64ch; }
.measure-sm { max-width: 48ch; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.u-paper { background: var(--paper); }
.u-white { background: #fff; }
