/* =========================================================
   MAV UNITED REALTY — RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

ul, ol, li {
  list-style: none !important;
  list-style-type: none !important;
}

input, select, textarea {
  font-family: var(--font-sans);
}

h1, h2, h3, h4 {
  line-height: 1.2;
}

/* ── Selection ── */
::selection {
  background-color: var(--color-accent-warm);
  color: var(--color-primary);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-warm);
  border-radius: var(--radius-full);
}

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--color-accent-warm);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Screen reader only ── */
.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;
}
