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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-page);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.icon-13 {
  font-size: 13px;
}

.icon-16 {
  font-size: 16px;
}

.f-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.label-sm {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-ink);
}

.text-muted-custom {
  color: var(--color-muted);
}

.material-symbols-outlined {
  display: inline-block;
  width: 1em;
  line-height: 1;
  overflow: hidden;
  vertical-align: middle;

  white-space: nowrap;
}

/* Visibility utility — JS toggles this instead of .style.display */
.is-hidden {
  display: none !important;
}
