/* ============================================================
   Z PLUS ENTERPRISES — BASE STYLES
   base.css
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--c-body);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-sans);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-snug);
  color: var(--c-ink);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  line-height: var(--lh-relaxed);
  color: var(--c-body);
}

p + p {
  margin-top: var(--sp-4);
}

/* ── LINKS ──────────────────────────────────────────────────── */

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-base);
}

a:hover {
  color: var(--c-primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ── IMAGES ─────────────────────────────────────────────────── */

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

.img-contain {
  object-fit: contain !important;
}

/* ── LISTS ──────────────────────────────────────────────────── */

ul, ol {
  list-style: none;
}

/* ── FORMS ──────────────────────────────────────────────────── */

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ── MISC ───────────────────────────────────────────────────── */

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

em {
  font-style: italic;
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-8) 0;
}

/* ── SELECTION ──────────────────────────────────────────────── */

::selection {
  background-color: var(--c-primary);
  color: #fff;
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
