/* ============================================================
   RESET — Triple C's Mobile Auto Detail
   ============================================================ */

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

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--size-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color var(--transition-mid);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  line-height: 1.12;
  color: var(--color-text-primary);
}

p {
  line-height: 1.7;
  color: var(--color-text-muted);
}

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

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

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

em {
  font-style: italic;
  color: var(--color-accent-light);
}

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