/* base.css — Reset, typography, global layout */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-l); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--ff-b); }
input, textarea, select {
  font-family: var(--ff-b);
  font-size: 14px;
  color: var(--text);
}
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-h); color: var(--text); line-height: 1.2; }
