/**
 * ASH LORENTZ MAIN STYLESHEET
 * Master stylesheet importing design tokens, typography, layout, and responsive rules.
 */

@import "tokens.css";
@import "typography.css";
@import "layout.css";
@import "responsive.css";

/* Reset & Base Normalization */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
}
