/* assets/css/base.css */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #ffffff;
  --white:        #ffffff;
  --fg:           #0a0a0a;
  --text-muted:   rgba(0,0,0,0.55);
  --text-dim:     rgba(0,0,0,0.35);
  --text-label:   rgba(0,0,0,0.35);
  --border:       1px solid rgba(0,0,0,0.10);
  --border-light: 1px solid rgba(0,0,0,0.14);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Montserrat', sans-serif;
  cursor: none;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; cursor: none; }
img { display: block; max-width: 100%; }

.label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-label);
}

.bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}

.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;
}
