/* ============================================================
   RESET.CSS — Southeastern Construction Co
   Full reset + base element styles
   ============================================================ */

/* ── Box-sizing reset ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── HTML / Body ───────────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

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

/* ── Links ─────────────────────────────────────────────── */
a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Headings ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

/* ── Buttons ───────────────────────────────────────────── */
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ── Form elements ─────────────────────────────────────── */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── Touch target minimum ──────────────────────────────── */
.btn, button, input[type=submit], a.btn {
  min-height: 44px;
}

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

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