/* ============================================================
   Rivera Construction — Reset & Base Styles
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ── Typography resets ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-heading);
}

p {
  line-height: var(--lh-normal);
}

/* ── Links ─────────────────────────────────────────── */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
a:hover {
  color: var(--color-accent-lt);
}
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Media ─────────────────────────────────────────── */
img, video, svg {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}

/* ── Lists ─────────────────────────────────────────── */
ul, ol {
  list-style: none;
}

/* ── Form elements ─────────────────────────────────── */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Touch targets ─────────────────────────────────── */
.btn,
button,
input[type="submit"],
a.btn,
.btn-nav-cta,
.btn-submit,
.tab-btn {
  min-height: 44px;
}

/* ── Selection ─────────────────────────────────────── */
::selection {
  background: rgba(232, 100, 10, 0.3);
  color: #fff;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ── Visually hidden (a11y) ─────────────────────────── */
.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;
}
