/* ============================================================
   RESET & BASE
   ============================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevents layout shift during scroll */
  scrollbar-gutter: stable;
}
body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
  /* Prevent pull-to-refresh jank */
  overscroll-behavior-y: none;
}
img,video { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
address { font-style: normal; }

