/*
  Y-SON Urban Lighting — Public Frontend
  File    : frontend-reset.css
  Version : v1.0.0 | 2026-05-20
  Load order: 1 of 5 — must be first
*/

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fe-font-body);
  font-size: var(--fe-text-base);
  font-weight: var(--fe-weight-normal);
  line-height: var(--fe-leading-base);
  color: var(--fe-text-1);
  background-color: var(--fe-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fe-font-heading);
  font-weight: var(--fe-weight-bold);
  line-height: var(--fe-leading-tight);
  color: var(--fe-text-1);
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Scrollbar — matches LSI v6 */
::-webkit-scrollbar        { width: 5px; height: 5px; }
::-webkit-scrollbar-track  { background: transparent; }
::-webkit-scrollbar-thumb  { background: var(--fe-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--fe-text-3); }
* { scrollbar-width: thin; scrollbar-color: var(--fe-border) transparent; }
