/* ==========================================================================
   VIJAY GLOBAL EXPORTS — Base / Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, p, figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-blue-dark);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

input, textarea, select { font-family: inherit; font-size: inherit; }

:focus-visible {
  outline: 2.5px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-2xl);
}

.section--tight { padding-block: var(--space-xl); }

.section--cream-deep { background: var(--color-cream-deep); }

.section--blue {
  background: linear-gradient(160deg, var(--color-blue-dark) 0%, var(--color-blue-deep) 100%);
  color: var(--color-white);
}
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--color-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange-dark);
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--color-ink-soft);
  max-width: 62ch;
}

.section-head {
  max-width: 740px;
  margin-bottom: var(--space-lg);
}

.section-head--center { margin-inline: auto; text-align: center; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}